.main-news {
    width: 70vw;
    height: 50vh;
    margin: 10% auto 0 auto
}

.head-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2%;
}

.content-news {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-news {
    flex: 1;
}

.image-news img {
    width: 80%;
}

.text-news {
    flex: 1;
    color: #000;
    height: 100%;
}

.header-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: red; */
}

.title-news {
    font-size: 1.3rem;
    font-weight: 500;
    margin-right: 5%;
}

.view {
    width: 40%;
    margin-right: 5%;
    top: 0;
    /* background-color: aqua; */
}

.view .fa-long-arrow-alt-right {
    font-size: 20px;
    padding-left: 5px;
}

.desc-news {
    font-size: 1.2vw;
    margin: 5% 0 5% 0;
}

.timestamps {
    font-size: 16px;
    font-weight: 300;
}

/* START OTHER NEWS */

.news-container {
    margin: 10% 5px 5% 5px;
    padding: 0;
    left: 2%;
}

.news-container .images-news:hover {
    box-shadow: 5px 5px #375977;
    
}

.news-container .images-news {
    width: 80%;
    height: 70%;
    /* background-image: url("../img/slide_2.jpg"); */
    background-size:cover;
    border-radius: 5px;
    transition: 0.3s;
}

.img1 {
    background-image: url(../img/news/top10-2.jpg);
}

.img2 {
    background-image: url(../img/news/olympiad.jpg);
}
.img3 {
    background-image: url(../img/news/DrSumonta2.jpg);
}
.img4 {
    background-image: url(../img/news/year4.jpg);
}

.name-news {
    position: absolute;
    width: 80%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    padding-top: 10%;
    padding-bottom: 5%;
    border-radius: 0 0 5px 5px;
    bottom: 30%;
    color: white;
}

.name-news:hover {
    cursor: pointer;
}

.viewall {
    display: flex;
    width: 100%;
    justify-items: center;
    justify-content: center;
    margin: 0px 0 100px 0;
}

.viewallnews {
    background-color: white;
    border: 2px solid #375977;
    color: #375977;
    border-radius: 40px;
    padding: 0.3em 0.8em;
    transition: .3s;
}

.viewallnews:hover {
    border: none;
    color: white;
    background-color: #375977;
    border: 2px solid #375977;
    padding: 0.3em 0.8em;
}

@media screen and (max-width: 767px) {
    .main-news {
        display: none;
    }
    .news-container {
        left: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    .name-news {
        width: 97%;
    }

    .news-container .images-news {
        width: 97%;
    }
}