@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@700;800&family=Inter:wght@400;600;700&display=swap");

.prices {
	background: #F1F1F1;
	padding: 140px 0;
	border-bottom-left-radius: 48px;
	border-bottom-right-radius: 48px;
	font-family: "Inter", sans-serif;
	position: relative;
	z-index: 1;
/* 	display: none; */
}

.prices__list {
	display: flex;
	gap: 8px;
	justify-content: space-between;
}

.prices__item {
	flex: 0 0 calc(33.3% - 5px);
	border: 1px solid #fff;
	border-radius: 24px;
	background: #fff;
	padding: 32px;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease 0s;
}

.prices__item:hover {
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
	z-index: 2;
}

.prices__item.active {
	border: 1px solid #EF5DA8;
}

.prices__item>img {
	width: 100px;
	height: 100px;
	margin-bottom: 32px;
}

.prices__item>h4 {
	margin-bottom: 12px;
	font-size: 48px;
	font-weight: 800;
	flex: 1 1 auto;
	font-family: "Assistant", sans-serif;
}

.prices__item>h5 {
	font-size: 16px;
	color: #797676;
	margin-bottom: 48px;
}

.prices__item>ul {
	margin-bottom: 48px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.prices__item>ul li {
	font-size: 18px;
	font-weight: 600;
	padding-right: 40px;
	position: relative;
}

.prices__item>ul li.no-incl {
	opacity: 0.3;
}

.prices__item>ul li::before {
	content: "";
	background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="18" fill="none" viewBox="0 0 24 18"><path stroke="%23242424" stroke-linecap="round" stroke-width="4" d="m2.5 8 6.908 6.501a2 2 0 0 0 2.943-.22L22 2"/></svg>');
	width: 24px;
	height: 18px;
	position: absolute;
	right: 0;
	top: 0;
	background-repeat: no-repeat;
}

.prices__item>strong {
	margin-bottom: 12px;
	font-size: 56px;
	font-weight: 800;
	display: flex;
	flex-direction: row;
	gap: 8px;
	line-height: 1;
	font-family: "Assistant", sans-serif;
}

.btn {
	font-weight: 700;
	font-size: 20px;
	border-radius: 50px;
	text-transform: uppercase;
	height: 50px;
	min-width: 156px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
	padding: 0 20px;
}

.btn:hover {
	border: 1px solid #e53a7b;
	background-color: #e53a7b;
	color: #fff;
}

.btn-black {
	border: 1px solid #1F1F1f;
	background-color: #1F1F1f;
	color: #fff;
}

.btn-pink {
	background-color: #E65AA1;
	color: #fff;
}

.btn-prices {
	font-size: 16px;
	font-family: "Assistant", sans-serif;
}

.sc-head {
	display: flex;
	flex-direction: column;
	padding-bottom: 74px;
}

.sc-head_center {
	max-width: 680px;
	align-items: center;
	margin: 0 auto;
	text-align: center;
}

.sc-head h3 {
	margin-bottom: 12px;
	font-size: 24px;
	color: #797676;
	position: relative;
}

.sc-head h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
}

@media (max-width: 998px) {
	.prices__list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 24px;
	}

	.prices__item {
		flex: 0 0 calc(50% - 16px);
	}
}

@media (max-width: 768px) {
	.prices {
		padding: 64px 0;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
	}

	.prices__item {
		flex: 0 0 100%;
	}

	.sc-head {
		padding-bottom: 32px;
	}

	.sc-head_center {
		align-items: start;
		text-align: right;
	}

	.sc-head h2 {
		font-size: 32px;
		font-family: Arimo Bold, sans-serif;
	}
}

@media (max-width: 676px) {
	.sc-head h3 {
		font-size: 15px;
		margin-bottom: 11px;
		font-family: Arimo Bold, sans-serif;
		font-weight: 400;
	}
}

@media (max-width: 576px) {
	.prices__item {
		padding: 24px;
		border-radius: 16px;
	}

	.prices__item>img {
		margin-bottom: 16px;
		width: 80px;
		height: 80px;
	}

	.prices__item>h4 {
		font-size: 36px;
	}

	.prices__item>h5 {
		margin-bottom: 24px;
		font-size: 15px;
	}

	.prices__item>ul {
		gap: 9px;
		margin-bottom: 24px;
	}

	.prices__item>ul li {
		font-size: 16px;
		padding-right: 26px;
	}

	.prices__item>ul li::before {
		width: 17px;
		height: 13px;
		background-size: contain;
		top: 5px;
	}

	.prices__item>strong {
		margin-bottom: 14px;
		font-size: 42px;
	}
}