.banner-main {
    height: calc(100svh + 30px);
}

.banner-main__swiper {
    height: 100%;
}

.banner-main__swiper-wrapper {
    height: calc(100% - 30px);
}

.banner-main__swiper-slide {
    position: relative;
}

.banner-main__photo {
    height: 100%;
}

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

.banner-main__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000000;
    opacity: 0.2;
}

.banner-main__content {
    width: max-content;
    max-width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #FFFDEA;
    text-align: center;
    z-index: 2;
}

.banner-main__heading {
    font-family: 'Bounded';
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
}

.banner-main__link {
    width: 350px;
    height: 45px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFDEA;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #FFFDEA;
    margin-bottom: 10px;
}

.banner-main__link:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFDEA;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s ease;
}

.banner-main__link span {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.banner-main__link:hover:after {
    transform: scaleX(1);
}

.banner-main__link:hover span {
    color: #281D18;
}

.banner-main__text {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

.banner-main__swiper-button-prev, .banner-main__swiper-button-next {
    width: 3px;
    height: 155px;
    position: absolute;
    top: calc(50% - 15px);
    transform: translateY(-50%);
    background: #B5A99D;
    z-index: 3;
    cursor: pointer;
}

.banner-main__swiper-button-prev {
    left: 20px;
}

.banner-main__swiper-button-next {
    right: 20px;
}

.banner-main__swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.banner-main__swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    height: 3px;
    background: #281D18;
    border-radius: 0;
    margin: 0 !important;
    opacity: 0.2;
    transition: all .4s ease;
}

.banner-main__swiper-pagination .swiper-pagination-bullet-active {
    width: 155px;
}

@media (max-width: 768px) {
    .banner-main {
        height: calc(100svh + 20px);
    }

    .banner-main__swiper-wrapper {
        height: calc(100% - 20px);
    }

    .banner-main__overlay {
        opacity: 0.3;
    }

    .banner-main__content {
        bottom: 100px;
        gap: 15px;
    }

    .banner-main__heading {
        font-size: 20px;
    }

    .banner-main__link {
        width: 210px;
        height: 40px;
        font-size: 12px;
        margin-bottom: 0;
    }

    .banner-main__text {
        font-size: 16px;
        font-weight: 400;
    }

    .banner-main__swiper-button-prev, .banner-main__swiper-button-next {
        height: 70px;
        top: calc(50% - 10px);
    }

    .banner-main__swiper-button-prev {
        left: 15px;
    }

    .banner-main__swiper-button-next {
        right: 15px;
    }

    .banner-main__swiper-pagination {
        gap: 8px;
        margin-top: 10px;
    }

    .banner-main__swiper-pagination .swiper-pagination-bullet {
        width: 50px;
    }

    .banner-main__swiper-pagination .swiper-pagination-bullet-active {
        width: 125px;
    } 
}