#tlp_news {
    padding: 40px 20px;
}
#tlp_news,
#news_list,
#news_detail {
    overflow: hidden;
    position: relative;
}
#tlp_news>.decor {
    position: absolute;
    top: 0;
    right: 0;
}
#tlp_news>.decor>img {
    max-width: 600px;
}
#news_list .project-list-title {
    padding: 0 10px 10px 20px;
}
#news_list .project-list-title h1 {
    font-size: 18px;
    color: #fff;
    background-color: var(--lgreen);
    padding: 20px;
    line-height: 1;
    font-weight: normal;
    letter-spacing: 1px;
    font-family: 'rom';
}


#news_detail>.decor>img {
    z-index: -1;
    position: absolute;
    top: 0;
    right: -50px;
    max-width: 600px;
    display: block;
}
#news_main {
    padding: 0 20px;
}
#news_main .box-in,
.detail-title {
    justify-content: center;
}
#news_main .list-images {
    padding-bottom: 50px;
    margin: 0 -10px;
}
#news_main .list-images .list-images-in {
    padding: 10px;
}
#news_main .list-images .list-images-in img {
    width: 100%;
    display: block;
}


#news_other {
    padding-bottom: 30px;
}
#news_other .news-other-title h2 {
    padding: 20px;
    font-family: 'sab';
    color: var(--red);
    text-align: center;
    text-transform: uppercase;
}
/*grid*/
.news-list-grid {
    padding: 0 0 0 10px;
}

.news-list-grid ul li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-item-grid {
    border: 3px solid #00000000;
    overflow: hidden;
    background-color: #fff;
    height: calc(100% - 20px);
    margin: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 15px 10px -10px #a1a1a1;
    transition: 0.2s;
}
.news-item-grid:hover {
    border: 3px solid var(--lgreen);
    background-color: var(--lgreen);
}
.news-item-grid .image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.news-item-grid .image img {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}
.news-item-grid:hover .image img {
    transform: scale(1.1);
}
.news-item-grid .info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s;
}
.news-item-grid .info-in {
    display: flex;
    justify-content: space-between;
    flex: 1;
    align-items: center;
}
.news-item-grid h4 {
    line-height: 1.3;
    font-family: 'rom';
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: 0.2s;
}

.news-item-grid .read-more {
    padding-left: 15px;
}
.news-item-grid .read-more i {
    font-size: 20px;
    color: var(--red);
    transition: 0.2s;
}
.news-item-grid:hover h4,
.news-item-grid:hover .read-more i {
    color: #fff;
}
@media screen {}
/*ma-xl*/@media (max-width: 768px) {
    .news-item-grid {
        margin: 10px 5px;
    }
    .news-item-grid .info {
        padding: 10px;
    }
}
/*ma-xl*/@media (max-width: 568px) {
    #tlp_news {
        padding: 40px 10px;
    }
    #news_contact {
        padding: 20px;
    }
    .news-list-grid,
    #news_contact .form-site .form-site-full {
        padding: 0;
    }
    #news_main .list-images,
    #list_news_contact_in {
        margin: 0; 
    }
    .news-list-grid {
        padding: 0;
    }
    #news_list .project-list-title {
        padding: 20px 5px 0 5px;
    }
    
}