/*-----BANNER STARTS HERE-----------*/
.swiper {
    min-width: 100%;
    min-height: 100dvh !important;
    padding: 0 0 !important;
    z-index: 0 !important;
    margin-top: -80px!important;
}

@media screen and (min-width: 1650px) {
    .swiper {
        height: 80vh !important;
    }
}

.swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    min-height: 100vh;
    padding: 100px 0 50px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #ffffff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-position-y: 0%;
    background-attachment: fixed;
    opacity: 0;
    animation: fadeInBanner 1s ease-in-out forwards;
    transition: opacity 1s ease-in-out;
}

@media (max-width: 767px){
    .swiper .swiper-wrapper .swiper-slide{
        padding-top: 50px;
    }
}

@keyframes fadeInBanner {
    to {
        opacity: 1;
    }
}

.swiper .swiper-wrapper .swiper-slide__wrapper {
    margin-left: 140px;
    min-width: 290px;
    max-width: 640px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 0;
}

@media (max-width: 1650px){
    .swiper .swiper-wrapper .swiper-slide__wrapper{
        margin-left: 95px;
    }
}

@media screen and (max-width: 1200px) {
    .swiper .swiper-wrapper .swiper-slide__wrapper {
        margin-left: 40px;
    }
}

@media (max-width: 767px) {
    .swiper .swiper-wrapper .swiper-slide__wrapper {
        margin: 0 1rem;
    }
}

.swiper .swiper-wrapper .swiper-slide__wrapper .banner-h1 {
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.swiper .swiper-wrapper .swiper-slide__wrapper .banner-h2 {
    text-wrap: wrap;
    margin: 0 0 1rem 0;
    font-size: clamp(2rem, 1.5rem + 2.2222vw, 4rem);
    font-weight: 600;
}

.swiper .swiper-wrapper .swiper-slide__wrapper .banner-description {
    width: 85%;
    margin-bottom: 0!important;
}

@media (max-width: 767px) {
    .swiper .swiper-wrapper .swiper-slide__wrapper .banner-description {
        width: 100%;
    }
}

.swiper .swiper-wrapper .swiper-slide__wrapper .is-style-button-primary {
    width: fit-content;
    margin-top: 30px;
}

.swiper .swiper-wrapper .swiper-slide__wrapper .banner-h1,
.swiper .swiper-wrapper .swiper-slide__wrapper .banner-description {
    opacity: 0;
    transform: translateY(50%);
    animation: fadeInBanner 1.5s ease-in-out forwards;
    transition: opacity 1.5s ease-in-out;
}

@keyframes fadeInBanner {
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

.swiper .swiper-pagination {
    bottom: var(--swiper-pagination-bottom, 150px) !important;
    width: 22.5% !important;
    margin-top: -4rem;
    left: -40px;
}

@media (max-width: 767px){
    .swiper .swiper-pagination{
        left: 0;
    }
}

@media (min-width: 1650px){
    .swiper .swiper-pagination{
        margin-top: -8rem;
    }
}

.swiper .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #ffffff;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.swiper .swiper-pagination .swiper-pagination-bullet-active {
    color: #ffffff;
    background: var(--wp--preset--color--ji-light-red);
}