
.clearfix:before, .clearfix:after {
    content: '';
    display: table;
}
.clearfix:after {
    clear: both;
}

*::-webkit-input-placeholder {
	color: #868E9A;
	opacity: 1;
}
*:-moz-placeholder {
	color: #868E9A;
    opacity: 1;
}
*::-moz-placeholder {
	color: #868E9A;
    opacity: 1;
}
*:-ms-input-placeholder {
	color: #868E9A;
    opacity: 1;
}


*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body{
    color: #333;
	font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
    position: relative;
}

.work{
    width: 100%;
    max-width: 1200px;
    min-width: 320px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.how .work{
    max-width: 1920px;
}

.how .work--adventurer{
    max-width: 1200px;
}

.hidden {
  display: none !important;
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='search']{
    width: 100%;
    height: 51px;
    padding: 0;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: white;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #E5E0FF;
}
/* input:required {
	border:0;
    border-bottom: 1px solid #f00;
} */


textarea{    
    width: 100%;
    height: 86px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    resize: none;
    padding: 15px;
    background: #F4F1FB;
    border-radius: 10px;
    border: none;
}

input:focus{
    outline: none;
}

textarea:focus{
    outline: none;
}

.btn{
    display: inline-block;
    border: medium none;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: .5s ease-in-out;
    text-align: center;
}

.btn_main{
    padding: 15px 15px 15px;
    color: #fff;
    font-size: 16px;
    background: #FF851E;
    border-radius: 30px;
}

.btn_main:hover{
    background: #7832A5;
}

.btn_main:active{
    box-shadow: 0px 4px 43px rgba(95, 38, 151, 0.67);
}

button:focus{
    outline: none;
}

.wrap{
    overflow: hidden;
}

/*social*/
.social{
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 -24px;
}

.social li{
    padding: 0 24px;
}

.social li a{
    transition: .5s ease-in-out;
}

.social li a:hover{
    opacity: .88;
}

.title_block{
    display: block;
    margin-bottom: 25px;
    color: #333;
    font-family: 'SangBleu Sans'; font-family: 'Muller';
    font-size: 48px;
    font-weight: bold;
}

/*HEADER*/
.header{
    width: 100%; 
    display: block;
    position: absolute;
    background-color: #EDEEF2;
    top: 0;
    left: 0;
    z-index: 9;
}

.header .inner{
    padding: 15px;
    position: relative;
    z-index: 1;
}

.header .cols{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px;
}

.header .col{
    padding: 0 15px;
}

.header_right{
    display: flex;
    align-items: center;
}
.header_right .region_wrap{
    padding: 0px 30px;
}
.header .logo{

}

.header .logo img{
    max-width: 100%;
    display: block;
}

.nav{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -20px;
    margin-right: auto;
    list-style: none;
}

.nav li{
    padding: 0 30px;
}

.nav li a{
    display: block;
    padding: 3px 0;
    color: #333;
    font-size: 16px;
    transition: .3s;
}

.nav li.active > a,
.nav li:hover > a{
    color: #FF851E;
}

.lang{
    list-style: none;
    display: flex;
    align-items: center;
    margin-left: 45px;
}

.lang li{
    color: #333;
}

.lang li.active{
    color: #FF851E;
    font-weight: bold;
}

.lang li a{
    color: inherit;
}

.burger{
    width: 23px;
    display: none;
}

.burger span{
    display: block;
    height: 3px;
    margin-bottom: 3px;
    background: #333;
    border-radius: 2px;
}

.burger span:last-child{
    margin-bottom: 0;
}

/*INTRO*/
.intro{
    width: 100%; 
    display: block;
    background: #EDEEF2;
    position: relative;
    z-index: 2;
}

.intro .inner{
    padding-top: 50px;
    /*padding-bottom: 160px;*/
}

.intro .cols{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.intro .col{
    padding: 0 15px;
}

.intro .col:first-child{
    width: 52%;
}

.intro .col:last-child{
    width: 48%
}

.intro h1{
    margin-bottom: 10px;
    font-family: 'Muller';
    font-weight: 800;
    font-size: 48px;
	line-height:122%;
}

.intro .subtitle{
    display: block;
    margin-bottom: 35px;
    font-size: 20px;
    color: #4F4F4F;
}

.intro .video{
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.intro .video:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(95, 38, 151, 0.2), rgba(95, 38, 151, 0.2));
    transition: .5s ease-in-out;
    pointer-events: none;
	display:none;
}

.intro .video:hover:before{
    filter: brightness(30%);
}

.intro .video:after{
    content: "";
    width: 72px;
    height: 72px;
    background: url(../img/intro/play.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    pointer-events: none;
	display:none;
}

.intro .video img{
    display: block;
    width: 100%;
}

.intro .buttons{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -18px;
}

.intro .buttons > div{
    padding: 0 18px;
}

.intro .buttons a{
    display: block;
    width: 100%;
    max-width: 202px;
    transition: .5s ease-in-out;
}

.intro .buttons .btn:hover{
    opacity: .88;
}

.intro .buttons .btn img{
    width: 100%;
}

.intro_bottom{
    margin-top: 50px;
    padding-top: 0;
    position: relative;
}

.intro .social{
    position: absolute;
    top: 67px;
    right: 0;
    z-index: 2;
}

.intro .order{
    transform: translateY(50%);
}

/*order*/
.order{
    width: 100%;
    max-width: 1125px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 40px 55px;
    background: #FFFFFF;
    box-shadow: 4px 0px 31px #E5E0FF;
    border-radius: 10px;
}

.order--footer {
    padding: 30px 54px;
}

.order .order_left{
    width: 58%;
    padding-right: 50px;
}

.order .order_right{
    width: 42%;
}

.order p{
	font-style: normal;
	font-weight: normal;
    font-size: 24px;
}
.order p span{
	color:#868E9A;
	font-size:16px;
}

.order .form .items{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.order .form .item{
    padding: 0 15px;
}

.order .form .item:first-child{
    width: 58%;
}

.order .form  .item:last-child{
    width: 42%;
}

.form .mail{
    position: relative;
}

.form .mail:before{
    content: "";
    width: 18px;
    height: 14px;
    background: url(../img/intro/mail.svg) no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.form .mail input{
    padding-right: 35px;
}

.order .form .btn{
    width: 100%;
}

/*ABOUT*/
.about{
    width: 100%; 
    display: block;
    background: #fff;
    position: relative;
    z-index: 1;
}

.about .inner{
    padding-top: 180px;
    padding-bottom: 120px;
}

.about p{
    margin-bottom: 20px;
    color: #868E9A;
    font-size: 16px;
}

.about .cols{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.about .col{
    padding: 0 15px;
}

.about .col:first-child{
    width: 48%;
}

.about .col:last-child{
    width: 52%;
}

.about .pic{

}

.about .pic img{
    max-width: 100%;
}

.about .text{
    max-width: 470px;
    font-size: 16px;
    margin: 0 auto;
	color: #868E9A;
	line-height: 1.5;
}

/*WHOM*/
.whom{
    width: 100%; 
    display: block;
    background: #F9FAFE;
    position: relative;
    z-index: 1;
}

.whom .title_block{
    font-size: 48px;
}

.whom .inner{
    padding-top: 180px;
}

.tabs{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.tabs_caption{
    display: flex;
    justify-content: center;
    list-style: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
}

.tabs_caption li{
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 24px;
    color: #333;
    font-family: 'bebas_neuebold';
    text-transform: uppercase;
    transition: .5s ease-in-out;
    text-align: center;
    background: #fff;
    cursor: pointer;
    line-height: 1;
    position: relative;
	box-shadow: 3px 1px 18px rgba(0, 0, 0, 0.33);
}
.tabs_caption li:hover{
   /* transform: scale(1.05); */

}

.tabs_caption li:first-child{
    border-radius: 60px 0px 0px 60px;
}
.tabs_caption li:first-child:hover{

}

.tabs_caption li:last-child{
    border-radius: 0px 60px 60px 0px;
}

.tabs_caption li.active{
    color: #fff;
}

.tabs_caption li span{
    display: inline-block;
    font-family: 'SangBleu Sans'; font-family: 'Muller';
    font-size: 24px;
    text-transform: none;
    font-style: italic;
    white-space: nowrap;
    transition: .0s ease-in-out;
    transition-delay: .0s;

    position: absolute;
    top: 100%;
    transform: translateY(200px);
    opacity: 0;
}


/* //// */

.role {
    position: relative;
    display: inline-block;
    font-family: 'Muller';
    font-size: 24px;
    text-transform: none;
    font-style: italic;
}

.role__text-press {
    cursor: pointer;
    border-bottom: 1px dotted #7832A5;
}

.role__text-press--local {
    cursor: pointer;
    border-bottom: 1px dotted #FF851E;
}

.role--local {
    color: #FF851E;
    padding-top: 30px;
    padding-right: 60%;
}

.role--adventurer {
    margin-left: 55%;
    padding-left: 12%;
    color: #7832A5;
    padding-top: 33px
}

.role:before{
    content: "";
    position: absolute;
    z-index: 2;
    transition: .7s ease-in-out;
}

.role--local:before{
    width: 210px;
    height: 220px;
    left: 0px;
    top: -210%;
    background: url(../img/whom/arrow_right.svg) no-repeat;
}

.role--adventurer:before{
    width: 210px;
    height: 160px;
    left: 40%;
    top: -150%;
    background: url(../img/whom/arrow_left.svg) no-repeat;
}

.tabs_caption li.active:first-child{
    border-radius: 60px 0px 0px 60px;
    background: #7832A5;
    box-shadow: 0px 4px 43px rgba(95, 38, 151, 0.67);
}

.tabs_caption li.active:last-child{
    border-radius: 0px 60px 60px 0px;
    background: #FF851E;
    box-shadow: 4px 5px 26px rgba(255, 133, 30, 0.4);
}

.tabs_content{
    width: 50%;
    min-height: 693px;
    display: flex;
    align-items: center;
    background: url(../img/whom/bg.jpg) 100% 0% no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
}

.tabs_content:nth-of-type(1){
    justify-content: flex-end;
}

.tabs_content:nth-of-type(2){
    
}

.tabs_content.active{

}

.tabs_content .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 1;
    transition: .2s ease-in-out;
    pointer-events: none;
}

.tabs_content.active .overlay{
    opacity: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tabs_content:nth-of-type(1) .overlay{
    background-image: url(../img/whom/overlay_left.jpg);
	background-repeat: no-repeat;
    background-color:#8830C2;
    background-position-x: right;
    background-size: contain;
}

.tabs_content:nth-of-type(2) .overlay{
    background-image: url(../img/whom/overlay_right.jpg);
	background-repeat: no-repeat;
    background-color:#E99C10;
    background-size: contain;
}

.tabs_content .text{
    width: 100%;
    max-width: 600px;
    padding: 0 15px;
    padding-top: 110px;
    position: relative;
    z-index: 1;
}

.tabs_content:nth-of-type(2) .text{
    text-align: left;
}

.whom .title_block{
    max-width: 452px;
}
.whom .subtitle{
    max-width: 452px;
    display: block;
    margin-top: 48px;
    margin-bottom: 21px;
    color: #4F4F4F;
    font-size: 24px;
}

.whom p{
    margin-top: 21px;
    max-width: 452px;
    padding-right: 37px;
    color: #868E9A;
    font-size: 16px;
    line-height: 1.5;
}

.tabs_content:nth-of-type(2) .subtitle,
.tabs_content:nth-of-type(2) p, .tabs_content:nth-of-type(2) .title_block{
    margin-left: 28%;
    width: 450px;
    padding-right: 0;
}


/*HOW*/
.how{
    width: 100%; 
    display: block;
    background: #fff;
    position: relative;
    z-index: 1;
}

.how .title_block{
    font-size: 48px;
}

.how .inner{
    padding-top: 20px;
    padding-bottom: 20px;
}

.how p{
    /* margin-bottom: 20px; */
    color: #828282;
    font-size: 16px;
}

.how .subtitle{
    display: block;
    margin-bottom: 10px;
    color: #4F4F4F;
    font-size: 24px;
    font-weight: normal;
}

.how .num{
    display: block;
    margin-bottom: 10px;
    color: #4F4F4F;
    font-size: 24px;
    font-weight: normal;
}

.how .cols{
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
    margin: 0 -15px;
}

.how .col{
    padding: 0 15px;
    padding-left: 20px;
}

.how .col:first-child{
    width: 32%;
    margin-left: auto;
}

.how .col:last-child{
    width: 50%;
    padding-top: 60px;
}

.slider_pag{

}

.slider_pag .slick-slide:last-of-type{

}

.slider_pag .in{
    padding-left: 25px;
    padding-bottom: 25px;
    position: relative;
	cursor:pointer;
}

.how p{
    /* margin-bottom: 20px; */
    color: #828282;
    font-size: 16px;
    transition: .3s;
    line-height: 1.5;
}

.how .subtitle{
    display: block;
    margin-bottom: 12px;
    color: #4F4F4F;
    font-size: 24px;
    font-weight: normal;
    transition: .3s;
}

.how .num{
    display: block;
    margin-bottom: 10px;
    color: #4F4F4F;
    font-size: 24px;
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
}

.slider_pag .slick-current.slick-active .subtitle,
.slider_pag .slick-current.slick-active .num,
.slider_pag .slick-current.slick-active p{
    color: #7934A6;
}

.how .slider_container{
    position: relative;
    padding-left: 19px;
    overflow: visible;
    
}

.slider_screen{
    position: relative;
    z-index: 1;
    margin: 0 -5px;
    padding-right: 130px;
    overflow: hidden;
}

/*.slider_screen:before{
    content: "";
    width: 180px;
    height: 100%;
    background: linear-gradient(270deg, #FFFFFF 28.43%, rgba(255, 255, 255, 0) 299.61%);
    position: absolute;
    top: 0;
    right: -50px;
    transition: .3s;
    opacity: 1;
    z-index: 9;
}*/

.slider_screen .slick-list{
    overflow: visible;
}

.slider_screen .item{
    padding: 0 5px;
}

.slider_screen .pic{
    width: 258px;
    position: relative;
	cursor:pointer;
}



.slider_screen .slick-slide.slick-active + .slick-slide:not(.slick-active) .pic:before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #FFFFFF 28.43%, rgba(255, 255, 255, 0) 299.61%);
    position: absolute;
    top: 0;
    left: 0;
    transition: .1s;
    opacity: 1;
}

.slider_screen .slick-slide.slick-current.slick-active .pic:before,
.slider_screen .slick-slide.slick-active .pic:before{
    opacity: 0!important;
}

/* .slider_screen .pic img{
    width: 183px;
    height: 324px;
} */

.how_phone{
    width: 257px;
    height: 518px;
    position: absolute;
    top: 50%;
    left: 3px;
    z-index: 2;
    transform: translateY(-50%);
    pointer-events: none;
}

.how_phone img{
    width: 100%;
}

/*ADVANTAGES*/
.advantages{
    width: 100%; 
    display: block;
    background: #F9FAFE;
    position: relative;
    z-index: 1;
}

.advantages .inner{
    padding-top: 100px;
    padding-bottom: 60px;
}

.advantages .title_block{
    max-width: 510px;
    margin-bottom: 50px;
    font-size: 48px;
}

.advantages .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.advantages .item{
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 60px;
}

.advantages .item .in{
    padding-left: 125px;
    position: relative;
}

.advantages .item .icon{
    width: 87px;
    position: absolute;
    top: 5px;
    left: 0;
}

.advantages .item .icon img{
    max-width: 100%;
}

.advantages .item .subtitle{
    display: block;
    margin-bottom: 15px;
    color: #4F4F4F;
    font-size: 24px;
    font-weight: normal;
}

.advantages .item p{
    max-width: 340px;
    color: #828282;
    font-size: 16px;
    line-height: 1.5;
}

/*GALLERY*/
.gallery{
    width: 100%; 
    display: block;
    position: relative;
    z-index: 1;
}

.gallery .inner{
    min-height: 800px;
    padding-top: 70px;
    padding-bottom: 40px;
}

.gallery .title_block{
    font-size: 48px;
}

.gallery p{

}

.gallery .item{
    width: 304px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.gallery .slick-current.slick-center .item{

}

.gallery .pic{
    overflow: hidden;
    position: relative;
    box-shadow: -7px 4px 26px rgba(0, 0, 0, 0.15);
    /*border-radius: 29px;*/
    transform: scale(.8);
    transition: .3s;
    /*clip-path: polygon(0 13%, 100% 0, 100% 100%, 0% 100%);*/
    /*clip-path: polygon(0 0, 100% 13%, 100% 100%, 0% 100%);*/
    border-radius: 18px;
}

.gallery .slick-current.slick-center  ~ div .item .pic{
    /*clip-path: polygon(0 13%, 100% 0, 100% 100%, 0% 100%);*/
}

.gallery .slick-current.slick-center .pic{
    box-shadow: none;
    transform: none;
    /*border-radius: 48px;*/
    transform: none;
    clip-path: none;
}

.gallery .pic:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    top: 0;
    left: 0;
    transition: .3s;
    opacity: 0.9;

    /* width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 303px;
    border-color: #ffffff transparent transparent #ffffff; */
}

.gallery .slick-current.slick-center .pic:before{
    opacity: 0;
}

/* .gallery .active .pic  {
    width: 304px;
} */

.gallery .pic img{
    width: 100%;
}

.gallery .text{
    display: none;
    padding-top: 20px;
    width: 305px;
}

.gallery .slick-current.slick-center .text{
    display: block;
}

/* .gallery .slick-current.slick-center .pic {
    width: 304px;
} */

.gallery .slick-current.slick-center .item {
    padding-top: 10px;
}

.gallery p{
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
}

.gallery p span{
    font-weight: bold;
}

.gallery .slick-slide{
    z-index: 9;
    position: relative;
}

.gallery .slick-current.slick-center{
    z-index: 999;
}

/*TEST*/
.test{
    width: 100%; 
    display: block;
    position: relative;
    padding-bottom: 70px;
    z-index: 4;
    overflow: hidden;
}

.test .items{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.test .item{
    width: 50%;
    min-height: 548px;
    display: flex;
    align-items: center;
    position: relative;
}

.test .item .overlay{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: url(../img/whom/bg.jpg) center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: .2s ease-in-out;
    opacity: 1;
}

.test .item:before{
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 9;
}

.test .item:nth-of-type(1):before{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 130px 960px;
    border-color: transparent transparent #ffffff transparent;
    right: 0;
}

.test .item:nth-of-type(2):before{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 130px 0 0 960px;
    border-color: transparent transparent transparent #ffffff;
    left: 0;
}

.test .item .overlay .in{
    width: 100%;
    max-width: 800px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.test .item:nth-of-type(1) .overlay{
    justify-content: flex-end;
}

.test .item:nth-of-type(2) .overlay .in{
    text-align: right;
}

.test .item.active .overlay{
    opacity: 0;
    pointer-events: none;
}

.test .item.active .overlay{

}

.test .item:nth-of-type(1){
    background: #5F2697;
    justify-content: flex-end;
}

.test .item:nth-of-type(2){
    background: #FF7F04;
}

.test .text{
    margin-bottom: 100px;
    width: 100%;
    max-width: 600px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.test .item:nth-of-type(2) .text{
    text-align: right;
    margin-left: 16%;
    margin-bottom: 160px;
    max-width: 450px;
}

.test .title_block{
    max-width: 450px;
    color: #fff;
    font-size: 48px;
}

.test .subtitle{
    padding-top: 230px;
    display: inline-block;
    /* margin-bottom: 30px; */
    color: #4F4F4F;
    font-size: 24px;
    text-align: left;
}

.test .subtitle--1 {
    padding-top: 180px;
    margin-left: 0;
}

.test .subtitle__text {
    margin-top: 12px;
}

.test .subtitle span{
    display: block;
    color: #828282;
    font-size: 16px;
}

.test p{
    max-width: 450px;
    color: #fff;
    font-size: 24px;
}

.test .item:nth-of-type(2) p,
.test .item:nth-of-type(2) .title_block{
    margin-left: 10%;
}

.test_content{
    opacity: 0;
    height: 0;
    visibility: hidden;
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding-bottom: 0;
}

.test_content.active{
    opacity: 1;
    height: auto;
    visibility: visible;
    overflow: visible;
}

.test .screen{
    width: 260px;
    height: 470px;
    padding-top: 65px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: url(../img/test/phone.svg) no-repeat;
    background-size: contain;
}

.test_content .screen .arrow_1{
    content: "";
    width: 139px;
    height: 0;
    background: url(../img/test/arrow_1.svg) no-repeat;
    position: absolute;
    top: 450px;
    left: -110px;
    transition-delay: 1.4s;
    transition: .7s ease-in-out;
    pointer-events: none;
}

.test_content.active .arrow_1{
    height: 247px;
}

.test_content .screen .arrow_2{
    content: "";
    width: 0;
    height: 229px;
    background: url(../img/test/arrow_2.svg) no-repeat;
    position: absolute;
    top: -10px;
    left: 100%;
    transition-delay: .7s;
    transition: .7s ease-in-out;
    pointer-events: none;
}

.test_content.active .arrow_2{
    width: 295px;
}

.test_content .screen .arrow_3{
    content: "";
    width: 142px;
    height: 0;
    background: url(../img/test/arrow_3.svg) no-repeat;
    position: absolute;
    top: 450px;
    right: -130px;
    transition-delay: 1.2s;
    transition: .7s ease-in-out;
    pointer-events: none;
}

.test_content.active .arrow_3{
    height: 232px;
}

.test_content .screen .arrow_4{
    content: "";
    width: 380px;
    height: 0;
    background: url(../img/test/arrow_4.svg) no-repeat;
    position: absolute;
    top: -50px;
    right: 100%;
    transition-delay: .7s;
    transition: .7s ease-in-out;
    pointer-events: none;
}

.test_content.active .arrow_4{
    height: 280px;
}


.test .screen .pic{
    width: 195px;
    margin: 0 auto;
    transform: translateX(2px) translateY(-15px);;
}

.test .screen .pic img{
    width: 100%;
}

.test .form {
    width: 426px;
}

.test .form .items_form{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 40px -15px 0;
}

.test .form .item_form{
    display: flex;
    padding: 0 15px;
}

.test .form .item_form:first-child{
    /* width: 50%; */
    margin-right: 28px;
    margin-bottom: 15px;
}

.order .form  .item_form:last-child{
    /* width: 50%; */
}

.test .form .btn{
    margin-left: 28px;
    width: 100%;
}
.test .form input{
    background:transparent;
}


/*ACION*/
.action{
    width: 100%; 
    display: block;
    position: relative;
    z-index: 3;
    transform: translateY(50%);
}

.action--footer {
    transform: translateY(60%);
}

.action .inner{

}

/*FOOTER*/
.footer{
    width: 100%; 
    display: block;
    position: relative;
    background: #F9FAFE;
    z-index: 1;
}

.footer .inner{
    padding-top: 120px;
    padding-bottom: 25px;
    position: relative;
}

.footer .cols{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px;
}

.footer--desktop .cols::after{
    content: "";
    position: absolute;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    height: 1px;
    width: 97.5%;
    bottom: -20px;
    left: 15px;
    border-bottom: 1px solid #868E9A;
}


.footer .col{
    padding: 0 15px;
}

.footer .logo{

}

.footer .logo img{
    max-width: 100%;
}

.footer_nav{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -20px;
    list-style: none;
}

.footer_nav li{
    padding: 0 30px;
}

.footer_nav li a{
    display: block;
    padding: 3px 0;
    color: #333;
    font-size: 16px;
    transition: .3s;
}

.footer_nav li.active > a,
.footer_nav li:hover > a{
    color: #FF851E;
}

.footer p{
    font-size: 13px;
    color: #828282;
}

.footer p a{
    color: inherit;
}

.footer_bottom{
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    width: 597px;
    margin-top: 55px;
    padding-bottom: 45px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer_bottom .line{
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 -25px; */
    font-size: 13px;
}

.footer_bottom .line a {
    color: #868E9A;
    font-size: 13px;
    transition: 0.5s;
}

.footer_bottom .line a:hover {
    color: #FF851E;
}

.footer_bottom .line a:active {
    color: #FF851E;
    opacity: 0.5;;
}

/* .footer_bottom .line p{
    padding: 0 25px;
} */

.region_wrap{
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 9999;
}

.region{
    display: inline-block;
    font-size: 16px;
    color: #333;
    text-align: center;
    position: relative;
    z-index: 9;
}

/* .region--footer {
    display: inline;
} */

.col--mobile {
    margin: 0 auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col--mobile .logo {
    margin-right: 150px;
}

.region .choice{
    display: block;
    /* padding-left: 30px; */
    padding-right: 22px;
    cursor: pointer;
    font-size: 13px;
    color: #868E9A;
}

.header .region .choice{
    display: block;
    padding-left: 0;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

/* .region .choice:before{
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/footer/region.svg) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
} */

.region .choice:after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #868E9A transparent transparent transparent;
    position: absolute;
    top: 30%;
    right: 0;
    /* transform: translateY(-50%); */
    transition: .3s;
}

.region .dropdown{
    width: 200px;
    padding: 15px;
    background: #fff;
    box-shadow: 4px 0px 31px #E5E0FF;
    border-radius: 10px;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    z-index: 9;
    display: none;
}

.region--footer .dropdown {
    width: 100px;
    padding: 5px;
    font-size: 13px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 10px);
    z-index: 9;
    display: none;
}

.region .dropdown li{
    margin: 10px 0;
}

.region .dropdown li a{
    color: inherit;
}

.region--footer .dropdown li{
    margin: 0;
}

.region--footer .dropdown li a{
    color: inherit;
}

.region .dropdown li.active a,
.region .dropdown li:hover a{
    color: #FF851E;
}

.mobile{
	display:none !important;
}

.orange{
	color:#FF851E;
	font-weight:bold;
}
.purple{
	color:#7832A5;
	font-weight:bold;
}
.popup-header{
	background: #7831AE;
	height: 170px;
	position:relative;
}
.popup-header-logo{
	background: #fff;
	border-radius:50%;
	padding-top:30px;
	box-shadow: 0px 0px 15px rgba(134, 118, 251, 0.71);
	position:absolute;
	top:90px;
	left:50%;
	height:160px;
	width:160px;
	text-align:center;
	margin-left:-80px;
}
.popup{
	border-radius:18px;
	width: 500px;
	height: 500px;
}
.fancybox-slide > *{
	padding:0;
	border-radius:18px;
}
.popup div.h2{
	font-family: Muller;
	font-style: normal;
	font-weight: 800;
	font-size: 24px;
	line-height: 151.19%;	
	text-align:center;
	padding-top:120px;
	text-transform:uppercase;
}
.popup p{
	font-family: Roboto;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 131.19%;
	text-align: center;
	color: #757F8C;
	margin-top:40px;
}

.header .region .choice::before{
	background:none;
}
.header .social{
	margin:0;
}
.header .social li{
	padding:0;
}
.header .social li:first-child{
	padding-right:37px;
}
.header .header_right .region_wrap{
	padding:0 150px;
}
.header .region .choice{
	padding-left:0;
}

/**************/
.title_block_800{
    font-weight: 800;
    font-size: 48px;
    letter-spacing: 0.02em;
    line-height: 122%;
}

.plans_des {
    margin-top: 15px;
    margin-bottom: 28px;
}

.work_less{
    width: 100%;
    max-width: 1200px;
    min-width: 320px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.work_less .header_right .region_wrap{
    padding: 0 50px;
}

/*DEVIDE*/
.devide{
    width: 100%; 
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.devide .inner{
    padding-top: 60px;
    padding-bottom: 90px;
    position: relative;
}

.devide .title_block{
    max-width: 790px;
}

.devide .cols{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.devide .col{
    padding: 0;
}

.devide .col:first-child{
    width: 61%;
}

.devide .col:last-child{
    width: 39%;
    padding-top: 12px;
    padding-left: 25px;
}

.devide_tabs_caption{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.devide_tabs_caption li{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.devide_tabs_caption li:before{
    content: "";
    width: 1000px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
}

.devide_tabs_caption li.active{

}

.devide_tab_content{
    display: none;
}

.devide_tab_content .pic{
    width: 475px;
    height: 418px;
}


.devide_tab_content.active{
    display: block;
}

.accardion_item{
    padding: 0 10px;
}

.accardion_full{
    display: none;
}

.accardion_item:first-child .accardion_full{
    display: block;
}

.devide .pic{
    margin-bottom: 12px;
    position: relative;
}

.devide .pic:before{
    content: "";
    width: 98px;
    height: 154px;
    background: url(../img/devide/arrow_2.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    right: -50px;
}

.devide .pic img{
    max-width: 100%;
}

.devide .text{
    max-width: 500px;
    margin-left: 31%;
}

.devide .text .title{
    display: block;
    margin-bottom: 15px;
    padding-left: 55px;
    font-family: 'Muller';
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    color: #333;
}

.devide .text p{
    font-size: 18px;
    color: #828282;
    line-height: 1.5;
}

.devide .text p.line{
    padding-left: 55px;
    position: relative;
}

.devide .text p.line:before{
    content: "";
    width: 42px;
    height: 4px;
    background: #FF851E;
    position: absolute;
    top: 10px;
    left: 0;
}

.devide_item{
    width: calc(100% - 75px);
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    transition: .3s;
    background: #EDEEF2;
    border-radius: 95px 0 0 95px;
    cursor: pointer;
    position: relative;
}

.devide_item:before{
    content: "";
    width: 1000px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    background: #EDEEF2;
    transition: .3s;
}

.active .devide_item{    
    background: #FF851E;    
    width: 100%;
}

.active .devide_item:before{
    background: #FF851E;  
}

.devide_item .name{
    display: block;
    max-width: 300px;
    padding-left: 24px;
    transition: .3s;
    font-family: 'Muller';
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    color: #333;
}

.active .devide_item .name{
    color: #fff;
}

.devide_item .photo{
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}   

/* .devide_item .photo img{
    width: 100%;
} */

.devide .subtitle{
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 20px;
    color: #FF851E;
    
    font-style: italic;
}

.devide_mob{
    display: none;
}

.how_2{
    overflow: hidden;
}

.how_2 .col:first-child{
    width: 57%;
}

.how_2 .col:last-child{
    padding-top: 120px;
    width: 43%;
}

.how_2 .cols{

}

.how_2 .slider_container{
    margin-right: -130px;
}

.how_2 .title_block{
    font-size: 48px;
    margin-bottom: 30px;
}

.how_2 .how_phone{
    width: 255px;
}

.how_2 .slider_screen .pic{
    width: 225px;
    transform: translate(-2px, -2px);
}

.how_2 .slider_pag .in{
    max-width: 560px;
}

.slider_screen{

}

/*PLANS*/
.plans{
    width: 100%; 
    display: block;
    position: relative;
    z-index: 1;
}

.plans .inner{
    padding-top: 5px;
    padding-bottom: 100px;
    position: relative;
}

.plans .cols{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.plans .col{
    width: 50%;
    padding: 0 15px;
}

.plans .pic{
    padding-top: 5px;
    width: 550px;
    position: relative;
}

.plans .pic img{
    width: 100%;
}

.plans .right{
    padding-left: 53px;
}

.plans_item{
    margin-bottom: 15px;
}

.plans_item .title{
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 24px;
    color: #4F4F4F;
    transition: .3s;
}

.plans_item.active .title{
    color: #5F2697;
}

.plans_item p{
    color: #828282;
    font-size: 16px;
    line-height: 1.5;
}

.plans_caption{
    list-style: none;
}

.plans_caption li{
    width: 96px;
    height: 96px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
    background-image: linear-gradient(180deg, rgba(255, 133, 30, 0.46) 0%, rgba(255, 255, 255, 0.46) 100%);
    position: absolute;
    z-index: 2;
}

.plans_caption li:nth-child(1){
    top: 120px;
    left: 93px;
}

.plans_caption li:nth-child(2){
    top: 253px;
    right: 20px;
}

.plans_caption li:nth-child(3){
    top: 363px;
    left: 174px;
}

.plans_caption li.active{
    background-color: rgba(255, 133, 30, 0.65);
    box-shadow: -2px -2px 21px rgba(255, 133, 30, 0.75);
}

.plans_caption li .icon{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: .3s;
    background: #fff;
    background-repeat: no-repeat;
    background-position: center;
}

.plans_caption li .icon_1{
    background-image: url(../img/plans/icon_1.svg);
}
.plans_caption li.active .icon_1{
    background-image: url(../img/plans/icon_1_active.svg);
}

.plans_caption li .icon_2{
    background-image: url(../img/plans/icon_2.svg);
    background-size: 90%;
}
.plans_caption li.active .icon_2{
    background-image: url(../img/plans/icon_2_active.svg);
}

.plans_caption li .icon_3{
    background-image: url(../img/plans/icon_3.svg);
}
.plans_caption li.active .icon_3{
    background-image: url(../img/plans/icon_3_active.svg);
}

.plans_mob{
    display: none;
}

/*WAIT*/
.wait{
    width: 100%; 
    display: block;
    position: relative;
    z-index: 1;
}

.wait .inner{
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}

.wait p{
    font-size: 18px;
    color: #4F4F4F;
}

.wait .text{
    margin-top: 37px;
    margin-bottom: 40px;
    padding-right: 510px;
    position: relative;
    line-height: 27px;
    z-index: 1;
}

.wait .text:before{
    content: "";
    width: 360px;
    height: 212px;
    background: url(../img/wait/pic_2.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -45px;
    right: 115px;
}

.wait_form{
    padding: 40px 60px;
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow: 4px 0px 31px #E5E0FF;
    border-radius: 10px;
}

.wait_form .cols{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.wait_form .col{
    padding: 0 15px;
}

.wait_form .col:first-child{
    width: 35%;
}

.wait_form .col:last-child{
    width: 65%;
}

.wait_form .subtitle{
    display: block;
    margin-bottom: 22px;
    font-weight: 500;
    font-size: 16px;
    color: #000;
}

.wait_form .label{
    display: block;
    margin-bottom: 22px;
    font-size: 16px;
    color: #4F4F4F;
    text-align: left;
}

.wait_form .label--star{
    color: #7933A6;
}

.wait_data{
    max-width: 228px;
}

.wait_form .btn{
    min-width: 200px;
    margin-top: 25px;
}


.input_mail{
    position: relative;
}

.input_mail:before{
    content: "";
    width: 13px;
    height: 10px;
    background: url(../img/wait/mail.svg) no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.input_mail input{
    padding-right: 25px;
    height: 43px;
}

.input_user{
    position: relative;
}

.input_user:before{
    content: "";
    width: 12px;
    height: 12px;
    background: url(../img/wait/user.svg) no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.input_user input{
    padding-right: 25px;
    height: 43px;
}

.select_wrap{
    width: 100%;
    position: relative;
}

.select_wrap .select{
    width: 100%;
    height: 51px;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    text-align: left;
    padding: 0 25px 0 0;
    color: #868E9A;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: transparent;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #E5E0FF;
    border-radius: 0;
    position: relative;
    
}

.order .select_wrap .select option{
    color: #333;
}

.select_arrow{
    width: 10px;
    height: 5px;
    background: url(../img/wait/down.svg) center center no-repeat;
    position: absolute;
    top: 50%;
    right: 8px;
    z-index: 2;
    transform: translateY(-50%);
    pointer-events: none;
}

.wait_mob{
    display: none;
}

/*STEPS*/
.steps{
    width: 100%; 
    display: block;
    position: relative;
    z-index: 1;
}

.steps .inner{
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
}

.steps .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    margin-top: 38px;
    margin-bottom: 10px;
}

.steps .item{
    width: 16.6%;
    padding: 0 10px;
    margin-bottom: 30px;
    position: relative;
}   

.steps .item .num{
    width: 100px;
    height: 100px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px dashed #000;
    border-radius: 50%;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    background: #fff;
    position: relative;
}

.steps .item .num:before{
    content: "";
    width: 120px;
    height: 1px;
    border-top: 1px dashed #000;
    position: absolute;
    top: 50%;
    left: 100%;
}

.steps .item:last-child .num:before{
    content: none;
}

.steps .item .num span{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF851E;
    border-radius: 50%;
}

.steps .item p{
    padding-left: 20px;
    color: #4F4F4F;
    font-size: 20px;
}

.steps .buttons{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -18px;
    padding-left: 370px;
}

.steps .buttons > div{
    padding: 0 18px;
}

.steps .buttons a{
    display: block;
    width: 100%;
    max-width: 202px;
    transition: .5s ease-in-out;
}

.steps .buttons .btn:hover{
    opacity: .88;
}

.steps .buttons .btn img{
    width: 100%;
}

.steps_arrow{
    position: relative;
}

.steps_arrow:before{
    content: "";
    width: 293px;
    height: 154px;
    background: url(../img/steps/arrow.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 120%;
    left: 50px;
}

/* new header  */

.switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  
  .switcher__toggle a {
    text-decoration: none;
    color: #333333; }
  
  .switcher__language--active a {
    color: #FF851E;
    font-weight: bold; }
  
  .switcher__language--disactive a {
    color: #333333;
    font-weight: 400; }
  
  .page-header {
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    min-height: 72px;
    color: #707070;
    background-color: #EDEEF2; }
  
  .page-header__wrapper {
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 15px 0;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  
  .page-header__item {
    box-sizing: content-box;
    padding: 0 15px; }
  
  .page-header__logo-link img {
    display: block; }
  
  .page-header__switcher {
    display: none; }
  
  @media (max-width: 1023px) {
    .page-header__wrapper {
      max-width: 1023px; }
    }
  
  @media (max-width: 767px) {
    .page-header__wrapper {
      max-width: 767px;
      padding: 0 16px;
      margin: 16px auto;
      margin-bottom: 13px; }
    .page-header__logo {
      margin-left: 0; }
    .page-header__logo-link img {
      width: 82px;
      height: 55px; }
    .page-header__nav-wrapper {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .page-header__language {
      display: none; }
    .page-header__switcher {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0;
      padding: 0;
      margin-left: auto;
      padding-top: 5px; } }
  
  .main-nav {
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  
  .main-nav__toggle {
    display: none; }
  
  .main-nav__list {
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 210px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  
  .main-nav__item a {
    text-decoration: none;
    color: #333333;
    -webkit-transition: color 0.5s;
    transition: color 0.5s; }
    .main-nav__item a:hover {
      color: #FF851E; }
    .main-nav__item a:active {
      color: #FF851E;
      opacity: 0.5; }
  
  .main-nav__item {
    padding: 0 30px; }
  
  @media (max-width: 1023px) {
    .main-nav__list {
      min-width: 200px; }
    .main-nav__item {
      padding: 0 10px; } }
  
  @media (max-width: 767px) {
    .main-nav__list {
      min-width: 100px; }
    .main-nav__toggle {
      display: block;
      position: relative;
      margin-top: 5px;
      width: 23px;
      height: 15px;
      padding: 0;
      background-color: transparent;
      border: 0;
      cursor: pointer;
      -webkit-transition: -webkit-transform 0.4s;
      transition: -webkit-transform 0.4s;
      transition: transform 0.4s;
      transition: transform 0.4s, -webkit-transform 0.4s; }
      .main-nav__toggle:hover {
        -webkit-transform: scale(1.3);
                transform: scale(1.3); }
    .main-nav__toggle::before {
      content: "";
      position: absolute;
      top: 2px;
      left: 0;
      width: 23px;
      height: 2px;
      background-color: #333333;
      -webkit-box-shadow: 0 5px 0 0 #333333, 0 10px 0 0 #333333;
              box-shadow: 0 5px 0 0 #333333, 0 10px 0 0 #333333; }
    .main-nav {
      position: relative; }
    .main-nav__list {
      z-index: 3;
      position: absolute;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin: 0;
      padding: 0;
      padding: 10px 5px;
      top: 120%;
      left: -135px;
      -webkit-box-shadow: 4px 0px 31px #E5E0FF;
              box-shadow: 4px 0px 31px #E5E0FF;
      border-radius: 10px;
      background-color: #ffffff; }
    .main-nav__item {
      padding: 10px;
      text-align: center; }
    .main-nav--closed .main-nav__list {
      display: none; }
    .main-nav--nojs .main-nav__toggle {
      display: none; } }
  
  .language {
    position: relative; }
  
  .language__title {
    display: block;
    position: relative; }
  
  .language__title::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top: 5px solid #333333;
    top: 40%;
    right: 0px;
    -webkit-transition: border-top 0.5s;
    transition: border-top 0.5s;
    cursor: pointer; }
  
  .language__title:hover:after {
    border-top: 5px solid #FF851E; }
  
  .language__title:hover .language__list {
    -webkit-transform: scaleY(1);
            transform: scaleY(1); }
  
  .language__link {
    display: block;
    padding-right: 17px;
    text-decoration: none;
    color: #333333;
    outline: none;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear; }
    .language__link:hover {
      color: #FF851E; }
    .language__link:active {
      color: #FF851E;
      opacity: 0.5; }
  
  .language__list {
    box-sizing: content-box;
    margin-top: 16px;
    margin-bottom: 16px;
    padding-left: 40px;
    list-style: none;
    position: absolute;
    top: 50%;
    left: -7px;
    min-width: 100px;
    border-radius: 10px;
    z-index: 10;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    background-color: #ffffff;
    -webkit-box-shadow: 4px 0px 31px #E5E0FF;
            box-shadow: 4px 0px 31px #E5E0FF; }
  
  .language__item {
    padding-top: 10px;
   }
  
  .language__item:last-child {
    padding-bottom: 10px; }
  
  .language__item a {
    text-decoration: none;
    color: #333333;
    -webkit-transition: 0.5s;
    transition: 0.5s; }
    .language__item a:hover {
      color: #FF851E; }
    .language__item a:active {
      color: #FF851E;
      opacity: 0.5; }
  
  @media (max-width: 767px) {
    .language {
      margin-left: auto; } }

  .social {
      display: flex;
      justify-content: space-between;
       width: 112px; 
       margin: 0;
   }

   .social li {
       padding: 0;
   }
  
  .social__list {
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    width: 68px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  
  .social__link path {
    fill: #333333;
    -webkit-transition: fill 0.5s;
    transition: fill 0.5s; }
  
  .social__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .social__link:hover path {
      fill: #FF851E; }
    .social__link:active path {
      fill: #FF851E;
      opacity: 0.5; }
  
  @media (max-width: 1023px) {
    .social__list {
      width: 50px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  
  @media (max-width: 767px) {
    .social__list {
      display: none; } }

.fest__slider {
    height: 500px;
}

.intro--fest {
    background-color: #fff;
}

.intro--fest .inner--fest {
    padding-top: 0;
}

@media (max-width: 1000px) {
    .fest__slider {
        height: auto;
    }
}

@media (max-width: 500px) {
    .fest__slider {
        display: flex;
        flex-direction: column;
    }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden; }
