.promotions{
	display: flex;
	flex-direction: column;

	padding-left: 20px;
	padding-right: 20px;

	margin-top: 73px;
	gap: 10px;

	margin-bottom: 30px;
}
.promotion--item{
	height: 395px;

	text-decoration: unset;
}
.promotion--item:hover{
	text-decoration: none;
}
.promotion--item_image{
	overflow: hidden;
}
.promotion--item_image>img{
	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: all 0.3s ease;
}
.promotion--item:hover .promotion--item_image>img{
	transform: scale(1.1);
}
.promotion--item--body{
	height: 330px;
	position: relative;

	display: flex;
	align-items: flex-end;
}
.promotion--item--action{
	height: 65px;
	background-color: #744A9E;

	display: flex;

}
.promotion--item_image{
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
}
.promotion--item_title{
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	padding-left: 30px;
}
.promotion--item_title>span{
	font-family: Manrope;
	font-weight: 600;
	font-size: 16px;
	line-height: 125%;
	letter-spacing: 0;
	color: #FFFFFF;
}
.promotion--item--action_link{
	text-decoration: unset;
	width: 100%;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.promotion--item--action_link>span{
	font-family: Manrope;
	font-weight: 600;
	font-size: 12px;
	line-height: 125%;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #FFFFFF;
	position: relative;
	left: 30px;
}
.promotion--item--action_link--arrow{
	width: 40px;
	height: 40px;
	background-color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	right: 20px;
}

.promotions-action{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;

	margin-top: 28px;
}
.promotions-action_open-popup{
	width: 179px;
	height: 55px;
	background-color: #EF4A85;
	font-family: Manrope;
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
	color: #FFFFFF;

	display: flex;
	align-items: center;
	justify-content: center;

	text-decoration: unset;
}
.promotions-action_open-popup:hover,
.promotions-action_open-popup:active{
	color: #FFFFFF;
	text-decoration: none;
}
.promotions-action-popup{
	width: 95%;
	max-width: 1520px;
}
#promotions-action-popup{
	font-family: Manrope;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: 0;

	width: 95%;
	max-width: 1520px;
}
.promotions-action-popup-image{
	width: 100%;
	height: 220px;
	max-width: 220px;
}
.promotions-action-popup-image>img{
	width: 100%;
	height: 100%;
}
.promotions-action-popup-block{
	display: flex;
	flex-direction: column;
	gap: 15px;
}
@media(min-width: 375px){
	.promotion--item_title>span{
		font-size: 20px;
	}
}
@media(min-width: 576px){
	.promotions{
		flex-direction: row;
		flex-wrap: wrap;

		padding: 0;
	}
	.promotion--item{
		width: calc(50% - 5px);
	}
	.promotion--item_title>span {
		font-size: 16px;
	}
	.promotions{
		margin-bottom: 40px;
	}
	.promotions-action-popup-block{
		flex-direction: row;
		gap: 15px;
	}
}
@media(min-width: 768px){
	.promotion--item_title>span {
		font-size: 20px;
	}
	.promotions{
		margin-bottom: 40px;
	}
}
@media(min-width: 991px){
	.promotion--item{
		width: calc(33% - 5px);
	}
	.promotions{
		margin-bottom: 50px;
	}
}
@media(min-width: 1520px){
	.promotion--item{
		width: 728px;
		height: 412px;
	}
	.promotion--item_title>span{
		font-size: 28px;
	}
	.promotion--item--action_link>span{
		font-size: 16px;
	}
	.promotions{
		gap: 24px;
		margin-top: 142px;
		margin-bottom: 140px;
	}
	.promotion--item--body{
		height: 332px;
	}
	.promotion--item--action{
		height: 80px;
	}
}
@media(min-width: 1920px) {
	.promotion--item {
		width: 748px;
		height: 412px;
	}
}