﻿
/*Images on overview page */

@media (min-width: 768px) {

    .wide {
        width: 100%;
        height: 150px;
        max-height: 200px;
        display: table-caption;
    }
    
   .wide > .toggle-image {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        height: 200px;
        -moz-transition: opacity 5s ease-in-out;
        -o-transition: opacity 5s ease-in-out;
        -webkit-transition: opacity 5s ease-in-out;
        transition: opacity 5s ease-in-out;
        background-position: center 32%;
        background-repeat: no-repeat;
        opacity: 0;
        background-size: cover;
    }
    
}
