#banner-block {
    container-name: banner-block;
    container-type: inline-size;
}
.banner-swiper {
    position: relative;
    overflow: hidden;
    background-color: var(--background);
    border-radius: 10px;
    width: 100%;
    margin-bottom: 30px;
}
.bannew-swiper__background {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner-swiper .swiper {
    position: relative;
    z-index: 1;
}
.banner-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 257px;
    padding-top: 80px;
    padding-bottom: 93px;
}
.banner-slide__content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 760px;
    width: 100%;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.banner__title {
    color: var(--head-primary);
    text-align: center;
    margin-bottom: 20px;
}
.banner__title span {
    font-size: unset;
    font-weight: unset;
    line-height: unset;
    color: var(--secondary);
}
.banner__subtitle {
    margin-bottom: 40px;
    color: var(--main-text-primary);
    text-align: center;
}
.banner-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.banner-advantage {
    background-color: var(--background);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    gap: 20px;
}
.banner-advantage__icon--wrapper {
    min-width: 60px;
    min-height: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-secondary);
    border-radius: 5px;
}
.banner-advantage__icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}
.banner-advantage__title {
    color: var(--head-primary);
    margin-bottom: 8px;
}
.banner-advantage__text {
    color: var(--main-text-primary);
}
#banner-block .swiper-paggintainer__custom-banner {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    display: flex;
    z-index: 1;
}
#banner-block .swiper-paggintainer__custom-banner .swiper-pagination-bullet {
    margin: 0 5px;
    width: 40px;
    height: 6px;
    background-color: var(--background-secondary);
    border: none;
    border-radius: 0px;
    opacity: 1;
    position: relative;
}
#banner-block .swiper-paggintainer__custom-banner .swiper-pagination-bullet::before {
    content: '';
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary);
}
@keyframes banner-pagintainer-animate {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }    
}
#banner-block .swiper-paggintainer__custom-banner .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    animation: banner-pagintainer-animate 1 3s linear;
    animation-fill-mode: forwards;
}
.banner-image-0,
.banner-image-1 {
    position: absolute;
    object-fit: cover;
    z-index: -1;
}
.banner-image-0 {
    max-width: 250px;
    max-height: 187px;
    width: 100%;
    height: 100%;
    transform: rotate(-10deg);
    left: 0;
    bottom: 20px;
}
.banner-image-1 {
    bottom: 0;
    right: 0;
    max-width: 375px;
    max-height: 291px;
    width: 100%;
    height: 100%;
}
@container banner-block (max-width: 1024px) {
    .banner-image-0 {
        bottom: -60px;
    }
    .banner-image-1 {
        display: none;
    }
    .banner-slide {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .banner-slide__content {
        padding: 0 10px;
    }
    .banner__subtitle {
        margin-bottom: 20px;
    }
    .banner-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
@container banner-block (max-width: 768px) {
    .banner-advantage {
        flex-direction: column;
    }
    .banner-swiper {
        margin-bottom: 15px;
    }
    .banner-advantage {
        gap: 10px;
    }
}
@container banner-block (max-width: 500px) {
    .banner-advantages {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}