html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-stopped {
    overflow: hidden;
}


.logo .brand-logo {
    position: fixed;
    z-index: 99;
    width: 135px;
    top: 15px;
    left: 40px;
}

.custom-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    z-index: 0;
}

.slider-numbering {
    position: absolute;
    top: 53%;
    left: 15px;
    transform: translateY(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.slider-numbering li {
    font-size: 1.25rem;
    color: #aaa;
    margin: 30px 0;
    position: relative;
    padding-left: 100px;
    cursor: pointer;
}

.slider-numbering li::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    height: 1px;
    width: 70px;
    background: #aaa;
    transform: translateY(-50%);
}

.slider-numbering li.active {
    font-weight: bold;
    color: #fff;
}

.slider-numbering li.active::before {
    width: 110px;
    background: #fff;
}

.slider-numbering li img {
    width: 28px;
    transition: transform 0.3s ease;
}

.slider-numbering li .nav-label {
    display: none;
    /* only show label for active item */
    margin-left: 12px;
    vertical-align: middle;
    font-size: 1rem;
    color: #ddd;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* show nav label only for active item */
.slider-numbering li.active .nav-label {
    visibility: hidden;
}

.slider-numbering li.active img {
    transform: scale(1.4);
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    left: -1px;
    background: var(--st-theme-color-two) url('images/banner/hero-bg-2.jpg') center/cover no-repeat;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
    /* Hidden to the right */
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: left 0.8s ease-in-out;
    z-index: 0;
}

.slide.active {
    left: 0;
    z-index: 2;
}

.slide.previous {
    left: -100%;
    /* Slide out to left */
    z-index: 1;
}

.slide-content {
    position: absolute;
    left: 170px;
    width: 55%;
}

.slide-image {
    width: 60%;
    position: absolute;
    top: 0%;
    right: 0px;
    /* bottom: 0px; */
}

.slide-image img {
    height: 100vh;
    width: 100%;
}

.slide-content h1 {
    font-size: 3.5rem !important;
    /* larger heading */
    color: #fff;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
}

/* hide heading on non-active slides */
.slide .slide-content h1 {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: 1.1rem;
}

.arrow-box {
    position: relative;
    height: 150px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

/* MAIN ARROW (always visible) */
.arrow-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    /* visible initially */
    height: 100%;
    width: 100%;
    /* clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%, 11% 50%); */
    z-index: 1;
    transition: transform 0.4s ease;
}

.row>div:nth-child(odd) .arrow-box::before {
    background: var(--st-theme-color-two);
    /* odd color */
}

.row>div:nth-child(even) .arrow-box::before {
    background: var(--st-theme-color-one);
    /* even color */
}

/* ANIMATION ARROW (only for hover) */
.arrow-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    /* hidden before hover */
    height: 100%;
    width: 100%;
    /* clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%, 11% 50%); */
    z-index: 2;
    transition: transform 0.4s ease, left 0.4s ease;
}

.row>div:nth-child(odd) .arrow-box::after {
    background: var(--st-theme-color-two);
    /* odd color */
}

.row>div:nth-child(even) .arrow-box::after {
    background: var(--st-theme-color-one);
    /* even color */
}

/* HOVER: 
   1) main arrow goes right 
   2) new arrow slides from left
*/
.arrow-box:hover::before {
    transform: translateX(100%);
}

.arrow-box:hover::after {
    left: 0;
}

/* MOUSE LEAVE:
   - main arrow goes right again
   - animated arrow instantly hides (NO left slide-in)
*/
.arrow-box:not(:hover)::after {
    left: -100%;
    transition: none;
    /* instant hide */
}

.arrow-box span {
    color: white;
    position: relative;
    z-index: 3;
    font-weight: bold;
    font-size: 1.8rem;
    text-transform: uppercase;
    line-height: 2.2rem;
}


.service-cards {
    /* background-image: url('../../images/services/full-bg.jpg'); */
    background-image: url('../../images/banner/hero-bg-2.jpg');
    /* default bg */
    background-size: cover;
    background-position: center;
    position: relative;
    /* padding: 40px 0; */
}

.service-card {
    position: relative;
    height: 600px;
    padding: 40px 42px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    border-right: 1px solid #fff;
}

.service-card img {
    position: absolute;
    width: 120px;
    top: 15px;
    right: 15px;
    z-index: 10;
    transition: all 0.5s ease, opacity 0.4s ease;
    opacity: 0.4;
}

.service-card:hover img {
    width: 80px;
}

/* Hover image layer */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    opacity: 0;
    z-index: 0;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

/* On hover */
.service-card.hovered::after {
    transform: scale(1.1);
    opacity: 1;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-card:hover .service-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -15px;
    width: 106%;
    height: 110%;
    background: #00000099;
    z-index: -1;
}

.service-content h5 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.service-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.service-content a:hover {
    text-decoration: underline;
}

.swiper {
    width: 100% !important;
}

.swiper-wrapper {
    display: flex !important;
}

.swiper-slide {
    flex-shrink: 0 !important;
}


.st-why-area .content_list img {
    max-width: 150% !important;
}

.st__section__title h2 {
    font-weight: 700;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 0px !important;
}

.anim-img-in {
    position: relative;
    overflow: hidden;
}

.anim-img-in img {
    transition: all 0.5s ease;
}

.anim-img-in img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%) scaleX(2);
    opacity: 0;
    filter: blur(0);
}

.anim-img-in img:nth-child(2) {
    transform: translate(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}


@media (min-width: 1365px) and (max-width: 1800px) {
    .st__contact__meta__inner {
        left: -6px !important;
    }

    .st__header__right {
        left: -18px !important;
    }
}

@media screen and (min-width: 1440px) {
    .st__about__thumb img {
        /* max-width: 27%;
        position: absolute; */
        /* left: 3%; */
        width: 100%;
    }

    .st-about-area .st__about__content {
        position: relative;
        top: 62%;
        z-index: 13;
    }

}

@media screen and (max-width: 1440px) {
    .slide-image {
        display: none;
    }

    .custom-slider {
        height: 600px;
    }

    .slide-content h1 {
        font-size: 4rem !important;
    }

    .slide-content {
        width: 100%;
        left: 14%;
    }

    .slide-content p {
        margin: 2.5rem 0px;
    }

    .st__about__thumb img {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .st-header-menu-area, .is-sticky {
        background: var(--st-theme-color-white) !important;
    }
}


@media screen and (max-width: 992px) {
    .st__about__thumb img {
        position: static;
        max-width: 100%;
    }

    .st-about-area .st__about__content {
        position: static;
    }

    .si__about__list {
        justify-content: space-between;
    }
}


.client-slider {
    overflow: hidden;
    /* background: #f8f9fa; */
    position: relative;
    /* padding: 40px 0; */
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 10px;
    text-align: center;
    /* border: 1px solid; */
}

.slider-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

.slider-item img:hover {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    /* padding: 0 15px; */
    pointer-events: none;
    z-index: 9;
}

.slider-controls button {
    background: #000;
    color: #fff;
    border: none;
    padding: 7px 10px;
    font-size: 20px;
    pointer-events: all;
    opacity: 0.7;
}

.slider-controls button:hover {
    opacity: 1;
}