/* !FOCUSED IMAGES */
/*-----------------------------------------*/


@media screen and (min-width: 300px) and (max-width: 699px) {

    .focuspoint {
        position: relative; /*Any position but static should work*/
        /*overflow: hidden;*/
    }

        .focuspoint img {
            /*position: absolute;*/
            left: 0;
            top: 0 !important;
            margin: 0;
            display: block;
            /* fill and maintain aspect ratio */
            width: auto;
            height: auto;
            min-width: 100%;
            min-height: 100%;
            max-height: none;
            max-width: none;
        }
}