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

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

iframe {
    height: calc(100vh - 141px);
    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: 5px;
    margin-right: 5px;
    margin-top: 11px;
}

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

.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: 100vh;
    position: relative;
    background: bottom left;
}

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

    /* .footer {
        display: none !important;
    } */
}

.header {
    padding: 26px 0;
    width: 100%;
}

@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;
    flex-direction: column;
    z-index: 1;
}

.header__inner__item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

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

@media screen and (max-width:768px) {
    .logo img {
        width: auto;
        height: 53px;
    }
}

.header-menu {
    margin-top: 30px;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: 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;
}

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

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

.header-menu__link {
    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 transparent;

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

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

.header-menu__link.active {
    color: #4495d1;
    border-bottom: 1px solid #4495d1;
}

.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 #4495d1;
    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;
    width: 100%;
    position: relative;
}

.footer {
    margin-top: auto;
    padding-top: 238px;
    padding-bottom: 62px;
    position: relative;
    min-height: 407px;
    background-color: #5AA1D8;
    background-image: url(/img/footer.svg);
    background-position: center;
    background-repeat: repeat;
    background-size: 1440px auto;
}

.logo-desktop {
    display: block !important;
}

.logo-mobile {
    display: none !important;
}

@media (max-width: 767px) {
    .footer {
        margin-top: 100px;
        padding-top: 25px;
        padding-bottom: 56px;
        min-height: 516px;
        background-image: url(/img/footer-mob.svg);
        background-size: 392px auto;
    }
}

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

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

    .logo-mobile {
        display: block !important;
    }
}

.footer__inner {
    max-width: 1240px;
    padding: 0 40px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    color: #fff;
}

@media screen and (max-width: 1070px) {
    .footer__inner {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1200px) {
    .footer__inner {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .footer__inner {
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
        gap: 35px;
    }
}

.footer__item {
    min-width: 244px;
}

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

.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: transparent;
    box-sizing: border-box;
    text-decoration: none;
    color: #FFF;
    max-width: 100%;
    border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
    height: 38px;
    width: 244px;
    max-width: 100%;
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
    border: 1px solid #FFF;
}

@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: 602px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    justify-content: space-between;
}


@media screen and (max-width: 1200px) {
    .organizers {
        width: auto;
        margin: 0;
        gap: 40px;
        justify-content: space-between;
    }

    .organizers__group {
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .organizers {
        flex-direction: column;
        gap: 20px;
    }

    .organizers__group {
        gap: 20px;
    }
}

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

.organizers__group:first-child .organizers__group img {
    max-width: 100%;
    display: block;
}

.organizers__items {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
    justify-content: space-between;
}

@media screen and (max-width: 1092px) {
    .organizers__items {
        gap: 25px;
    }
}

@media screen and (max-width: 992px) {
    .organizers__items {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 20px 40px;
    }
}

.organizers__title {
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    width: min-content;
}

@media screen and (max-width: 992px) {
    .organizers__title {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .organizers__title {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

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

.organizers__item {
    display: flex;
    flex-direction: column;
}

.organizers__item p {
    margin: 0;
    font-size: 10px;
    margin-top: 5.5px;
}

@media screen and (max-width: 992px) {
    .organizers__item p {
        display: none;
    }
}

@media screen and (max-width: 767px) {

    .organizers__group:first-child .organizers__logo img {
        height: 33px;
    }

    .organizers__group .organizers__item p {
        margin-top: 8px;
    }

    .organizers__item p {
        display: block;
        text-align: left;
    }
}


#exit {
    cursor: pointer;
}

.disable {
    display: none !important;
}

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

.CircularContainer svg circle {
    stroke: #4495d1;
}

.header-menu>li:has(> .header-menu__link.disable) {
    margin-left: 0;
}

.header-menu li {
    display: flex;
}

#meetings {
    color: #e60060;
    font-weight: 700;
}