
/* Swiper */

#swipe {
    width: 100%;
    height: 110vh;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 90%;
    user-select: none;
}

.swiper-slide {
    width: 100%;
    position: relative;
}

/* .swiper-slide-text:hover {
    opacity: 0;
} */
.swiper-slide-text {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 4rem 2rem;
    transition: all .3s ease;
    background: rgb(2, 0, 36);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 70%, var(--light-blue) 100%);

    h1 {
        font-size: 2.5rem;
        font-weight: 400;
        text-align: center;
        color: var(--white);
    }
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    max-inline-size: 100%;
}

.swiper-pagination {
    width: 100%;
    margin-top: 2rem;
    bottom: auto !important;
}
@media screen and (max-width:1100px) {

    #swipe {
        height: 70vh;
    }
}
@media screen and (max-width:800px) {
    .swiper-slide-text {
        padding: 1.5rem 2rem;

        h1 {
            font-size: 1.7rem;
        }
    }
}
@media screen and (max-width:500px) {

    #swipe {
        height: 50vh;
    }
}
/* Swiper End */