.about-us-slider-section {
    width: 100%;
    height: 670px;
    margin: 60px 0 160px;
    position: relative;
    font-family: "Monserrat", Sans-serif !important;
}

.about-us-slider-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 56%;
    height: 100%;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(7.5px);
    z-index: 2;
}

.about-us-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.about-us-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.about-us-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.about-us-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-us-slide-view-container {
    position: relative;
    max-width: 1348px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    z-index: 3;
}

.about-us-slide-content {
    position: relative;
    z-index: 4;
    max-width: 750px;
    padding: 40px 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-us-slide-main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-us-slide-counter {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #2f2f2f;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-us-slide-counter-current {
    font-size: 18px;
    font-weight: 400;
}

.about-us-slide-counter-line {
    position: relative;
    width: 270px;
    height: 1px;
    background: #1E1E1E80;
    overflow: hidden;
}

.about-us-slide-counter-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width 0.3s ease;
}

.about-us-slide-counter-total {
    font-size: 18px;
    font-weight: 300;
}

.about-us-slide-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 42px;
    color: #2f2f2f;
    text-transform: uppercase;
}

.about-us-slide-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    color: #2f2f2f;
}

.about-us-slider-navigation {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap:10px;
}

.about-us-slider-nav-button {
    background: transparent;
    border: 1px solid transparent;
    color: #2F2F2F;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
}

.about-us-slider-nav-button .arrow img {
    display: block;
    width: auto;
    height: 55px;
    object-fit: contain;
}

.about-us-slider-nav-button.prev {
    flex-direction: row;
    background: #D1C5B559;
    box-shadow: none;
}
.about-us-slider-nav-button:hover.prev {
    border: 1px solid #2F2F2F;
}

.about-us-slider-nav-button.next {
    flex-direction: row-reverse;
    text-align: right;
}
.about-us-slider-nav-button:hover.next {
    border: 1px solid #2F2F2F;
    background: #FFFFFF;
    color: #2F2F2F;
}

.about-us-slider-nav-text {
    display: flex;
    gap: 8px;
}

.about-us-slider-nav-label {
    font-size: 18px;
    font-weight: 400;
    color: #2F2F2F;
}
.hotel-slider-navigation .about-us-slider-nav-button.next .about-us-slider-nav-text {
    font-weight: 500 !important;
}

.about-us-slider-nav-title {
    font-size: 18px;
    font-weight: 300;
    max-width: 290px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1024px) {
    .about-us-slide-counter {
        top: 40px;
        left: 40px;
    }
    
    .about-us-slide-content {
        padding: 0 40px;
    }
    
    .about-us-slide-title {
        font-size: 26px;
    }
    
    .about-us-slide-description {
        font-size: 16px;
    }
    
    .about-us-slider-navigation {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .about-us-slider-section {
        height: auto;
        margin: 30px 0 60px;
    }
    
    .about-us-slider-wrapper {
        height: auto;
    }
    
    .about-us-slide {
        position: static;
        height: auto;
        display: none;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
    }
    
    .about-us-slide.active {
        display: flex;
    }
    
    .about-us-slide-background {
        position: relative;
        width: 100%;
        height: 350px;
        order: 2;
    }
    
    .about-us-slider-blur-overlay {
        display: none;
    }
    
    .about-us-slide-counter {
        display: none;
    }
    
    .about-us-slide-view-container {
        position: relative;
        order: 1;
        background: #fff;
        padding: 20px 14px;
        max-width: 100%;
    }
    
    .about-us-slide-content {
        padding: 0;
        height: auto;
        max-width: 100%;
        gap: 30px;
    }
    
    .about-us-slide-main-content {
        text-align: center;
        gap: 20px;
    }
    
    .about-us-slide-title {
        font-size: 30px;
        line-height: 34px;
        font-weight: 300;
    }
    
    .about-us-slide-description {
        font-size: 16px;
        line-height: 26px;
    }
    
    .about-us-slider-navigation {
        margin-top: 0;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .about-us-slider-nav-button {
        width: 70px;
        height: 50px;
        justify-content: center;
        padding: 10px;
    }
    
    .about-us-slider-nav-button .arrow img {
        height: 50px;
    }
    
    .about-us-slider-nav-text,
    .about-us-slider-nav-label,
    .about-us-slider-nav-title {
        display: none;
    }
}
