.header-news{
    height: 30vh;
    margin-bottom: 20px;
    background-color: #EEE;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.view-news h2{
    color: #21262C;
    font-size: 37px;
    font-weight: bold;
    margin-bottom: 15px; 
    padding: 0px 60px;
    padding-bottom: 10px;
    margin: auto -60px;
    margin-bottom: 20px;
    border-bottom: 2px solid #EAEAEA;
}

.content-news{
    background-color: #fff;
    font-size: 23px;
    padding: 20px 50px;
}

.content-news img{
    height: 40vh;
    float: none;
    cursor: pointer;
}

.content-news img.show{
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 60%;
    height: auto;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
}

.content-news:after{
    content: "";
    display: block;
    clear: both;
}

@media only screen and (max-width: 1920px){
    
    .view-news h2{
        font-size: 30px;
    }
    
    .content-news{
        font-size: 20px;
    }
    
}

@media only screen and (max-width: 1300px){
    
    .content-news img{
        width: 100%;
        height: auto;
    }
    
    .view-news h2 {
        font-size: 30px;
        margin-bottom: 15px;
        padding: 0px 20px;
        padding-bottom: 10px;
        margin: auto -20px;
        margin-bottom: 20px;
    }
    
}

@media only screen and (max-width: 768px){
    
    .view-news h2 {
        font-size: 25px;
        margin: 0px;
        padding: 0px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .content-news {
        font-size: 18px;
        padding: 20px 25px;
    }
    
    .content-news p:first-child{
        margin-top: 0px;
    }
    
    .content-news img{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }
    
}