#news *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#news{
    width: 100%;
    height: auto;
    position: relative;
}

#news .news-row{
    width: 100%;
    height: 402px;
    overflow: hidden;
    position: relative;
}
#news .news-row:after{
    display: block;
    content: "";
    clear: both;
}

#news .news-row.odd .news-column .column-news-titles{
    background-color: #00356B;
}
#news .news-row.even .news-column .column-news-titles{
    background-color: #63B9CD;
}
#news .news-row.odd .news-column .column-news-titles h2{
    color: #63B9CD;
}
#news .news-row.even .news-column .column-news-titles h2{
    color: #00356B;
}
#news .news-column{
    width: 50%;
    height: 100%;
    float: right;
    position: relative;
    display: block;
}
#news .news-column h2{
    font-size: 14px;
    margin: 0 0 4px 0;
    padding: 0;
}
#news .news-column h2 .date-icon,
a.btn-more img{
    width: 14px;
    height: 14px;
    margin:0 5px -4px 0;
}

#news .news-column h1 a{
    font-size: 18px;
    margin: 0;
    color: #fff;
    padding: 0;
}
#news .news-column h1 a:hover{
    text-decoration: underline;
}

#news .news-column .column-news-prev,
#news .news-column .column-news-titles{
    height: 190px;
    width: 100%;
    padding: 30px;
    overflow: hidden;
}

#news .news-column .column-news-prev{
    color: #00356B;
}
#news .news-column .column-news-image{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size:auto 100%;
}

a.btn-more{
    display: block;
    position: absolute;
    right: 30px;
    bottom: 15px;
    color: #00356B;
    text-transform: uppercase;
}
a.btn-more img{
    width: 21px;
    height: 21px;
    margin:0 0 -5px 5px;
}
a.btn-more:hover img{
    transform: scale(1.1);
    -ms-transform:  scale(1.1);
    -webkit-transform:  scale(1.1);
    -moz-transform:  scale(1.1);
}

@media (max-width: 650px){

    #news .news-row{
        height: auto;
    }

    #news .news-column{
        width: 100%;
        float: none;
         height: auto;
         position: relative;
         display: block;
    }
    #news .news-column .column-news-image{
        height: auto;
        position: relative;
        left: 0;
    }
    #news .news-column  .introimage{
        display: block;
        width: 100%;
        height: auto;
    }
    
}