.callout-section{
    min-height: 725px;
    height: 1px;
}
.callout-section .content-wrapper{
    height:100%;
    display: flex;
    align-items: center;
    padding: 0 max(15px, calc(50vw - 600px));
    position: relative;
}
.callout-section .content-wrapper .section-content{
    width: 40vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 5;
}
.callout-section .content-wrapper.image-right .section-content{
    margin-right: 71%;
}
.callout-section .content-wrapper.image-left .section-content{
    margin-left: 71%;
}
.callout-section .content-wrapper .section-content h2{
    margin-bottom: 25px;
}
.callout-section .content-wrapper .section-content > a{
    display: inline-block;
    margin-top:60px;
}

.callout-section .content-wrapper .section-media{
    width: 60vw;
    height: 100%;
    position: absolute;
    right: 0;
}
.callout-section .content-wrapper.image-right .section-media{
    right: 0;
}
.callout-section .content-wrapper.image-left .section-media{
    left: 0;
}
.callout-section .content-wrapper .section-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.callout-section .content-wrapper.full-background-image{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.callout-section .content-wrapper.full-background-image .section-content{
    max-width: 800px;
    width: 100%;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}


@media (max-width:1575px){
}
@media (max-width:1024px){
}
@media (max-width:768px){
    .callout-section{
        min-height: 400px;
        height:unset;
    }
    .callout-section .content-wrapper.full-background-image{
        padding: 75px 15px;
    }
    .callout-section .content-wrapper{
        flex-direction: column-reverse;
    }
    .callout-section .content-wrapper .section-content{
        margin: 0!important;
        width: 100%;
    }
    .callout-section .content-wrapper .section-media{
        position: relative;
        width: 100%;
    }
    .callout-section .content-wrapper .section-content h2{
        margin-bottom: 0;
    }
    .callout-section .content-wrapper .section-content > a{
        margin-top: 40px;
    }
}