.alternating-blocks{
    width: 100%;
}
.ab-holder{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.ab-content-left, .ab-content-right{
    width: 48%;
    margin: 10px 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.ab-content-left h2, .ab-content-right h2{
    text-align: left;
}
.ab-content-left img, .ab-content-right img{
    width: 100%;
    object-fit: cover;
    height: -webkit-fill-available;
}

/* This is a hack to fix the image height issue in Safari */
@supports (-webkit-appearance: none) {
    .ab-content-left img, .ab-content-right img {
        height: auto;
    }
}
  


@media (width <= 850px) {
    .ab-content-left, .ab-content-right{
        width: 100%;
    }
    .ab-holder.reverse-col{
        flex-direction: column-reverse;
    }
    .ab-content-left img, .ab-content-right img{
        width: 100%;
        height: auto;
        object-fit: fill;
    }
  }
