@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

:root{
    --color-mrc-blue: #6ea4d2;
    --color-mrc-yellow: #ffda94;
    --color-mrc-orange: #f2682a;
    --color-mrc-violet: #29235c;
    --color-mrc-lightblue: #ddeeff;
    --gradient-radial: radial-gradient(56% 103%, #ffda94, #a1d7ec);
    --gradient-linear: linear-gradient(0deg, #ffda94 0% , #ddeeff 100%);
}
html, body{
    min-height: 100%;
    height: 100%;
}
body{
    height: 100%;
}
main {
    min-height: 100%;
}

.currency{
    text-transform: uppercase;
}

a,
.btn-link{
    transition: all 0.4s;
}
a:hover,
.btn-link:hover
{
    color: #f2682a !important;
    text-decoration: underline;
}
.container{
    max-width: 1200px;
    min-width: 1200px;
    font-size: 17px;
    line-height: 22px;
    font-family: 'IBMPlexSans', sans-serif;
}
.header_banner .container {
    padding: 130px 15px 40px 15px;
}
h1, h2, h3, h4, h5, h6{
    /*font-family: 'Playfair Display', serif;*/
    font-weight: bold;
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
    min-width: 1200px;
}
a.header__logo {
    display: inline-block;
    max-width: 140px;
    margin-left: 9px;
    margin-right: 13px;
}
a.header__logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
.topBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    font-size: 17px;
}
.topBar a{
    text-decoration: none;
    color: var(--color-mrc-violet);
    font-weight: bold;
}
.nav-item a{
    text-decoration: none;
    /*font-family: 'Montserrat', sans-serif;*/
}
.header_banner .header_number {
    text-align: left;
    margin-top: 0;
    font-family: 'IBMPlexSans', sans-serif;
    font-size: 75px;
    line-height: 75px;
    font-weight: 600;
}

.header_banner .h1{
    font-size: 30px;
    font-weight: bold;
}
.header_banner .header_left{
    text-align: left;
    padding-right: 20%;
    font-size: 35px;
}
.header_banner .h1.header_right{
    text-align: right;
    font-size: 75px!important;
}
.header_banner .header_right div{
    text-align: right;
    font-size: 35px;
}

.header__lang{
    margin-left: 34px;
    padding: 8px 60px 8px 8px;
    background-color: rgba(138, 210, 203, 70%);
    border-radius: 6px;
    box-shadow: 0 0 10px 6px rgb(0 0 0 / 19%);
    font-weight: bold;
    position: relative;

}
.header__lang::after{
    content: ' ';
    position: absolute;
    display: inline-block;
    height: 42px;
    width: 42px;
    vertical-align: middle;
    margin-right: 9px;
    top: -2px;
    left: 58px;
}
.header__lang.lang_ru::after{
    background-image: url("/images/icons/free-icon-russia-330437.png")
}
.header__lang.lang_en::after{
    background-image: url("/images/icons/united-kingdom.png")
}
.signIn_link{
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 0 10px 6px rgb(0 0 0 / 19%);
    font-weight: bold;
    background: var(--color-mrc-lightblue);
    display: flex;
    align-items: center;
}
.signIn_link:hover {
    background-color: var(--color-mrc-blue);
}
.signIn_link svg{
    fill: var(--color-mrc-violet);
    transition: all 0.4s;
    width: 24px;
    height: auto;
    margin-right: 10px;
}
.signIn_link:hover svg{
    fill: var(--color-mrc-orange)
}
/*.signIn_link::before {*/
/*    content: ' ';*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    vertical-align: bottom;*/
/*    display: inline-block;*/
/*    background-image: url("/images/icons/enterps.png")*/
/*}*/
.signIn_link::before:hover {
    content: ' ';
    width: 24px;
    height: 24px;
    vertical-align: bottom;
    display: inline-block;
    background-image: url("/images/icons/enterps_red.png")
}
.background{
    position: relative;
    padding-bottom: 40px;
}
.background::before,
.background::after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.background::before {
    background-image: url("/images/header_bg_2022.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .3;
    z-index: -2;
}
.background::after{
    background: var(--color-mrc-blue);
    opacity: .3;
    z-index: -1;
}
.header_banner{
    color: var(--color-mrc-violet);
    /*padding-top: 500px;*/
    /*background-size: 1300px;*/
    /*background-repeat: no-repeat;*/
    /*background-position: 50% 0;*/
}
.header_banner .registration_button {
    position: relative;
    padding: 26px 90px 26px 90px;
    border-radius: 12px;
    color: var(--color-mrc-violet);
    font-weight: bold;
    font-size: 26px;
    box-shadow: 0 0 10px 6px rgb(0 0 0 / 19%);
    display: block;
    margin: 40px auto 0;
    width: max-content;
    overflow: hidden;
    background: var(--color-mrc-lightblue);
    transition: 0.4s all;
}
.header_banner .registration_button:hover{
    color: #B61615 !important;
    text-decoration: none !important;
    background: var(--color-mrc-blue);
}
/*
.header_banner .registration_button::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gradient-radial);
    transition: all 0.4s;
    z-index: 0;
}
.header_banner .registration_button:hover::after {
    transform: scale(1.5);
}
.header_banner .registration_button span{
    position: relative;
    z-index: 2;
}
*/

.header_banner .container{
    position: relative;
}
.header_banner .container h1{
    /*color: var(--color-mrc-violet);*/
    /*font-size: 60px;*/
    /*padding-top: 21px;*/
    /*margin-bottom: 8px;*/
    font-family: 'IBMPlexSans', sans-serif;
    text-align: right;
    font-size: 37px;
}
.header_banner p{
    font-size: 23px;
    line-height: 1;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    font-family: 'IBMPlexSans', sans-serif;
    font-weight: bold;
}
.header_banner .bg_text{
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 155px;
    position: absolute;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;
    width: 100%;
    text-align: center;
    bottom: 85px;
}
.header_banner .tenText{
    position: relative;
    display: inline-block;
}
.header_banner .tenText .digit{
    opacity: 0.2;
}
.header_banner .bg_text span.bigText{
    opacity: 0.1;
    margin: 0 31px;
    font-size: 115px;
}
.header_banner .years_text {
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 0;
    width: 100%;
    text-align: center;
    font-size: 34px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--color-mrc-violet);
    font-style: italic;
}
.main_icons{
}
.main_icons ul{
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin: 0;
}
.main_icons .border_between {
    width: 3px;
    height: 114px;
    background-color: #00008D;

}
.main_icons ul li{
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 35%;
    transition: all 0.4s;
}
.main_icons ul li.yellow_btn a {
    height: 200px;
    padding: 0 0 0 0;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-bottom: 58px;
}
.gallery_parent {
    background-color: var(--color-mrc-yellow) !important;
    max-width: 100% !important;
    min-width: 100% !important;
}
#gallery li:nth-child(1)>a{
    background: url("/images/icons/new_icons/notepad_black.png") no-repeat center center;
    background-size: 120px;
}
#gallery li:nth-child(1)>a:hover{
    background: url("/images/icons/new_icons/notepad_red.png") no-repeat center center;
    background-size: 120px;
}
#gallery li:nth-child(3)>a{
    background: url("/images/icons/new_icons/video-lesson_black.png") no-repeat center center;
    background-size: 170px;
}
#gallery li:nth-child(3)>a:hover{
    background: url("/images/icons/new_icons/video-lesson_red.png") no-repeat center center;
    background-size: 170px;
}
#gallery li:nth-child(5)>a{
    background: url("/images/icons/new_icons/certificate_black.png") no-repeat center center;
    background-size: 100px;
}
#gallery li:nth-child(5)>a:hover{
    background: url("/images/icons/new_icons/certificate_red.png") no-repeat center center;
    background-size: 100px;
}
#gallery li:nth-child(7)>a{
    background: url("/images/icons/new_icons/smartphone_black.png") no-repeat center center;
    background-size: 130px;
}
#gallery li:nth-child(7)>a:hover{
    background: url("/images/icons/new_icons/smartphone_red.png") no-repeat center center;
    background-size: 130px;
}
#gallery li:nth-child(9)>a{
    background: url("/images/icons/new_icons/stand_black.png") no-repeat center center;
    background-size: 140px;
}
#gallery li:nth-child(9)>a:hover{
    background: url("/images/icons/new_icons/stand_red.png") no-repeat center center;
    background-size: 140px;
}
#gallery li:nth-child(11)>a{
    background: url("/images/icons/new_icons/museum_black.png") no-repeat center center;
    background-size: 140px;
}
#gallery li:nth-child(11)>a:hover{
    background: url("/images/icons/new_icons/museum_red_photo.png") no-repeat center center;
    background-size: 140px;
}

.main_icons ul li.yellow_btn a div {
    font-size: 17px;
    padding-top: 21px;
    position: absolute;
    width: 100%;
    bottom: 29px;
    font-family: 'IBMPlexSans', sans-serif;
    font-weight: bold;
    margin-bottom: -50px;
}
.main_icons ul li.yellow_btn a:hover {
    text-decoration: none;
}
.main_icons ul li img{
    display: block;
    margin: 0 auto;
}
.main_icons .yellow_btn{
    margin: 0.5px;
}
.blue_bg{
    background-color: var(--color-mrc-blue);
}
.lightblue_bg{
    background: var(--color-mrc-lightblue);
}
.organizers{
    position: relative;
    padding: 40px 0;
    margin-bottom: -10px;
}
.organizers::before{
    content: ' ';
    display: block;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 10px;
    position: absolute;
    top: -10px;
}

.photoGallery_block{
    background-position: center;
    background-size: contain;
    background-repeat-y: no-repeat;
    position: relative;
    margin-bottom: 37px;
    overflow: hidden;
    height: 430px;
}
.photoGallery_block .photoGallery{
    float: left;
    width: 48%;
    margin: 0 !important;
}
.photoGallery_block .big_img{
    flex: 33.333%;
}
.photoGallery_block .right_gallery{
    flex: 66.666%;
    margin: 0 !important;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.photoGallery_block .right_gallery a{
    width: 20%;
    flex: 20%;
}
.photoGallery_block .right_gallery img{
    width: 47.5%;
    float: left;
}

.photoGallery_block{
    display: flex;
}
.photoGallery_block a{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.photoGallery img {
    /*max-width: 65%;*/
}
.galleryDates {
    position: absolute;
    padding: 14px 91px;
    background-color: #FFFFFF;
    font-weight: bold;
    font-size: 25px;
    border: 2px solid var(--color-mrc-violet);
    color: var(--color-mrc-violet);
    top: calc(50% - 27px);
    left: calc(50% - 150px);
    letter-spacing: 2.6px;
}


h1{
    /*text-align: center;*/
    /*text-transform: uppercase;*/
    /*color: var(--color-mrc-violet);*/
    /*padding: 0 40px;*/
    /*font-size: 41px;*/
}
h2{
    font-family: 'IBMPlexSans', sans-serif;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 20px;
}
h3, h4{
    font-family: 'IBMPlexSans', sans-serif;
    color: var(--color-mrc-violet);
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 20px;
}
.container .wrapper p{
    margin-bottom: 21px;
}
.container > h1{
    margin-bottom: 45px;
    text-align: center;
    font-family: 'IBMPlexSans', sans-serif;
}
.organizers a:hover,
.organizers a:focus{
    text-decoration: none;
    outline: none;
    color: #000000;
}
.organizers .company__logos {
    display: flex;
    justify-content: space-evenly;
    margin: 27px 0 9px;
    font-size: 15px;
    line-height: 18px;
    padding: 0 58px;
}

footer{
    /*text-align: center;*/
    /*box-shadow: 0 5px 5px 10px rgba(0,0,0,0.25);*/
    /*padding: 13px 0 16px 0;*/
    /*font-size: 14px;*/
    /*font-family: 'Montserrat', sans-serif;*/
    /*position: absolute;*/
    /*top: calc(100% - 50px);*/
    /*width: 100%;*/
    background: transparent;
    margin-top: -60px;
    /*position: relative;*/
    z-index: 11111111;
}
.footer_background {
    background: url("/images/footer_background.png") no-repeat top center;
    background-size: 102%;
    height: 76px;
}
footer.footer .decor_box {
    position: relative;
    z-index: 1;
}
/*.footer .logo {*/
/*    background: url("/images/footer_logo.png") no-repeat;*/
/*    width: 80px;*/
/*    height: 82px;*/
/*}*/
.footer_content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'IBMPlexSans', sans-serif;
    font-size: 17px;
    font-weight: bold;
    background-color: var(--color-mrc-blue);
    padding-bottom: 22px;
    padding-top: 31px;
}
.footer_content .list {
    /*display: flex;*/
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 247px;
    List-style: none;
}
.footer_content .list li {
    margin-right: 10px;
}
.footer_content .logo {
}
.footer_content .date_and_place {
    width: 247px;
}

#tpl-subscribe,
#tpl-forgot-credential,
#modal-soon,
#loggined_only,
#mobile_app,
.modalWindow,
.tpl-persona{
    width: 100%;
    max-width: 1200px;
    padding: 40px 80px 20px;
    border-radius: 10px;
}
#loggined_only {
    max-width: 1200px;
}
.modalWindow h1{
    font-size: 28px;
    font-family: 'IBMPlexSans', sans-serif;
    font-weight: bold;
    color: var(--color-mrc-violet);
}

.modalWindow li,
.tpl-persona p{
    font-size: 17px;
}
.modalWindow p {
    font-family: 'IBMPlexSans', sans-serif;
    text-align: center;
    font-size: 17px;
    /*font-weight: bold;*/
}
#loggined_only a{
    text-decoration: underline;
}
#tpl-forgot-credential form{
    min-width: 550px;
}
#tpl-subscribe h1{
    text-align: center;
}
.fancybox-slide--html button[type=submit],
.fancybox-slide--html button[type=submit]:hover,
.fancybox-slide--html button[type=submit]:focus,
.fancybox-slide--html button[type=submit]:active{
    background-color: var(--color-mrc-violet)!important;
    border-color: var(--color-mrc-violet)!important;
    color: #FFFFFF;
    outline: none!important;
    box-shadow: none!important;
    display: block;
    font-family: 'Montserrat', sans-serif;
}
#inner-content.main button,
#inner-content.main button:hover,
#inner-content.main button:focus,
#inner-content.main button:active,
#inner-content.main input[type=submit],
#inner-content.main input[type=submit]:hover,
#inner-content.main input[type=submit]:focus,
#inner-content.main input[type=submit]:active {
    background-color: var(--color-mrc-violet);
    border-color: var(--color-mrc-violet);
    color: #FFFFFF;
    outline: none;
    box-shadow: none;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

#inner-content.main a.btn-primary,
#inner-content.main a.btn-primary:hover,
#inner-content.main a.btn-primary:focus,
#inner-content.main a.btn-primary:active{
    background-color: var(--color-mrc-violet);
    border-color: var(--color-mrc-violet);
    color: #FFFFFF;
    outline: none;
    box-shadow: none;
    font-family: 'Montserrat', sans-serif;
}

*[data-fancybox-close],
*[data-fancybox-close]:hover,
*[data-fancybox-close]:active,
*[data-fancybox-close]:focus{
    background-color: transparent!important;
    border-color: transparent!important;
}
#inner-content:not('.is_admin') .btn,
.btn:hover,
.btn:active,
.btn:focus
{
    display: block;
    color: #FFFFFF;
}
.tpl-persona{
    max-width: 1200px;
}
.tpl-persona .picture {
    height: 150px;
    width: 150px;
    margin: 0 20px 15px 0;
    float: left;
}
.tpl-persona p {
    text-align: justify;
}
.contacts {
    padding-bottom: 182px;
    padding-top: 29px;
}
.contacts p{
    font-size: 17px;
}
.contacts a {
    color: var(--color-mrc-violet);
    text-decoration: underline;
}
.contacts ul.contacts-list{
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}
.contacts ul.contacts-list li{
    margin-top: 21px;
    margin-bottom: 26px;
    padding-left: 44px;
    font-size: 17px;
    line-height: 23px;
    position: relative;
}
.contacts ul.contacts-list li::before{
    content: '';
    display: block;
    float: left;
}
.contacts ul.contacts-list li.point::before{
    position: absolute;
    width: 27px;
    height: 39px;
    background: url("/images/icons/contacts_location.png") no-repeat;
    left: -3px;
    top: 0;
}
.contacts ul.contacts-list li.phone::before{
    background: url("/images/icons/cotacts_phone.png") no-repeat;
    position: absolute;
    width: 33px;
    height: 39px;
    left: -3px;
    top: 0;

}
.contacts ul.contacts-list li.mail::before{
    background: url("/images/icons/contacts_mail.png") no-repeat;
    position: absolute;
    width: 33px;
    height: 39px;
    left: -3px;
    top: 0;
}
.contacts_block {
    display: flex;
    justify-content: space-between !important;
}
.contacts_background {
    background: url("/images/contacts_background.png") no-repeat top center;
    background-size: 104%;
    height: 180px;
    margin-top: -144px;
}
.drop-shadow{
    position: relative;
    z-index: 1;
}

.sponsors {
    padding: 42px 0 29px 0;
}
.sponsors .sponsor_packages{
    color: black !important;
    text-decoration: underline;
}
.sponsors h1{
    margin: 60px 0 64px 0;
}
.sponsors .d-flex{
    justify-content: space-around;
    align-items: center;
}
.sponsors .sponsors_package {
    margin-bottom: 76px;
}
.announcements {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-content: center !important;
    justify-content: center !important;
}
.announcements a {
    color: black !important;
}
.accents, .accents a{
    color: black;
}
.accents{
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 10%);
    position: relative;
}

.accents::before,
.accents::after{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.accents::before {
    background: url('/images/accents_bg.jpg');
    opacity: 0.1;
    z-index: -2;
}
.accents::after {
    background-color: var(--color-mrc-blue);
    opacity: .3;
    z-index: -1;
}

.accents .right_side{

}
.accents .right_side>div:not(.placeholder){
    display: none;
}
.accents .left_side{
    /*background-color: #DBE6DE;*/
    background-color: #d3f0f58c;
}
.accents .left_side a{
    text-decoration: none;
}
.accents .left_side ul {
    margin: 16px 0 0 0;
    padding: 0;
    list-style-type: none;
    font-size: 17px;
}
.accents .right_side ul {
    margin-left: 18px;
    margin-top: 19px;
    font-size: 20px;
    list-style-type: none;
}
.accents .right_side ul li{
    margin-bottom: 16px
}
.accents .right_side i{
    font-size: 18px;
}
.accents ul li{
    margin: 0;
}
.accents a{
    display: inline-block;
    width: 99%;
    padding: 12px 0 12px 20px;
}
.accents a:hover,
.accents a.selected{
    text-decoration: none;
}
.accents a.selected:focus {
    margin-left: 45px;
    color: #f2682a;
}
.accents .row>div {
    padding-bottom: 20px;
}
.compensate-for-scrollbar header{
    padding-right: 17px;
}
.accents .row>div.right_side {
    padding: 20px 0 20px 50px;
}

.accents h3{
    font-size: 25px;
    padding-left: 40px;
    margin: 16px 0;
}
.accents .right_side h3 {
    text-align: left;
    padding-left: 0;
}
.accents h4 {
    font-family: 'IBMPlexSans', sans-serif;
    font-weight: normal;
    font-size: 20px;
    margin-top: 28px;
}
.accents .content {
    margin-left: 60px;
}
.accents .indent {
    margin-top: 50px;
    line-height: 30px;
}
.personalities{

}
.personalities .container_persona {

}
.persona_background {
    background: url("/images/personas_background.png") no-repeat top center;
    background-size: 102%;
    height: 111px;
}
.contacts h2{
    font-family: 'IBMPlexSans', sans-serif;
    padding-top: 6px;
    font-size: 25px;
    padding-bottom: 23px;
    text-align: left;
}
.personalities h2 {
    font-family: 'IBMPlexSans', sans-serif;
    padding-top: 6px;
    font-size: 25px;
    /*padding-bottom: 23px;*/
    text-align: center;
}
.personalities .persona_name {
    color: black;
    font-weight: bold;
    font-family: 'IBMPlexSans', sans-serif;
    margin-bottom: 10px;
}
.personalities .persona_description {
    color: black;
    font-family: 'IBMPlexSans', sans-serif;
}
.personalities .big_block .picture {
    margin-right: 10px;
}
.personalities a{
    color: black;
    text-decoration: underline;
}
.personalities .big_block {
    width: 60%;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.personalities .big_block:nth-child(even) {
    padding-left: 15px;
}
.personalities .big_block:nth-child(odd) {
    padding-right: 15px;
}
.personalities .big_block,
.personalities .small_block{
    cursor: pointer;
}
.big_block .picture{
    width: 190px;
    min-width: 190px;
}
.personalities .small_block {
    width: 200px;
}
.personalities .picture,
.tpl-persona .picture{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 10px;
    height: 0;
    padding-bottom: 190px;
    background-color: #FFF;
}
.tpl-persona .picture{
    width: 240px;
    height: 240px;
    box-shadow:  0 0 16px 2px var(--color-mrc-blue);
}
.personalities .persona_text{
    height: 100%;
    box-shadow: 0 0 10px -5px var(--color-mrc-violet);
    border-radius: 10px;
    width: 100%;
    transition: all 0.4s;
    padding: 15px;
}
.personalities .persona_info {

}
.personalities .small_block .persona_name,
.personalities .big_block .persona_text{
    transition: all 0.4s;
}
.personalities .small_block:hover .persona_name,
.personalities .big_block:hover .persona_text{
    background-color: var(--color-mrc-blue);
    box-shadow: 0 0 16px -5px var(--color-mrc-violet);
}

/*.personalities .picture.rus::before,
.personalities .picture.usa::before
{
    content: '';
    display: block;
    width: 38px;
    height: 26px;
    position: absolute;
    background-image: url("/images/icons/flags_sprite.png");
    right: -19px;
    top: 6px;
}
.personalities .picture.rus::before{
    background-position: 0 0;
}
.personalities .picture.usa::before{
    background-position: 0 -29px;
}*/
.personalities .flag {
    display: block;
    width: 41px;
    height: 35px;
    margin-bottom: 20px;
}
.personalities .flag.flag-ru {
    background-image: url("/images/icons/free-icon-russia-330437.png");
}
.personalities .flag.flag-uk {
    background-image: url("/images/icons/united-kingdom.png");
}
.personalities .small_block .persona_name {
    padding: 10px 5px;
    line-height: 30px;
    text-align: center;
    white-space: normal;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 16px 2px var(--color-mrc-blue);
    border-radius: 10px;
}
.personalities .small_block .persona_name:hover {
    background-color: var(--color-mrc-blue);
}
#about,
.announces {
    padding-top: 7px;
}
#about_block {

}
.about_conrgess_background {
    background: url('/images/about_congress_background.png');
    background-size: cover;
    padding-top: 80px;
}
.announces {
    position: relative;
    overflow: hidden;
}
.announces::before,
.announces::after{
    content: "";
    display: block;
    position: absolute;
    background: url("/img/logo_2022.jpg?v=1") no-repeat top center;
    width: 80%;
    height: 100%;
    /*opacity: 5%;*/
    filter: opacity(0.05);
    background-size: contain;
    z-index: -2;
}
.announces::before{
    left: -30%;
    top: 0;
}
.announces::after{
    right: -40%;
    bottom: -13%;
}

.announces a,
.organizers a{
    text-decoration: none;
}
.announces a.tab-item{
    padding: 21px 90px 12px 90px;
    border: 2px solid var(--color-mrc-yellow);
    border-radius: 6px;
    text-align: center;
}
.announces a.tab-item::before{
    content: '';
    width: 0;
    height: 0;
    border-bottom: 0;
    border-top: 24px solid var(--color-mrc-violet);
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    position: absolute;
    bottom: -24px;
    left: calc( 50% - 40px);
    display: none;
}
.announces a.tab-item:hover,
.announces a.tab-item.selected
{
    color: black;
    background-color: var(--color-mrc-yellow);
    text-decoration: none;
    box-shadow: 0 0 10px 6px rgb(0 0 0 / 4%);
}
a.tab-item span {
    display: block;
    margin-bottom: 16px;
}
.announces .tab-item.selected::before{
    display: none;
}
.announces .tab-panes {
    margin-top: 26px;
    padding: 30px 10px 20px;
    position: relative;
    overflow: hidden;
}
.announces .tab-panes::before,
.announces .tab-panes::after{
    content: '';
    display: block;
    width: 0;
    height: 42px;
    position: absolute;
    top: 0;
}
.announces .tab-panes::before{
    left: 0;
}
.announces .tab-panes::after{
    right: 0;
}
.announces .tab-panes .tab-pane{
    display: block;
    position: relative;
    /*justify-content: space-around;*/
}
.announces .tab-panes .tab-pane:not(.active){
    display: none;
}
.announces .tab-panes .tab-pane a{
    display: block;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    float: left;
    margin-right: 3.333333%;
    width: 22%;
}
.announces .tab-panes .tab-pane a:nth-child(3n + 3) {
    margin-right: 0;
}
.announces .tab-panes .tab-pane a{
    margin: 0 10px 30px;
}
.border_bottom{
    border-bottom: 2px solid var(--color-mrc-yellow);
    width: 142px;
    margin: 20px auto 0;
}

/*.announce:before{*/
/*    position: absolute;*/
/*    top: 410px;*/
/*    left: 72px;*/
/*    width: 20%;*/
/*    border-top: 2px solid #000;*/
/*    content:"";*/
/*}*/

.announce h1 {
    margin-bottom: 24px;
}
.announce p {
    text-align: center;
    margin-top: 13px;
    font-size: 19px;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.4s;
    color: #000;
}
.announce:hover p{
    color: var(--color-mrc-yellow);
}

.terms.span.margin-0 {
    max-height: 330px;
    overflow-x: hidden;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: 0;
    margin: 0 0 10px 0;
    max-width: 100%;
}
.terms h3,
.terms h4{
    font-family: 'Montserrat', sans-serif;
    color: var(--color-mrc-violet);
    font-weight: bold;
}

.terms h3{
    font-size: 20px;
}
.terms h4{
    font-size: 17px;
}
.terms>p {
    text-align: justify;
}
.terms>* {
    padding: 0 10px !important;
}
.green_figure {
    background: url("/images/green_figure.png") no-repeat top center;
    background-size: 102%;
    height: 66px;
}
/*.background:after {
    background: url("/images/green_figure.png") no-repeat;
    background-size: 1952px;
    width: 1922px;
    height: 111px;
    position: absolute;
    content: "";
    top: 623px;
    right: 0;
}*/
.inner-page #inner-content {
    /*padding-bottom: 50px;*/
}
#inner-content {
    background: transparent;
    /*margin-top: -66px;*/
    position: static;
    z-index: 1;
}
.control-group {
    margin-bottom: 20px;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown{
    border: 1px solid #ced4da;
}
.select2-container--default .select2-search--dropdown .select2-search__field:active,
.select2-container--default .select2-search--dropdown .select2-search__field:focus{
    outline: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
    border-radius: .25rem;
}
a#waitreg {
    border-color: #b4d5de;
    background-color: #e4eff2;
}

.logout {
    width: 39px;
    margin-left: 38px;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 0 10px 6px rgb(0 0 0 / 19%);
    background: var(--color-mrc-lightblue);
    transition: all 0.4s;
}
.logout svg{
    fill: var(--color-mrc-violet);
    transition: all 0.4s;
}
.logout:hover{
    background: var(--color-mrc-blue);
}
.logout:hover svg{
    fill: var(--color-mrc-orange);
}

#god-mode-pane {
    position: absolute;
    /* width: 100%; */
    background-color: #ffdada;
    border: 1px solid;
    padding: 10px;
    box-shadow: 0 0 10px -4px #000;
}
.fancybox-content a,
.fancybox-content a:focus,
.fancybox-content a:hover,
.fancybox-content a:active {
    outline: none;
}
a.btn-primary:focus,
a.btn-primary:active,
a.btn-primary:hover{
    color: #FFFFFF;
}
.raf_buttons > *{
    margin-right: 20px;
}

.accents h3, .accents h4 {
    color: black;
}

.messagesList.REG_INFO .message .attachments .attachment.template {
    display: none;
}

#upToTop{
    visibility: hidden;
    opacity: 0;
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 99;
    cursor: pointer;
    box-shadow: 0 0 0 0 var(--color-mrc-orange);
    transition: all 0.4s;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    background-color: var(--color-mrc-orange);
}

#upToTop svg{
    fill: #FFFFFF;
    opacity: 0.6;
}


@media screen and (max-device-width: 1000px) {
    .wrapper{
        margin: 0 15px;
    }
    .header__lang {
        margin-right: 15px;
    }
    .mobile-padding-left{
        padding-left: 15px!important;
    }
}

.goBackLink{
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
    font-size: 25px;
    font-weight: 400;
}
.sponsorCard p{
    text-align: justify;
}
.playfairHeader{
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 30px;
    margin-top: 12px;
    margin-bottom: 36px;
}
.card_contacts .container {
    font-size: 20px;
}
.sponsorDescription p{
    margin-bottom: 11px;
}
.sponsorDescription p a{
    color: #000000;
    text-decoration: none;
}

.card_contacts {
    background-color: #cce1d8;
    position: relative;
    margin: 40px 0;
}
.card_contacts::before,
.card_contacts::after {
    content: ' ';
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
}
.card_contacts::before {
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 25%);
    top: -10px;
}
.card_contacts::after {
    box-shadow: 0 -5px 5px 0 rgb(0 0 0 / 25%);
    bottom: -10px;
}
.card_contacts .container{
    padding: 30px 15px;
}
.card_contacts i.icon{
    display: inline-block;
    height: 35px;
    width: 35px;
    background-image: url('/images/icons/cardSprite.png');
    vertical-align: middle;
    background-repeat: no-repeat;
}
.card_contacts i.icon.mapPoint{
    background-position: 0 0;
}
.card_contacts i.icon.phone{
    background-position: 0 -35px;
}
.card_contacts i.icon.fax{
    background-position: 0 -70px;
}
.card_contacts i.icon.planet{
    background-position: 0 -105px;
}
.card_contacts i.icon.email{
    background-image: url('/images/icons/sprite.png');
    background-position: 0 -56px;
    height: 30px;
}
.card_contacts img{
    max-height: 300px;
}
.epigraf {
    font-style: italic;
    margin-bottom: 500px;
    position: relative;
    margin-left: 53px;
    margin-top: 85px;
}
.epigraf .sign {
    color: var(--color-mrc-violet);
    margin-top: 20px;
}
/*.epigraf:after {*/
/*    background: url("/img/culture/culture_image1.png") no-repeat;*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 1132px;*/
/*    height: 604px;*/
/*    left: -3px;*/
/*    top: 0;*/
/*}*/
#modal-culture img{
    max-width: 100%;
    height: auto;
    margin-top: 8px;
}
#modal-culture .floatRight{
    float: right;
    /*margin-left: 15px;*/
}
#modal-culture .floatLeft{
    float: left;
    margin-right: 15px;
}
/*#modal-culture .innerImage{*/
/*    max-width: 400px;*/
/*    max-height: 425px;*/
/*    height: auto;*/
/*}*/
.culture_image2 {
    max-width: 400px;
    max-height: 425px;
    height: auto;
}
.end_paragraph::before{
    content: '';
    display: block;
    background-color: var(--color-mrc-violet);
    height: 1px;
    width: 20%;
    margin: 20px auto 10px;
}
#modal-culture p {
    text-align: justify;
}
#modal-culture h2 {
    margin-top: 40px;
    text-align: center;
}
body.modal-open header{
    padding-right: 17px;
}
.tpl-persona h2{
    margin-top: 30px;
    margin-bottom: 10px;
}
.tpl-persona ul{
    list-style-type: none;
}
.tpl-persona ul li:before {
    color: var(--color-mrc-violet);
    content: "•";
    font-size: 25px;
    position: absolute;
    margin-left: -20px;
    line-height: 26px;
}

.userActions .btnFreeParticipation.btn-primary,
.userActions .btnGrant.btn-primary{
    background-color: transparent;
    color: #212529;
    border-color: transparent;
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.announce_image{
    height: 305px;
    text-align: center;
}
.announce_image img{
    max-width: 210px;
    max-height: 400px;
}
#modal-NMO {
    max-width: 1200px;
    background: url("/images/popup_background_NMO.png") no-repeat;
    background-size: 100% auto;
}
#modal-NMO .modal_list li {
    color: var(--color-mrc-blue);
}
#modal-NMO .modal_list li::marker {
    font-size: 2rem;
}

#modal-NMO .modal_list li span {
    color: black;
    position: relative;
    top: -5px;
}
.fancybox-bg {
    background: var(--color-mrc-lightblue);
}
.fancybox-button svg {
    color: var(--color-mrc-lightblue);
}
.fancybox-slide--html .fancybox-close-small {
    padding: 0;
    top: 35px;
    right: 15px;
}
.fancybox-button {
    height: 60px;
    width: 80px;
}
#modprogram {
    max-width: 1234px;
    font-family: 'IBMPlexSans', sans-serif;
    border-radius: 18px;
    background-color: #FFFFFF;
    background-image: url("/images/popup_background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}
#modprogram h2 {
    font-size: 25px;
}
#modprogram .flex_block {
    display: flex;
    justify-content: space-between;
}
.modal_program p{
    font-weight: normal !important;
}

#mobile_app {
    font-family: 'IBMPlexSans', sans-serif;
    background: url("/images/popup_background_NMO.png") no-repeat;
    background-size: 100% auto;
}

#mobile_app .modal_list li {
    color: var(--color-mrc-blue);
}
#mobile_app .modal_list li::marker {
    font-size: 2rem;
}
#mobile_app .modal_list li span {
    color: black;
    position: relative;
    top: -5px;
}
.justify-content-between {
    /*justify-content: center !important;*/
}
.h1, h1 {
    font-size: 30px !important;
}
#program_table {
    font-size: 17px;
}
#exhibition {
    background: url("/images/popup_background_NMO.png") no-repeat;
    background-size: 100% auto;
}


header{

}
header::before{
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--color-mrc-blue);
    background-image: var(--gradient-linear);
    box-shadow: 0 0 10px 6px rgb(0 0 0 / 0%);
    transition: 0.4s all;
    opacity: 0;
    z-index: -1;
}
header.fixed::before{
    box-shadow: 0 0 10px 6px rgb(0 0 0 / 20%);
    opacity: 1;
}

.decor_box.decor_blue path{
    fill: var(--color-mrc-lightblue);
    filter: drop-shadow( 0 -6px 7px var(--color-mrc-lightblue) );
}
.decor_box.decor_yellow path{
    fill: var(--color-mrc-yellow);
    filter: drop-shadow( 0 -6px 7px var(--color-mrc-yellow) );
}

footer .decor_box path{
    fill: var(--color-mrc-blue);
    filter: drop-shadow( 0 -6px 7px var(--color-mrc-blue) );
}

.bg_blue1{
    background-color: var(--color-mrc-yellow);
}
.decor_box {
    margin-top: -200px;
    margin-bottom: -150px;
    position: relative;
    z-index: -1;
}
.main_menu{
    list-style: none;
    margin: 0;
    padding: 6px 0 27px;
    display: flex;
    justify-content: space-around;
}
.main_menu li{
    list-style: none;
    margin: 0;
    padding: 0;
    width: calc( 100% / 6 );
    position: relative;
}
.main_menu li::after{
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #030089
}
.main_menu li:last-child::after{
    display: none;
}
.main_menu a{
    color: #00012D;
    text-decoration: none;
    transition: all 0.4s;
    text-align: center;
    display: block;
    font-weight: 600;
}
.main_menu div{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_menu a:hover{
    color: #f2682a;
    text-decoration: none;
}
.main_menu a .icon{
    fill: #00012D;
    transition: all 0.4s;
    display: block;
    height: auto;
    max-width: 100px;
    max-height: 90px;
}
.main_menu a:hover .icon{
    fill: #f2682a;
}

/*
.photoGallery_block > * {
    width: 50%;
    flex: 50%;
}
.right_gallery{
    display: flex;
    flex-wrap: wrap;
}
.right_gallery > *{
    width: 33%;
    flex: 33%;
    padding-bottom: 30%;
}
*/
.background:not(.frontpage) .header_banner .header_number{
    margin-top: 0;
}
.background:not(.frontpage){
    padding-bottom: 0;
}
.background:not(.frontpage) .header_banner .h1 {
    margin-bottom: 20px;
}

.personalities {
    background: var(--color-mrc-lightblue);
    position: relative;
}


.btn-info,
.btn-info:hover{
    background-color: var(--color-mrc-blue);
    border-color: var(--color-mrc-blue);
}
a,
.fancybox-inner h1{
    color: var(--color-mrc-violet);
}

.modal_program .downloadButton,
.modal_program .downloadButton:hover,
.modalWindow .downloadButton,
.modalWindow .downloadButton:hover{
    padding: 5px 20px;
    border-radius: 10px;
    background-color: var(--color-mrc-yellow);
    box-shadow: 0 0 16px 2px var(--color-mrc-yellow);
    color: black;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: max-content;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--color-mrc-orange);
    text-transform: uppercase;
}
a.downloadButton br {
    display: block;
    height: 3px;
    background: var(--color-mrc-orange);
    content: '';
    margin: 3px 0;
}

#school_features p{
    text-align: left;
}
.modalWindow .h4{
    color: var(--color-mrc-violet);
}


.animated_logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.animated_logo .box{
    width: 120px;
    height: 70px;
    transform-style: preserve-3d;
    animation: --rotate infinite 12s;
}
.face{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: inherit;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.face.front{
    transform: translateZ(70px);
    opacity: 1;
    animation: --opacity_f infinite 12s;
}
.face.back{
    transform: rotateY(180deg) translateZ(70px);
    opacity: 0;
    animation: --opacity_b infinite 12s;
}
.face.right{
    transform: rotateY(90deg) translateZ(70px);
    opacity: 0;
    animation: --opacity_r infinite 12s;
}
.face.left{
    transform: rotateY(-90deg) translateZ(70px);
    opacity: 0;
    animation: --opacity_l infinite 12s;
}
.face.front,
.face.back{
    background-image: url("/img/logo_en.svg");
}
.face.left,
.face.right{
    background-image: url("/img/logo_ru.svg");
}
@keyframes --rotate{
    0%{
        transform: rotate3d(0, 1, 0, 0deg);
    }
    25%{
        transform: rotate3d(0, 1, 0, 90deg);
    }
    50%{
        transform: rotate3d(0, 1, 0, 180deg);
    }
    75%{
        transform: rotate3d(0, 1, 0, 270deg);
    }
    100%{
        transform: rotate3d(0, 1, 0, 360deg);
    }
}
@keyframes --opacity_f{
    0%{
        opacity: 1;
    }
    25%{
        opacity: 0;
    }
    50%{
        opacity: 0;
    }
    75%{
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes --opacity_b{
    0%{
        opacity: 0;
    }
    25%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    75%{
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes --opacity_l{
    0%{
        opacity: 0;
    }
    25%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    75%{
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes --opacity_r{
    0%{
        opacity: 0;
    }
    25%{
        opacity: 0;
    }
    50%{
        opacity: 0;
    }
    75%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

#inner-content.main #payBytton,
.sendNotification.btn-info,
.speakerTab .btnCreatePdf,
.btn-orange .btn.btn-info{
    background-color: var(--color-mrc-yellow)!important;
    border: var(--color-mrc-yellow)!important;
    box-shadow: 0 0 16px 2px var(--color-mrc-yellow);
    font-weight: bold;
    color: #000000!important;
}
#inner-content.main #payBytton:hover,
.sendNotification.btn-info:hover,
.speakerTab .btnCreatePdf:hover,
.btn-orange .btn.btn-info:hover{
    background-color: var(--color-mrc-yellow)!important;
    border: var(--color-mrc-yellow)!important;
    box-shadow: 0 0 16px 2px var(--color-mrc-yellow);
    color: var(--color-mrc-orange)!important;
}

#tpl-sponsor_packages p {
    text-align: left;
}
.footer_content .logo {
    position: relative;
    z-index: 2;
}
#modal-culture {
    width: 1180px;
}

