/* <awards> */
.awards__title{
	font-weight: 400;
	font-size: 20px;
	color: #333333;
	margin-top: 100px;
	margin-bottom: 70px;
}
.awards__list {
	margin: 0;
	padding: 0;
	list-style: none;

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 55px 65px;
}

.awards__item {
	border: 1px solid #b8976c;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.award__image {
	display: flex;
	
	align-items: center;
	justify-content: center;
}

.image__link {
	position: relative;

	transform: rotate(-15deg) translateY(20%);

	display: flex;
	
	align-items: center;
}

.image__link.no-rotate {
	transform: rotate(0) translateY(30%);
}

.image__link img {

	height: 100%;
	max-height: 295px;
	max-width: 360px;

}

.image__link.no-rotate::after {
	transform: rotate(5deg) translateY(3px);
}
.image__link::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	display: block;
	width: 100%;

	background: linear-gradient(51deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
	height: 3px;
	background-color: transparent;
	transform-origin: left bottom;
	transform: rotate(15deg) translateY(3px);
	filter: blur(2px);
	border-radius: 50%;
}


.award__content {
	padding: 0 45px 50px 45px;
	padding-top: 100px;
	background-color: #e9e9e9;
}

.award__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 40px;
	padding-left: 70px;
	background: url(images/icon-awards.svg) no-repeat left center/50px;
}

.award__text span {
	display: block;
	font-weight: 400;
	font-size: 14px;
	color: #333333;
}

span.award-text__main {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
}

.award-item__title {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	margin-top: 20px;

	color: #333333;
}


@media (max-width:1199px) {
	.awards__list {


		gap: 35px 45px;
	}

	.image__link {
		transform: rotate(-15deg) translateY(15%);
	}
	
	.image__link.no-rotate {
		transform: rotate(0) translateY(20%);
	}
}
@media (max-width:991px) {
	.awards__list {

		grid-template-columns:1fr;
		gap: 20px;
	}

	.image__link img {

		max-height: 220px;
		max-width: 270px;
	
	}
}
@media (max-width:767px) {
	.awards__title{
		margin-top: 50px;
		margin-bottom: 30px;

	}
.award__content{
	padding: 20px;
	padding-top: 100px;
}

.award__text {

	min-height: 20px;
	padding-left: 50px;

	background-size: 30px;
}
span.award-text__main{
	font-size: 14px;
}
}
/* </awards> */