@import url(https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:wght@300;400;500&display=swap);
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}
*{
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
input, button {
 /*-webkit-appearance: none;*/
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

body { 
	font-size: 14px; 
	line-height: 1.2; 
	font-family: Fira Sans Extra Condensed,sans-serif;
	letter-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section { 
	display: block; 
}
ol,
ul { 
	list-style: none; 
}
blockquote,
q { 
	quotes: none; 
}
blockquote:before,
blockquote:after,
q:before,
q:after { 
	content: ''; 
	content: none; 
}
strong { 
	font-weight: bold; 
} 
input { 
	outline: none; 
}
table { 
	border-collapse: collapse; 
	border-spacing: 0; 
}
img { 
	border: 0; max-width: 100%; 
}
a:focus,
a:hover,
a { 
	text-decoration: none; 
}
.container{
	max-width: 1140px;
	width: 100%;
	margin: auto;
	position: relative;
	padding: 0;
}
{
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-flow: column;
    -moz-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
}
.vc_col-has-fill>.vc_column-inner, 
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner{
	padding-top: 0;
}
.vc_row{
	margin-left: 0;
	margin-right: 0;
}
#header{
	position: fixed;
    width: 100%;
    /*left: 50%;*/
    /*margin-left: -570px;*/
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding-top: 40px;
    padding-bottom: 40px;
    transition: all .2s ease-in-out;
    z-index: 10;
}
#header.header--sticky{
	padding-top: 5px;
    padding-bottom: 5px;
    background-color: #fff;
    box-shadow: 0 2px 12px rgb(0 0 0 / 12%);
}
.header__container{
    display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;	
	align-items: center;
	
}
.header__menu ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
}
.header__menu ul li a{
	padding: 12px;
    color: #212165;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
.header__menu ul li a:after {
    content: "";
    width: calc(100% - 4px);
    height: 45%;
    position: absolute;
    top: 50%;
    left: 2px;
    border: 2px solid #ee7532;
    border-top: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
    box-sizing: border-box;
}
.header__menu .current_page_item a:after,
.header__menu ul li a:hover:after{
	opacity: 1;
}
.line-menu__marker{
	position: relative;
}
.line-menu__marker--left{
	margin-right: 6px;
}
.line-menu__marker-line{
	width: 40px;
    height: 2px;
    background-color: #212165;
}
.line-menu__marker-circle{
	width: 12px;
    height: 12px;
    background-color: #ee7532;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 6px);
}
.line-menu__marker--left .line-menu__marker-circle{
	right: 0;
}
.line-menu__marker--right .line-menu__marker-circle{
	left: 0;
}
.line-menu__marker--right{
	margin-left: 6px;
}
.header__menu{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.header__button--close,
.header__button--menu,
.header__callback{
	border: 0;
    background-color: #212165;
    outline: none;
    padding: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 17px;
    padding-right: 17px;
    box-sizing: border-box;
    border-radius: 4px;
    align-items: center;
    cursor: pointer;
    transition: all .25s ease-in-out;
    -webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.header__button--close{
    background-color: transparent;
}
.header__button--close:hover,
.header__button--menu:hover,
.header__callback:hover {
    background-color: #ee7532;

}
.header__button--menu{
    display: none;
}
.header__button--close img,
.header__button--menu img,
.header__callback img{
	width: 29px;
    height: 29px;
    margin-right: 17px;
}
.header__callback span{
	color: #fff;
    font-size: 21px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    text-transform: uppercase;
}
.header__logo{
	margin-right: auto;
}
.header__logo img{
	margin-left: -14px;
}
.header__buttons{
	margin-left: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    align-items: center;
}
.app--cropped {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.header__buttons > .butt-h{
    margin-right: 10px;
}
.side-menu{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: #fff;
    top: 0;
    left: 0;
    padding-top: 40px;
    padding-bottom: 40px;
}
.side-menu.active{
    display: block;
}
.header__buttons > .butt-h:last-child{
    margin-right: 0;
}
.h2-title--white-color{
    color: #fff!important;
}
.footer__columns{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
    flex-direction: row;
    -webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
    align-items: flex-start;
}
.footer__column{
	width: 280px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
}
.side-menu__items{
    margin-top: 40px;
}
.side-menu__items a{
    display: block;
    color: #212165;
    font-family: Fira Sans Extra Condensed,sans-serif;
    font-size: 21px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
}
.footer__column a{
	color: white;
}
.footer__column > div{
    margin-bottom: 20px;
}
.footer__column > div:last-child{
    margin-bottom: 0;
}
#footer{
	min-height: 388px;
    background-color: #212165;
    padding-top: 40px;
    padding-bottom: 50px;
    position: relative;
    box-sizing: border-box;
}
.footer__copyright{
    width: 100%;
    height: 50px;
    color: #fff;
    font-family: Fira Sans Extra Condensed,sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
    flex-direction: row;
    -webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
}
#footer .container{
	position: initial;
}
#main{
	min-height: 100vh;
}
.background{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}
.background > div{
	perspective: 1000px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 100px;
}
.background__image{
	width: 100%;
    height: 100vh;
    background-image: url(/wp-content/uploads/2021/07/background.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 1441px;
}
.main-content__container{
	padding-top: 155px;
}
#main{
	position: relative;
}
.board{
	min-height: 70vh;
    background-color: #fff;
    box-shadow: 0 2px 12px rgb(0 0 0 / 5%);
    border-top: 10px solid #212165;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
    margin-bottom: 60px;
}
.board:last-child{
	/*margin-bottom: 0;*/
}
.h2-title{
    font-family: Fira Sans Extra Condensed,sans-serif;
	font-size: 48px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #212165;
}

.board .vc_column-inner{
	padding: 0;
}
.board > div > .vc_column-inner{
	padding-left: 40px;
    padding-right: 40px;
}
.timeline__year{
	border-left: 4px solid #212165;
	margin-bottom: 30px;
}
.timeline__year:last-child{
	margin-bottom: 0;
}
.timeline__year > div{
	padding-top: 15px;
}
.timeline__year .wpb_wrapper{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
    flex-direction: row;
    -webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
    flex-wrap: wrap;
}
.timeline-item {
    width: calc(50% - 24px);
    border-left: 2px solid #ee7532;
    margin-left: 24px;
    margin-top: 15px;
    padding: 20px;
    padding-right: 56px;
    background-color: #fff;
    box-shadow: 0 2px 12px rgb(0 0 0 / 8%);
    position: relative;
    box-sizing: border-box;
}
.timeline-item:before {
    content: "";
    width: 26px;
    height: 0;
    border-top: 2px dotted #ee7532;
    position: absolute;
    top: calc(50% - 1px);
    left: -26px;
}
.timeline-item__title,
.timeline-item__desc{
	color: #212165;
}
.timeline-item__title{
	font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}
.timeline-item__desc{
	font-size: 18px;
    font-weight: 300;
}
.board:before {
    content: "";
    width: 32px;
    height: 32px;
    border: 4px solid #212165;
    background-color: #fff;
    position: absolute;
    top: -24px;
    left: calc(50% - 8px);
    z-index: -10;
    border-radius: 50%;
}
.h3-title{
	font-size: 36px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #212165;
}
.timeline-item__features,
.timeline-item__features ul,
.timeline-item__features p{
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    box-sizing: border-box;
    color: #212165;
}
.timeline-item__features p{
	margin-top: 15px;
}
.timeline-item__features p:last-child{
	margin-top: 0;
}
.timeline-item__features ul>:not(:first-child) {
    margin-top: 8px;
}
.timeline-item__features ul{
	padding-left: 20px;
	display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
}
.timeline-item__features ul li::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: start !important;
}
.timeline-item__features ul ul {
    list-style-type: circle;
    margin-block-start: 0px;
    margin-block-end: 0px;
}
.base-paragraph{
	width: 70%;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    box-sizing: border-box;
    color: #212165;
}
.timeline-item__vacancy .timeline-item__desc{
    margin-bottom: 20px;
}
.timeline-item__vacancy .timeline-item__features strong{
    display: block;
    margin-top: 20px;
}
.timeline-item__salary{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #212165;
    font-weight: 500;
}
.yandex-maps__container{
	width: 100%;
    height: 300px;
}
#eModal-1{
    background-color: #fff!important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    /*margin-top: 100px;*/
    box-shadow: 0 2px 12px rgb(0 0 0 / 12%)!important;
    padding-top: 101px!important;
}
#eModal-1 .emodal-close{
    padding: 15px!important;
    width: 60px;
    height: 60px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    right: 25px!important;
    top: 20px!important;
    cursor: pointer;
    transition: all .25s ease-in-out;
    border-radius: 4px!important;
}
#eModal-1 .emodal-close:hover{
    background-color: #ee7532!important;
}
#eModal-1 .emodal-close:before{
    content: "";
    width: 28px;
    height: 28px;
    background-image: url(/wp-content/uploads/2021/07/button-close.svg);
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
}
.emodal-content{
    padding: 40px;
    border-top: 1px dashed #7c78a6;
}
.modal__content{
    max-width: 300px;
}
.form-call__group{
    margin-bottom: 20px;
}
.base-input-text__field{
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #7c78a6;
    font-weight: 300;
    border-radius: 4px;
}
.base-textarea__field{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    padding: 10px 10px;
    border: 1px solid #7c78a6;
    font-weight: 300;
    border-radius: 4px;
    resize: none;
}

.form-call__group:last-of-type{
    margin-bottom: 0;
}
.base-input-text__label{
    display: block;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.base-textarea__field,
.base-input-text__field, 
.base-input-text__label{
    color: #212165!important;
    font-size: 18px;
    font-family: Fira Sans Extra Condensed,sans-serif!important;
}
.base-input-submit{
    border: 0;
    background-color: #212165;
    outline: none;
    padding: 15px 17px;
    box-sizing: border-box;
    border-radius: 4px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all .25s ease-in-out;
    color: #fff;
    font-family: Fira Sans Extra Condensed,sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    text-transform: uppercase;
}
.base-input-submit:hover{
    background-color: #ee7532;
}
.wpcf7-response-output{
    max-width: 300px;
    text-align: center;
    color: red;
    margin: 0!important;
    margin-top: 20px!important;
    /*display: none;*/
}
.wpcf7 form.sent .wpcf7-response-output{
    color: #46b450;
}
.wpcf7-not-valid-tip,
.form-call__group .ajax-loader{
    display: none!important;
}
.base-input-text__field.wpcf7-not-valid{
    border: 1px solid #fa2839;
}
.wpcf7-not-valid::parent,
.wpcf7-not-valid::parent{
    /*color: #fa2839!important;*/
    border: 1px solid red;
}
.side-menu__header{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
}
.home-text__definition--fourth{
    left: -70px;
    top: 125px;
}
.home-text__line--fourth{
    transform: rotate(115deg);
    width: 40px!important;
    left: 30px;
    top: 101px;
}
.home-text__definition--third[data-v-d59b6054] {
    top: 170px;
    left: 230px;
}
.home-text__line--third[data-v-d59b6054] {
    width: 88px;
    top: 125px;
    left: 240px;
    transform: rotate(70deg);
}

@media (min-width: 992px) and (max-width: 1199px){
    .container,
    .header__container {
        width: 960px;
    }
    .header__menu ul li a{
        padding: 5px;
    }
}
@media(max-width:  1199px){
    .background > div{
        left: 0;
    }
}
@media(max-width: 991px){
    .header__callback span{
        display: none;
    }
    .header__menu{
        display: none;
    }
    .header__button--close img,
    .header__button--menu img,
    .header__callback img{
        margin-right: 0;
    }
    .header__button--close,
    .header__button--menu,
    .header__callback {
        width: 60px;
        height: 60px;
    }
    .header__button--menu{
        display: block;
    }
    .emodal-content,
    .board > div > .vc_column-inner{
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media(min-width: 768px) and (max-width: 991px){
    .container,
    .header__container{
        width: 720px;
    }
    
}
@media(min-width: 768px){
    .side-menu__items a {
        font-size: 28px;
    }
}
@media (min-width: 576px) and (max-width: 767px){
    .container,
    .header__container{
        width: 540px;
    }
    .footer__title{
        text-align: center;
    }
    .side-menu-items a {
        font-size: 28px;
    }

}
@media(max-width: 767px){
    .footer__column{
        width: 100%;
        text-align: center;
    }
    #footer h2{
        text-align: center;
    }
    .footer__columns{
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 20px;
    }
    .timeline-item{
        width: calc(100% - 24px);
        padding: 10px;
        margin-left: 5px;
    }
    .timeline__year .wpb_wrapper{
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .timeline-item:before{
        display: none;
    }
    .base-paragraph{
        width: 90%;
    }
    #eModal-1{
        width: 100%;
        /*height: 100%;*/
        margin-top: 0;
        /*max-height: 100vh;*/
    }
    .wpcf7-response-output{
        max-width: none;
    }
    .modal__content{
        max-width: none;
    }
    .modal__content .h2-title{
        text-align: center;
    }
    .home-text__definition--fourth{
        left: -15px;
    }
}
@media (max-width: 575px){
    .container,
    .header__container{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .header__button--close,
    .header__button--menu,
    .header__callback {
        width: 54px;
        height: 54px;
    }
    .header__logo img{
        width: 130px;
        height: 51px;
    }
    .header__logo img {
        margin-left: -10px;
    }
    .h2-title {
        font-size: 36px;
    }
    .h3-title{
        font-size: 28px;
    }
}
