#banner-block {
    padding-top: 10px;
}
.banner-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.banner-content__swiper {
    border-radius: 40px;
    overflow: hidden;
    position: relative; 
    width: 71%;
    border: 2px solid #ffffff;
}
.banner-content-list-discount {
    width: 27.5%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: stretch;
}
.banner-slide__background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.banner-slide {
    padding-top: 80px;
    padding-left: 135px;
    padding-right: 260px;
    padding-bottom: 60px;
}
.banner-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(28, 32, 42, 1), rgba(28, 32, 42, 0));
    z-index: 1;
}
.banner-content__swiper .swiper {
    height: 100%;
}
.banner-slide__content {
    position: relative;
    z-index: 2;
}
.banner-slide__title {
    font-size: var(--font-size-28-66);
    font-weight: 800;
    font-family: 'Roboto Condensed';
    line-height: 125%;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--head-secondary);
}
.banner-slide__text p,
.banner-slide__text li {
    color: var(--head-secondary);
    font-weight: 400;
    line-height: 125%;
    font-size: var(--font-size-16-20);
    margin-bottom: 10px;
}
.banner-slide__text p:last-child,
.banner-slide__text li:last-child {
    margin-bottom: 0;
}
.banner-slide__text ul li {
    padding-left: 40px;
    position: relative;
    list-style: none;
}
.banner-slide__text ul li::after {
    content: '';
    width: 15px;
    height: 15px;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('../../../assets/images/star.svg');
}
.banner-slide__text {
    margin-bottom: 115px;
}
.bannew-swiper-curstom-wrapper {
    position: absolute;
    right: 135px;
    bottom: 60px;
    z-index: 1;
}
.banner-content-item-discount {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #ffffff;
}
.banner-content-item-discount:last-child {
    margin-bottom: 0;
}
.banner-content-item-discount__image {
    width: 100%;
    height: 100%;
    transition: all .3s;
    object-fit: cover;
}
.banner-content-item-discount-text__wrapper {
    border-radius: 15px 15px 0px 0px;
    padding: 30px;
    background-color: rgba(28, 32, 42, 0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all .3s;
}
.banner-content-item-discount-text {
    font-size: var(--font-size-16-24);
    font-weight: 800;
    line-height: 120%;
    color: var(--head-secondary);
    font-family: 'Roboto Condensed';
    text-transform: uppercase;
}
.banner-content-item-discount:hover .banner-content-item-discount__image {
    transform: scale(1.2);
}
.banner-content-item-discount:hover .banner-content-item-discount-text__wrapper {
    bottom: 50px;
}
.banner-content-item-discount-show-more {
    padding: 17px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: -70px;
    color: var(--background-thirdly);
    font-size: var(--font-size-13-16);
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    gap: 10px;
    width: 100%;
    background-color: var(--second);
    transition: all .3s;
}
.banner-content-item-discount-show-more svg {
    width: 20px;
    height: 20px;
}
.banner-content-item-discount:hover .banner-content-item-discount-show-more {
    bottom: 0;
}
.banner-advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.banner-advantage {
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 25px 30px;
}
.banner-advantage::before {
    content: '';
    position: absolute;
    left: 40px;
    top: -105%;
    width: 157px;
    height: 157px;
    border-radius: 100%;
    background-color: var(--second);
    filter: blur(100px);
    z-index: -1;
}
.banner-advantage::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -210%;
    width: 325px;
    height: 325px;
    border-radius: 100%;
    background-color: var(--second);
    filter: blur(100px);
    z-index: -1;
}
.banner-advantage__number {
    width: 40px;
    height: 40px;
    background-color: var(--second);
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-16-20);
    font-weight: 800;
    line-height: 120%;
    color: var(--head-secondary);
    margin-bottom: 18px;
    font-family: 'Roboto Condensed';
}
.banner-advantage__text {
    font-size: var(--font-size-16-20);
    font-weight: 400;
    line-height: 120%;
    color: var(--main-text-secondary);
    font-family: 'Roboto';
}
@media (max-width: 1200px) {
    .banner-slide {
        padding: 40px;
    }
    .bannew-swiper-curstom-wrapper {
        bottom: 40px;
        right: 30px;
    }
}
@media (max-width: 1024px) {
    .banner-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .banner-content {
        margin-bottom: 20px;
    }
    .banner-advantage::before {
        top: -122%;
        box-shadow: 0px 0px 150px var(--second);
    }
    .banner-advantage::after {
        bottom: -255%;
        box-shadow: 0px 0px 150px var(--second);
    }
    .banner-content {
        gap: 15px;
    }
    .banner-content-list-discount {
        gap: 15px;
    }
    .banner-content-item-discount-text__wrapper {
        padding: 15px;
    }
    .banner-content-item-discount-show-more {
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
    }
    .banner-content__swiper {
        width: 100%;
    }
    .banner-content-list-discount {
        flex-direction: row;
        width: 100%;
    }
    .banner-content-item-discount {
        height: 290px;
        width: 100%;
    }
    .banner-slide {
        padding: 20px;
    }
    .bannew-swiper-curstom-wrapper {
        bottom: 20px;
        left: 20px;
    }
    .banner-slide__content {
        padding-bottom: 80px;
    }
    .banner-advantage {
        padding: 15px;
    }
}   
@media (max-width: 500px) {
    .banner-content-list-discount {
        flex-direction: column;
    }
    .banner-content-item-discount {
        height: 180px;
    }
    .banner-advantages {
        grid-template-columns: 1fr;
    }
    .banner-advantage::before {
        top: -170%;
        box-shadow: 0px 0px 150px var(--second);
    }
    .banner-advantage::after {
        bottom: -345%;
        box-shadow: 0px 0px 150px var(--second);
    }
    .banner-slide__title {
        margin-bottom: 20px;
    }
    .banner-slide__text {
        margin-bottom: 80px;
    }
}
