.section-hero:not(.sec-sale) .sw--hero {
    height: 65vh;
}
.sw--hero .swiper-slide {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
}
.sw--hero .swiper-slide:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%);
    opacity: 70%;
    transition: 0.4s;
}
.sw--hero .container {
    position: relative;
    z-index: 1;
}
.hero--desc {
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    & .top-title {
        font-size: clamp(14px, 2vw, 16px);
        color: var(--color2);
        margin-bottom: 16px;
        display: block;
    }
    & .s-title {
        font-size: clamp(26px, 3vw, 32px);
        margin-bottom: 8px;
        line-height: 58px;
        &:before {
            content: none;
        }
    }
    & p {
        line-height: 32px;
    }
}
.hero--img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    & a {
        display: flex;
        height: 100%;
    }
    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    & video {
        height: 100%;
        object-fit: cover;
    }
}
.hero-slider .next-prev {
    bottom: clamp(16px, 2vw, 20px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.hero-slider .next-prev:before {
    content: "";
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    background: rgb(255 255 255 / 30%);
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    border-radius: 100px;
}
@media only screen and (min-width: 768px) {
    .hero--desc {
        align-items: self-start;
        text-align: right;
    }
    .sw--hero .swiper-slide:before {
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%);
    }
    .sw--hero .swiper-slide {
        align-items: center;
        padding: 0;
    }
    .hero-slider .next-prev {
        left: 0px;
        transform: unset;
    }
    .sec-sale {
        padding-top: 32px;
        & .sw--hero {
            border-radius: 24px;
        }
        & .hero-slider .next-prev {
            left: 24px;
        }
    }
    .sec-sale .hero--desc {
        padding-right: 48px;
    }
}
.title-sale {
    font-size: 20px;
    color: var(--color1);
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--Medium);
    display: flex;
    align-items: center;
    justify-content: center;
}
.countdown {
    min-height: 40px;
    background: var(--black);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 40px);
    margin-inline: auto;
    border-radius: 12px 12px 0 0;
    gap: 14px;
    font-family: var(--Medium);
}
@media only screen and (max-width: 768px) {
    .title-sale {
        margin-top: 40px;
    }
    .sec-sale .col-12.col-lg-9 {
        padding: 0 !important;
    }
    .hero--desc .s-title {
        margin-bottom: 0;
        line-height: 36px;
        padding: 0;
    }
}
.section-hero .hero-slider {
    min-height: clamp(500px, 49vw, 550px);
}