
/*news*/
.banner__news{
    background-image: url('../img/image-footer.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.banner__news h1{
    font-size: 45px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}
.banner__news::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #6564604d;
    z-index: -1;
}
/*end news*/

/*main news*/
.news{
    padding: 65px 0;
}
.main__news{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}
.list__news{
    width: 32%;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
	gap: 30px;
}
.list__news:last-child{
    gap: 30px;
}
.img__news{
    position: relative;
}
.img__news p{
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 12px;
    color: #7e7e7e;
    background-color: #fff;
    letter-spacing: 1px;
    padding: 5px 10px;
    text-transform: uppercase;
}
.img__news img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.news__des{
    padding: 30px;
    border: 1px solid #f1f1f1;
}
.news__des h2{
    font-size: 22px;
    color: #666666;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
}
.news__des h2 a{
	color: #666666;
}
.news__des h2::before{
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #f1f1f1;
    left: 0;
    bottom: -20px;
}
.news__des .desc{
    font-size: 14px;
    color: #7e7e7e;
    letter-spacing: 1px;
}
.btn__read__news{
    display: inline-block;
    padding: 10px 30px;
    background-color: #2C3E50;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
}
.btn__check__news{
    display: block;
    /*width: 100%;*/
    padding: 50px;
    background-color: #d3b49d;
    font-size: 25px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}

.title__news{
    padding: 50px;
    background-color: #2C3E50;
    text-align: center;
}
.title__news a{
    position: relative;
    font-size: 25px;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 36px;
}
.title__news a::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
}
.news__author{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.news__author img{
    width: 20px;
    height: 20px;
    object-fit: cover;
    display: block;
}
.news__author span{
    font-size: 11px;
    letter-spacing: 1px;
    color: #fff;
}
.list__img__news{
    position: relative;
}
.list__img__news p{
    position: absolute;
    bottom: 20px;
    right: 0;
	width: 95%;
    background-color: #fff;
    padding: 10px;
}
.list__img__news p a{
    font-size: 16px;
    color: #7e7e7e;
    letter-spacing: 1px;
}
.list__img__news img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	max-height: 500px;
}
/*end main news*/

@media only screen and (max-width: 991px){
    .main__news{
        gap: 30px;
    }
    .list__news{
        width: 100%;
    }
	.news__des{
		padding: 20px;
	}
	.title__news{
		padding: 30px;
	}
	.news__des h2{
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767.98px){
    .banner__news h1{
        font-size: 40px;
    }
}