@font-face {
    font-family: 'FF DIN Pro for IIC';
    src: url('../fonts/FFDINProforIIC.eot');
    src: url('../fonts/FFDINProforIIC.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FFDINProforIIC.woff') format('woff'),
    url('../fonts/FFDINProforIIC.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FF DIN Pro for IIC';
    src: url('../fonts/FFDINProforIIC-Bold.eot');
    src: url('../fonts/FFDINProforIIC-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/FFDINProforIIC-Bold.woff') format('woff'),
    url('../fonts/FFDINProforIIC-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body{
    font-family: 'FF DIN Pro for IIC';
    font-weight: normal;
    margin: 0;
}

.flex{
    display: flex;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-alig-center{
    align-items: center;
}

.flex-just-sb{
    justify-content: space-between;
}

.height-100{
    height: 100%;
}

div{
    box-sizing: border-box;
}

.container-wrapper{
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1140px) {
    .container-wrapper{
        max-width: 100%;
        width: 100%;
    }
}

.header .logo{
    height: 180px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/f63aa3ce4be4670e6692e0e8d8eaf0e7.png');
}

.header .menu-lang{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media screen and (max-width:750px){
    .header .menu-lang{
        display: none;
        flex-direction: column;
    }

    .header .menu-lang.open{
        display: flex;
    }
}

.header .menu-lang .menu{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (max-width: 1140px) {
    .header .menu-lang{
        padding: 0 20px;
        align-items: flex-start;
    }

    .header .menu-lang .menu{
        flex-wrap: wrap;
    }
}

.header .menu-lang .menu a{
    background-color: rgb(255, 255, 255);
    border: solid 1px rgb(0, 155, 177);
    padding: 6px 12px;
    font-size: 14px;
    color: rgb(0, 155, 177);
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    box-shadow: none;
    text-decoration: none;
    white-space: normal;
    word-wrap: break-word;
    transition-property: box-shadow,transform,color,background-color,border-color;
    transition-timing-function: cubic-bezier(.2,1,.3,1);
    margin: 5px;
}

.header .menu-lang .menu a:hover{
    background-color: rgb(0, 155, 177);
    border-color: rgb(0, 124, 142);
    color: rgb(255, 255, 255);
}

.header .menu-lang .lang{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-height: 38px;
    overflow: hidden;
}

@media screen and (min-width: 750px){
.header .menu-lang .lang:hover{
    overflow: auto;
    z-index: 99;
    position: absolute;
    right: 0;
    max-height: none;
    top: 1px;
}
}

@media screen and (max-width: 750px){
    .header .menu-lang .lang.active{
        overflow: auto;
        z-index: 99;
        position: relative;
        right: 0;
        max-height: none;
        top: 1px;
    }
}

.header .mob-btn{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 34px;
}

.header .mob-btn .line{
    width: 100%;
    height: 5px;
    width: 100%;
    background: rgb(0, 155, 177);
    border-radius: 9px;
    margin-bottom: 3px;
    position: relative;
    transition: all .5s;
}

.header .mob-btn .line:last-child{
    margin-bottom: 0;
}


.header .mob-btn.active .line {
    opacity: 0;
}

.header .mob-btn.active .line:first-child{
    opacity: 1;
    transform: rotate(45deg);
    top: 5px;
}

.header .mob-btn.active .line:last-child{
    opacity: 1;
    transform: rotate(-45deg);
    top: -11px;
}

@media screen and (max-width: 750px){
    .header{
        padding: 60px 0 10px;
    }

    .header .logo-btn{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
    }

    .header .logo{
        width: 60px;
        height: 60px;
    }

    .header .mob-btn{
        display: flex;
    }
}

@media screen and (max-width: 1140px){
    .header .menu-lang .lang{
        flex-basis: 10%;
    }

    .header .menu-lang .lang:hover{
        position: relative;
    }
}

.header .menu-lang .lang div{
    width: 86px;
    font-size: 14px;
    min-height: 38px;
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 0px 0px;
    transition: background-color 758ms;
    color: rgb(232, 232, 232);
    background: rgb(0, 154,177);
    cursor: pointer;
}

.header .menu-lang .lang a{
    width: 86px;
    font-size: 14px;
    min-height: 38px;
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 0px 0px;
    transition: background-color 758ms;
    color: rgb(232, 232, 232);
    background: rgb(0, 154,177);
    cursor: pointer;
    text-decoration: none;
}

.header .menu-lang .lang a:hover{
    text-decoration: underline;
}

@media screen and (max-width: 1140px){
    .header .menu-lang .lang div{
        width: 40px;
        padding: 5px;
    } 
}

.header .menu-lang .lang div.active{
    background-color: rgb(26, 26, 26);
    cursor: default;
}

.header .menu-lang .lang div.active:hover{
    background: rgb(0, 154,177);
    color: rgb(232, 232, 232);
}

@media screen and (max-width:750px){
    .header .menu-lang .lang{
        width: 100%;
    }

    .header .menu-lang .lang div, .header .menu-lang .lang a{
        width: 100%
    }
}

.five-simple{
    background-color: rgb(0, 155, 177);
    color: #FFF;
    padding-top: 48px;
    padding-bottom: 30px;
    margin-top: 40px;
}

.five-simple h2{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.1;
}

.five-simple h2 span{
    display: block;
}

.five-simple .text{
    opacity: 0.6;
    line-height: 1.3;
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
}

.five-simple .text p{
    margin: 10px 0 0 0;
}

.five-simple .text p:first-child{
    margin-top: 0;
}

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

    .five-simple{
        padding-top: 16px;
    }

    .five-simple h2{
        align-items: flex-start;
        font-size: 32px;
        padding: 0 15px;
    }

    .five-simple .text{
        text-align: left;
        padding: 0 15px;
    }
}

.step-one{
    background: linear-gradient( 90deg, rgb(230, 154, 0) 50%, rgb(255,255,255) 50%);
    height: 519px;
}

.step-one .flex>div{
    width: 50%;
}

@media screen and (max-width: 750px){
    .step-one{
        background: rgb(230, 154, 0);
        height: auto;
        padding: 64px 15px;
    }

    .step-one .flex{
        flex-direction: column;
        align-items: flex-start;
    }

    .step-one .flex>div{
        width: 100%;
    }
}

.step-name.one-line{
    display: flex;
    align-items: center;
}

.step-name .step-text{
    color: #fff;
    font-size: 88px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #fff;
    padding-left: 10px;
    line-height: 1;
}

@media screen and (max-width: 1140px) {
    .step-name{
        padding-left: 100px;
    }
}

@media screen and (max-width: 750px){
    .step-name{
        padding-left: 0px;
    }
}

.step-name .step-text.black{
    color: #333;
    border-color: rgb(0, 0, 0);
}

.step-name .step-desc{
    margin-top: 16px;
    font-size: 28px;
    color: #fff;
    font-weight: bold;
}

.step-name .step-desc.black{
    color: rgb(17, 17, 17);
    margin-left: 30px;
}

.step-name .step-desc.black .capt{
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.step-name .step-desc.black .text{
    font-weight: bold;
    font-size: 20px;
    margin-top: 16px;
}

.step-one .step-video{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-one .step-video .video-desc{
    font-weight: bold;
    font-size: 20px;
    max-width: 510px;
}

.step-one .step-video .video{
    max-width: 510px;
    width: 100%;
    height: 287px;
    margin-top: 32px;
}

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

    .step-one .step-video .video-desc{
        max-width: 300px;
    }

    .step-one .step-video .video{
        max-width: 300px;
        height: 168px;
    }
}

@media screen and (max-width: 750px) {
    .step-one .step-video{
        align-items: flex-start;
        margin-top: 15px;
        background: #fff;
    }

    .step-one .step-video .video-desc{
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding-top: 10px;
    }

    .step-one .step-video .video{
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 300px;
    }

    .step-one .step-video .video iframe{
        min-height: 300px;
    }
}

.step-two{
    background-image: url('../img/aa01326bbb2aceff5d3c7cd26f7ad2d4.jpg');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 571px;
}

.step-two .step-for-download{
    max-width: 563px;
    width: 100%;
    height: 295px;
    background: rgba(0, 0, 0, 0.63);
    position: relative;
    box-sizing: border-box;
    padding: 18px;
}

.step-two .step-for-download .step-for-download-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: 1px solid #887676;
}

@media screen and (max-width: 1140px) {
    .step-two .step-for-download{
         margin-right: 50px;
        max-width: 400px;
    }
    
}

@media screen and (max-width: 750px){
    .step-two{
        height: auto;
        padding: 120px 15px;
    }

    .step-two .flex{
        flex-direction: column;
        align-items: flex-start;
    }

    .step-two .flex>div{
        width: 100%;
        max-width: 100%;
    }

    .step-two .step-desc br{
        display: none;
    }

    .step-two .step-for-download{
         margin-right: 0;
        text-align: center;
        margin-top: 20px;
    }
}

.step-two .step-for-download .download-text{
    max-width: 423px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.step-two .step-for-download .download-btn{
    width: 271px;
    border: 3px solid #FFFFFF;
    padding: 19px 0;
    font-size: 15px;
    color: #fff;
    background-color: transparent;
    text-decoration: none;
    margin-top: 32px;
    display: block;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.step-two .step-for-download .download-btn:hover{
    background-color: rgb(0, 155, 177);
    border-color: rgb(0, 155, 177);
    color: rgb(255, 255, 255);
}

@media screen and (max-width: 750px){
    .step-two .step-for-download .download-btn{
        margin: 32px auto 0;
    }
}

.step-three{
    padding-top: 40px;
    padding-bottom: 50px;
}

@media screen and (max-width: 750px) {
    .step-three{
        padding: 40px 15px 50px;
    }

    .step-three .one-line{
        flex-direction: column;
        align-items: flex-start;
    }

    .step-three .one-line .step-desc{
        margin-left: 0;
    }

    .step-three .step-name .step-text{
        flex-direction: row;
    }

    .step-three .step-name .step-text span{
        margin-right: 10px;
    }

    .step-three .step-name .step-text span:last-child{
        margin-right: 0;
    }
}

.step-three .list-video{
    margin-top: 15px;
}

.step-three .list-video{
    display: flex;
    flex-direction: column;
}

.step-three .list-video .item{
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 420px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1140px) {
    .step-three .list-video .item{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        height: auto;
    }
}

.step-three .list-video .item:last-child{
    margin-bottom: 0;
}

.step-three .list-video .item .video{
    width: 70%;
    padding-left: 20px;
}

.step-three .list-video .item .text{
    text-transform: uppercase;
    font-size: 14px;
    width: 30%;
    padding-left: 20px;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 1140px) {
    .step-three .list-video .item .video{
        width: 700px;
        padding-left: 0;
    }

    .step-three .list-video .item .text{
        width: 700px;
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 750px) {
    .step-three .list-video .item .video{
        width: 100%;
        height: 100%;
    }

    .step-three .list-video .item .text{
        width: 100%;
    }

    .step-three .list-video .item .video iframe{
        min-height: 300px;
    }
}

.step-four{
    background: linear-gradient( 90deg, rgb(255,255,255) 50%, rgb(230, 154, 0) 50%);
    height: 418px;
}

.step-four .flex>div{
    width: 50%;
}

.step-four .step-desc{
    color: #333;
}

@media screen and (max-width: 750px){
    .step-four{
        background: rgb(230, 154, 0);
        height: auto;
        padding: 30px 15px 23px;
    }

    .step-four .flex{
        flex-direction: column;
        align-items: flex-start;
    }

    .step-four .flex>div{
        width: 100%;
    }

    .step-four .step-name .step-text{
        flex-direction: row;
    }

    .step-four .step-name .step-text span{
        margin-right: 10px;
    }

    .step-four .step-name .step-text span:last-child{
        margin-right: 0;
    }

    .step-four .step-name .step-text.black{
        color: #fff;
        border-color: #fff;
    }

    .step-four .step-desc{
        color: #fff;
    }
}

.step-four .step-video{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-four .step-video .video-desc{
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin-left: -135px;
}

.step-four .step-video .video{
    max-width: 510px;
    width: 100%;
    height: 287px;
    margin-top: 32px;
}

@media screen and (max-width: 1140px) {
    .step-four .step-video .video-desc{
        width: 300px;
        margin-left: 0;
    }

    .step-four .step-video .video{
        width: 300px;
        height: 168px;
    }
}

@media screen and (max-width: 750px) {
    .step-four .step-video{
        background: #fff;
        margin-top: 16px;
    }

    .step-four .step-video .video-desc{
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        color: rgb(17, 17, 17);
        text-align: center;
        padding-top: 20px;
    }

    .step-four .step-video .video{
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    .step-four .step-video .video iframe{
        min-height: 300px;
    }
}

.step-five{
    background: linear-gradient( 90deg, rgb(0, 155, 177) 50% , rgb(255,255,255) 50%);
    height: 705px;
}

.step-five .flex>div{
    width: 50%;
}

@media screen and (max-width: 750px){
    .step-five{
        background: rgb(0, 155, 177);
        height: auto;
        padding: 64px 15px;
    }

    .step-five .flex{
        flex-direction: column;
        align-items: flex-start;
    }

    .step-five .flex>div{
        width: 100%;
    }

    .step-five .step-name .step-text{
        flex-direction: row;
    }

    .step-five .step-name .step-text span{
        margin-right: 10px;
    }

    .step-five .step-name .step-text span:last-child{
        margin-right: 0;
    }
}

.step-five .step-name .step-text{
    border: none;
    font-size: 104px;
    line-height: 0.9;
}

.step-five .step-desc .textable{
    font-size: 16px;
    max-width: 500px;
    font-weight: normal;
}

.step-five .step-desc .textable p{
    margin: 10px 0 0 0;
}

.step-five .step-desc .textable p:first-child{
    margin-top: 20px;
}

.step-five .step-video{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.step-five .step-video .video-desc{
    font-weight: bold;
    font-size: 20px;
    color: rgb(17, 17, 17);
    max-width: 510px;
    align-self: center;
    margin-left: -167px;
}

.step-five .step-video .video{
    max-width: 510px;
    width: 100%;
    height: 287px;
    margin-top: 32px;
}

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

    .step-five .step-name{
        /* padding-left: 0; */
    }

    .step-five .step-video{
        align-items: center;
    }

    .step-five .step-video .video-desc{
        width: 300px;
        margin-left: 0;
    }

    .step-five .step-video .video{
        width: 300px;
        height: 168px;
    }
}

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

    .step-five .step-desc .textable{
        max-width: 100%;
    }

    .step-five .step-name .step-text{
        border-left: 4px solid #fff;
    }

    .step-five .step-video{
        background: #fff;
        margin-top: 20px;
    }

    .step-five .step-video .video-desc{
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        text-align: center;
        padding-top: 16px;
    }

    .step-five .step-video .video{
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    .step-five .step-video .video iframe{
        min-height: 300px;
    } 
}

.caption-gallery{
    background-color: rgb(230, 154, 0);
    color: #FFF;
    height: 134px;
}

.caption-gallery .big-text{
    font-size: 48px;
    font-weight: bold;
}

.caption-gallery .little-text{
    font-size: 20px;
    line-height: 1.3;
    opacity: 0.6;
    margin-top: 20px;
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .caption-gallery .big-text{
        font-size: 38px;
        text-align: center;
    }
}

.our-works .list-works{
    overflow: hidden;
}

.our-works .owl-stage{
    display: flex;
}

.our-works .list-works .item{
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
}

.our-works .list-works .item .item-cont{
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFF;
    border-radius: 5px;
    padding: 12px 40px;
     width: 90%;
    max-width: none;
}

.our-works .list-works .item .item-cont .big-text{
    letter-spacing: 0.05em;
    font-size: 22px;
    font-weight: bold;
}

.our-works .list-works .item .item-cont .little-text{
    letter-spacing: 0.05em;
    font-size: 22px;
    font-weight: bold;
}

.our-works .list-works{
    position: relative;
}

.our-works .list-works .owl-stage-outer{
    margin-bottom: -60px;
}

.our-works .list-works .owl-nav{
    width: 100%;
    height: 61px;
    background: rgba(0, 0, 0, 0.67);
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-works .list-works .owl-nav button{
    border: none;
    background: transparent;
    color: #fff;
    font-size: 30px;
    padding: 0;
}

.our-works .list-works .owl-nav button:hover{
    cursor: pointer;
    color: rgb(0, 157, 177);
}

.our-works .list-works .owl-nav button.owl-prev{
    margin-right: 43px;
}

.our-works .list-works .owl-nav button.owl-next{
    margin-left: 43px;
}

.our-works .list-works .owl-dots{
    counter-reset: slides-num;
    position: absolute;
    left: 50%;
    bottom: 18px;
    margin-top: 15px;
    margin-left: -32px;
    color: #fff;
    z-index: 3;
}

.our-works .list-works .owl-dots::after{
    content: " / " counter(slides-num); 
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    padding-left: 8px;
}

.our-works .list-works .owl-dots .owl-dot{
    display: inline-block;
	counter-increment: slides-num; 
    margin-right: 5px;
    padding: 0px;
    margin: 0.7px;
    border: none;
}

.our-works .list-works .owl-dots .owl-dot span {
    display: none;
}

.our-works .list-works .owl-dots .owl-dot.active::before{
    content:  counter(slides-num); 
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0px;
    color: #fff;
}

.our-works .disabled{
    display: none;
}

.footer{
    background-color: rgb(0, 157, 177);
    color: #FFF;
    min-height: 195px;
    padding: 20px 0;
    box-sizing: border-box;
}

.footer .container-wrapper>div{
    height: 100%;
}

.footer .menu{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-basis: 30%;
}

.footer .menu .caption-menu{
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: bold;
}

.footer .menu .list-menu{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.footer .menu .list-menu a{
    width: fit-content;
    font-size: 16px;
    color: rgb(25, 206, 230);
    text-decoration: underline;
    margin-top: 10px;
}

.footer .menu .list-menu a:hover{
color: #fff;
}

.footer .menu .list-menu a:first-child{
    margin-top: 0;
}

.footer .social{
    flex-basis: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .social .capt{
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: bold;
}

.footer .social .list-soc{
    display: flex;
    margin-top: 10px;
}

.footer .social .list-soc a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-color: rgb(184, 123, 0);
    background: rgb(230, 154, 0);
    box-shadow: 0px 5px 8px 0px rgb(24 37 71 / 29%);
    margin-right: 5px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.footer .social .list-soc a:last-child{
    margin-right: 0;
}

.footer .social .list-soc a i{
    transition: 0.2s;
    font-size: 20px;
}

.footer .social .list-soc a:hover i{
    transform: scale(1.3);
    color: rgb(230, 154, 0);
}

.footer .social .list-soc a::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 80px;
    background: #fff;
    left: -80px;
    top:90%;
    transform: rotate(45deg);
}

.footer .social .list-soc a:hover::before{
    animation: animation 0.7s 1 forwards;
}

@keyframes animation{
    0%{
        left:-80px;
        top: 90%;
    }
    50%{
        left: 15%;
        top: -55%;
    }
    100%{
        left: -50%;
        top: -50%;
    }
}

@media screen and (max-width: 750px) {
    .footer .flex{
        flex-direction: column;
        align-items: center;
    }
    
    .footer .flex>div{
        margin-bottom: 30px;
    }

    .footer .flex>div:last-child{
        margin-bottom: 0;
    }

    .footer .menu{
        text-align: center;
    }

    .footer .menu .list-menu{
        align-items: center;
    }
}

.ytLoader{
    width: 100%;
    height: 100%;
    position: relative;
}

.ytLoader img{
    width: inherit;
    height: inherit;
}

.ytLoader .playBtn{
    display: flex;
    background: url('../img/youtube2.png') center no-repeat;
    width: 50px;
    height: 35px;
    position: absolute;
    top: 40%;
    left: 50%;
    margin-left: -25px;
}

.ytLoader .playBtn:hover{
    cursor: pointer;
    background: url('../img/hover.png') center no-repeat;
}

.modal-window{
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    background: rgba(255, 255, 255, 0.473);
}

.modal-window.close{
    display:none;
}

.modal-window .form{
    /*width: 334px;
    height: 230px;*/
    background: #FFFFFF;
    border: 1px solid rgba(0, 155, 177, 0.2);
    box-sizing: border-box;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.modal-window .form .caption{
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    color: #1A1A18;
}

.modal-window .form .languages{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
}
.modal-window .form .languages a{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    color: #1a1a18;
    padding: 7px;
    border: 1px solid #E5E5E5;
}
.modal-window .form .languages a:hover{
    border: 1px solid #000;
}
.modal-window .form .languages a img{
    margin-right: 10px;
}
.modal-window .form button{
    height: 42px;
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    background: #009BB1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.modal-window .form button:hover{
    cursor: pointer;
}

.modal-window .form .list-lang{
    width: 100%;
    max-height: 43px;
    overflow: hidden;
}

.modal-window .form .list-lang.open{
    max-height: none;
    position: absolute;
}

.modal-window .form .select2-selection__rendered{
    width: 100%;
    height: 100%;
    display: flex!important;
    align-items: center;
    justify-content: flex-start;
    max-height: 43px;
    padding: 12px 11px;
    box-sizing: border-box;
    border-radius: 0;
    border: 1px solid #000000;
    font-size: 18px;
    color: #1A1A18!important;
    background: #fff;
}

.modal-window .select2{
    width: 100%;
}

.select2-selection{
    height: 43px!important;
    display: flex!important;
    align-items: center;
}

.select2-selection .select2-selection__arrow{
    height: 41px!important;
}

.select-flex-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    color: #1A1A18!important;
}

.select-flex-box img{
    margin-right: 10px;
}

.select2-search{
    display: none!important;
}

.select2-container--default .select2-selection--single{
     background-color: #fff;
     border: none!important; 
     border-radius: 0px!important;
}

.navTop{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: fixed;
    width: 50px;
    height: 50px;
    right: 5%;
    bottom: 10%;
    border-radius: 50%;
    color: rgb(0, 155, 177);
    border: 1px solid rgb(0, 155, 177);
    transition: all .7s ease;
    z-index: 9;
}

.navTop:hover{
    cursor: pointer;
    transition: all .7s ease;
    color: #fff;
    background: rgb(0, 155, 177);
}