.lastArticles{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 20px;
	margin-bottom: 70px;
}

.articleItem{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 19px 32px 35px;
	height: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position:right bottom ;

}
.articleItem{
	background-size: auto 100%  !important;
}
.articleItem .name{
	font-weight: 400;
	font-size: 30px;
	line-height: 35px;

}


.articleItem *{
	color: #fff;
}
.articleItem.white .name{
	text-shadow: 1px 1px 1px #000;
}
.articleItem .blackBorder.btnStyle {
	color: #fff;
}
.articleItem .blackBorder.btnStyle:before{
	background: linear-gradient(90.01deg, #fff 0.29%, #fff 48.45%, #fff 99.99%);
}





@media screen and (max-width:991px){
	.lastArticles .articleSlide:nth-child(2){
		display: none;
	}
	.lastArticles{
		grid-template-columns: repeat(2,1fr);
	}

}

@media screen and (max-width:600px){
	.articleItem{
		background-position: -1000px !important;
		height: auto;
	}
	.lastArticles{
		grid-template-columns: repeat(1,1fr);
	}
	.lastArticles .articleSlide:nth-child(2){
		display: block;
	}
	.articleItem .txtBlock{
		text-align: center
	}
	.articleItem .txtBlock br{
		display: none;
	}
	.articleItem .txtBlock .name{
		width: 100%;
	}
	.articleItem .txtBlock .txt{
		width: 100%;
	}
	.articleItem .more {
		margin: 0 auto;

	}
	.articleItem{
		padding: 19px 20px 20px;
	}
	.articleItem .name{
		font-size: 22px;
line-height: 24px;
margin-bottom: 15px;
	}


}

@media screen and (max-width:400px){
.articleItem .name {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 20px;
}

}