@font-face {
    font-family: "Exo2";
    src: url('../fonts/Exo2SemiBold.woff2') format('woff2'),
       url('../fonts/Exo2SemiBold.woff') format('woff'),
       url('../fonts/Exo2SemiBold.ttf')  format('truetype');
    font-weight: 600;
}


body, html {
  margin: 0;
  min-height: 100%;
  font-family: 'Exo2';
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

a {
    transition: 0.2s;
}
svg {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.mobile-only {
    display: none;
}
@media (max-width: 767px){
    .mobile-only {
        display: block !important;   
    }
}

@media (max-width: 767px){
    .desktop-only {
        display: none !important;;
    }
}

.toggle-nav.show {
    left: 0;
}
.toggle-nav {
    position: fixed;
    left: -260px;
    top: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    padding: 100px 20px 0;
    z-index: 20;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    display: none;
}
@media (max-width: 767px){
    .toggle-nav {
        display: block;
    }    
}

.toggle-close {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: url(../img/close.svg) no-repeat 50% 50%;
}

body.toggle-on:before {
    position: fixed;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgba(60, 60, 60, 0.53);
    z-index: 20;
    display: none;
}

@media (max-width: 767px){
    body.toggle-on:before {
        display: block;
    }    
}

.toggle-menu {
    list-style-type: none;
    padding: 0;
}
@media (max-width: 767px) {
    .toggle-menu {
        margin-bottom: 20px;
    }
}
.toggle-menu li {
    margin-top: 10px;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    min-height: calc(100vh - 127px);
}
@media (max-width: 767px){
    .page {
        min-height: calc(100vh - 184px);
    }
}

.header {
    width: 100%;
    position: fixed;
    z-index: 10;
    height: 127px;
    background: #fff;
}
@media (max-width: 767px){
    .header {
        height: 116px;
    }
}

.header__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    height: 127px;
}
@media (max-width: 767px){
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;        
        height: 116px;
    }    
}

.header__inner .logo {
    display: flex;
    align-items: center;
    min-width: 200px;
}
@media (max-width: 991px){
    .header__inner .logo {
        min-width: 171px;
    }    
}

.logo img,
.logo svg {
    display: block;
    max-width: 100%;
}
@media (max-width: 991px){
    .logo {
        width: 171px;
    }
}

.header-nav {
    display: flex;
    justify-content: flex-end;
}

.header-nav__btns {
    display: flex;
    align-items: center;
}

.exit {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    width: 160px;
    height: 52px;
    background: #D70926;
    font-family: 'Exo2', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    border-radius: 8px;
    line-height: 1;
}

@media (max-width: 991px) {
    .exit {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }    
}

.exit-mob {
    cursor: pointer;    
    width: 18px;
    height: 20px;
    background: url(../img/exit.svg) no-repeat 0 0;
    background-size: contain;
    margin-left: 16px;
}

.toggle {
    cursor: pointer;
    display: none;
    width: 50px;
    height: 50px;
    background: url(../img/burger.svg) no-repeat 0 0;
    background-size: contain;
    /*margin-left: 18px;*/
}
@media (max-width: 767px) {
    .toggle {
        display: block;
    }
}

.lang {
    display: block;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}
@media (max-width: 767px) {
    .lang {        
        color: #004B93;
    }    
}

.tab-menu {
    display: flex;
    align-items: center;
    max-width: 500px;
    width: 100%;
    justify-content: space-between;
    margin-left: 40px;
    margin-right: 40px;
}
@media (max-width: 991px) {
    .tab-menu {
        margin-left: 30px;
        margin-right: 30px;        
    }
}
@media (max-width: 767px) {
    .tab-menu {
        display: none;
    }
}

.tab-menu__item {
    position: relative;
    margin-right: 20px;
}
.tab-menu__item:first-child {
    margin-left: 0;
} 
.tab-menu__item:last-child {
    margin-right: 0;
}

.tab-menu__link {
    transition: 0.2s all;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    color: #094370;
    font-family: 'Exo2', sans-serif;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid transparent;
}
.tab-menu__link.active {
    border-bottom: 1px solid #D70926;
}
.tab-menu__link.active,
.tab-menu__link:hover {
    color: #D70926;
}
@media (max-width: 767px) {
    .tab-menu__link {
        white-space: normal;
    }
}

.tab-menu__item--match .tab-menu__link {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: default;
}
.tab-menu__item--match .tab-menu__link:after {
    content: '';
    width: 12px;
    height: 12px;
    background: url(../img/arrow-blue.png) no-repeat 0 0;
    background-size: contain;
    margin-left: 5px;
    position: relative;
    top: 3px;
}
.tab-menu__item--match .tab-menu__link.active {
    border-bottom: 1px solid transparent;
}
.tab-menu__item--match:hover .tab-menu__link {
    color: #D70926;
}
.tab-menu__item--match:hover .tab-menu__link:after {
    background: url(../img/arrow-red.png) no-repeat 0 0;
    background-size: contain;
}

.match-list-wrapper {
    opacity: 0;
    display: none;
    position: absolute;
    left: -20px;    
    transition: 0.2s all;
}
.match-list {
    width: 250px;
    background: #D70926;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Exo2', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    padding: 15px 20px;
    
}
.match-list__item {
    margin-top: 10px;
}
.match-list__item:first-child {
    margin-top: 0;
}
.match-list__item a {
    width: 100%;
    cursor: pointer;
}
.match-list__item a:hover {
    text-decoration: underline;
} 
.tab-menu__item:hover {

}
.tab-menu__item--match:hover .tab-menu__link + .match-list-wrapper {
    opacity: 1;
    display: block;
}

.page__main {
    display: flex!important;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    position: relative;
    padding-top: 127px;
    background: #094370 url(../img/bg.png) no-repeat 0 100%;
    background-size: cover;
    min-height: calc(100vh - 127px);
}
@media (max-width: 767px) {
    .page__main {
        min-height: calc(100vh - 184px);
        padding-top: 116px;
    }
}
/*
.registration {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 81px;
    margin-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
}
@media (max-width: 991px){
    .registration {
        margin-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.registration__title {
    font-weight: 500;
    font-size: 37px;
    line-height: 44px;
    color: #1A4784;
    margin-bottom: 25px;
}
@media (max-width: 767px){
    .registration__title {
        font-size: 30px;
        line-height: 38px;
    }
}

.registration__contacts {
    display: flex;
}
@media (max-width: 767px){
    .registration__contacts {
        display: block;
    }
}

.registration__contacts__item {
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
}
@media (max-width: 767px){
    .registration__contacts__item {
        margin-bottom: 30px;
    }
}

.registration__contacts__item:first-child {
    padding-right: 20px;
}
.registration__contacts__item:last-child {
    padding-left: 20px;
}

@media (max-width: 767px){
    .registration__contacts__item:first-child {
        padding-right: 0;
    }
    .registration__contacts__item:last-child {
        padding-left: 0;
    }
}

.registration__contacts__item__title {
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: #A8ADB0;
    margin-bottom: 20px;
}
@media (max-width: 767px){
    .registration__contacts__item__title {
        margin-bottom: 10px;
    }
}

.registration__contacts__item a {
    color: #000;
    text-decoration: none;
}
@media (max-width: 375px){
    .registration__contacts__item a {
        white-space: nowrap;
    }
}*/

.footer {
    height: 127px;
    background: #005189;
}
@media (max-width: 767px){
    .footer {
        height: 184px;
        display: flex;
        align-items: center;
    }    
}

.footer a {
    color: #fff;
}

.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    height: 127px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    color: #fff;
}
@media (max-width: 767px){
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;       
        text-align: center;
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
        flex-wrap: wrap;
        justify-content: center;     
        flex-direction: column;
        width: 100%;
    }
    .footer__inner .btn {
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px){
    .footer__item {
        width: 100%;
    }
}

.footer__item p {
    margin: 0;
    font-size: 14px;
    color: #FFFFFF;
    text-align: right;
    margin-top: 15px;
    font-family: 'Raleway', sans-serif;
}
.footer__item p:first-child {
    margin-top: 0;
}
@media screen and (max-width: 767px){
    .footer__item p {
        font-size: 13px;
        text-align-last: left;
    }
}

@media screen and (max-width: 767px){
    .footer__item .logo {
        margin-bottom: 20px;
    }
}

.disable {
    display: none !important;
}

.MuiCircularProgress-root {
    color: #D70926 !important;
}
.CircularContainer svg circle {
    stroke: #D70926;
}
