@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: #253f5c;
	--first-color: #5d5e60;
	--second-color: #e31e24;
	font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100vw;
  background-color: #333;
}

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: calc(50% + 25px);
    transform: translate(-50%, -50%);
    font-family: 'Exo_2';
    font-weight: bold;
    text-align: center;
    margin: 0;
    color: #FFF !important;
    width: calc(100% - 50px);
    }

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;
	height: 100%;
}

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

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

.header-links {
    display: flex;
    justify-content: space-between;
    padding: 5px 100px;
    /* transition: .3s; */
    position: relative;
    top: 0px;
    background-color: #d52832;
    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); */background-color: var(--first-color);display: none;
}

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;
}

.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.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; */
}


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(--dark-fone);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    height: 45px;
    }

.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-color: #FFF;
	width: 0%;
	transition: .3s;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -3px);
	margin: 0 auto;
	border-radius: 3px;
	}

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

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

.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;
	transition: .3s;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0px 2px 1px #222);
}

.scrolled .logo img {top: 33%;}

.logo-hover:first-of-type:hover ~ img:last-of-type {
		transform: translate(-50%, -50%) rotate(-30deg);
}

.logo-hover:last-of-type:hover ~ img:last-of-type {
		transform: translate(-50%, -50%) rotate(30deg);
}

.scrolled .logo {
    top: 0;
    width: 54px;
    height: 45px;
    }

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

/* header end */

/* main begin */

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

.header-text {
	position: absolute;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	width: 100%;
	color: #d42635;
	margin: 20px 0;
	padding: 0 5%;
	box-sizing: border-box;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	word-spacing: 15px;
	transition: .3s;
}

.header-text > p {
    margin: 0;
    padding: 4px 0;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.header-text > p::before, .header-text > p::after {
	content: '';
	height: 4px;
	width: 10%;
	background-color: #fac33b;
	border-radius: 50%;
	margin: 0 20px 0 0;
}

.header-text > p::after {
    margin: 0 0 0 20px;
}

.news-calendar {
	/* background-image: url(/images/section1-21.jpg); */
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: linear-gradient(135deg, #e7e7e7, #e7e7e7 25%, #ffffff 25%, #ffffff 75%, #e7e7e7 75%, #e7e7e7 100%);
	background-position: center;
	padding: 88px 5% 30px;
	background-color: #9d9d9d;
	height: auto;
}

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

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

.tourn-tables {
    background-image: repeating-linear-gradient(129deg, #efefef, #f0faff 50%);
    background-attachment: fixed;
    background-image: url(/images/section1-23.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1.5rem 5%;
    }

.tourn-tables > h2, .tourn-tables > div {position: relative;margin: 0 0 1.5rem;}

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

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

.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;
}

main .nc-block {
	border-radius: 10px;
	height: min(400px,100vh);
	top: 0;
	box-shadow: none;
	border: 1px solid #c5c5c5;
	box-sizing: border-box;
}

main .nc-block + .nc-block {
    background-color: var(--dark-fone);
}

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

.sportprotocol {
	background-image: url(/images/section1-23.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.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 .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 (max-width:1450px) {
	.header-text {
		word-spacing: 8px;
		font-size: 1.7rem;
		margin: 15px 0;
	}
	.news-calendar {
		padding: 74px 5% 30px;
	}
}

@media (max-width:1250px) {
	.header-text {
		word-spacing: 0px;
		font-size: 1.5rem;
	}
	.news-calendar {
    padding: 68px 5% 30px;
	}
}


@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;
	}
	.article-text:not(:empty) {
		padding: 0 5%;
	}
}

@media (max-width:1000px) {
html {
	--min-font-size: 16;
}
	.menu-button {
		display:block;
	}
	.logo {
		display: none;
	}
	header {
		flex-direction: row;
		/* font-size: 1rem; */
	}
header > h1, header > .h1 {display: block;z-index: 1;}

.header-text {
	display: 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 - 120px);
    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;
}

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 {
   margin-top: 50px !important;
}

.news-calendar {
	padding: 0;
}

main .nc-block {
	border-radius: 0;
	border: none;
}
	
div.main > aside{
   margin: 0 !important;
}

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

@media (max-width:600px) {
	.tourn-tables, .disq {
		background-image: none;
	}
	.tourn-tables > h2 {
		background: none;
		padding: 0;
	}
}