@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: #093c5e;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100vw;
  background-color: #013b73;
  background-image: url(/images/section1-12.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top 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 {
    display: none;
}

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

.header-half {
	flex: 1 0 50%;
	display: flex;
	box-sizing: border-box;
}

.header-half.left {
    padding-right: 60px;
}

.header-half.right {
    padding-left: 60px;
}

.header-half-part.nav-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.header-links {
    display: flex;
    justify-content: space-between;
    padding: 20px 100px 20px 260px;
    align-items: flex-start;
    transition: .3s;
    position: relative;
    top: 0px;
}

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

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

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


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

.menu-button {
  width: 60px;
  height: 60px;
  position:relative;
	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;
    color: #aaa;
}

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

.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;
	padding: 3px;
	max-width: 100vw;
	min-width: 100%;
	border-radius: 15px;
	transition: opacity .3s;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: -1;
	max-height: calc(100vh - 115px);
}

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

.header-menu div.expandable > ul {
    transform: translateY(-.5em);
    margin-top: .5em;
}


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

div.expandable > ul > li:first-child {border-top-left-radius: 12px;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:2;
	box-shadow: 0 0 14px -6px #000000;
	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;
}

span.link-images > a {
    margin: 0 10px;
}

.link-images > a > img {transform: scale(1);transition:.3s;}

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

nav.header-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.scrolled nav.header-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0;
}

nav.header-menu > div {
	position: relative;
	min-height: 40px;
	display: flex;
	flex-direction: column;
	padding-bottom: .5em;
	align-items: center;
}

.scrolled nav.header-menu > div {
    padding-bottom: 10px;
    min-height: unset;
}

nav.header-menu > div > a, nav.header-menu > div > label, nav.header-menu > div > label > a {
    color: #FFF;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-family: 'Exo_2';
    display: block;
    text-align: center;
}

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

nav.header-menu > div::after {
	content: '';
    height: 6px;
    background: #FFFFFF;
    width: 0px;
    margin-top: 1em;
    border-radius: 3px;
    transition: .3s;
}

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

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

.logo {
    position: absolute;
    top: 20px;
    left: 85px;
    transition: .3s ease;
    z-index: 3;
}

.scrolled .logo {
    top: -999px;
    left: -999px;
}

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

/* header end */

/* main begin */

main {
margin-top: 145px;
}

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

.tourn-tables {
    padding: 130px 5% 5%;
}

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

/* word text */
.WordSection1 * {
    font-size: 16px !important;
	font-family: 'PTSans',Helvetica, sans-serif, Arial !important;
}
.WordSection1 span {
    background: none !important;
}
table.MsoNormalTable {
    width: 100% !important;
    table-layout: fixed;
    margin-left: auto !important;
    margin-right: auto;
}
table.MsoNormalTable td, table.MsoNormalTable td span {
    font-family: 'PTSans',arial !important;
    font-size: 14px !important;	
}
table.MsoNormalTable td {
    border: 1px solid #000000 !important;
	vertical-align: middle !important;
}
p.MsoNormal {
    line-height: 1.5;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
p.MsoBodyTextIndent3 {
	text-indent: 1.0cm;
	line-height: 1.5;
}
.WordSection1 > p {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* word text end */


@media (max-width:1200px) {
	.header-menu {
		padding-left: 190px;
	}
}

@media (max-width:1100px) {
    .logo {
    	left: 20px;
    }
    .header-links {
    	padding-left: 190px;
    	padding-right: 20px;
    }
}

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

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

.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 {
    display: none;
}

nav.header-menu {
    position: absolute;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    top: 50px !important;
    left: -999px !important;
    padding: 0px 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;
}

#menu-checker:checked ~ .nav-wrapper > nav.header-menu {
    left: 0 !important;
}

nav.header-menu > div {justify-content: center;align-items: flex-start;padding-bottom: 0;min-height: unset;}

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

nav.header-menu > div > a, nav.header-menu > div > label {
    display: flex;
    width: 100%;
    height: 40px;
    flex-direction: column;
    justify-content: center;
}

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

nav.header-menu > div > a, nav.header-menu > div > label > a, nav.header-menu > div > label {
    color: var(--base-font-color);
    text-align: left;
}

.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 {
    display: flex;
    gap: 7px;
    align-items: stretch;
}

.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: 60px;
}

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