@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-500.woff") format("woff");
    font-weight: 500;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-400.woff") format("woff");
    font-weight: 400;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold/Montserrat-SemiBold.woff") format("woff");
    font-weight: 600;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-800.woff") format("woff");
    font-weight: 800;
}

body, html {
    margin: 0;
    font-family: Montserrat, sans-serif;
    min-height: 100%;
}

body {
    background: url(../img/bg.png?2) no-repeat 0 calc(100% - 107px);
    background-size: 100% auto;
}
@media screen and (max-width: 767px){
    body {
        background: url(../img/bg-m.png?2) no-repeat 0 calc(100% - 360px);
        background-size: 100% auto;
    }
}

html {
	font-size: 18px;
	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);
}

.d-flex {
    display: flex !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;
}

li:has(> a.disable) {
    display: none !important;
}

@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-s.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;
    }
}
.page {       
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    min-height: calc(100vh - 107px);
    position: relative;
}

@media (max-width: 767px){
    .page {
        min-height: calc(100vh - 360px);
    }
}

.header {
    width: 100%;
    position: absolute;
    height: 132px;
    z-index: 10;
}
@media (max-width: 767px){
    .header {
        height: 100px;
    }
}

.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: 132px;
}
@media (max-width: 1023px){
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
    }    
}
@media (max-width: 767px){
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
        height: 100px;
    }
}

.logo {
    max-width: 60%;
}

.logo img,
.logo svg {
    display: block;
    max-width: 100%;
}

.page__main {    
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
    position: relative;
    padding-top: 132px;
    min-height: calc(100vh - 107px);
}
@media (max-width: 767px) {
    .page__main {         
        min-height: calc(100vh - 360px);
        padding-top: 100px;
    }
}

.header-menu {
    margin: 0 50px;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .header-menu {
        margin: 0 30px;
    }
}

@media (max-width: 767px) {
    .header-menu {
        display: none;
    }
}

.header-menu li {
    margin-left: 40px;
    position: relative;
    display: flex;
}

@media (max-width: 1024px) {
    .header-menu li {
        margin-left: 30px;
    }
}

.header-menu li:first-child {
    margin-left: 0;
}

.header-menu__link.active {
    display: flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid #E60060;

    cursor: pointer;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #E60060;
}

@media (max-width: 767px) {
    .header-menu__link {
        display: inline-block;
        margin-bottom: 10px;
    }
}

.header-menu__link {
    color: #6D6668;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

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

@media (max-width: 767px) {
    .header-nav {
        display: none;
    }
}

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

.header-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border: 1px solid #E60060;
    border-radius: 5px;
    box-sizing: border-box;
    color: #6C7075;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    padding-left: 20px;
    padding-right: 20px;
    width: 160px;
    max-width: 100%;
    margin-left: 30px;
}

@media (max-width: 767px) {
    .header-nav__btn {
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0px;
        margin-top: 20px;
        width: 100%;
    }
}

.lang {
    font-size: 14px;
    color: #6C7075;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 389px) {
    .lang {
        font-size: 12px;
    }
}

.toggle {
    cursor: pointer;
    display: none;
    width: 36px;
    height: 20px;
    background: url(../img/burger.svg) no-repeat 0 0;
    background-size: contain;
}

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

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

.organizers {
    display: flex;
    width: 583px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
}
@media screen and (max-width: 1023px) {
    .organizers {
        align-items: center;
    }    
}
@media (max-width: 767px) {
        .organizers {
            padding-left: 0;
            padding-right: 0;
            flex-wrap: wrap;
            justify-content: center;
            align-items: baseline;
        }
    }
}

.organizers__item {
    display: flex;
    margin-left: 30px;
    flex-wrap: wrap;
    flex-direction: column;
}
@media screen and (max-width: 1023px) {
    .organizers__item {
        margin-left: 20px;        
    }
}
@media (max-width: 767px) {
    .organizers__item {
        margin-top: 20px;       
    }
}

.organizers__item:first-child {
    margin-left: 0;
    margin-top: 0;
}
@media (max-width: 767px) {
    .organizers__item:first-child {
        width: 100%;
    }
}

.organizers__item img {
    max-width: 100%;
    display: block;
}
@media screen and (max-width: 767px){
    .organizers__item img {        
    }    
}

.organizers__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizers__logo a {
    margin-left: 20px;
}

.organizers__logo a:first-child {
    margin-left: 0;
} 

.organizers__title {
    font-weight: 600;
    font-size: 11px;
    line-height: 12px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 10px;
    white-space: nowrap;
}
@media screen and (max-width: 1023px){
    .organizers__title {
        display: none;
    }
}
@media screen and (max-width: 767px){
    .organizers__title {        
        display: block;
        padding-right: 0;
        width: 100%;
    }    
}


.footer {
    position: relative;
    background-image: url(../img/footer-bg-n.png?2), linear-gradient(270deg, #96144E 15.1%, #ED0F73 41.46%);
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, 0 0;
    background-size: auto 100%, cover;    
}
@media (max-width: 767px){
    .footer {
        padding-top: 20px;
        padding-bottom: 20px;
        height: 360px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(270deg, #96144E 15.1%, #ED0F73 41.46%);
    }    
}

.footer a {
    color: #fff;
}

.footer img {
    display: block;
}
.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    height: 107px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    color: #fff;
}
@media screen and (max-width: 1023px){
    .footer__inner {
        padding-left: 20px;
        padding-right: 20px;       
        padding-top: 30px;
        padding-bottom: 30px;    
    }
}
@media (max-width: 767px){
    .footer__inner {
        padding-left: 15px;
        padding-right: 15px;
        display: block;
        text-align: center;      
        height: auto; 
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
    }
    .footer__inner .logo img {
        margin: 0 auto 20px;
        max-width: 60%;
    }
    .footer__inner .btn {
        margin: 0 auto;
    }
}

.footer__item p {
    margin: 0;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    white-space: nowrap;
}
@media screen and (max-width: 1023px){
    .footer__item p {
        font-size: 11px;
    }
}
@media screen and (max-width: 767px){
    .footer__item p {
        margin-top: 20px;
    }
}

.footer__item p small {
    font-size: 10px;
}

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

.footer__btns__item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    box-sizing: border-box;
    text-decoration: none;
    color: #FFFFFF;
    max-width: 100%;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    height: 38px;
    width: 234px;
    font-weight: 400;
    font-size: 14px;
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
}
@media screen and (max-width: 1023px){
    .footer__btns__item {
        width: auto;
    }
}
@media screen and (max-width: 767px){
    .footer__btns__item {
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center;
    }
}

.footer__btns__item img {
    min-width: 12px;
    display: block;
}
.footer__btns__item span {
    display: flex;
    border-left: 1px solid #fff;
    padding-left: 10px;
    margin-left: 10px;
}

#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

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