.awards__bg {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -100px;
	z-index: 2;
}
.awards__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 50px;
}
.awards__content h2 {
	text-align: right;
}
.awards__cards {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.awards__card {
	padding: 25px 25px 35px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	border-radius: 15px;
	background: var(--white);
	-webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.05);
}
.awards__icon {
	min-width: 70px;
	max-width: 70px;
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
	background: var(--green-4);
}
.awards__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}
.awards__text span {
	font-size: 52px;
	font-weight: 700;
	line-height: 110%;
}


@media screen and (max-width: 1600px) {
	.awards__card {
		padding: 20px 20px 30px;
	}
	.awards__icon {
		padding: 10px;
		min-width: 50px;
		max-width: 50px;
		height: 50px;
	}
	.awards__content {
		gap: 30px;
	}
}
@media screen and (max-width: 1500px) {
	.awards__cards {
		gap: 20px;
	}
}
@media screen and (max-width: 1350px) {
	.awards__cards {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 1023px) {
	.awards__content {
		gap: 40px;
	}
}
@media screen and (max-width: 720px) {
	.awards__cards {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
	}
}
@media screen and (max-width: 550px) {
	.awards__content h2 {
		text-align: center;
	}
}
@media screen and (max-width: 450px) {
	.awards__text span {
		font-size: 36px;
	}
}