.section-product-banner.pt-0 {
    padding-top: 0;
}

.section-product-banner.pb-0 {
    padding-bottom: 0;
}

.banner-text {
    display: flex;
    align-items: stretch;
}

.banner-text > div {
    flex: 1 1 0;
}

.banner-text .banner-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 328px;
    background: #F7F8FA;
    padding: 25px 20px;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    text-align: center;
}

.banner-text .banner-header .banner-header-title {
    font-size: 28px;
    font-weight: 600;
    color: #AD3275;
    padding: 0;
    margin: 0;
}

.banner-text .banner-header div {
    margin: 0 -20px -25px -20px;
}

.banner-text .banner-header div img {
    border-bottom-left-radius: 12px;
    max-height: 125px;
    width: auto;
}

.banner-text .banner-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    padding: 25px;
}

.banner-text .banner-wrapper .banner-title {
    font-size: 32px;
    font-weight: 600;
    margin-top: 0;
}

.banner-text .banner-wrapper .banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.banner-text .banner-wrapper .banner-content p {
    margin: 0;
    padding: 0;
}

.banner-text .banner-wrapper .banner-description p {
    font-size: 28px;
    font-weight: 300;
}

.banner-text .banner-wrapper .banner-price {
    font-size: 32px;
    font-weight: 700;
    white-space: nowrap;
}

.banner-text .banner-wrapper .banner-price span {
    font-size: 28px;
    /*font-weight: 300;*/
    margin-left: 5px;
}

.banner-text .banner-wrapper .banner-content-button {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 60px;
}

.banner-text .banner-wrapper .banner-description-extended {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
}

.banner-text .banner-wrapper .banner-description-extended p {
    margin: 0;
}


@media (max-width: 1440px) {

}

@media (max-width: 1280px) {

}

@media (max-width: 992px) {
    .banner-text .banner-wrapper .banner-title {
        font-size: 24px;
    }

    .product-banner-wrapper .banner-content p,
    .banner-text .banner-wrapper .banner-description p,
    .banner-text .banner-wrapper .banner-description-extended p {
        font-size: 20px;
    }

    .banner-text .banner-wrapper .banner-price {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .banner-text {
        flex-direction: column;
    }

    .banner-text .banner-header {
        max-width: 100%;
        border-bottom-left-radius: 0;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .banner-text .banner-wrapper {
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px;
        border-top-right-radius: 0;
    }

    .banner-text .banner-header div img {
        border-bottom-left-radius: 0
    }
}

@media (max-width: 576px) {
    .banner-text {
        text-align: center;
    }

    .banner-text .banner-wrapper .banner-content-button,
    .banner-text .banner-wrapper .banner-content {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }

    .banner-text .banner-wrapper .banner-button,
    .banner-text .banner-wrapper .banner-button a {
        width: 100%;
        justify-content: center;
    }

    .banner-text .banner-wrapper .banner-description-extended {
        padding-top: 15px
    }
}