/*
Theme Name: Boxing
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Russo+One&display=swap');

:root {
	--blue: #003085;
	--gray: #606060;
	--red: red;
}
html {
	height: 100%;
}
body {
	font-family: "Inter", sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: var(--gray);
	margin: 0;
	padding: 0;
	background-image: url(/.jpg);
	background-repeat: no-repeat;
	background-position: top center;
}
* {
	outline: none;
	box-sizing: border-box;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
a, .link {
	text-decoration: underline;
	color: var(--blue);
	cursor: pointer;
}
textarea,
select, 
input[type="date"],
input[type="number"],
input[type="email"],
input[type="text"],
input[type="password"] {
	width: 100%;
	margin: 0 0 20px;
	padding: 12px 18px;
	border-radius: 10px 0 10px 0;
	border: solid 1px #aaa;
	background: #fff;
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
input[type="checkbox"] {
	transform: scale(1.3, 1.3);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
h1 {
	font-family: "Russo One", sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 100%;
	color: var(--blue);
	text-transform: uppercase;
	margin: 30px 0 30px;
}
h2, .h2 {
	font-family: "Russo One", sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 100%;
	color: var(--blue);
	text-transform: uppercase;
	margin: 30px 0 30px;
}
h3, .h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 100%;
	color: #000;
	margin: 30px 0 30px;
}
@media screen and (max-width:  950px){
	h1 {
		font-size: 20px;
		margin: 15px 0 15px;
	}
	h2, .h2 {
		font-size: 20px;
		margin: 15px 0 15px;
	}
}
b, strong {
	font-weight: 600;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
ins {
	text-decoration: none;
}
p {
	line-height: 140%;
	margin: 20px 0;
}
.clearfix {
	clear: both;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.hidden {
	display: none !important;
}
.nowrap {
	white-space: nowrap;
}
.overflow {
	max-width: 100%;
	overflow-x: auto;
}

.alignleft {
	float: left;
	max-width: 45%;
	margin: 0 20px 20px 0;
}
.alignright {
	float: right;
	max-width: 45%;
	margin: 0 0 20px 20px;
}
.aligncenter {
	display: block;
	margin: auto;
}
@media (max-width: 950px){
	.alignleft,
	.alignright {
		float: none;
		max-width: 100%;
		margin: 0 0 20px 0;
	}
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.flex-2 > * {
	width: 49%;
}
.flex-3 > * {
	width: 32%;
}
.flex-4 > * {
	width: 24%;
}
@media screen and (min-width: 950px){
	.mobile-only {
		display: none !important;
	}
}
@media screen and (max-width: 950px){
	.desktop-only {
		display: none !important;
	}
	.flex-2 > *,
	.flex-3 > *,
	.flex-4 > * {
		width: 100%;
	}
}
.flex-top {
	align-items: flex-start;
}
.flex-left {
	justify-content: flex-start;
}
.flex-right {
	justify-content: flex-end;
}
.flex-center {
	justify-content: center;
}
.flex-stretch {
	align-items: stretch;
}
.flex-nowrap {
	flex-wrap: nowrap;
}

.inline {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 10px 0;
}

.table {
	display: table;
	width: 100%;
}
.table tr,
.table > * {
	display: table-row;
}
.table tr td,
.table > * > * {
	display: table-cell;
	vertical-align: top;
	padding: 6px;
	text-align: left;
}
@media screen and (max-width:  600px){
	.table {
		display: block;
	}
	.table tr,
	.table > * {
		display: block;
	}
	.table tr td,
	.table > * > * {
		display: block;
	}	
}

.container {
	width: 100%;
	max-width: 1218px;
	margin: auto;
	padding: 0;
}

.button {
	font-family: "Russo One", sans-serif;
	font-size: 16px;
	display: inline-block;
	background: var(--blue);
	padding: 15px 50px;
	border-radius: 20px 0 20px 0;
	border: solid 2px #fff;
	color: #fff;
	cursor: pointer;
}
.button:hover {
	background: var(--red);
}

.small-button {
	font-family: "Russo One", sans-serif;
	font-size: 16px;
	line-height: 22px;
	display: inline-block;
	background: var(--blue);
	padding: 7px 30px;
	border-radius: 10px 0 10px 0;
	border: solid 2px #fff;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}

header {
	padding: 20px 0;
}
header .logo {
	background-image: url(images/logo.png);
	background-size:contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 200px;
	height: 60px;
	display: inline-block;
}
header .menu {
	font-family: "Russo One", sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #000;
}
header .menu a {
	display: inline-block;
	padding: 0 20px;
	text-decoration: none;
}
header .menu a:hover {
	color: var(--red);
}
header .language {
	position: relative;
	margin: 0 0 0 140px;
}
@media screen and (min-width:950px){
	header .language div {
		position: absolute;
		top: 15px;
		left: -15px;
		z-index: 2;
		text-transform: uppercase;
		padding: 15px;
		background: #fff;
		display: none;
	}
	header .language:hover div {
		display: block;
	}
	header .language div a {
		display: block;
		margin: 5px 0 0;
		padding: 0;
	}
}
@media screen and (max-width: 1200px){
	header .language {
		margin: 0 0 0 60px;
	}
}
@media screen and (max-width: 950px){
	header {
		padding: 10px 15px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 20;
		width: 100%;
		background: #fff;
	}
	header .logo {
		width: 140px;
		height: 40px;
	}
	header .menu-btn {
		font-size: 30px;
		color: var(--blue);
		cursor: pointer;
	}
	header .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: var(--blue);
		color: #fff;
		padding: 20px;
		display: none;
	}
	header .menu a {
		width: 100%;
		padding: 10px 0;
		color: #fff;
	}
	header .menu.opened {
		display: block;
	}
	header .menu .close-btn {
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 30px;
		color: #fff;
		cursor: pointer;
	}
	header .menu .logo {
		background-image: url(images/logo_w.png);
		background-size:contain;
		background-repeat: no-repeat;
		background-position: center;
		width: 140px;
		height: 40px;
		display: inline-block;
		margin-bottom: 40px;
	}
	header .language {
		margin: 50px 0 0 0;
	}
	header .language span {
		display: none;
	}
	header .language div a {
		display: inline-block;
		margin: 0 15px 0 0;
		width: auto;
	}
}

main {
	width: 100%;
	max-width: 1920px;
	min-height: 500px;
	margin: auto;
	padding: 0 15px 50px;
	position: relative;
}
@media screen and (min-width:950px){
	main:after {
		content: '';
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: -1;
		width: 425px;
		height: 425px;
		background-image: url(images/box_img.png);
		background-size: contain;
		background-position-y: 60px;
		background-repeat: no-repeat;
	}
}
@media screen and (max-width: 1600px){
	main {
		padding-bottom: 150px;
	}
}
@media screen and (max-width: 950px){
	main {
		margin-top: 50px;
	}
}

.breadcrumbs {
	margin-bottom: 20px;
}
.breadcrumbs a {
	text-decoration: none;
}
.breadcrumbs p {
	margin: 0;
	display: inline;
}
.breadcrumbs p:not(:last-child):after {
	content: ' - ';
	display: inline;
}

.home-first {
	background: linear-gradient(91.05deg, #CF152D 0%, #003CA6 100%);;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-family: "Russo One", sans-serif;
	font-size: 21px;
	position: relative;
}
.home-first p {
	line-height: 120%;
	margin: 20px 0;
	text-transform: uppercase;
}
.home-first a {
	font-family: "Russo One", sans-serif;
	font-size: 16px;
	display: inline-block;
	background: rgba(255,255,255,0);
	padding: 7px 50px;
	border-radius: 20px 0 20px 0;
	border: solid 2px #fff;
	color: #fff;
	text-decoration: none;
}
.home-first a:hover {
	background: rgba(255,255,255,.3);
}
.home-first .line1 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20%;
	background: #fff;
	height: 40px;
}
.home-first .line1:before {
	content: '';
	position: absolute;
	bottom: -53px;
	right: -53px;
	background: #fff;
	height: 75px;
	width: 75px;
	transform: rotate(-60deg);
	border: solid 2px;
}
.home-first .line2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20%;
	background: #fff;
	height: 40px;
}
.home-first .line2:before {
	content: '';
	position: absolute;
	bottom: -53px;
	left: -53px;
	background: #fff;
	height: 75px;
	width: 75px;
	transform: rotate(60deg);
	border: solid 2px;
}
@media screen and (max-width: 950px){
	.home-first {;
		padding: 20px;
		font-size: 16px;
	}
	.home-first p {
		line-height: 150%;
	}
	.home-first a,
	.home-first a:hover {
		background: #fff;
		padding: 10px 50px;
		border-radius: 20px 0 20px 0;
		border: solid 2px #fff;
		color: var(--blue);
	}
	.home-first .line1 {
		width: 40%;
		height: 20px;
		top: 0;
		left: 0;
	}
	.home-first .line1:before {
		top: -51px;
		right: -41px;
		transform: rotate(60deg);
		height: 55px;
		width: 55px;
	}
	.home-first .line2 {
		width: 40%;
		height: 20px;
	}
	.home-first .line2:before {
		bottom: -51px;
		left: -41px;
		height: 55px;
		width: 55px;
	}
}

.welcome-section {
	text-align: center;
	margin: 70px auto 20px;
}
.welcome-section h1 {
	color: var(--blue);
}
.welcome-section h1 strong {
	color: var(--red);
}
.welcome-section .text p {
	max-width: 800px;
	margin: 30px auto 30px;
}
@media screen and (max-width: 950px){
	.welcome-section .text p {
		margin: 15px auto 15px;
	}
}

.video-section {
	position: relative;
	text-align: center;
}
.video-section img {
	margin: 0 auto 30px;
}
@media screen and (min-width:1200px){
	.video-section:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
		height: 100%;
		width: 50%;
		background-image: url(images/welcome_img1.png);
		background-size: auto 100%;
		background-position: left;
		background-repeat: no-repeat;
	}
	.video-section:after {
		content: '';
		position: absolute;
		bottom: 150px;
		right: 0;
		z-index: -1;
		height: 100%;
		width: 50%;
		background-image: url(images/welcome_img2.png);
		background-size: auto 100%;
		background-position: right;
		background-repeat: no-repeat;
	}
}
@media screen and (max-width: 950px){
	.video-section img {
		padding: 38% 0 0;
	}
	.video-section:before {
		content: '';
		position: absolute;
		top: -90px;
		left: 0;
		z-index: -1;
		height: 100%;
		width: 100%;
		background-image: url(images/welcome_img2.png);
		background-size: 100% auto;
		background-position: top center;
		background-repeat: no-repeat;
	}
}

.app-section .app-links a {
	display: inline-block;
	width: 207px;
	height: 60px;
	margin: 10px;
	background-size: contain;
	position: relative;
	filter: brightness(100%);
}
.app-section .app-links a.googleplay {
	background-image: url(images/icon_googleplay.svg);
}
.app-section .app-links a.appstore {
	background-image: url(images/icon_appstore.svg);
}
.app-section .app-links a.steam {
	background-image: url(images/icon_steam.svg);
}
.app-section .app-links a:hover {
	filter: brightness(130%);
}

.world-section {
	text-align: center;
	margin: 120px auto 10px;
	position: relative;
}
.world-section .container {
	max-width: 1100px;
}
.world-section .text {
	max-width: 800px;
	margin: 30px auto 60px;
}
.world-section .text h2 {
	color: var(--red);
}
.world-section .frames .item {
	text-align: center;
	position: relative;
	overflow: hidden;
	height: 340px;
}
.world-section .frames .item img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 340px;
}
.world-section .frames .item:after {
	content: '';
	background: #fff;
	position: absolute;
	top: -40px;
	left: -40px;
	width: 80px;
	height: 80px;
	transform: rotate(45deg);
}
.world-section .frames .item:before {
	content: '';
	background: #fff;
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 80px;
	height: 80px;
	transform: rotate(45deg);
}
.world-section .frames .name {
	background: var(--blue);
	font-family: "Russo One", sans-serif;
	color: #fff;
	text-transform: uppercase;
	padding: 10px 60px;
	border-radius: 0 0 15px 15px;
	display: inline-block;
	margin: -5px 0 60px;
}
@media screen and (max-width: 950px){
	.world-section .text {
		margin: 30px auto 30px;
	}
}

.slider-section {
	background: linear-gradient(99.19deg, #CF152D 0%, #003CA6 100%);
	color: #fff;
	padding: 90px;
	position: relative;
	font-weight: 400;
}
.slider-section img {
	object-fit: cover;
	width: 100%;
	max-width: 490px;
	height: 540px;
	margin: 0 10px 0 auto;
}
.slider-section h2 {
	color: #fff;
	margin: 0 0 40px 0;
}
.slider-section .line1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
	background: #fff;
	height: 40px;
}
.slider-section .line1:before {
	content: '';
	position: absolute;
	top: -53px;
	right: -53px;
	background: #fff;
	height: 75px;
	width: 75px;
	transform: rotate(60deg);
	border: solid 2px;
}
.slider-section .line2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20%;
	background: #fff;
	height: 40px;
}
.slider-section .line2:before {
	content: '';
	position: absolute;
	bottom: -53px;
	left: -53px;
	background: #fff;
	height: 75px;
	width: 75px;
	transform: rotate(60deg);
	border: solid 2px;
}
.slider-section:after {
	content: '';
	position: absolute;
	top: 78%;
	left: 0;
	z-index: -1;
	width: 525px;
	height: 525px;
	background-image: url(images/slider_img.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
}
@media screen and (min-width: 950px){
	.slider-section .text p {
		max-width: 90%;
	}
}
@media screen and (max-width: 1200px){
	.slider-section:after {
		top: auto;
		bottom: -26%;
		left: 0;
		width: 30%;
		height: 30%;
	}
}
@media screen and (max-width: 950px){
	.slider-section {
		padding: 50px 10px;
	}
	.slider-section h2 {
		margin: 40px 0 20px 0;
	}
	.slider-section .line1 {
		width: 40%;
		height: 20px;
	}
	.slider-section .line1:before {
		top: -51px;
		right: -41px;
		height: 55px;
		width: 55px;
	}
	.slider-section .line2 {
		width: 40%;
		height: 20px;
	}
	.slider-section .line2:before {
		bottom: -51px;
		left: -41px;
		height: 55px;
		width: 55px;
	}
}

.boxers-section {
	text-align: center;
	margin: 220px auto 70px;
}
.boxers-section .text {
	margin: 30px auto 40px;
}
.boxers-section .text p {
	margin: 0 auto;
	max-width: 600px;
}
.boxers-section .item {
	margin-right: 20px;
	width: 282px;
	height: 400px;
	background: #ddd;
	border-radius: 20px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.boxers-section .item .name {
	position: absolute;
	left: 0;
	bottom: 20px;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 20px;
}
.boxers-section .item .alt {
	position: absolute;
	left: 0;
	top: 46%;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 18px;
	display: none;
}
@media screen and (max-width: 950px){
	.boxers-section .item .alt {
		display: block;
	}
	.boxers-section .item.active .alt {
		display: none;
	}
	.boxers-section {
		text-align: center;
		margin: 70px auto 70px;
	}
}

.stream-section {
	text-align: center;
	margin: 70px auto;
	background: #eee;
	padding: 60px 10px 90px;
	position: relative;
	overflow: hidden;
}
.stream-section .container {
	max-width: 910px;
}
.stream-section .text {
	color: var(--blue);
}
.stream-section .text h2 {
	color: var(--red);
}
.stream-section .text p {
	margin: 0 0 50px;
}
.stream-section img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.stream-section .line1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
	background: #fff;
	height: 40px;
}
.stream-section .line1:before {
	content: '';
	position: absolute;
	top: -53px;
	right: -53px;
	background: #fff;
	height: 75px;
	width: 75px;
	transform: rotate(60deg);
	border: solid 2px #fff;
}
.stream-section .line2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 20%;
	background: #fff;
	height: 40px;
}
.stream-section .line2:before {
	content: '';
	position: absolute;
	top: -53px;
	left: -53px;
	background: #fff;
	height: 75px;
	width: 75px;
	transform: rotate(-60deg);
	border: solid 2px #fff;
}
@media screen and (max-width: 950px){
	.stream-section {
		padding: 40px 10px 80px;
	}
	.stream-section .text h2 {
		color: var(--blue);
	}
	.stream-section .line1 {
		width: 40%;
		height: 20px;
		top: 0;
		left: 0;
	}
	.stream-section .line1:before {
		top: -51px;
		right: -41px;
		transform: rotate(60deg);
		height: 55px;
		width: 55px;
	}
	.stream-section .line2 {
		width: 40%;
		height: 20px;
		top: auto;
		left: auto;
		bottom: 0;
		right: 0;
	}
	.stream-section .line2:before {
		top: auto;
		left: auto;
		bottom: -51px;
		left: -41px;
		height: 55px;
		width: 55px;
		transform: rotate(60deg);
	}
}

.news-section {
	margin: 100px auto 60px;
}
.news-section .text {
	margin: 30px auto 50px;
}
.news-section .text p {
	margin: 0;
	max-width: 500px;
}
.news-section h2 {
	color: var(--red);
}
.news-section a {
	color: var(--gray);
	text-decoration: none;
}
.news-section a img {
	object-fit: cover;
	width: 100%;
	height: 200px;
	border-radius: 20px;
	margin-bottom: 20px;
}
.news-section .item {
	width: 285px;
	margin-right: 20px;
}
.news-section .item h3 {
	font-weight: 600;
	height: 3lh;
	overflow: hidden;
}
.news-section .item .more-link {
	font-size: 12px;
	margin: 20px 0;
}
.news-section .item .more-link:hover {
	color: var(--red);
}
@media screen and (max-width: 950px){
	.news-section .item .more-link {
		color: var(--red);
	}
}

footer {
	background: var(--blue);
	color: #fff;
	padding: 50px 15px;
}
footer .logo {
	background-image: url(images/logo_w.png);
	background-size:contain;
	background-repeat: no-repeat;
	width: 200px;
	height: 60px;
	margin-bottom: 30px;
	display: inline-block;
}
footer .menu a {
	color: #fff;
	padding: 0 0 30px 0;
	text-decoration: none;
	display: block;
}
footer .menu a:hover {
	color: var(--red);
}
footer .copyright {
	width: 100%;
	opacity: 0.2;
}
footer .app-links {
	width: 100%;
	max-width: 207px;
}
footer .app-links a {
	display: inline-block;
	width: 100%;
	height: 60px;
	margin: 10px;
	background-size: contain;
	background-repeat: no-repeat;
	filter: brightness(100%);
}
footer .app-links a.googleplay {
	background-image: url(images/icon_googleplay2.svg);
}
footer .app-links a.appstore {
	background-image: url(images/icon_appstore2.svg);
}
footer .app-links a.steam {
	background-image: url(images/icon_steam2.svg);
}
footer .app-links a:hover {
	filter: brightness(120%);
}
@media screen and (max-width: 950px){
	footer .app-links {
		max-width: 55%;
	}
	footer .app-links img {
		height: 50px;
	}
	footer .banner {
		max-width: 25%;
	}
}

.new-section {
	line-height: 200%;
}
.new-section img {
	width: 100%;
	max-width: 400px;
	float: left;
	margin: 0 30px 30px 0;
}


@media screen and (max-width: 950px){
	.fancybox-slide {
		max-height: 400px;
		top: 20%;
	}
	.fancybox-content {
		width: 100% !important;
		height: 100% !important;
	}
}

.slick-prev:before, .slick-next:before {
	background: transparent !important;
	border: none !important;
}
.slick-prev:before {
	content: url(images/slider_prev.png) !important;
}
.slick-next:before {
	content: url(images/slider_next.png) !important;
}

.modal-mask {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 190;
	width: 100%;
	background: rgba(21, 22, 22, 0.7);
	display: none;
}
.modal-mask > div {
	position: absolute;
	top: 100px;
	right: 0;
	left: 0;
	z-index: 195;
	margin: auto;
	width: 90%;
	max-width: 700px;
	height: auto;
	background: #fff;
	text-align: center;
	padding: 40px;
	box-shadow: 0px 0px 15px 10px rgba(0,0,0,.5);
}
.modal-mask > div form input[type="checkbox"] {
	transform: scale(2,2);
	margin-right: 20px;
}
.modal-mask > div form input[type="submit"] {
	font-family: "Russo One", sans-serif;
	font-size: 16px;
	display: inline-block;
	background: var(--blue);
	padding: 15px 50px;
	margin: 15px auto 0;
	border-radius: 20px 0 20px 0;
	border: solid 2px #fff;
	color: #fff;
	cursor: pointer;
}
.modal-mask > div form input[type="submit"]:hover {
	background: var(--red);
}
.modal-mask > div .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 200;
	cursor: pointer;
	color: #fff;
}
.modal-mask > div .custom-checkobox .custom-checkobox-alt {
	width: 90%;
	text-align: left;
}
.modal-mask > div .error-input {
	border: solid 1px var(--red);
}

.gallery .gallery-item {
	float: none !important;
	display: inline-block;
	width: 23% !important;
	margin: 0 10px 10px 0;
}
.gallery .gallery-item a {
	width: 100%;
}
.gallery .gallery-item a img {
	object-fit: cover;
	width: 100%;
	height: 150px;
	border: none !important;
}
.gallery br {
	display: none;
}
@media screen and (max-width: 1200px){
	.gallery .gallery-item {
		width: 32% !important;
		margin: 0 10px 10px 0;
	}
}
@media screen and (max-width: 950px){
	.gallery .gallery-item {
		width: 48% !important;
		margin: 0 5px 5px 0;
	}
}
@media screen and (max-width: 500px){
	.gallery .gallery-item {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}