@import url("https://fonts.googleapis.com/css2?family=Jost:ital@0;1&display=swap");

/* @font-face {
	font-family: "Jost";
	src: url("../fonts/Jost-Regular.woff2") format("woff2"),
		url("../fonts/Jost-Regular.woff") format("woff");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
} */
.fixed-cookie {
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	z-index: 20;
  }
  
  #cookiePopup {
	background-color: #ffffff;
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	font-size: 13px;
	width: 70vw;
	max-width: 30em;
	box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
	font-family: 'Commissioner', sans-serif;
	text-align: justify;
	line-height: 1.8em;
	padding: 1.4em 1.4em;
	border-radius: 6px;
	transition: all 0.5s ease-in;
	z-index: 20;

  }

  #cookiePopup p {
	text-align: left;
	margin: 0.4em 0;
  }
  #cookiePopup button {
	background-color: #3d7dd3;
	border: none;
	color: #ffffff;
	font-size: 1.1em;
	padding: 0.5em 1em;
	display: block;
	position: relative;
	margin: auto;
	border-radius: 5px;
	float: left;
  }
  #cookiePopup a {
	color: #3d7dd3;
  }
  .hide_m {
	visibility: hidden;
	bottom: 0;
	right: 2em;
  }
  .show_m {
	visibility: visible;
	bottom: 2em;
	right: 2em;
  }
.actions-items {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 60px;
}
.actions-items li {
	flex: 1 1 calc(100% / 3);
	width: calc(100% / 3);
	max-width: calc(100% / 3 - 20px);
	margin-bottom: 0;
}
.promo__item {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	font-family: "Jost";
	color: initial;
	background: #edf5ff;
	border: 1px solid #edf5ff;
	border-radius: 24px;
	overflow: hidden;
}
.promo__item:hover,
.promo__item:active,
.promo__item:focus {
	text-decoration: none;
}
.promo__item-bg {
	height: 210px;
}
.promo__item-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.promo__item-desc {
	display: flex;
	flex-direction: column;
	height: calc(100% - 210px);
	padding: 24px 32px;
}
.promo__item-info {
	margin-bottom: 24px;
	font-family: 'Jost';
	font-size: 18px;
	line-height: 23.65px;
	color: #4D6C95;
}
.promo__item-info h3 {
	display: block;
	margin: 0 0 16px;
	font-family: 'Jost';
	font-weight: 400;
	font-size: 28px;
	line-height: 30.8px;
	color: #2E5FA1;
}
.promo__item-info h3 strong {
	font-weight: 600;
}
.promo__item-info ul,
.promo__item-info p {
	width: 100%;
	font-size: 18px;
	line-height: 23.65px;
	color: #4d6c95;
	padding-left: 0;
	margin: 0;
}
.promo__item-info ul li {
	position: relative;
	padding-left: 17px;
	margin-bottom: 0;
}
.promo__item-info ul li:before {
	position: absolute;
	content: "";
	top: 6px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #4d6c95;
}
.promo__item-price {
	margin-bottom: 16px;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.2;
	background: -webkit-linear-gradient(90deg, #FDC435 0%, #FBB01B 50%, #F99C00 100%);
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.promo__item-detail {
	margin-top: auto;
}
.promo__item-detail-button {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 18px;
	line-height: 0.89;
	color: #fff;
	text-align: center;
	padding: 16px 32px;
	background: linear-gradient(90deg, #FDC435 0%, #FBB01B 50%, #F99C00 100%);
	border-radius: 10px;
	white-space: nowrap;
}
.promo__item-detail-date {
	font-size: 16px;
	line-height: 1.2;
	color: #2e5fa1;
	margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
	.actions-items li {
		flex: 1 1 50%;
		width: 50%;
		max-width: calc(50% - 7.5px);
	}
}

@media screen and (max-width: 986px) {
	.promo__item-bg {
		display: none;
	}
	.promo__item-desc {
		height: 100%;
	}
	.promo__item-info {
		max-width: none;
	}
	.promo__item:before {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		left: auto;
		width: 107px;
		height: 46px;
		background: url(../images/action-banner-bg-mobile.png) no-repeat 50% 50%/cover;
	}
	.promo__item * {
		position: relative;
		z-index: 1;
	}
}

@media screen and (max-width: 560px) {
	.promo__item-desc {
		padding-inline: 16px;
	}
	.promo__item-price {
		position: static;
	}
	.promo__item-detail-button {
		width: 100%;
		padding-inline: 16px;
	}
	.promo__item-detail-date {
		font-size: 14px;
		line-height: 1;
	}
}

@media screen and (max-width: 500px) {
	.actions-items li {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
	}
}