.call-out-section-with-image-left {
    position: relative;
    margin: 40px 0;
}

.call-out-section-with-image-left:before,
.call-out-section-with-image-left:after {
    content: "";
    display: none;
    position: absolute;
    width: 100%;
    height: 20px;
    background-color: var(--color-white);
}

.call-out-section-with-image-left:before {
    top: 0;
}


.call-out-section-with-image-left:after {
    bottom: 0;
}

@media (min-width: 768px) {
    .call-out-section-with-image-left:before,
    .call-out-section-with-image-left:after {
        display: block;
    }
}

.call-out-section-with-image-left .container {
    position: relative;
    z-index: 2;
}

.call-out-section-with-image-left__row {
    display: flex;
    flex-wrap: wrap;    
    align-items: center;
    position: relative;
}

.call-out-section-with-image-left__image {
    widtH: 140px;
}

.call-out-section-with-image-left__image img {
    width: 100%;
    height: auto;
}

.call-out-section-with-image-left__content {
    width: calc(100% - 140px);
    padding: 50px 0 50px 20px;
    text-align: left;
}

@media (min-width: 768px) {
    .call-out-section-with-image-left__content {
        text-align: center;
    }
}

@media (min-width: 1025px) {
    .call-out-section-with-image-left__content {
        padding: 50px 0 50px 20px;
    }
}

@media (max-width: 767px) {
    .call-out-section-with-image-left__content br {
        display: none;
    }
}

.call-out-section-with-image-left__content p {
    font-family: var(--font-primary);
    color: var(--color-white);
    font-weight: 400;
    font-size: 22px;
}

.call-out-section-with-image-left__content p strong {
    font-weight: bold;
}