.whatsapp_button img {
    width: 60px;
    cursor: pointer;
}

nav {
    position: fixed;
    z-index: 1000;
    display: flex;
    width: 100%;
    padding: 32px 24px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;

    .navContainer {
        transition: background 0.5s;
        display: flex;
        padding: 12px 16px;
        justify-content: space-between;
        align-items: center;
        flex: 1 0 0;

        .navLinks {
            justify-content: center;
            align-items: center;
            gap: 14px;
        }
    }
}

.home-hero-section {
    position: relative;
    /* background: url('../images/background/statBG.jpg') no-repeat center center/cover; */
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    height: 120dvh;
    .filterBottom {
        position: absolute;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 72.06%, #000 100%), linear-gradient(208deg, rgba(0, 0, 0, 0.00) 53.63%, #000 71.77%);
        width: 100%;
        z-index: 2;
        height: 120dvh;
    }

    @media (min-width: 768px) {
        height: 90dvh;
        .filterBottom {
            height: 90dvh;
        }
    }

    video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .header-text {
        position: absolute;
        display: flex;
        bottom: 0px;
        flex-direction: column;
        gap: 40px;
        z-index: 3;
    }
}

.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    position: relative;

    .cardServiceFrame {
        display: flex;
        align-items: center;
        gap: 19px;
        align-self: stretch;
        flex-direction: column;
        overflow: hidden;

       
    }

    .cardService {
        position: relative;
        min-width: 180px;
        height: 350px;
        border-radius: 16px;
        overflow: hidden;
        display: block;
        img {
            width: 100%;
            height: 100%;
            min-height: 325px;
            object-fit: cover;
        }

        .textHover {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(180deg, rgba(1, 1, 1, 0.00) 48.7%, #010101 100%);

        }
    }

    .swiper_custom_nav {
        position: relative;
        z-index: 10;
        left: 0;
        display: flex;
        justify-content: space-between;
    }

    .swiper_custom_nav svg {
        width: 40px;
        cursor: pointer !important;
        opacity: 0.44 !important;
        transition: all .3s ease-in-out !important;
    }

    .swiper_custom_nav svg:hover {
        opacity: 1 !important;
    }

    #swiper-1 .swiper-custom-pagination {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 1rem;
        bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
        transform: translateX(0%) !important;
    }

    #swiper-1 .swiper-pagination-bullet {
        opacity: 1;
        background-color: #ffffff30;
        width: .5rem;
        height: .5rem;
        margin: 0 6px;
    }

    #swiper-1 .swiper-pagination-bullet-active {
        background-color: var(--color-gray-200);
    }
}

.results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    position: relative;

    .cardResultFrame {
        display: flex;
        align-items: center;
        gap: 19px;
        align-self: stretch;
        flex-direction: column;
        overflow: hidden;

        .swiper-slide {
            height: auto !important;
        }
    }

    .swiper_custom_nav {
        position: relative;
        z-index: 10;
        left: 0;
        display: flex;
        justify-content: space-between;
    }

    .swiper_custom_nav svg {
        width: 40px;
        cursor: pointer !important;
        opacity: 0.44 !important;
        transition: all .3s ease-in-out !important;
    }

    .swiper_custom_nav svg:hover {
        opacity: 1 !important;
    }

    #swiper-2 .swiper-custom-pagination-result {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 1rem;
        bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
        transform: translateX(0%) !important;
    }

    #swiper-2 .swiper-pagination-bullet {
        opacity: 1;
        background-color: #ffffff30;
        width: .5rem;
        height: .5rem;
        margin: 0 6px;
    }

    #swiper-2 .swiper-pagination-bullet-active {
        background-color: var(--color-gray-200);
    }
}

.cardResult {
    position: relative;
    min-width: 180px;
    border-radius: 16px;
    overflow: hidden;
    align-self: stretch;
    height: 100%;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.logo {
    display: flex;
    /* padding: 100px 65px; */
    flex-direction: column;
    align-items: center !important;
    gap: 40px;
    align-self: stretch;

    .slider1 {
        width: 100%;
        /* border: 1px solid red; */
        height: var(--height-slide);
        overflow: hidden;
        mask-image: linear-gradient(to right,
                transparent,
                #000 10% 90%,
                transparent);

        .list {
            position: relative;
            display: flex;
            width: 100%;
            min-width: calc(var(--width-slide) * var(--quantity-slide));

            .item {
                position: absolute;
                width: calc(var(--width-slide));
                height: var(--height-slide);
                left: 100%;
                animation: autoRun 20s linear infinite;
                transition: filter 0.5s;
                display: flex;
                animation-delay: calc((20s/var(--quantity-slide)) * (var(--position_slider) - 1)) !important;

                img {
                    width: 100%;
                    margin-top: auto;
                    margin-bottom: auto;
                }
            }
        }
    }
}

.slider1:hover .item {
    animation-play-state: paused !important;
    filter: grayscale(1);
}

.slider[reverse="true"]:hover .item {
    animation-play-state: paused !important;
    filter: grayscale(1);
}

.slider1 .item:hover {
    filter: grayscale(0);
}

.slider[reverse="true"] .item:hover {
    filter: grayscale(0);
}




@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(var(--width-slide) * -1);
    }
}

@keyframes reversePlay {
    from {
        left: calc(var(--width-slide) * -1);
    }

    to {
        left: 100%;
    }
}