/* .row.image{
    margin-right: auto !important;
    margin-left: auto !important;
    width: 65%;
    display: flex;
    justify-content: center;
}

.row.image img.image-small{
    width: 40%;
}
.row.image img.image-medium{
    width: 70%;
}
.row.image img.image-large{
    width: 100%;
} */

.iv-page-container{
    margin: 0 auto;
 } 
 .iv-page-container.iv-container-large{
    width: 65%;
 }
 .iv-page-container.iv-container-medium{
    width: 50%;
 }
 .iv-page-container.iv-container-small{
    width: 35%;
 }

 .image-image{
    width: 100%;
    border-radius: 40px;
 }

 .image-video{
    border-radius: 40px;
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;

 }
 .image-video::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.2);
    z-index: 0;
    border-radius: 40px;
    transition: all .3s ease-in-out;
 }
 .image-video:hover::after{
    background: rgba(0,0,0,.5);
 }
 .image-video::before{
    content: "";
    font-weight: 400;
    display: block;
    width: 30%;
    height: 30%;
    position: relative;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background: url('/wp-content/themes/iBUILDiT/assets/play_icon.svg') no-repeat !important;
    background-position: center !important;
    z-index: 1;
}

 .image-video.video-small{
    height: 29vw;
 }

 .image-video.video-medium{
    height: 37vw;
 }

 .image-video.video-large{
    height: 45vw;
 }



 @media only screen and (max-width:1024px){
    .image-video.video-medium {
        height: 42vw;
    }
    .image-video.video-large{
        height: 50vw;
     }
 }
 @media only screen and (max-width:900px){
   .iv-page-container.iv-container-large{
      width: 75%;
   }
   .iv-page-container.iv-container-small{
      width: 45%;
   }
 }
 @media only screen and (max-width:767px){
    .iv-page-container.iv-container-small{
        width: 55%;
    }
    .image-video.video-small {
        height: 35vw;
    }
 }
@media only screen and (max-width:540px){
    .iv-page-container.iv-container-large{
      width: 80%;
    }
     .iv-page-container.iv-container-medium,
     .iv-page-container.iv-container-small{
        width: 75%;
     }
     .image-video.video-small {
        height: 45vw;
    }
    .image-video.video-medium{
            height: 46vw;
    }
}

@media only screen and (max-width:425px){
    .iv-page-container.iv-container-large,
     .iv-page-container.iv-container-medium,
     .iv-page-container.iv-container-small{
        width: 85%;
     }
     .image-video.video-small {
        height: 50vw;
    }
    .image-video.video-medium {
        height: 55vw;
    }
    .image-video.video-large{
        height: 57vw;
     }
}