@charset "utf-8";
html {
	font-family: "PTSans","Helvetica","Arial",sans-serif;
	font-size: 14px;
	font-size: clamp(
      var(--min-font-size) * 1px,
		var(--font-float-size),
		var(--max-font-size) * 1px
   );
	--dark-fone: #3d0a0d;
	--first-color: #1d40a5;
	--second-color: #a32321;
--first-color: #ad1515;
--second-color: #04297a;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100vw;
  background-color: var(--first-color);
}

body::before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url(/images/section1-21.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    }

b,
strong {
	font-family: "PTSans-Bold","Helvetica","Arial",sans-serif;
}
i,
em {
	font-family: "PTSans-Italic","Helvetica","Arial",sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	font-family: "Exo_2","Helvetica","Arial",sans-serif;
}

h1 {
    font-size: 1.5rem;
		width: fit-content;
    margin: .5rem auto;
}

h2 {
	margin: .3em;
	text-align: center;
}

header > h1, header > .h1 {
    display: none;
    position: absolute;
    font-size: 1.1em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Exo_2';
    font-weight: bold;
    text-align: center;
    margin: 0;
    color: #FFF !important;
    width: 100%;
    padding: 0 0 0 50px;
    box-sizing: border-box;
    }

a {color: #035f9c;}

a:hover {
    color: #c33f00;
}

.center {
	text-align:center;
}

/* buttons begin */

.btn-menu::before {content: '\f0c9';}
.btn-close::before {content: '\f00d';}

/* buttons end */

/* header begin */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    color: #FFFFFF;
    font-size:.9rem;
    z-index: 9;
    flex-direction: column;
}

.head-shadow {
    box-shadow: 0 0 90px 111px var(--dark-fone);
    position: absolute;
    width: 100%;
}

.scrolled > .head-shadow {
    box-shadow: 0 0 37px 43px var(--dark-fone);
}

.nav-half {
	width: 50%;display: flex;
	box-sizing: border-box;
	justify-content: flex-end;
	align-items: center;
	position: relative;
}

.nav-half.left {
    padding-right: 70px;
padding-right: calc(92px + 2em);}

.nav-half.right {
    padding-left: 70px;
padding-left: calc(92px + 2em);justify-content: flex-start;}

.header-links {
    display: flex;
    justify-content: space-between;
    padding: 5px 100px;
    
    transition: .3s;
    position: relative;
    top: 0px;
background-color: var(--first-color);align-items: center;}

.scrolled .header-links {
    top: -999px;
}

.wrapped-items {
    display: flex;
    gap: 2em;
    transition: .3s;
}

.header-links > div > a {
    transition: .3s ease;
}


.header-links > div > a:hover {
    background: rgb(255 255 255 / 97%);
    color: #000;
}

.menu-button {
  width: 50px;
  height: 50px;
  position:relative;
  background-color: var(--second-color);
  display: none;
  z-index: 2;
}

header label[for='menu-checker'] {
    display: block;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    cursor: pointer;
    line-height: 40px;
    transition:.3s;
    text-align:center;
}

header a {
	text-decoration:none;
}

a.link-wrapped {
    border-radius: 18px;
    padding: 5px;
    position: relative;
    box-sizing: border-box;
		color: #fff;
}

.link-wrapped.auth {
    color: #fff;
}

.link-wrapped.auth::before {content: '\f007';margin: 0 5px;}
.link-wrapped.email::before {content: '\f0e0';margin: 0 5px;}
.link-wrapped.whatsapp::before {content: '\f232';margin: 0 5px;}

.link-wrapped.expandable > span::after {
	content:'\f107';
	margin: 0 5px;
}

.link-wrapped.expandable > span {
	cursor:default;
}

div.expandable > ul {
	opacity:0;
	z-index: 2;
	position:absolute;
	top: -999px;
	left:0;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	background: #FFF;
	max-width: 100vw;
	min-width: 100%;
	border-radius: 15px;
	border-top-left-radius: 0;
	transition: opacity .3s;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: -1;
	box-shadow: 0 0 14px -6px #000000;
	max-height: calc(100vh - 115px);
}

.link-wrapped.expandable > ul {
    /* z-index: 10; */
}

.header-menu div.expandable > ul {
    
    margin-top: 6px;
}


div.expandable > ul > li:not(:last-child) {
    border-bottom: 2px ridge #eee;
}

div.expandable > ul > li:first-child {border-top-right-radius: 12px;overflow: hidden;}

div.expandable > ul > li:last-child {border-bottom-left-radius: 12px;border-bottom-right-radius: 12px;overflow: hidden;}

div.expandable > ul > li > a:hover {
    background: #e2e2e2;
}

div.expandable > ul > li > a {
    padding: 7px;
    display: flex;
    align-items: center;
    color: #555;
    gap: 5px;
}

div.expandable > ul > li > a {
    padding: 3px 6px;
    white-space: nowrap;
}

div.expandable > ul > li > a > img {
    width: 25px;
    height: 25px;
}

div.expandable:hover > ul {
	opacity:1;
	z-index: 5;
	padding: 3px;
	top: 100%;
}

#menu-checker:checked ~ .menu-button label[for='menu-checker']:first-child,
label[for='menu-checker']:last-child {
	width: 0px;
	height: 0px;
	font-size: 0px;
	opacity:0;
}
#menu-checker:checked ~ .menu-button label[for='menu-checker']:last-child,
label[for='menu-checker']:first-child {
	width: 40px;
	height: 40px;
	font-size: 40px;
	opacity:1;
}

.link-images {
	display: flex;
align-items: center;transition: .3s;}

span.link-images > a {
    margin: 0 10px;
border-radius: 50%;background: #FFF;display: inline-flex;width: 35px;height: 35px;position: relative;justify-content: center;align-items: center;}

.link-images > a > img {transform: scale(1);transition:.3s;display: block;width: 25px;height: 25px;object-fit: contain;position: absolute;}

.link-images > a:hover > img {transform: scale(1.2);}

nav.header-menu {
    display: flex;
    
background-color: var(--second-color);width: 100%;box-sizing: border-box;margin: 0 auto;padding: 0 20px;position: relative;box-shadow: 0 6px 0 0 #fff;height: 40px;}

.scrolled nav.header-menu {
    position: absolute;
    top: 0;
    
    
    
    
}

nav.header-menu > .nav-half > div {
	position: relative;
height: 100%;
z-index: 5;
white-space: nowrap;}

nav.header-menu > .nav-half > div > a, nav.header-menu > .nav-half > div > label, nav.header-menu > .nav-half > div > label > a {
    color: #FFF;
    font-size: 1.1rem;
    text-transform: uppercase;
    
    display: flex;
    text-align: center;
height: 100%;align-items: center;}

nav.header-menu > .nav-half > div > label {
    cursor: default;
}

nav.header-menu > .nav-half > div::after {
	content: '';
    height: 6px;
    background-image: linear-gradient(to right, var(--second-color), transparent);
    width: 0%;
    transition: .3s;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0 auto;
}

.header-menu > .nav-half > div:hover::after {
    width: 100%;
}

.logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
    transition: width .3s ease, height .3s ease;
    z-index: 2;
    overflow: hidden;
    width: 120px;
    height: 120px;
}

.logo-hover {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 50%;
	height: 100%;
	z-index: 1;
}

.logo-hover:first-of-type {
	border-top-left-radius: 50%;
	border-bottom-left-radius: 50%;
}

.logo-hover:last-of-type {
	left: 50%;
	border-top-right-radius: 50%;
	border-bottom-right-radius: 50%;
}

.logo img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .5s;
	width: 100%;
	height: 100%;
	object-fit: contain;
	}

.scrolled .logo {top: 75%;width: 60px;height: 60px;transform: translateX(-50%) translateY(-50%);}

.header-line {
    height: 50px;
    flex: 1 0 100%;
}

.nav-wrapper {
    background-color: var(--first-color);
}

/* header end */

/* main begin */

main {
margin-top: 91px;
flex-grow: 1;}

.main-slides {
	margin-top: 91px;
}

.main-slides + main {
    margin-top: 0;
}

.main-slides {
    margin-top: 91px;
}

main > .news-calendar {height: min(400px,100vh);padding: 60px 5%;justify-content: center;overflow: hidden;background-image: linear-gradient(135deg, #e7e7e7, #e7e7e7 25%, #ffffff 25%, #ffffff 75%, #e7e7e7 75%, #e7e7e7 100%);background-attachment: fixed;background-size: cover;background-repeat: no-repeat;}

.news-calendar.has-slide {height: min(470px,100vh);}

main > .news-calendar > .nc-block.news {flex-basis: 70%;max-width: 900px;}

.news-calendar .nc-block {
    margin-top: 0;
}

.nc-block.calendar {
    background: #00327a;
}

.cal-month, .cal-week-days {
    color: #FFF;
}

.tourn-tables {
    padding: 50px 15px;
    display: grid;
    grid-template-columns: fit-content(100%);
    justify-content: center;
    grid-gap: 30px;
    overflow: hidden;
    background: none;
    }

.tourn-tables > h2 {
    background-color: rgb(255 255 255 / 62%);
    border-radius: 10px;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
}

.tourn-tables > h2::before {
    color: #FFF;
}

.tourn-tables > div {width: 100%;max-width: 100%;margin: 0;/* background: none; */transition: .4s;}

.tourn-tables table, .tourn-tables .mc-match {background: #FFF;}

.disq {background-color: #000;background-position: top center;}

.partners {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.partners:not(:first-child):not(:only-child) {
    margin-top: 20px;
}

section.partners-block {
    background: none;
}

.partners-block h2,
.partners-footer > h2 {
    margin: 0 0 1em;
}

.partners-block h2::before {
	display:none;
}

.partners-footer {
    padding: 30px 0;
}


.media-tiles-header {background: #8f8f8f;}

.media-tiles-header::before {color: #d3d3d3;opacity: 1;transform: translate(-50%, -50%);top: 50%;left: 50%;}

.media-separator {background: none;}

.media-tiles-header > h2 {
    visibility: hidden;
}

.sportprotocol > .main {
    width: min(950px,100%) !important;
    margin: 125px auto 20px !important;
    border-radius: 15px;
}

.main {
    margin: 90px 0 0 !important;
    border-radius: 0;
    padding-bottom: 30px;
}

div.main > main {
    margin: 0;
    border-radius: 0;
    flex: 1 1 75%;
}

div.main > aside {
    background: #efefef;
    padding: 30px;
    border-left: 1px solid #CCC;
    box-shadow: -1px 0 3px 0px #b3b3b3;
}

/* main end */

/* footer begin */
footer {
	background: #4e4e4e;
	color: #e6e6e6;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 10px 5%;
}

footer a {
    color: #faebd7;
}

footer a:hover {
    color: #a3ffae;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
    line-height: 1;
    font-size: .9em;
}

.footer-links a {
    text-decoration: none;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    font-style: normal;
    gap: 5px;
}

footer span::before {
	vertical-align: middle;
	display: inline-block;
	width: 24px;
}

footer .location::before {
	content: '\f3c5'
}

footer .phone::before {
    content: '\f879';
}

footer .email::before {
    content: '\f0e0';
}

footer .whatsapp::before {
    content: '\f232';
}

footer .telegram::before {
    content: '\f3fe';
}


footer .developer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright {
    width: 100%;
		box-sizing: border-box;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    font-size: .9em;
}

/* footer end */


@media (min-width:1001px) {
	section.tourn-tables .gt-item:not(:only-child) {
		max-width:33.3%;
	}
	.nav-half > div:nth-child(n+2) {
			margin-left: 3em;
	}
	.nc-buttons {margin-left: 5%;}
}

@media (max-width:1000px) {
html {
	--min-font-size: 16;
}
body::before {background-image: linear-gradient(to top, rgb(0 0 0 / 45%), rgb(0 0 0 / 45%)), url(/images/section1-19.jpg);}

	.menu-button {
		display:block;
	}
	.logo {
		display: none;
	}
	header {
		flex-direction: row;
		
	background: var(--first-color);}
	header > h1, header > .h1 {display: block;z-index: 1;}
	
	.header-links {background: none;}

.head-shadow {
    /* background: linear-gradient(to bottom, var(--dark-fone), 87%, transparent); */
    box-shadow: 0 0 21px 62px var(--dark-fone) !important;
}

.nav-wrapper {
    flex-grow: 1;
    display: flex;
}

.header-links {
    padding: 0;
    justify-content: space-around;
    width: 100%;
    align-items: stretch;
}

.scrolled .header-links {
    top: 0px;
}

.link-images, .wrapped-items {
    position: fixed;
    top: 50px;
    height: 35px;
    background: #FFF;
    left: -999px !important;
    width: 100%;
    justify-content: center;
    }

nav.header-menu {
    position: absolute;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    top: 120px !important;
    left: -999px !important;
    padding: 0px 10px 10px;
    background: var(--block-fone);
    box-shadow: 1px 1px 14px -6px #000;
    box-sizing: border-box;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    transition: .3s;
    transform: none !important;
    height: auto;
    }

#menu-checker:checked ~ .nav-wrapper > nav.header-menu, #menu-checker:checked ~ .nav-wrapper .link-images, #menu-checker:checked ~ .nav-wrapper .wrapped-items {
    left: 0px !important;
}

.nav-half {
	
padding-left: 0 !important;padding-right: 0 !important;flex-direction: column;gap: 0;width: 100%;align-items: flex-start;}
	
nav.header-menu > .nav-half > div {justify-content: flex-start;align-items: flex-start;padding-bottom: 0;width: 100%;}

nav.header-menu > .nav-half.left > div, nav.header-menu > .nav-half.right > div:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

nav.header-menu > .nav-half > div > a, nav.header-menu > .nav-half > div > label > a, nav.header-menu > .nav-half > div > label {
    
    display: flex;width: 100%;
    height: 40px;
    
    
	color: var(--base-font-color);
    
align-items: center;}

.nav-half > div > label {position: relative;}

nav.header-menu > .nav-half > div::after {
    display: none;
}

.expandable > label::before {content: '';display: block;position: absolute;top: 0;left: 0;bottom: 0;right: 0;z-index: 2;}

div.expandable .submenu-expander ~ ul {
	opacity: 1 !important;
	z-index: -1 !important;
	transition: none;
	width: 100%;
	display: none;
border-top-left-radius: 15px;}

div.expandable .submenu-expander ~ ul > li:first-child {border-top-left-radius: 12px;}

div.expandable .submenu-expander:checked ~ ul {
    position: static;
    max-height: 100vh;
    z-index: 2 !important;
    display: flex;
}

div.expandable > ul > li {
    padding: 10px;
}

.wrapped-items {
    top: 85px;
    width: 100%;
    margin: 0 !important;
}

a.link-wrapped {
    width: 25px;
    color: #000 !important;
    overflow: hidden;
}

.link-wrapped {
	position: static;
	display: flex;
	align-items: center;
}

.link-wrapped.expandable:hover {
}

.link-wrapped.expandable > ul {
    width: 100%;
    z-index: -1;
}

.link-wrapped.expandable:hover > ul {
    z-index: 3;
}

main {
	margin-top: 50px;
}

main > .news-calendar {
	padding: 0;
}

.news-calendar .nc-block {
	border-radius: 0;
}

.nc-buttons {display: block;}

.nc-button {margin: 30px 0;}

.nc-block {
height: min(400px, 100vh);
margin-left: auto;margin-right: auto;height: min(400px,100vh) !important;}

.playoff-stage {
    flex-basis: 100%;
}

footer {
	gap: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
}