.cta__flex {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.cta__red {
    background: #B6141D;
}

.cta__dark {
    background: #151515;
}

.cta__image {
    position: relative;
    height: 170px;
}

.cta__curve {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: auto;
}

.cta__content {
    text-align: center;
    padding: 36px 21px 16px;
    color: #fff;
}

.cta__red .cta__content *,
.cta__dark .cta__content * {
    color: #fff;
}

.cta__red .cta__content a:not(.btn),
.cta__dark .cta__content a:not(.btn) {
    background: linear-gradient(to bottom,#fff 0%,#fff 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 4px 2px;
}

.cta__red .cta__content .sub-heading{
    border-bottom: 1px solid #fff;
}

.cta__red .cta__content blockquote{
    border: 1px solid #fff;
}

.cta__red .cta__content ul li::before,
.cta__red .cta__content .sub-heading::after{
    background: #fff;
}

.cta__red .cta__content .btn-tertiary::after{
    color: #fff;
}

.cta__content h3 {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.cta__content p {
    margin-bottom: 0;
}

.cta__content .btn-primary {
    color: #fff;
}

.review-item {
    display: none;
}

.cta__content .btn-primary::before {
    background: #fff;
}

.cta__content .btn-primary::after {
    color: #B6141D;
}


.cta__dark .btn-secondary::after{
    background-color: #B6141D;
}

.cta.cta--half-overlay {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
    margin-bottom: var(--section-margins);
}

.cta--half-overlay{
    position: relative;
    z-index: 1;
}

.cta--half-overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background: #F6F7F7;
    left: 0;
    top: 0;
}

.flush-bottom.cta--half-overlay::before {
    top: unset;
    bottom: 0;
}

.cta__social-media ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cta__social-media ul li {
    padding: 0;
    margin: 0;
}

.cta__social-media ul li:before {
    display: none;
}

.cta__social-media ul li a {
    background: none;
    display: block;
    max-width: 271px;
}

.cta__social-media {
    padding: 60px 30px 30px;
    position: relative;
    background: #D2232A;
}

.cta__social-media img {
    height: auto;
    max-width: 401px;
    object-fit: contain;
    object-position: center;
    width: 100%;
    max-height: 64px;
}

.cta__content p:last-child {
    margin-bottom: 0;
}

.review-btn {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .cta__image {
        position: absolute;
        height: 100%;
        top: 0;
        right: 0;
        width: 263px;
    }

    .cta__curve {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        height: 100%;
    }

    .cta__content {
        text-align: left;
        padding: 40px 300px 47px 26px;
    }

    .cta__content p {
        margin-bottom: 0;
    }

    .cta__social-media {
        padding: 0 25px 0 65px;
        position: absolute;
        background: #D2232A;
        top: 0;
        right: 0;
        height: 100%;
    }

    .cta__social-media ul {
        height: 100%;
        justify-content: center;
        gap: 15px;
    }

    .cta__social-media ul li a {
        max-width: 209px;
    }
}

@media (min-width: 1200px) {
    .cta__image {
        width: 550px;
    }

    .cta__curve {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        height: 100%;
    }

    .cta__content {
        text-align: left;
        padding: 100px 582px 107px 74px;
    }

    .cta__content h3 {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .cta__content .btn-primary:hover {
        color: #B6141D;
        background: none;
    }

    .cta__social-media ul {
        gap: 12px;
    }

    .cta__social-media ul li a {
        width: 401px;
        max-width: unset;
    }

    .cta__social-media {
        padding: 0 74px 0 69px;
    }

    .cta--social-media .cta__content p {
        font-size: 16px;
    }

    .review-btn {
        margin-top: 45px;
    }

    .cta__social-media ul li a:hover {
        opacity: 0.9;
    }

    .cta__red .cta__content a:not(.btn):hover,
    .cta__dark .cta__content a:not(.btn):hover {
        background: linear-gradient(to bottom, rgba(210, 35, 42, .2) 0%, rgba(210, 35, 42, .2) 100%);
        background-size: 4px 50px;
        transition: background-size .01s;
    }


    .cta__red .cta__content a:not(.btn):hover{
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
        color: #B6141D;
    }


    .cta__dark .btn-secondary::before{
        background-color: #B6141D;
    }


    .cta__dark .btn-secondary:hover::before{
        background-color: #B6141D;
        width: 100%;
        height: calc(100% + 12px);
    }

    .cta__dark .btn-tertiary:hover::after{
        color: #fff;
    }

    .cta__red .cta__content .btn-tertiary:hover::after{
        color: #000;
    }
}