/*  Сreator Evgeny Smirnov  */



/*-- Reset css --*/
/* Указываем box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
    padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class */
ul[class],
ol[class] {
    list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
    max-width: 100%;
    display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
    margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
    font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/*-- End Reset css --*/


body {
    font-family: 'RF Tone', Helvetica, Arial, sans-serif;
    font-size: inherit;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Roboto Slab", serif;
}



section{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4em 2%;
}
@media screen and (max-width: 50em) {
    section{
        padding: .5em;
    }
    section#programs{
        padding: 0;
    }
    
}

article{
    width: 100%;
    max-width: 1280px;
    flex: 1 1 auto;
    overflow: hidden;
}

article > h2{
    margin-top: 2em;
    font-size: 3em;
    font-weight: 600;
}

@media screen and (max-width: 50em) {
    article > h2{
        margin-top: 1em;
        font-size: 2em;
        text-align: left;
    }
}

.btn{
    font-size: 1.2em;
    display: inline-block;
    padding: 1.2em 2em;
    border-radius: 40px;
    background-color: #201D1E;
    border: 1px solid #201D1E;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    transition: all .4s ease-in-out ;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .01em;
    text-shadow: none;
    transition: all ease-in-out .5s;
}
.btn:hover{    
    color: #201D1E;
    background-color: #E45030;
    border: 1px solid #E45030;
}

.btn_tickets{
    color: #fff;
    background-color: #E45030;
    border: 1px solid #fff;
}
.btn_tickets:hover{
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
}

.btn_small{
    font-size: 1em;
    padding: 1em 1.6em;
}

.btn_small + .btn_small{
    margin-left: 2em;
}

@media screen and (max-width: 50em) {
    .btn{
        width: 100%;
        text-align: center;
    }
}

.btn.disabled,
.btn.disabled:hover{
    pointer-events: none;
    cursor: default;
    opacity: .5;
}


/* Navigation*/
.nav-btn{
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    border: 1px solid transparent;
    position: fixed;
    left: 20px;
    top: 20px;
    font-size: 1.2em;
    z-index: 20;
    transition: all .3s ease-in-out;
}
@media screen and (max-width: 50em) {
    .nav-btn{
        left: 5px;
        top: 5px;
    }
}

.nav-btn i{
    transform: scaleX(1.3);
}

.nav-btn:hover{
    color: #ffff83;
    background-color: #ffff8331;
    border-color: #ffff83;
}


.nav-btn.light{
    color:#000;
}
.nav-btn.light:hover {
    color: #000;
    background-color: #ffff83;
    border: 1px solid #aeae00;
}

.left-nav{
    position: fixed;
    left: 0;
    width: 340px;
    top: 0;
    bottom: 0;
    background-color: rgba(11,3,15,.9);
    color: #fff;
    z-index: 10;
    padding-top: 3em;
    transform: translateX(-100%);
    transition: all .2s ease-in-out;

}
.nav-open{
    transform: translateX(0);
    box-shadow: 1px 0 3px 1px rgba(0,0,0,.5);
}
.left-nav a{
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 50em) {
    .left-nav{
        width: 80%;
    }
}

.nav-btn-close{
    position: absolute;
    left: 35px;
    top: 32px;
    font-size: .8em;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.nav-btn-close:hover{
    color: #ffff83;
}
.nav-btn-close i{
    font-size: 1.8em;
    margin-right: .3em;
}

ul.navigation{
    margin: 0;
    padding: 1em;
    list-style: none;
    overflow-y: auto;
    max-height: 100%;
}

.navigation-link{
    display: inline-block;
    padding: .8em 1.2em .6em;
    white-space: nowrap;
    text-decoration: none;
    color: #fff;
    background-color: rgba(255,255,255, 0);
    border: 1px solid rgba(255,255,255, 0);
    border-radius: 40px;
    transition: all .4s ease-in-out;
}

.navigation-link:hover{
    background-color: rgba(255,255,255, .1);
    border-color: rgba(255,255,255, .5);
}

.navigation-link_main{
    background-color: #201D1E;
    border-color: #201D1E;
    color: #fff;
}

.main-nav{
    background-color: #E45030;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4em 0 0;
}
.navigation__main{
    display: flex;
    font-size: .9em;
}
.navigation__main li + li{
    margin-left: 1em;
}




/* Home screen */
.home{
    padding: 0;
    background-color: #E45030;
    position: relative;
}
/* #c32300 */

.home__h1{
    font-size: 3.5em;
    font-weight: 800;
    line-height: .9em;
    margin: 0;
    text-align: center;
    color: #201D1E;
}

.home__h1_vesna{
    font-size: 7em;
    letter-spacing: 5px;
}

.home__h2{
    font-family: 'Manrope', Helvetica, Arial, sans-serif;
    font-size: 22em;
    font-weight: 900;
    line-height: .85em;
    color: #E45030;
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff;
    letter-spacing: -10px;
}

.home__h2_25{
    line-height: .75em;
}

.break-down{
    display: inline-block;
    transform: translate(0, 12px) rotate(18deg);
    animation: break-down-1 .6s 1;
}
.break-up{
    display: inline-block;
    transform: translate(-1px, -5px) rotate(-5deg);
    
}
@keyframes break-down-1{
    0%{
        transform: none;
    }   
    100%{
        transform: translate(0, 12px) rotate(18deg);
    }    
   }


.home_date{
    font-size: 1.96em;
    color: rgba(255,255,255, .6);
    position: relative;
    bottom: -10px;
    animation: date 1s 1;
}

@keyframes date{
 0%{
    bottom: -80px;
    opacity: 0;
 }   
 100%{
    bottom: -10px;
    opacity: 1;
 }    
}


@media screen and (max-width: 50em) {   
    #home{
        min-height: 90vh;
    }
    .home__h2{
        font-size: 18em;
    }
    .home__h1{
        font-size: 2.8em;
    }
    
    .home__h1_vesna{
        font-size: 5.5em;
    }
    .main-nav{
        display: none;
    }
    .home_date{
        font-size: 1.7em;
    }
}


/* About */
#about{
    position: relative;
    overflow: hidden;
}
.about{
    overflow: visible;
}

@media screen and (max-width: 50em) {
    .about{
        overflow: hidden;
    }
}

.h1_about{
    font-size: 4em;
    text-indent: 30%;
    line-height: .96em;
    padding: 0 3em;
    margin: .5em 0 .7em;
    color: #201D1E
}

@media screen and (max-width: 50em) {
    .h1_about{
        font-size: 3em;
        text-indent: 0;
        line-height: 1em;
        padding: 0;
        margin: .5em 0;
        text-align: center;
    }
}

.about-info{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.about-info__video{
    width: 28%;
    flex: none;
    position: sticky;
    top: 10vh;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.about-info__text{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


@media screen and (max-width: 50em) {
    .about-info{
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: center;
    }
    .about-info__video{
        width: 100%;
    }
    .about-info__text{
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 1em;
    }
}

.about-p {
    padding: 1em 0 0;
    text-align: justify;
    width: 50%;
}


.about-p_full{
    display: flex;
    width: 100%;
}

.about-p_full + .about-p{
    padding-top: 2em
}

.about-name{
    display: inline-flex;
    width: 44%;
    margin-right: 6%;
    font-size: 2em;
    color: #201D1E;
    align-items: flex-start;
    justify-content: flex-end;
}

#about .about-ul{
    list-style: square;
    padding: 1em 0 0 0;
    flex: 1 1;
}

.about-ul li + li{
    margin-top: .5em;
}

.about-description{
    flex: 1 1;
}


#about p:last-child{
    margin-bottom: 0;
}


.about-img{
    margin: 2em auto;
}

.logos-view{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 20%;
    margin: 0;
    right: 0;
    position: absolute;
}

.logos-org{
    display: block;
    max-width: 180px;
    max-height: 40px;
    border: none;
    margin: 1em 0;
}

.logos-org_mimp{
    max-width: 280px;
}

.video-block{
    margin-right: -100px;
}


.video-block video{
    max-height: 80vh;
    border-radius: 40px;
}

figcaption{
    text-align: center;
    font-size: .9em;
    font-weight: 500;
    opacity: .6;
}

@media screen and (max-width: 50em) {
    
    .about-img{
        margin: .5em auto;
    }

    .logos-view{
        flex-direction: column;
    }

    .logos-org{
        position: static;
        max-width: 100%;
        max-height: initial;
        margin: .5em 0;
    }
    .logos-org_mimp{
        margin: 20vh auto 0;
    }
    .logos-org_mma{
        max-width: 80%;
        margin: 20vh auto 0;
    }
    #about p{
        font-size: 1em;
        text-align: left;
        width: 100%;
    }

    .about-p_full{
        flex-direction: column;
    }
    .about-name{
        width: 100%;
        justify-content: flex-start;
    }
    #about .about-ul{
        padding-left: 2em;
    }
  
    .video-block{
        margin: 0;
    }
    .video-block video{
        max-height: auto;
        border-radius: 40px;
        width: 100%;
    }
    
    figcaption{
        font-size: 1em;
    }
}

.link {
    text-decoration: none;
    border-bottom: 1px dotted #E45030;
    color: #E45030;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
}
.link:hover {
    border-bottom-color: transparent;
    color: #5c1100
}




.h2_programs,
.h2_lectors,
.h2_location,
.h2_residence,
.h2_schedule,
.h2_lottery,
.h2_exhibitors,
.h2_official-partner,
.h2_furshet,
.h2_ticket,
.h2_presentations{
    font-size: 4em;
    line-height: 1em;
    margin: 0;
    font-weight: 700;
    color: #201D1E;
   
}


@media screen and (max-width: 50em) {   
    .h2_programs,
    .h2_lectors,
    .h2_location,
    .h2_residence,
    .h2_schedule,
    .h2_lottery,
    .h2_furshet,
    .h2_ticket,
    .h2_presentations{
        font-size: 3em;   
    }
        
}


/* Location */
#location {
    background: #E45030;
    color: #201D1E;
}

@media screen and (max-width: 50em) {
    
}

.h2_location{
    padding-left: 36%;
    color: #fff;
    
}

.break-down_location{
    transform: translate(-2px, 8px) rotate(-20deg);
 }

@media screen and (max-width: 50em) {   
    .h2_location{
        font-size: 2.4em;
        padding-left: 0;
    }
        
}


.location-p{
    padding: 1em 27% 0 36%;
}

@media screen and (max-width: 50em) {   
    .location-p{
        margin: 1em 0;
        padding: 0;
    }
        
}

.link-location{
    color: #fafafa;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1px dotted #fafafa;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
}

.link-location:hover{   
    color: #ffff83;
    border-bottom-color: transparent;
}

.link-cpd{
    border: 0;
    margin-bottom: 2em;
}

@media screen and (max-width: 50em) {
    #location a{
        white-space: normal;
    }
}

.location-info{
    display: flex;
}
.location-info__details{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 36%;
    padding-right: 80px;
    flex: none
}

@media screen and (max-width: 50em) {
    .location-info{
        flex-direction: column-reverse;
    }
    .location-info__details{
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }
    .link-cpd{
        margin: 1em auto 0;
    }
}

.location-info__details p{
    margin-top: .5em;
}
.metro-blue{
    font-size: .6em;
    color:#02699d;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff;
    position: relative;
    left: -2px;
    top: -2px
}
.metro-red{
    font-size: .6em;
    color: #fe2f01;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff;
    position: relative;
    left: -2px;
    top: -2px
}

.location-info__details .location-p-link,
.location-p-link{
    display: flex;
    align-items: center;
    margin-top: 2em;
}

.location-icon{
    margin: 0 .5em;
}

.location-info__photos .location-img{
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0;
}

.location-gallery{
    width: 100%;
    display: flex;
    overflow-x: scroll;
    padding: 0;
}

.location-img{
    border-radius: 40px;
    margin: 0 .5em 1em;
    height: 200px;
}
.location-gallery .location-img:first-child{
   margin-left: 36%;
}

@media screen and (max-width: 50em) {
    .location-info__details p{
        margin: .5em 0 0 1em;
    }
    .location-info__details .location-p-link, 
    .location-p-link{
        margin: 2em auto;
    }
    .location-gallery{
        margin: 0 0 1em;
    }
    .location-img{
        height: 160px;
        margin-bottom: 1em;
    }
    .location-gallery .location-img:first-child{
       margin-left: .5em;
    }
}


/* Residence */
#residence{
    background: #d3e8fe url(../img/about/map.png) 0 0 no-repeat;
    background-size: cover;
    position: relative;
 }
 @media screen and (max-width: 50em) {
    #residence{
        background: #d3e8fe url(../img/about/map.png) 0 0 no-repeat;
        height: auto;
        min-height: auto;
     }
}

 .residence-overley{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(76, 13, 0,.2);
    z-index: 0;
 }

.h2_residence{
    color: #000;
    text-shadow: none;
    margin-bottom: .4em;
} 

.break-down_residence{
    transform: translate(0, 16px) rotate(10deg);
 }


.residence-main{
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    margin-left: calc(36% - 4em);
    padding: 5em;
    position: relative;
    width: 640px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .3);
}

@media screen and (max-width: 50em) {
    .h2_residence{
        font-size: 2.4em;
        margin-top: 0;
    } 
    .residence-main{
        margin: 4em 1em;
        padding: 4em 2em;
        width: calc(100% - 2em);
        box-shadow: none;
    }
}

#residence a{
    text-decoration: none;
    border-bottom: 1px dotted #E45030;
    color: #E45030;
    outline: none;
    cursor: pointer;
}

#residence a:hover{
    border-bottom-color: transparent;
    color: #5c1100;
}

.residence-p{
    margin: .5em 0;
}




/* Расписание */
#schedule{
    position: relative;
    background: #fff;
    color: #000;
}

#schedule > article{
    overflow: visible;
}

.h2_schedule{
    padding: 0 0 0 36%;
}
.break-down_schedule{
   transform: translate(4px, 10px) rotate(20deg);
}
.break-up_schedule{
    transform: translate(2px, -5px) rotate(10deg);
 }
@media screen and (max-width: 50em) {
    .h2_schedule{
        padding: 0;
        margin-top: 1em;
    }
}

.schedule-p{
    line-height: 1.2em;
    margin-top: .5em;
    padding: 0 0 0 36%;
}

.schedule{
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    padding: 0 0 0 36%;
}

@media screen and (max-width: 50em) {
    .schedule{
        flex-direction: column;
    }
    .schedule-p{
        padding-left: 0;
    }
}

.schedule__i{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
    position: relative;
    margin: 1em 0;
}
.schedule__i + .schedule__i{
    margin-top: 2em;
}

@media screen and (max-width: 50em) {
    .schedule__i + .schedule__i{
       margin-top: 1em;
    }
    .schedule__i:empty{
        display: none;
    }
}

.schedule__i:before{
    content: '';
    position: absolute;
    left: 40px;
    top: 140px;
    bottom: 30px;
    width: 1px;
    border-left:1px solid #000;
}

.schedule__i:empty:before{
    display: none;
}

.schedule-h4{
    font-size: 2em;
    line-height: 1em;
    margin-bottom: 1.6em;
}
.schedule-h4__date{
    display: inline-block;
    font-weight: 700;
    opacity: .5;
    padding-left: .5em;
}


.schedule-block{
   display: flex;
   position: relative;
}

.schedule-block + .schedule-block{
    margin-top: 1.6em;
}

.schedule-block__icon{
    display: flex;
    width: 80px;
    height: 80px;
    flex: none;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #E45030;
    font-weight: 900;
    font-size: 1.4em;
    padding-top: 0;

    font-family: 'Manrope', Helvetica, Arial, sans-serif;
    color: #E45030;
    text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff
}

.schedule-block__icon i{
    text-shadow: none;
    color: #fff;
}


.schedule-block__text{
    display: flex;
    flex-direction: column;
    padding: 27px 0 0 20px;
}

.schedule-time{
    font-weight: 700;
    position: absolute;
    left: -200px;
    width: 120px;
    text-align: right;
}

.schedule-name{
    font-weight: 400;
}
.schedule-name i{
    font-size: .9em;
    font-weight: 500;
    opacity: .6;
}

@media screen and (max-width: 50em) {
    .schedule {
        padding: 0 0 0 32%;
    }
    .schedule-block__icon{
        width: 60px;
        height: 60px;
        font-size: 1.2em;
    }
    .schedule__i:before {
        left: 30px;
    }
    .schedule-h4 {
        font-size: 1.4em;
        margin-top: 1em;
    }
    .schedule-block__text{
        padding: 20px 0 0 16px;
    }
    .schedule-name {
        font-size: .9em;
        line-height: 1.1em;
    }
    .schedule-time{
        left: -140px;

    }
    
}



/* Блок программы */
#programs{
    background-color: #320404;
    color: #fff;
}


#programs article{
    overflow: visible;
    max-width: 1440px;
    position: relative;
}

#programs article + article{
    margin-top: 10em;
}

.h2_programs{
    padding-left: 36%;
    color: #fff;
}

.break-down_programs{
    transform: translate(9px, 17px) rotate(45deg)
 }
 .break-up_programs{
    transform: translate(-1px, -7px) rotate(-10deg)
 }


.programs-p{
    padding: 1em 30% 0 36%;
    text-align: justify;
}
/*
.programs-p:first-letter{
    padding-left: 40%;
}
*/

@media screen and (max-width: 50em) {
    #programs article{
        padding-top: 100px;
    }
    #programs article + article{
        margin-top: 5em;
    }
    .h2_programs{
        font-size: 3.8em;
        margin: 0;
        padding-left: 4%;
    }
    .programs-p {
        padding: 1em;
    }
   
}

.name-time-block{
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 5px 40px 0 0;
    overflow: hidden;
}

.block-h3{
    text-align: left;
    font-size: 2em;
    line-height: initial;
    white-space: nowrap;
    line-height: 1.2em;
    display: inline-flex;
}

.block-time{
    text-align: right;
    font-size: 2em;
    opacity: .5;
    font-weight: 500;
    margin-top: 0;
    line-height: 1.2em;
}

.block-time_time{
    white-space: nowrap;
    margin-left: 10px;
}

@media screen and (max-width: 50em) {
    .name-time-block{
        flex-direction: column;
        margin: 0;
        position: absolute;
        padding: 0 1em;
        top: 0;
        align-items: flex-start;
    }

    .block-h3{
        font-size: 2.4em;
        line-height: 1.1em;
    }
    .block-time{
        text-align: left;
        font-size: 1.4em;
    }
}


.block{
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-auto-rows: 250px;
    grid-gap: 16px;
    justify-content: end;
    align-content: start;
    margin-left: 11%;
}


.block__i{
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    background-color: #e2e2e2;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s ease-in-out;
    border: 1px solid #3d2924;
    overflow: hidden;
}

.block__i:before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 9px;
    background: inherit;
    background-size: cover;
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
}

.block__i_white:before{
    background-color: rgba(0,0,0,.4);
    cursor: pointer;
}

.block__i[data-source]{
    cursor: pointer;
}
.block__i[data-source]:hover{
    border-color: #E45030;
    outline: 7px solid #E45030;
}
.block__i[data-source]:hover:before{
    transform: scale(1.1);

}

.block__i_2w{
    grid-column: span 2;
}

.block__i_1-5w{
    flex: 1 1 50%;
    margin: 16px;
    border-radius: 8px;  
}
.block__i_1-5w + .block__i_1-5w{
    margin-left: 0;
}

.block__i_2h{
    grid-row: span 2;
}

.block__i_ted{
    overflow: hidden;
}
.block__i_ted:after{
    content: 'MMA';
    position: absolute;
    top: 12px;
    right: -43px;
    color: #8e1010;
    font-size: .9em;
    background-color: #fff;
    border: 1px solid #9c9c9c;
    font-weight: 800;
    padding: .2em 3em 0em;
    transform: rotate(45deg);
}

.block_shadow{
    margin:0;
    background: #000;
    border: 1px solid #666;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    grid-column: span 2;
    overflow: hidden;
}

.empty-block{
    overflow: hidden;
}

.block__i.block__i_link{
    border-radius: 0;
    padding: 0;
    background: none !important;
    display: inline;
    outline: none;
    border: none;
    border-bottom: 1px dotted #E45030;
    color: #E45030;
    transition: border-bottom-color .3sease-in-out, color .3sease-in-out;
}
.block__i.block__i_link:hover{
    border-radius: 0;
    padding: 0;
    background: none !important;
    display: inline;
    outline: none;
    border: none;
    border-bottom-color: transparent;
    color: #5c1100;
}
.block__i.block__i_link::before{
    display: none;
}


.block-title{
    width: 100%;
    font-size: 1.1em;
    line-height: 1.1em;
    font-weight: 400;
    position: relative;
    padding: 30px 20px 20px;
    transition: all .3s ease-in-out;
    white-space: normal;
    border-radius: 0 0 9px 9px;
    color: #fff;
    background: linear-gradient(0deg, rgba(24,36,49,.9) 0%, rgba(24,36,49,.75) 50%, rgba(24,36,49,.5) 75%, rgba(24,36,49,0) 100%) 
}
.block__i_white .block-title{
    color: #000;
    background: linear-gradient(0deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.75) 50%, rgba(255,255,255,.5) 75%, rgba(255,255,255,0) 100%);
}
.block__i_none .block-title{
    background: transparent;
}

.block__i:hover .block-title{
    background: linear-gradient(0deg, rgba(24,36,49) 0%, rgba(24,36,49,.8) 50%, rgba(24,36,49,.5) 75%, rgba(24,36,49,0) 100%)
}
.block__i_white:hover .block-title{
    background: linear-gradient(0deg, rgba(255,255,255) 0%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.75) 75%, rgba(255,255,255,0) 100%);
}


@media screen and (max-width: 50em) {
    .block{
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: auto;
        padding: .5em 0 1em 1em;
        margin: 0;
        overflow-x: scroll;
    }
    .block__i{
        flex: none;
        width: 60vw;
        max-width: 320px;
        height: 300px;
    }
    .block .block__i:first-child{
        margin-left: 3vw;
    }
    .block .block__i:last-child:after {
        content: "";
        display: block;
        position: absolute;
        right: -2rem;
        width: 2rem;
        height: 1px;
    }
    .block_shadow + .block_shadow{
        margin-top: .5em;
    }
    .block-title{
        font-size: 1.1em;
    }
    .empty-block{
        display: none;
    }
    .block .block__i:last-child{
        margin-right: 1em;
    }
}


.block-web{
    position: absolute;
    top: 0;
    right: 0;
    border: 30px solid rgba(255,255,255, .9);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 0 4px 0 0;
    display: inline-flex;
    align-items: flex-end;
}
.web{
    color: #05720beb;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    position: absolute;
}

.block-close{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #E45030;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.icon-close{
    color: fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    position: absolute;
}
.close-p{
    padding: 1em;
    background: #ff96963d;
    line-height: 1.2em;
    font-size: 1em;
    font-weight: 600;
    color: #470000;
    text-align: center;
    border: 1px solid #a00000;
    border-radius: 10px;
}




/* Блок лекторы */
#lectors{
    background-color: #320404;
}

#lectors article{
    overflow: visible;
}

.h2_lectors{
    color: #fff;
    padding-left: 36%;
}

.lectors__p{
    color: #fff;
    padding-left: 36%;
}

.break-down_lectors{
    transform: translate(-3px, 12px) rotate(-20deg);
}

.readers{
    display: flex;
    flex-wrap: wrap;
    margin-top: 2em;
}
@media screen and (max-width: 50em) {
    .readers{
        flex-direction: column;
    }
    .h2_lectors{
        padding-left: 4%;
    }
    .lectors__p{
        padding-left: 4%;
    }
}
.reader{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 2em;
    flex: 1 1 auto;
    width: 33%;
}


@media screen and (max-width: 50em) {
    .reader{
        width: 100%;
        flex-direction: row;
        margin: .5em 0;
    }
    .reader:nth-child(even){
       flex-direction: row-reverse;
    }
    .reader:last-child{
        margin-bottom: 2em;
    }
}

.reader__image{
    width: 180px;
    height: 180px;
    flex: 0 0 auto;
    border: 1px solid #3d2924;
    border-radius: 50%;
    margin-right: 1em;
}

.reader[data-source] .reader__image{
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.reader[data-source] .reader__image:hover{
    border-color: #E45030;
    box-shadow: 0 0 1px 6px #E45030;
}

@media screen and (max-width: 50em) {
    .reader__image{
        width: 100px;
        height: 100px;
        margin: -10px 1em -10px 0;
    }
    .reader:nth-child(even) .reader__image{
        margin: -10px 0 -10px 1em;
    }
}

.reader__title{
    text-align: left;
    font-weight: 400;
    color: #fff;
    font-size: 1.1em;
    line-height: 1.2em;
    margin-right: 8%;
}
.reader[data-source] .reader__title:hover{
    cursor: pointer;
    color: #E45030;
}
@media screen and (max-width: 50em) {
    .reader__title{
        text-align: left;
        font-size: 1.2em;
        margin: 0;
    }
    .reader:nth-child(even) .reader__title{
        text-align: right;
    }
}




/*  Telegram */
#telegram{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #320404 url(../img/arrow.svg) 7% 50% no-repeat;
    min-height: auto;
    text-align: center;
    padding: 4em 0;
    color: #fff;
}

#telegram article{
    padding: 8em 1em 8em 35%;
    min-width: 96%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#telegram p{
    margin: .5em 0;
}

@media screen and (max-width: 50em) {
    #telegram{
        padding: 8em 1em;
        background-size: 30%;
        background-position: -10px 53%;
    }
    #telegram article{
        padding: 0;
    }
    #telegram p{
        text-align: right;
        width: 100%;
    }
}



#telegram a{
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    color: #ffff83;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-family: "Roboto Slab", serif;
    font-weight: 300;
    font-size: 1.1em;
}

#telegram a:hover{
    color: #E45030
}

#telegram a i{
    font-size: 2em;
}

#telegram a span{
    display: inline-block;
    border-bottom: 1px dotted #ffff83;;
    margin-left: 10px;
}

#telegram a:hover span{
    border-bottom-color: transparent;
}

@media screen and (max-width: 50em) {
    #telegram{
        font-size: 1.0em;
        text-align: left;
    }
}


/* Лотерея */

#lottery{
    position: relative;
    min-height: auto;
    padding-bottom: 6em;
    background: #320404 url(../img/about/gift.svg) -200px 120% no-repeat;
    line-height: 1.2em;
    color: #fff;
}



@media screen and (max-width: 50em) {
    #lottery{
        padding-bottom: 3em;
    }
}

.h2_lottery{
    color: #fff;
    margin: 0 0 .3em 36%;
}

.lottery-p{
    padding: .5em 30% 0 36%;
    text-align: justify;
}
.lottery-p_sec{
    padding: 1em 16% 1em 50%;
}

@media screen and (max-width: 50em) {
    .lottery-block{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
}

.lottery-block__text{
    margin: 0;
}

.lottery-block__text p + p,
.lottery-block__text p + .btn{
    margin-top: 1em;
}

@media screen and (max-width: 50em) {
    #lottery{
        background-size: 60%;
        background-position: -40px 120%;
        
    }
    .lottery-block__text{
        margin: 1em 0 0;
    }
    .lottery-img{
         height: auto;
    }
    .h2_lottery{
        margin: .4em;
    }
    .lottery-p{
        padding: 1em;
    }
}


/* Фуршет */
#furshet{
    background: #fff;
    min-height: auto;
    position: relative;
}


#furshet article{
    position: relative;
    z-index: 1;

}

.h2_furshet{
    font-size: 3.6em;
    margin: 0 27% .5em 36%;
}

.furshet-p{
    margin: 1em 30% 1em 36%;
    text-align: justify;
}

.furshet-p_sec{
    margin: 1em 20% 1em 50%;
}

.btn_furshet{
    margin-top: 1em;
}


@media screen and (max-width: 50em) {
    .h2_furshet{
        font-size: 2.6em;
        margin: 2em .4em 1em;
    }
    
    .furshet-p{
        margin: 1em;
    }
}




/* Стол выставка */

#freetable{
    position: relative;
    min-height: auto;
    padding-bottom: 10em;
    background-color: #000;
    color: #fff;
}

@media screen and (max-width: 50em) {
    #freetable{
        padding-bottom: 6em;
    }
}

#freetable:before{
    content: "";
    opacity: 0.8;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background: url("../img/home_background3.jpg") no-repeat 50% 100%;
}

.freetable-block{
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

@media screen and (max-width: 50em) {
    .freetable-block{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
}

.freetable-block__text{
    margin: 2em 0 0;
}

.freetable-block__text p + p{
    margin-top: 1em;
}

@media screen and (max-width: 50em) {
    .freetable-block__text{
        margin: 1em 0 0;
    }
}




/* Exponent */
#exhibitors{
    min-height: auto;
    position: relative;
    background: #d3e8fe url(../img/about/exhibitors.webp) 0 50% no-repeat;
    background-size: cover;
}

@media screen and (max-width: 50em) {
    #exhibitors{
        padding-bottom: 1em;
        
    }
}

.exhibitors-overley{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(40, 90, 110, 0.4);
    backdrop-filter: blur(3px);
    z-index: 0;
}

.h2_exhibitors{
    font-size: 4em;
    margin-bottom: .4em;
}
.h2_exhibitors span{
    display: inline-block;
    margin-left: 1.3em;
}

.exhibitors-p {
    margin: .5em 0;
}

@media screen and (max-width: 50em) {
    .h2_exhibitors{
        font-size: 3em;

    }
    .h2_exhibitors span{
        margin: 0;
    }
}

.exhibitors-block{
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 50em) {
    .exhibitors-block{
        flex-direction: column;
    }
}

.exhibitors-block__text{
    margin: 0 1em 0 0;
    font-size: 1.4em;
}

.exhibitors-block__text p + p{
    margin-top: 1em;
}

@media screen and (max-width: 50em) {
    .exhibitors-block__text{
        margin: 0 0 1em 0;
    }

}

.exponent{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow-x: auto;
    padding: 2em 1em;
    flex-wrap: nowrap;
    width: 104%;
    margin: 4em -2% -4em;
    position: relative;
    background: #fff;

}

.exponent__i{
    flex: none;
    text-align: center;
    padding: 1em;
    margin: 0 1.4em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 50em) {
    .exponent__i{
        flex-basis: 50%;
    }

}

.exponent-img{
    height: 56px;
    width: auto;
    margin: 0 auto;
}

.exponent-img_erich{
    height: 36px;
}

.exponent-img_first-workshop{
    height: 40px;
}

.exponent-img_mma{
    height: 40px;
}
.exponent-img_nacional{
    height: 80px;
}

.exponent-img_bankatering{
    height: 90px;
}

.exponent-img_montessori-things{
    height: 80px;
}

.exponent-img_rmi-montessori{
    height: 90px;
}
.exponent-img_naukadetstvo{
    height: 80px;
}

.exponent-img_shkolaizobretateley{
    height: 70px;
}

.exponent-img_krasnodar{
    height: 70px;
}


/* Родительский билет */
#parents{
    background: #ebecee url('../img/about/woman2.jpg') -100px 100% no-repeat;
    background-size: 100vh;
}

.h2_parents{
    margin: 1em 0 0 36%;
}
.parents-p {
    padding: 1em 30% 0 36%;
    text-align: justify;
}

#parents .parents-ul{
    margin: 1em 0 0 36%;
}

@media screen and (max-width: 50em) {
    #parents{
        background-size: contain;
        padding-bottom: 10em;
    }
    .h2_parents{
       margin-left: 0;
    }
    .parents-p {
        padding: .5em 0 0;
        text-align: left;
    }
    
    #parents .parents-ul{
        margin: 1em 0 0;
    }
    .parents-p:last-child{
        padding-left: 50%;
    }

}

/* Официальный партнер */
#official-partner{
    background: #E45030;
    color: #201D1E;
    display: flex;
    align-items: center;
}
#official-partner article{
    position: relative;
    flex: none;
}
.h2_official-partner{
    color: #fff;
    font-size: 3.6em;
    margin: 0 27% .5em 36%;
}
.official-partner-p {
    margin: 1em 30% 1em 36%;
    text-align: justify;
}
.official-partner-link{
    position: absolute;
    margin-top: -190px;
}
.official-partner-img{
    height: 50px;
}

@media screen and (max-width: 50em) {
    .h2_official-partner {
        font-size: 2.6em;
        margin: 1em .4em .6em;
    }
    .official-partner-p{
        margin: 1em;
    }
    .official-partner-img{
        width: calc(100% - 2em);
        height: auto;
        margin: auto;
    }
    .official-partner-link{
        position: static;
        margin: 1em;
        text-align: center;
    }

}





/* Инициатива ММА */
.mma-present{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em 2em;
    background-color: #fff;
    border: 1px solid #8e1010;
    border-radius: 20px;
    font-size: 0.9em;
    position: absolute;
    right: 250px;
    top: 80px;
    opacity: .8;
}
.mma-present__logo{
    width: 110px;
}

.mimp-lector{
    display: flex;
    align-items: center;
}

.mimp-lector strong{
    font-size: .8em;
    opacity: .5;
    margin-right: 10px;
}

.mimp-lector__logo{
    height: 40px;
}

.mimp-lector__link,
.fancybox-content .mimp-lector__link{
    text-decoration: none;
    border: none
}



@media screen and (max-width: 50em) {
    .mma-present{
        position: static;
        margin-top: 5px;
    }

}



/* Регистрация */
#ticket,
#video-records{
    min-height: auto;
    background-color: #fff;
    padding-bottom: 4em;
}

#presentations{
    min-height: auto;
    background-color: #14071b;
    padding-bottom: 4em;
}

.h2_ticket{
    color: #000;
    padding-left: 36%;
}

.h3_ticket{
    padding: 1em 0 0 36%;
    font-size: 2em;
}

.ticket_text {
    margin-left: 36%;
    position: relative;
    
}

.ticket-p{
    margin: 1em 5% 1em 0;
   
}


.tickets-dates{
    display: flex;
    margin: 2em 40px 4em 36%;
    position: relative;
}

.tickets-dates__i{
    flex: 1 1 20%;
    border-bottom: 2px solid #ccc;
    position: relative;
    text-align: center;
}

.ticket-date{
    position: absolute;
    bottom: -44px;
    left: -35px;
    width: 70px;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #333
}

.ticket-date__line{
    width: 5px;
    height: 20px;
    background-color: #000;
    border: 2px solid #fff;
    margin-bottom: 2px;
}

.ticket-cost{
    display: inline-flex;
    width: 100%;
    text-align: center;
    padding-bottom: 3px;
    align-items: flex-start;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1em;
}

.tickets-dates__i_1,
.tickets-dates__i_2{
    flex: 2 1 30%;
}
.tickets-dates__i_1{
    border-bottom: 8px solid green;
}

.tickets-dates__i_2{
    border-bottom: 8px solid #320404;
}

.tickets-dates__i_3{
    border-bottom: 8px solid #E45030;
}

.tickets-dates__i_4{
    border-bottom-style: dashed;
}
.tickets-dates__i_4 .ticket-date{
    bottom: -38px
}

.tickets-dates__i_5{
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid #E45030;
    background-color: #fff;
    border-radius: 30px;    
    flex: 1 1 30px;
    right: -15px;
    bottom: -11px;
}


.tickets-dates__i_5 .ticket-date{
    left: -21px;
    bottom: -31px;
}

.tickets-dates__i_5 .ticket-date__line{
    width: 21px;
    height: 21px;
    border-radius: 21px;
    background-color: #E45030;
    margin-bottom: 10px;
}



@media screen and (max-width: 50em) {
    #ticket,
    #presentations{
        padding-bottom: 3em;
    }
   
    .ticket_text{
        margin-left: 0;
    }
    .h2_ticket{
        font-size: 3em;
        padding-left: 0;
        margin: .4em;
    }
    .h3_ticket{
        padding: .5em .5em 0;
    }
    .ticket-p{
        margin: 1em;  
    }

    .ticket-p .btn{
        margin: 1em 0;
    }
    .tickets-dates{
        margin-left: 0;
    }
}


/* Презентации */

#presentations{
    position: relative;
    min-height: auto;
    padding-bottom: 6em;
    background: #320404;
    line-height: 1.2em;
    color: #fff;
}



@media screen and (max-width: 50em) {
    #presentations{
        padding-bottom: 3em;
    }
}

.h2_presentations,
.h3_presentations{
    color: #fff;
    margin: 0 0 .3em 36%;
}

.h3_presentations{
    margin-top: 1em;
}

.presentations-p{
    padding: 0 0 0 36%;
    line-height: 1.4em;
    
}

.presentations-p + .h3_presentations{
    margin-top: 3em;
}


@media screen and (max-width: 50em) {
    .h2_presentations{
        margin: .4em;
    }
    .h3_presentations{
        margin: 0;
        padding: 1em 1em 0;
    }
    .presentations-p{
        padding: .5em 1em;
        margin: 0;
    }
    .presentations-p + .h3_presentations{
        margin-top: 1.5em;
    }
}

#presentations strong{
    font-size: .8em;
}

#presentations a{
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px dotted #fff;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
}

#presentations a:hover{
    color: #fff;
    border-bottom-color: transparent;
}



/* Скидки */

.sales-p-link{
    position: absolute;
    top: 60px;
    left: -400px;
    text-align: center;
    width: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sales-link{
    text-decoration: none;
    border-bottom: 1px dotted #E45030;
    color: #E45030;
    outline: none;
    cursor: pointer;
}
.sales-link:hover{
    border-bottom-color: transparent;
    color: #5c1100;
}

.sales-h2{
    font-size: 2.4em;
    margin-top: 0;
}
.sales-h3{
   margin-top: 1.8em; 
}
.sales-p{
    margin-top: .3em;
}
.sales-p_info{
    font-size: .8em;
    font-weight: 600;
    font-style: italic;
    opacity: .5;
    margin-top: .4em;
}
@media screen and (max-width: 50em) {
    .sales-p-link{
        position: static;
        justify-content: center;
        margin-top: 1.2em;
    }
    .sales-link{
        font-size: 1.2em;
    }

}



/*  Footer */
footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #E45030;
    color: #201D1E;
    padding: 4em 0 1em;
}

footer article {
    display: flex;
    overflow: visible;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__i{
    flex: 1 1 33%;
    margin: 0;
}


.footer__i_festival{
    margin: 0 2em;

}

.footer-info{
    font-size: 1.4em;
    font-weight: 500;
}

p + .footer-info{
   margin-top: 3em;
}

.old-festival{
    display: flex;
    flex-direction: column;
}

.old-festival a,
.documents a{
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,.4);
    margin: .4em 0;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
    align-self: flex-start;
}

.old-festival a:hover,
.documents a:hover{
    color: #ffff83;
    border-bottom-color: transparent;
}

.social-buttons + .documents{
    margin-top: 3em;
}

.documents i{
   color: #fff;
   margin-right: 5px;
}

footer ul.navigation{
    padding: 0;
    margin-left: -1em;
}

.nowrap{
    white-space: nowrap;
}

ul.social-buttons{
    display: flex;
    margin-top: .5em;
}

.social-buttons li + li{
   margin-left: 1.2em;
}

.social-buttons .fab{
    color: #fff;
    font-size: 2em;
    transition: color .4s ease-in-out;
}

.social-buttons a:hover .fab{
   color: #ffff83;
}

.copyright{
    margin: 2em 0 1em;
}

@media screen and (max-width: 50em) {
    footer {
        padding: 0;
    }
    footer article {
        flex-direction: column;
    }
    .footer__i{
        flex: 1 1 auto;
        width: 100%;
        padding: 1.5em 2em;
    }
    .footer__i_festival{
        margin: 0;
    }
    .copyright{
        margin: 1em 2em;
        text-align: center;
    }

}



/* Modal window */
#registration{
    position: relative;
    background-color: #320404;
}
/*
#registration:before{
    content: "";
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background: url("../img/home_background2.jpg") no-repeat 50% 50%;
    background-size: cover;
}
*/
header{
    padding: 1em;
    max-width: 100%;
    display: flex;
    align-items: center;
    color: #fff

}

@media screen and (max-width: 50em) {
    header{
        padding: 0;
    }
}

#registration article{
    max-width: 1024px;
}

.registration-h1{
    color: #fff;
    font-size: 3em;
    margin: 0;
    line-height: 1.2em;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .02em;
}
@media screen and (max-width: 50em) {
    .registration-h1{
        font-size: 2.2em;
    }
}

.registration-h1 span{
    color: #fff;
    text-shadow: 0 0 1px #fff;
}

.registration-h1 a{
    text-decoration: none;
    color: inherit;
}

#registration h2{
    margin-top: 1em;
    font-size: 2em;
    line-height: 1.2em;
    color: #fff

}

.registration-block{
    display: flex;
    align-items: center;
    margin: 1em 0 2em;
    color: #fff
}

@media screen and (max-width: 50em) {
    .registration-block{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
}

.registration-block__text{
    margin: .3em 0 0;
}

.registration-block__text p + p{
    margin-top: 1em;
}

@media screen and (max-width: 50em) {
    .registration-block__text{
        margin: 1em 0 0;
    }
}

.registration-img{
    width: 25%;
}

.article-ticket{
    overflow: visible;
}

#registration .tickets-instruction{
    padding: 0 0 0 1.5em;
    list-style: decimal;
    color: #fff;
}

.tickets-instruction li{
    margin: 1em 0;
}



/* ddSlick */
.form-group + .form-group{
    margin-top: 2em;
}

.form-group .dd-select {
    border-radius: 10px;
}
.form-group .empty {
    opacity: .6;
    font-size: .8em;
    margin: 0 0 0 -70px;
    display: inline-block;
}

.form-group .dd-selected-text {
    font-weight: 400;
}

.form-group .dd-selected {
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    padding: 3px 30px 0 95px;
    height: 70px;
    justify-content: center;
    position: relative;
}

.form-group .dd-option {
    display: flex;
    flex-direction: column;
    padding: 3px 5px 0 95px;
    height: 70px;
    justify-content: center;
    position: relative;
}

.form-group .dd-option-description,
.form-group .dd-selected-description {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 50em) {
    .form-group .dd-selected,
    .form-group .dd-option{
        font-size: .8em;
        line-height: 1.1em;
    }
    .form-group .dd-option-text,
    .form-group .dd-selected-text{
        font-weight: 500;
    }
    .form-group .dd-option-description,
    .form-group .dd-selected-description {
        padding-top: 3px;
    }
}

.form-group .dd-desc {
    line-height: initial;
}

.form-group-label{
    font-size: 1.2em;
    font-weight: 600;
    color: #fff

}

.form-group-label + .dd-container{
    margin-top: .2em;
}

.form-group .dd-option-image,
.form-group .dd-selected-image {
    margin-right: 0.7em;
    display: inline-block;
    width: 80px;
    max-width: 80px;
    background-size: cover;
    border-radius: 4px 0 0 4px;
    background-position: center center;
    border: 2px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.form-group .dd-option-image{
    border-radius: 0;
}

dd-option-selected {
    background: #f6f6f6;
}

.form-group .dd-container.disabled {
    opacity: .6;
    pointer-events: none;
}
.form-group .dd-container.disabled .dd-select{
    background: #f9f9f9 !important;
}
.form-group .dd-container.disabled .dd-pointer{
    visibility: hidden;
}
.form-group .dd-option.disabled,
.form-group .dd-option.disabled:hover{
    opacity: .5;
    cursor: default;
    background-color: #fff;
    pointer-events: none;
}
.form-group .dd-option.disabled .dd-option-image,
.form-group .dd-option.disabled .dd-option-text,
.form-group .dd-option.disabled .dd-option-description{
    opacity: .6;
    cursor: default;
}
.form-group .dd-option.disabled:after{
    content: 'Регистрация закрыта';
    position: absolute;
    right: 5px;
    top: 5px;
    color: #333;
    font-size: 12px;
    font-weight: bold;
}

.tickets-btns-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 3em 0 0;
}

.and-soo{
    margin: 3em 0;
    font-size: .7em;
    font-weight: 600;
    opacity: .6;
    position: relative;
    color: #fff;
}
.and-soo:before{
    content: '';
    width: 50px;
    height: 1px;
    position: absolute;
    left: -60px;
    top: 10px;
    background: #fff;
    opacity: .4;
}
.and-soo:after{
    content: '';
    width: 50px;
    height: 1px;
    position: absolute;
    right: -60px;
    top: 10px;
    background: #fff;
    opacity: .4;
}


.tickets-btns-block__dop{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tickets-btns-block__dop .btn + .btn{
    margin-top: 2em;
}





/* Timepad */
.timepad-article,
#registration .timepad-article{
    max-width: 922px;
}

body {
    min-height: auto;
}

.i-page {
    background-color: rgba(255,255,255,.7)!important;
    padding: 1.5em 3em;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .15) 0 1px 3px 0;
}

@media screen and (max-width: 50em) {
    .i-page {
        padding: .5em 0;
    }
}

.b-registration__acquirings{
    display: none !important;
}

.b-registration__question{
    font-weight: 800 !important;
    font-size: 16px !important;
}
.b-registration__label span{
    font-size: 16px !important;;
    font-weight: 400 !important;
}
.b-registration__section.section-submit{
    text-align: center;
}
.b-registration__label {
    padding: 10px 12px;
}
.b-registration__label:focus,
.b-registration__label:hover {
    background-color: #e1e1e1;
    border-radius: 4px;
}

.lote-tickets{
    margin-top: 2em;
}


    /* Modal window */
.modal {
    border-radius: 4px 4px 0 0;
    transform: translateY(100px);
    transition: all .7s;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    display: none;
}
@media screen and (max-width: 50em) {
    .modal {
        padding: 24px;
    }
}

.modal article{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.modal article  > div + div{
    margin-top: 2em;
}

.modal__requisition > div + div{
    margin-top: 1em;
}

.modal__requisition{
    position: relative;
}

.modal__title{
    display: flex;
    justify-content: flex-start;
    flex-flow: row-reverse;
}

@media screen and (max-width: 50em) {
    .modal__title{
        flex-direction: column;
        flex-flow: column;
        align-items: center;
    }
}

.modal-title-data{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-right: 1.5vw;
    line-height: normal;
}
@media screen and (max-width: 50em) {
    .modal-title-data{
        padding: 2vh 0 0;
        align-items: flex-start;
    }
}

.requisition-image{
    width: 300px;
    min-height: 200px;
    border-radius: 20px;
    background-color: #e2e2e2;
    background-position: 50% 50%;
    background-size: cover;
    flex: 0 0 auto;
}
@media screen and (max-width: 50em) {
    .requisition-image{
        width: 100%;
        margin: 0 auto;
    }
}

.modal-title-data strong{
    font-size: .8em;
    opacity: .5;
}
.modal-title-data span{
   display: inline-block;
    width: 100%;
}
.modal-title-data p + p{
    margin-top: 1em;
}




.modal-anons p + p{
    margin-top: .75em;
}
.modal-anons ul{
    margin-top: .5em;
}

.modal__anons > strong,
.modal__targeting > strong{
    font-size: .8em;
    opacity: .5;
}

.modal__video iframe{
    background-color: #999;
}


.modal__video:empty{
    display: none;
}


.video{
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 50em){
    .modal__video{
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
        display: block;
    }
    .modal__video iframe {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: absolute;
    }
}


.modal__lector{
    display: flex;
    justify-content: flex-start;
    flex-flow: row-reverse;
    align-items: flex-start;
    margin-top: 2em;
}
@media screen and (max-width: 50em) {
    .modal__lector{
        flex-direction: column;
        align-items: center;
        margin-top: auto;
    }
}

.lector-image{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    flex: 0 0 auto;
    margin-top: .3em;
}

.modal-lector-data{
    display: flex;
    flex-direction: column;
    padding-right: 1.5vw;
    flex: 1 1 auto;
    align-items: flex-start;
}
@media screen and (max-width: 50em) {
    .modal-lector-data{
        padding: 0;
    }
}

.lector-name > strong{
    font-size: .8em;
    opacity: .5;
}

.social-links > strong{
    font-size: .8em;
    opacity: .5;
}

.social-links > a,
.fancybox-content .social-links a{
    border-bottom: none;
    outline: none;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}
.social-links a i{
    position: relative;
    top: 5px;
    font-size: 1.5em;
}
.social-links a span{
    display: inline-block;
    font-size: .8em;
}

.lector-skills{
    margin-top: 1em;
}
.lector-skills p + p{
    margin-top: 1em;
}
.info{
    padding: 1.5em;
    font-style: italic;
    background-color: #fbf2d1;
    border-radius: 4px;
}
.empty-info{
    padding: 3em;
    text-align: center;
    opacity: .5;
}
.info_center{
    text-align: center;
}

.info_speed {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    position: relative;
    display: flex;
    color: #fff;
    border-radius: 0;
    justify-content: flex-end;
    
}

.speed-text{
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    font-style: normal;
    align-items: flex-end;
    font-size: .9em;
    margin: 4px 0 0;
}

.speed-icon{
    width: 48px;
    height: auto;
    margin: -6px 10px 0 0;
}

.speed-text__p{
    white-space: nowrap;
    text-align: right;
}

ul.speed-text__ul{
    margin: 0;
    list-style: disc;
    padding-left: 2%;
}


@media screen and (max-width: 50em){
    .info_speed {
        margin: 0;
        align-items: flex-start;
    }
    .speed-icon{
        width: 48px;
        margin-right: .5em;
    }
    .speed-text{
        font-size: .9em;
    }
}


.modal_lector .modal__lector:first-child{
    margin-top: 0;
}

.modal_lector .modal__requisition{
    order: 2;
    margin-top: 2em;
}
@media screen and (max-width: 50em) {
    .modal_lector .modal__requisition{
        margin-top: 1em;
    }
}


.lector-material{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 1em;
    flex-wrap: wrap;
}

.lector-material__img{
    flex: 1 1 auto;
    border-radius: 10px;
    max-width: 320px;
}
@media screen and (max-width: 50em) {
    .lector-material{
        flex-direction: column;
    }
    
    .lector-material__img{
        max-width: 100%;
        margin: 10px 0;
    }
}



.fancybox-toolbar .fancybox-button{
  background-color: transparent;
  width: 64px;
  height: 64px;
  color: #000;
  margin: 6px 6px 0 0;
}
.fancybox-toolbar .fancybox-button:hover{
    color: #999;

}

.fancybox-slide--current .modal{
    transform: translateY(0);
    opacity: 1;
}
.fancybox-button svg {
    transform: scale(1.5);
}

.requisition-name__data,
.lector-name__data{
    font-size: 1.6em;
    font-weight: 500;
}

.fancybox-content a{
    text-decoration: none;
    border-bottom: 1px dotted #E45030;
    color: #E45030;
    outline: none;
    cursor: pointer;
}
.fancybox-content a:hover{
    border-bottom-color: transparent;
    color: #b32404;
}


@media screen and (max-width: 50em) {
    .fancybox-container article{
        overflow: visible;
        padding: 0;
    }
    .fancybox-container .fancybox-content{
        padding: 1em;
    }
    .requisition-name__data,
    .lector-name__data{
        font-size: 1.4em;
        line-height: 1em;
    }
    .modal-title-data strong,
    .modal__anons > strong,
    .lector-name > strong{
        font-size: 1em;
        font-weight: 500;
    }
    .modal-title-data span,
    .modal-anons,
    .lector-skills{
        font-size: 1.1em;
    }
    .fancybox-content .requisition-image{
        width: calc(100% + 2.7em);
        margin: -1em -1em 1em -1em;
        border-radius: 4px 4px 0 0;
        overflow: hidden;
    }
    .fancybox-toolbar .fancybox-button{
        background-color: rgba(255,255,255,.5);
    }
}


.page {
    padding-bottom: 30em;
}

.title-input{
    width: 100%;
    font-size: 1.2em;
    border-radius: 4px;
    border: solid 1px #ccc;
    background: rgb(244, 250, 251);
    padding: .5em;
}

@page {
    size: A4;
    margin: 0;
}
@media print {

    .article-ticket * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        print-color-adjust: exact !important;

    }
    .page {
        margin: 0 !important;
        padding: 1cm 2cm !important;
        border: initial;
        border-radius: initial;
        width: 21cm;
        min-height: initial;
        height: 29cm;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
        overflow: hidden;
    }
    .registration-h1{
        font-size: 18pt;
        box-shadow: none;
        color: #000;
    }
    .title-input{
        width: 100%;
        font-size: 21pt;
        border: none;
        background: transparent;
        padding: 0;
    }
    #registration{
        background-color: #fff;
        color: #000;
    }
    #registration h2{
        font-size: 14pt;
        margin: 0;
        text-align: center;
        color: #000;
    }
    .form-group + .form-group{
        margin-top: 6mm;
    }
    .form-group + .form-group_1{
        margin-top: 2mm;
    }
    .form-group-label + .dd-container{
        margin-top: 0;
    }
    .form-group-label {
        color: #666666;
        font-size: 13pt;
        font-weight: 500;
    }

    .dd-select{
        box-shadow: none !important;
        border: none !important;
        background-color: transparent !important;
    }
    .form-group .dd-selected{
        height: 14mm;
    }
    .dd-selected .dd-desc{
        color: #666666;
    }
    .dd-pointer.dd-pointer-down{
        display: none;
    }
    .empty{
        color: #cccccc;
        font-weight: normal;
    }
    .btn{
        display: none;
    }
}
