section.sale-bTwo {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: "Roboto", sans-serif;
}

@media(max-width: 991px) {
    section.sale-bTwo {
        padding-top: 10px;
    }
}

section.sale-bTwo .box-content h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    color: white;
    text-align: center;
    width: 95%;
    margin: 0 auto 58px;
}

@media(max-width: 991px) {
    section.sale-bTwo .box-content h2 {
        font-size: 36px;
        line-height: 43px;
        width: 100%;
        margin-bottom: 32px;
    }
}

section.sale-bTwo .content-image {
    aspect-ratio: 866 / 356;
    width: 95%;
    margin: 0 auto 32px;
}
@media(max-width: 991px) {
    section.sale-bTwo .content-image {
        aspect-ratio: 375 / 154;
        width: unset;
        margin: 0 -15px 32px;
    }
}

section.sale-bTwo .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.sale-bTwo .list-content {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}
@media(max-width: 991px){
    section.sale-bTwo .list-content {
        flex-direction: column;
        padding: 0 35px;
        gap: 50px;
    }
}
section.sale-bTwo .list-content .item {
    width: calc(100% / 3 - 40px);
    position: relative;
}
@media(max-width: 991px){
    section.sale-bTwo .list-content .item {
        width: 100%;
    }
}
section.sale-bTwo .list-content .item a {
    background-color: white;
    border-radius: 8px;
    padding: 24px 32px;
    width: calc(100% - 22px);
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    color: black;
    height: 100%;
    position: unset;
    transform: unset !important;
}

section.sale-bTwo .list-content .item a::after {
    content: "";
    width: 44px;
    height: 44px;
    background-color: white;
    border: 2px solid #0053B3;
    border-radius: 50%;
    background-image: url('https://www.antsomi.com/wp-content/uploads/2024/04/icon-line-forward-arrow.png');
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-position: center;
}