/* ===============================
   IMAGE & TEXT WRAP
================================ */

.image-text-wrap {
    margin: 125px 0;
}

/* IMAGE */
.image-text-wrap .image-wrap {
    float: left; /* default */
    max-width: 550px;
    margin: 0 30px 20px 0;
}

.image-text-wrap.image-right .image-wrap {
    float: right;
    margin: 0 0 20px 30px;
}

.image-text-wrap .image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* CLEAR AFTER FULL BLOCK */
.image-text-wrap::after {
    content: "";
    display: block;
    clear: both;
}

.image-wrap.size-small { max-width: 30%; min-width: 200px; }
.image-wrap.size-medium { max-width: 40%; min-width: 300px; }
.image-wrap.size-large { max-width: 50%; min-width: 350px; }

.my-custom { margin: 35px 0; }

/* MOBILE */
@media (max-width: 768px) {
    .image-text-wrap .image-wrap {
        float: none;    
        max-width: 100%;
    }

    .image-text-wrap img {
        padding-bottom: 35px;
    }
}