/* Slider */
.block-slider {
    min-height: inherit;
    max-height: inherit;
    position: relative;
    height: 600px;
    min-height: 600px;
}

.block-slider .position-relative {
    min-height: inherit;
    max-height: inherit;
    height: inherit;
}

.block-slider .my-slide {
    display: none;
    min-height: inherit;
    max-height: inherit;
    height: inherit;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.block-slider .my-slide .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.block-slider .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 1.25em auto;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: block;
    transition: background-color 0.6s ease;
}

.block-slider .dots {
    position: absolute;
    top: 35%;
    right: 7%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
}

.block-slider .dot:active, 
.block-slider .dot:hover, 
.block-slider .active {
    background-color: #FFFFFF;
    border: 2px solid #717171;
    box-shadow: 0 0 0 2px #FFFFFF;
}

.block-slider .input-style {
    background: transparent;
    border: none;
}

.block-slider .border-bottom {
    padding-top: 10px;
    border-bottom: 2px solid white;
    width: 45%;
}

.block-slider .search-img {
    width: 2vw;
}

.block-slider .full-width-img {
    height: 500px;
    object-fit: cover;
}

.block-slider .text-over-img {
    text-shadow: 2px 2px 5px black;
}

.block-slider .slider-title {
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
}

@media (max-width: 992px) {
    .block-slider .dots {
        width: 40px
    }
}

@media (max-width: 768px) {
    .block-slider .slider-title {
        font-size: 32px;
    }
}

@media (max-width: 701px) {
    .block-slider .my-slide .container {
        position: absolute;
        top: 20% !important;
        left: 0%;
        transform: none;
    }
}

@media (max-width: 577.98px) {
    .block-slider {
        min-height: inherit;
        max-height: inherit;
        position: relative;
        min-height: 600px;
        height: auto;
    }
}