/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.callouts {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.callout-texture {
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
    width: auto;
    max-width: 50%;
    height: auto;
    max-height: 100%;
    pointer-events: none;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.callouts__wrap .row {
    gap: 32px 0;
}

.callouts .row{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

.callouts__wrap,
.callouts__content{
    z-index: 2;
    position: relative;
}

.callout {
    background: var(--gray);
    border-radius: 20px;
    padding: 32px 32px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.bg-light-purple .callout {
    background: var(--medium-purple);
}

.bg-grey .callout {
    background: var(--white);
}

.callout:last-child {
    margin-bottom: 0;
}

.callout h3 {
    margin: 0;
    font-weight: 700;
}

.callouts__image-col {
    border-radius: 20px;
    background: -o-radial-gradient(0.97% 2.41%, 99.03% 340.91%, #793DF0 0%, #00558C 50%, #0085CA 100%);
    background: radial-gradient(99.03% 340.91% at 0.97% 2.41%, #793DF0 0%, #00558C 50%, #0085CA 100%);
    overflow: hidden;
    padding: 0;
    position: relative;
    height: 360px;
}

.callouts__image {
    max-width: initial;
    width: 100%;
    /* height: 265px; */
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
   
    margin: 0 0 -2px auto;
    display: block;
    -o-object-position: center;
       object-position: center;
}

.callouts__image--center {
    padding: 0 0;
}

.callouts__image--center .callouts__image {
    width: 155px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 auto;
    display: block;
    -o-object-position: top;
       object-position: top;
}

.section-top-content {
    margin-bottom: 32px;
}

.section-top-content :last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .callouts__wrap .row {
        gap: 42px 0;
    }

    .section-top-content {
        margin-bottom: 64px;
    }

    .callouts__image-col {
        max-width: 50%;
        margin: 0 auto;
        height: 360px;
    }

    .callouts__image {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }

    .callouts__image--center {
        padding: 0 0;
    }

    .callouts__image--center .callouts__image {
        width: 227px;
        height: auto;
    }

    .callout-texture {
        display: block;
        top: auto;
        bottom: 0;
        max-width: 60%;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
}

@media( min-width : 800px ) {
    .callouts__image-col {
        height: 420px;
    }
}

@media (min-width: 1200px) {

    .callouts .row{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .callouts .row.flex-opposite{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }

    .callout h3 {
        margin-bottom: 8px;
    }

    .callout p {
        margin-bottom: 22px;
    }

    .callouts__image-col {
        padding: 0;
        margin-top: 0;
        height: 100%;
        max-width: 100%;
    }

    .callouts__image {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        margin: 0 0 -2px auto;
        border-radius: 20px 0 0 20px;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
                transform: translate(0, -50%);
    }

    .callouts__image--center .callouts__image {
        width: 616px;
        height: auto;
    }
}