.promo-block{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 30px;
	margin-bottom: 60px;
	min-height: 220px;
}
.promo-content{
	position: relative;
}
.promo-content__name{
	color: #000;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
	margin: 30px 0 20px 0;
	line-height: 28px;
}
.promo-content__text{
	color: #000;
	font-size: 16px;
	line-height: 24px;
}
.promo-content__img{
	max-width: 100%;
}
.promo-content__data-end{
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 32px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	background: rgba(0, 0, 0, 0.5);
	line-height: 28px;
}
.promo-filter{
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}
.promo-filter > *{
	cursor: pointer;
	padding: 7px 16px;
	border: 1px solid #C8C8C8;
	line-height: 24px;
	font-size: 16px;
	color: #0091CC;
}
.promo-filter__active{
	color: #44C69A;
	border: 1px solid #44C69A;
}
.promo-block .promo-item.promo-hide{
	display: none;
}
/* div[rel="closed"]{
	display: none;
} */
@media screen and (max-width: 1200px){
	.promo-content__name {
		font-size: 16px;
		line-height: 20px;
	}
	.promo-content__text{
		font-size: 14px;
		line-height: 20px;
	}
}
@media screen and (max-width: 768px){
	.promo-content__name{
		margin: 20px 0 15px 0;
	}
}
@media screen and (max-width: 560px){
	.promo-block{
		grid-template-columns: repeat(1, 1fr);
	}
}