
.home__news{
    margin-top: 30px;
    width: 100%;

}

.home__news-container{
    width: 1400px;
    margin: 0 auto;

}


.home__news-name{
    width: 100%;
    text-align: center;

}


.home__news-name h3{
    font-size: 50px;
    font-weight: 700;
    color: #333333;
}
.home__news_wrapper {
    width: 100%;
    margin-top: 40px;

        display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news__element {
    width: 350px;
    height: 384px;
    border-radius: 20px;
    margin: 0px 10px;

}
.news__element-image {
    height: 192px;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
}
.news__element-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news__element-desc {
    width: 100%;
    height: calc(100% - 192px);
    padding: 17px;
}
.news__element-date {
    margin-top: 10px;
    text-align: left;
    width: 100%;
    color: #999999;
    font-size: 12px;
}
.news__element-name {
    margin-top: 15px;
    width: 100%;
    font-size: 17px;
    color: #333333;
    font-weight: 600;
    line-height: 24px;
}

@media only screen and (max-width: 1450px) {
   .home__news-container{
    width: 1200px;

   } 
}
@media only screen and (max-width: 900px) {
    .home__news-container{
        width: 100%;
    }
    .home__news_wrapper{
        align-items: center;
        flex-direction: column;
    }
}