@font-face {
	font-family: 'Druk Cyr';
	src: local('Druk Cyr Bold'), local('Druk-Cyr-Bold'),
		url('/font/drukcyr/DrukCyr-Bold.woff2') format('woff2'),
		url('/font/drukcyr/DrukCyr-Bold.woff') format('woff'),
		url('/font/drukcyr/DrukCyr-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;

}

.grand_prix__column {
	display: flex;
	align-items: center;
}
.grand_prix__fights {
	display: flex;
	flex-direction: column;
	margin-left: 20px;
	height: 100%;
	justify-content: space-around;
}
.grand_prix__fight {
	display: inline-flex;
	position: relative;
	margin-bottom: 15px;
	justify-content: center;
}
.grand_prix__fighter {
	position: relative;
}
.grand_prix__fighter img {
	width: 94px;
	height: 197px;
}
.grand_prix__column:last-of-type .grand_prix__fighter img {
	width: 133px;
	height: 282px;
}
.grand_prix__fighter:first-of-type {
	margin-right: 10px;
}
.grand_prix__fighter_name {
	color: #1d1c1a;
	font-size: 20px;
	font-weight: 700;
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	word-spacing: 100vw;
	line-height: 20px;
	text-transform: uppercase;
}
.grand_prix__subtitle {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	writing-mode: vertical-rl;
	color: #e5cb89;
	letter-spacing: 2.5em;
	text-transform: uppercase;
	margin-top: -2.5em;
}
.grand_prix__wrap {
	font-family: 'Druk Cyr';
	font-weight: 700;
	background: url('/img/grand_prix/grand_prix_bg.jpg') center center no-repeat;
	padding: 30px;
	display: flex;
	background-size: cover;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 30px;
}
.grand_prix__btns {
	display: flex;
	justify-content: space-between;
}
.grand_prix__btn {
	box-shadow: none;
	background: none;
	border: none;
	margin-right: 10px;
	line-height: 18px;
	margin-bottom: 10px;
}
.grand_prix__btn.active {
	color: #e51942;
}
.grand_prix__vs {
	background: #b22420;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	aspect-ratio: 1 / 1;
	height: 36px;
	text-align: center;
	line-height: 36px;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: #efd49a;
	font-size: 24px;
}
.grand_prix__vs:before {
	content: 'VS';
}
.grand_prix__show_categories {
		display: none;
}

@media (max-width: 1024px) {
	.grand_prix__wrap {
		flex-wrap: wrap;
		flex-direction: column;
		background-size: contain;
		background-repeat: repeat;
		padding: 10px;
	}
	.grand_prix__column {
		flex-direction: column;
	}
	.grand_prix__subtitle {
		-webkit-transform: none;
		transform: none;
		writing-mode: unset;
		letter-spacing: 1em;
		margin: 10px 0;
	}
	.grand_prix__fights {
		margin-left: 0;
		flex-wrap: wrap;
		flex-direction: row;
		width: 100%;
	}
	.grand_prix__fighter img {
		width: 62px;
		height: 130px;
	}
	.grand_prix__column:last-of-type .grand_prix__fighter img {
		width: 96px;
		height: 204px;
	}
	.grand_prix__fighter_name {
		font-size: 14px;
		line-height: 14px;
		bottom: 8px;
	}
	.grand_prix__vs {
		height: 26px;
		line-height: 26px;
		font-size: 16px;
	}
	.grand_prix__btns {
		display: none;
		flex-direction: column;
		transition: 1s;
	}
	.grand_prix__btns.active {
		display: flex;
	}
	.grand_prix__show_categories {
		display: flex;
		align-items: center;
		text-align: center;
		justify-content: center;
		cursor: pointer;
		margin-bottom: 20px;
	}
	.grand_prix__show_categories span {
		padding-right: 10px;
	}
}