.banner-swiper {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
	min-height: 800px;
}

.banner-swiper .swiper-slide {
    position: relative;
    padding: 0px 0px 180px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.banner-slide-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
}

.banner-slide-title {
    max-width: 860px;
    width: 100%;
}

.banner-slide-btn {
    max-width: 380px;
    width: 100%;
}

.banner-swiper .swiper-slide:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #262120A3;
}

.banner-swiper-controllers {
    position: relative;
    bottom: 110px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.banner-swiper .button-next,
.banner-swiper .button-prev {
    position: relative;
    z-index: 1;
    color: #fff;
    background-color: transparent;
}

.banner-swiper .button-prev {
    transform: rotate(180deg)
}

/* Прогресс линия */
.banner-progress {
    position: relative;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff33;
    z-index: 2;
}

.banner-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--white);
    transition: width 1.5s ease;
}

@media (max-width: 1024px) {
    .banner-swiper {
        height: calc(100vh - 80px);
        min-height: 600px;
    }

    .banner-slide-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 54px;
    }

    .banner-slide-title {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .banner-swiper {
        height: calc(100vh - 100px);
    }

    .banner-swiper .swiper-slide {
        padding: 0px 0px 100px;
    }

    .banner-slide-content {
        gap: 24px;
    }

    .banner-swiper-controllers {
        bottom: 80px;
        gap: 10px;
    }
}