@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

.title-hidden {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(0 0 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

.footer_heading::before {
    content: " ";
    width: 50%;
    height: 4px;
    position: absolute;
    bottom: -8px;
    left: 0;
    background-color: #B6CC30;
}

.swiper {
    width: 100%;
    height: auto;
}

/* @media(min-width: 1600px) {
    .swiper {
        height: 900px;
    }
} */

.swiper-slide img {

    width: 100%;
    /* min-width: 100%;
    background-position: 50% 100%;
    background-repeat: no-repeat; */
}

/* .swiper-slide:nth-child(1) {
    background-image: image-set(
        url("/public/img/IS_2025_SLIDER_0.avif") type("image/avif"),
        url("/public/img/IS_2025_SLIDER_0.webp") type("image/webp"),
        url("/public/img/IS_2025_SLIDER_0.jpg") type("image/jpeg")
    );
    background-position: center;
    background-size: contain;

}

@media (max-width: 1024px) {
    .swiper-slide:nth-child(1) {
        background-size: contain;
    }
}

.swiper-slide:nth-child(2) {
    background-image: image-set(
        url("/public/img/IS_2025_SLIDER_1_esp.webp") type("image/webp"),
        url("/public/img/IS_2025_SLIDER_1_esp.jpg") type("image/jpeg")
    );
    background-size: contain;
    background-position: center;
}

.swiper-slide:nth-child(3) {
    background-image: image-set(
        url("/public/img/carousel_three.avif") type("image/avif"),
        url("/public/img/carousel_three.webp") type("image/webp"),
        url("/public/img/carousel_three.jpg") type("image/jpeg")
    );
}

.swiper-slide:nth-child(4) {
    background-image: image-set(
        url("/public/img/carousel_four.avif") type("image/avif"),
        url("/public/img/carousel_four.webp") type("image/webp"),
        url("/public/img/carousel_four.jpg") type("image/jpeg")
    );
}

.swiper-slide:nth-child(5) {
    background-image: image-set(
        url("/public/img/carousel_five.avif") type("image/avif"),
        url("/public/img/carousel_five.webp") type("image/webp"),
        url("/public/img/carousel_five.jpg") type("image/jpeg")
    );
}

.swiper-slide:nth-child(6) {
    background-image: image-set(
        url("/public/img/carousel_six.avif") type("image/avif"),
        url("/public/img/carousel_six.webp") type("image/webp"),
        url("/public/img/carousel_six.jpg") type("image/jpeg")
    );
} */

/* .swiper-slide::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
} */

.swiper-button-next, .swiper-button-prev {
    color: white;
}

.swiper-button-prev {
    left: 8px;
    --swiper-navigation-size: 30px;
}

.swiper-button-next {
    right: 8px;
    --swiper-navigation-size: 30px;
}

@media (min-width: 1024px) {
    .swiper-button-prev {
        left: 90px;
        --swiper-navigation-size: 40px;
    }
    
    .swiper-button-next {
        right: 90px;
        --swiper-navigation-size: 40px;
    }
}

.swiper-pagination {
    --swiper-pagination-color: white;
}

.swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    border-radius: unset;
}

.slider-button {
    padding: 10px 20px;
    border: 1px solid white;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}

.slider-button:hover {
    background-color: #B6CC30;
    border: 1px solid #B6CC30;
}

@media (min-width: 1024px) {
    .slider-button {
        font-size: 18px;
    }
}

.semi-circle {
    position: relative;
    padding: 15px;
}

.superior-header {
    height: 84.55px;
}


.nav-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #030F27;
    padding: 16px 32px;
    margin: 0;
    color: white;
}

@media (min-width: 1024px) {
    .nav-bar {
    flex-direction: row;
    margin: 0 80px;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease-in-out;
    }
}

.nav-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

.service-card__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-card__content {
    opacity: 1;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 5px;
    background-color: #B6CC30;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}

.filter-btn:hover {
    background-color: #030F27;
    color: #B6CC30;
}

.filter-btn--active {
    background-color: #030F27;
    color: #B6CC30;
}

/* .service_card_one:hover::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
} */

/* .service_card_one::after {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
} */

