#banner-block {
    min-height: 730px;
    height: 100%;
    /* padding-top: 110px;
    padding-bottom: 100px; */
    position: relative;
    display: flex;
    align-items: stretch;
}


/* .banner-backgroudn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
} */
.banner-backgound__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;

}

.banner-container {
    padding-top: 110px;
    padding-bottom: 100px;
    width: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.banner-title {
    font-size: var(--font-size-26-60);
    line-height: 120%;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.banner-subtitle {
    font-size: var(--font-size-16-20);
    font-weight: 600;
    line-height: 125%;
    color: white;
    margin-bottom: 40px;
}

.banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.banner-list-item {
    position: relative;
    font-size: var(--font-size-14-16);
    font-weight: 400;
    line-height: 155%;
    color: var(--primary-text);
    padding-left: 20px;
}

.banner-list-item::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.banner-container-text__wrapper {
    max-width: 880px;
    width: 100%;
}

.banner-decration-element {
    width: 100%;
    height: 1px;
    background-color: var(--primary-text);
    margin-top: 35px;
    margin-bottom: 30px;
}

#banner-block .btn {
    max-width: 220px;
    height: 100%;
}

.banner-pagintion__wrapper {
    position: absolute;
    bottom: 65px;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-right: 15px;
    z-index: 1;
}

/* .banner-backgroudn,
#banner-block .swiper {
    width: 100%;
    height: 100%;
} */
.banner-backgound__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 40px !important;
    height: 4px !important;
    opacity: 1 !important;
    background-color: var(--stroke) !important;
    border-radius: 0;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: '';
    width: 0;
    height: 100%;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
}

#banner-block .swiper-slide {
    position: relative;
}

#banner-block .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Черный цвет с 50% прозрачностью */
    z-index: 1;
    /* Убедитесь, что фильтр находится выше фона, но ниже контента */
}

.banner-backgound__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    /* Фоновое изображение должно быть под фильтром */
}

.banner-container {
    position: relative;
    z-index: 2;
    /* Контент должен быть поверх фильтра */
}


@keyframes animation-pagination {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    animation: animation-pagination infinite 3s linear;
}

@media (max-width: 1200px) {
    #banner-block {
        min-height: 500px;
    }
}

@media (max-width: 1024px) {
    .banner-container {
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .banner-backgound__image {
        object-position: 43%;
    }
}

@media (max-width: 768px) {
    .banner-pagintion__wrapper {
        position: absolute;
        bottom: 20px;
    }
}