.news-media-item {
	width: calc(50% - 30px);
	margin: 0 15px;
	position: relative;
	height: 270px;
	overflow: hidden;
	margin-bottom: 20px;
}

.news-media {
	margin: 40px 0 80px;
}

.news-media-list {
	margin: 0 -15px;
}
.news-media-name {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 27px 43px;
	z-index: 2;
	font-weight: 700;
	font-size: 22px;
	line-height: 130%;
	text-transform: uppercase;
	color: #FFFFFF;
}

.news-media-name:before {
	content: '';
	position: absolute;
	width: 14px;
	height: 25px;
	background: url("img/arr.svg") center no-repeat;
	right: 25px;
	top: calc(50% - 12px);
}

.news-media-back {
	background-color: rgba(136, 156, 174, 0.8);
	background-blend-mode: multiply;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: 0.3s;
	background-size: cover;
}
.news-media-item:hover .news-media-back {
	transform: scale(1.1);
}
.news-media-item:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 136px;
	background: linear-gradient(180deg, #256FB4 0%, rgba(37, 111, 180, 0) 100%);
	transform: rotate(180deg);
	z-index: 2;
}
.news-media-item::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	border: 12px solid transparent;
	border-right: 12px solid #fff;
	border-bottom: 12px solid #fff;
	z-index: 5;
}

@media (max-width: 768px){
	.news-media-item {
		width: calc(100% - 30px);
		margin: 0 15px 30px;
		position: relative;
		height: 150px;
		overflow: hidden;
	}
	.news-media-item::after {
		content: '';
		position: absolute;
		right: 0;
		bottom: 0;
		border: 7px solid transparent;
		border-right: 7px solid #fff;
		border-bottom: 7px solid #fff;
		z-index: 5;
	}
	.news-media-name {
		position: absolute;
		width: 100%;
		bottom: 0;
		left: 0;
		padding: 22px 20px;
		z-index: 2;
		font-weight: 700;
		font-size: 18px;
		line-height: 130%;
		text-transform: uppercase;
		color: #FFFFFF;
	}
	.news-media {
		margin: 30px 0 30px;
	}
}