/* AICI VINE CA TEMPLATE DIN MODULUL DE SLIDERE*/
.featuredItems {
    padding: 10px 0;
    width: 100%;
    margin: 10px 0;
}
.featuredItems .featuredItem {
    max-width: 320px;
    width: 100%;
    float: left !important;
    overflow: hidden;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    margin: 0 12px 0 0 !important;
}
.featuredItems .featuredItem:nth-child(2n+2) {
    margin: 0 0 0 12px !important;
}
.featuredItems .featuredItem  .featuredImg {
    width: 100%;height: 150px; max-height: 150px; overflow: hidden;
}
.featuredItems .featuredItem  img { width: 100%; height: 100%; object-fit: cover; -moz-object-fit: cover; -webkit-object-fit: cover;}
.featuredItems .featuredItem  h3 {
    font-family: lato;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.featuredItems .featuredItem  a {
    display: block;
    text-decoration: none;
    color: #474747;
}

.featuredItems .featuredItem  a:hover {
    color: #00254A;
}



/*
iPhone 6 in landscape
*/
@media only screen

and (max-device-width : 667px)
and (orientation : landscape) {

    .featuredItems .featuredItem {
        float: left !important;
        /*margin: 0 !important;*/
        width: 48% !important;
        max-width: 50% !important;
        margin: 0 0.5% !important;
    }

}



/*
iPhone 6 in Portrait
*/

@media only screen

and (max-device-width : 667px)
and (orientation : portrait) {

    .featuredItems .featuredItem {
        float: none !important;
        margin: 0 !important;
        width: 100%: !important;
        max-width: 100% !important;
    }
    .featuredItems .featuredItem:nth-child(2n+2) {
        margin: 0 !important;
    }
}


/*
***  IPAD LANDSCAPE ***
*/

@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
.featuredItems .featuredItem {
    float: left !important;
}
}