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

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

@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 - 113px);
    position: relative;
}

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

.header {
    width: 100%;
    height: 126px;
}

@media (max-width: 767px) {
    .header {}
}

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

@media (max-width: 1023px) {
    .header__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.logo {
    max-width: 60%;
}

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

.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;
    /* -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; */
    border-bottom: 1px solid #ED0F73;

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

@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;
    /*    margin-top: 16px;*/
}

.header-nav__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border: 1px solid #ED0F73;
    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;
    }
}


.page__main {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
    position: relative;
    min-height: calc(100vh - 126px - 113px);
}

@media (max-width: 767px) {
    .page__main {
        min-height: calc(100vh - 126px - 320px);
    }
}

.footer {
    position: relative;
    background: url(../img/bg-b.png?2) no-repeat 0 0;
    background-size: cover;
}

@media (max-width: 767px) {
    .footer {
        padding-top: 20px;
        padding-bottom: 20px;
        height: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: url(../img/bg-b-s.png) no-repeat 0 0;
        background-size: cover;
    }
}

.footer .logo {
    min-width: 140px;
    margin-right: 30px;
}

.footer img {
    display: block;
}

.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    height: 113px;
    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;
    }
}

@media (max-width: 767px) {
    .footer__inner {
        padding-left: 15px;
        padding-right: 15px;
        display: block;
        text-align: center;
        height: auto;
        width: 100%;
    }

    .footer__inner .logo img {
        margin: 0 auto;
    }

    .footer__inner .btn {
        margin: 0 auto;
    }
}

.footer__item {
    margin-left: 30px;
}

@media screen and (max-width: 767px) {
    .footer__item {
        margin-left: 0px;
    }
}

.footer__item p {
    margin: 0;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
}

@media screen and (max-width: 1023px) {
    .footer__item p {
        font-size: 10px;
    }
}

@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;
    background: #ED0F73;
    box-sizing: border-box;
    text-decoration: none;
    color: #fff;
    max-width: 100%;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    height: 38px;
    width: 260px;
    max-width: 100%;
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
}

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

@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;
    white-space: nowrap;
}


.organizers {
    display: flex;
    width: 530px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .organizers {
        justify-content: center;
    }
}

.organizers__item {
    display: flex;
    margin-left: 30px;
    align-items: center;
}

@media screen and (max-width: 1023px) {
    .organizers__item {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .organizers__item {
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.organizers__item:first-child {
    margin-left: 0;
    margin-top: 0;
}

.organizers__item img {
    max-width: 100%;
    display: block;
}

@media screen and (max-width: 767px) {
    .organizers__item img {}
}

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

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

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

.organizers__title {
    font-weight: 600;
    font-size: 9.4px;
    line-height: 12px;
    color: #FFFFFF;
    margin-right: 13px;
}

@media screen and (max-width: 1023px) {
    .organizers__title {}
}

@media screen and (max-width: 767px) {
    .organizers__title {
        margin-bottom: 12px;
        width: 100%;
        margin-right: 0;
    }
}


#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

.MuiCircularProgress-root {
    color: #ED0F73 !important;
}

.CircularContainer svg circle {
    stroke: #ED0F73;
}

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

iframe {
    border: none !important;
}

div#kryg_soobsheniya {
    display: none;
    width: 10px;
    height: 10px;
    background-color: #159a34;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 6px;
}

div#kryg_vstrechi {
    display: none;
    width: 10px;
    height: 10px;
    background-color: #e60060;
    border-radius: 50%;
    margin-left: 2px;
    margin-right: 5px;
    margin-top: 6px;
}

.invisible {
    visibility: hidden;
    height: 1px;
    width: 1px;
}

#meetings {
color: #159a34;
font-weight: 700;
}

@media (max-width: 767px) {
    div#kryg_soobsheniya-mob {
        display: none;
        width: 10px;
        height: 10px;
        background-color: #159a34;
        border-radius: 50%;
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 11px;
    }

    div#kryg_vstrechi-mob {
        display: none;
        width: 10px;
        height: 10px;
        background-color: #e60060;
        border-radius: 50%;
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 11px;
    }
}