.flex-review__container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.review-container {
    margin-top: -100px;
    background-image: url('../images/wrap-ncaa.svg');
}


.hero-review {
    max-width: 1200px;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0px 60px 0px;
    position: relative;
}

.review-highlights {
    max-width: 1200px;
    border: 1px solid #D6E5FF;
    background: #fff;
    border-radius: var(--radius-2xl, 16px);
    box-shadow: 0px 4px 32px 0px rgba(134, 157, 214, 0.18);
    padding: 10px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    margin: 0;
}

.review-highlight__button {
    border: 1px solid #D6E5FF;
    border-radius: 56px;
    background: #5864FF;
    box-shadow: 0px 4px 14px 0px rgba(142, 171, 246, 0.80);
    padding: 18px 62px;
    font-size: 16px;
    color: #fff;
    font-style: normal;
    font-weight: 700;
}

.review-highlight__button:hover {
    background: #fff;
    color: #5864FF;
    font-weight: 700;
}

.h1-review__sb {
    color: #363636;
    text-align: left;
    font-family: "Noto Sans";
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 70px;
}

.review-author {
    padding: 15px 0 15px 0;
    color: #82858A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.review__title-text {
    margin: 0 0 15px 0;
    padding: 10px 0px;
}

.review-bonus__sb {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 10px 0;
}

.bonus-details {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

.review-image__sb {
    border: 1px solid #D6E5FF;
    border-radius: 16px;
    background: #5864FF;
}

@media (orientation: portrait) and (max-width: 414px) {
    .review-highlights {
        max-width: 1200px;
        border: 1px solid #D6E5FF;
        background: #fff;
        border-radius: var(--radius-2xl, 16px);
        box-shadow: 0px 4px 32px 0px rgba(134, 157, 214, 0.18);
        padding: 10px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 15px;
        align-items: flex-start;
        margin: 0;
        flex-wrap: nowrap;
    }
    
    .review-highlight__button {
        border: 1px solid #D6E5FF;
        border-radius: 56px;
        background: #5864FF;
        box-shadow: 0px 4px 14px 0px rgba(142, 171, 246, 0.80);
        padding: 18px 62px;
        font-size: 16px;
        color: #fff;
        font-style: normal;
        font-weight: 700;
        width: 100%;
        align-self: center;
        text-align: center;
    }

    .review-bonus__sb {
        font-size: 17px;
        font-weight: 500;
        margin: 0 0 10px 0;
    }
    
    .bonus-details {
        font-size: 16px;
        font-weight: 700;
    }
    
    .review-image__sb {
        border: 1px solid #D6E5FF;
        border-radius: 16px;
        background: #5864FF;
        width: 100%;
    }
}