@charset "utf-8";

@font-face {
font-family: 'spaceranger';
font-style: normal;
font-weight: normal;
src:  url('../fonts/spaceranger-rus.woff') format('woff');
}

body{
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}
h1,
.title-h1{
    font-size: 41px;
    line-height: 1.2;
    margin-bottom: 40px;
    position: relative;
    font-weight: bold;
}
h2,
.title-h2{
    font-size: 41px;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    font-weight: bold;
}
h3,
.title-h3{
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    font-weight: bold;
}
h4,
.title-h4{
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    font-weight: bold;
}
h5,
.title-h5{
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
    position: relative;
    font-weight: bold;
}
h6,
.title-h6{
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
    position: relative;
    font-weight: bold;
}
.content h2,
.content .title-h2{
    font-size: 36px;
}
@media(min-width:992px){
    h1.pagetitle{
        font-size: 36px;
    }
}
@media(max-width:991px){
    h1,
    .title-h1{
        font-size: 36px;
    }
    h2,
    .title-h2{
        font-size: 32px;
    }
    h3,
    .title-h3{
        font-size: 21px;
    }
    h4,
    .title-h4{
        font-size: 18px;
    }
    h5,
    .title-h5{
        font-size: 16px;
    }
    .content h2,
    .content .title-h2{
        font-size: 32px;
    }
}
@media(max-width:767px){
    h1,
    .title-h1{
        font-size: 26px;
        margin-bottom: 20px;
    }
    h2,
    .title-h2,
    .content h2,
    .content .title-h2{
        font-size: 22px;
        margin-bottom: 20px;
    }
    h1 br,
    .title-h1 br,
    h2 br,
    .title-h2 br{
        display: none;
    }
    h3,
    .title-h3{
        font-size: 18px;
        margin-bottom: 15px;
    }
    h4,
    .title-h4{
        font-size: 16px;
    }
    h5,
    .title-h5{
        font-size: 14px;
    }
}

a {
    color: #00A6FB;
}

a:hover {
    color: #333;
}

a.invert {
    color: #333;
}

a.invert:hover {
    color: #00A6FB;
}

.btn{
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    padding: 0 30px;
    border: 2px solid #00A6FB;
    border-radius: 4px;
    font-size: 16px;
    color: #FFFFFF;
    background: #00A6FB;
    text-align: center;
    transition: all 300ms ease-out;
}
.btn:hover {
    /*filter: brightness(115%);*/
    color: #00A6FB;
    background: transparent;
}
.btn.invert{
    color: #00A6FB;
    background: transparent;
}
.btn.invert:hover{
    background: #00A6FB;
    color: #fff;
}
.btn.mid{
    height: 50px;
}

/* Header */
.header{
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: #0F141E;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.index-template .header{
    min-height: 100vh;
}
.header-top-inner{
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 114px;
}
.header-top-left{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 50px;
    height: 100%;
}
.header-logo{
    margin-right: 50px;
    height: 100%;
    display: flex;
    align-items: center;
}
.header-logo a,
.header-logo span{
    display: inline-block;
    height: 100%;
}
.header-logo img{
    max-height: 100%;
}
.top-nav > ul{
    display: flex;
    align-items: center;
}
.top-nav > ul > li{
    position: relative;
    margin-right: 40px;
    font-size: 16px;
}
.top-nav > ul > li:last-of-type{
    margin-right: 0;
}
.top-nav > ul > li > a{
    color: #fff;
}
.top-nav > ul > li:hover > a,
.top-nav > ul > li.active > a{
    color: #00A6FB;
}
.top-nav ul ul{
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 300px;
    background: #fff;
    padding: 12px;
    z-index: 300;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0,0,0,.07);
}
.top-nav ul ul:before{
    content:"";
    height: 15px;
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
}
.top-nav ul li:hover > ul{
    display: block;
}
.top-nav ul ul li{
    margin-bottom: 2px;
}
.top-nav ul ul a{
    color: #000;
    display: block;
    padding: 10px 12px;
    line-height: 1.3;
    font-size: 14px;
    border-radius: 3px;
}
.top-nav ul ul li.active > a,
.top-nav ul ul li:hover > a{
    color: #fff;
    background: #00A6FB;
}
.top-nav li.down > a:after{
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: all 200ms ease-out;
    vertical-align: middle;
    margin: -6px 0 0 10px;
}
.top-nav li.down.active > a:after,
.top-nav li.down:hover > a:after{
    border-color: #00A6FB;
}
.header-buttons{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.header-buttons .btn-item:first-child{
    margin-right: 10px;
}
.header-callback-btn svg{
    fill: #fff;
    display: none;
}
.header-call-time{
    color: #A2A4A6;
    margin-top: 10px;
    font-size: 14px;
}
.header-main{
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    background-position: right 10% bottom 0;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 20px 0 40px;
}
@media(min-height: 1024px){
    .header-main{
        background-size: auto;
        backround-position: right 0 bottom 0;
    }
}
.header-content{
    width: 50%;
}
.header-title{
    font-size: 42px;
    line-height: 1.2;
    font-weight: bold;
}
.header-text{
    font-size: 20px;
    margin-top: 20px;
    color:    #c1c1c1;
}
.header-content .item-phone-wrapper{
    margin-top: 30px;
}
.header-content .item-phone{
    font-size: 29px;
    display: flex;
    align-items: center;
}
.item-phone svg{
    fill: #fff;
    margin-right: 10px;
}
.header-content .item-phone a{
    color: #fff;
}
.header-content .item-phone a:hover{
    color: #00A6FB;
}

.header-content .item-phone-row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.header-content .item-phone-row .item-mess{
    margin-left: 15px;
    line-height: 1;
    position: relative;
    bottom: -3px;
}
.header-content .item-phone-row .item-mess a:hover{
    transform: scale(1.1);
    display: inline-block;
}
.header-content .item-phone-row .item-mess svg{
    margin-right: 3px;
}
.header-title{
    color: #C91027;
}


.header-bottom{
    min-height: 240px;
}
.header-bottom-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-form{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% - 350px);
    background: rgba(0,166,251,.15);
    border-radius: 10px;
    padding: 20px 30px 25px
}
.header-form form{
    width: 100%;
}
.header-form-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.header-form .agreement{
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 12px;
    color: #ccc;
    padding-left: 22px;
}
.header-form .agreement input+label:before {
    width: 15px;
    height: 15px;
    top: 1px;
}
.header-form .agreement a:hover{
    color: #fff;
}
.header-form-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
}
.header-form-row .col{
    padding-left: 10px;
    padding-right: 10px;
    width: 33.3333%;
}
.header-form .form-control{
    margin-bottom: 0;
}
.header-form-row .btn{
    width: 100%;
}

.header-bottom-slogan{
    width: 350px;
    padding-left: 100px;
    display: flex;
    justify-content: flex-end;
}
.header-bottom-slogan-inner{
    display: inline-flex;
    padding: 35px 30px;
    font-size: 22px;
    line-height: 1.5;
    border-right: 3px solid #00A6FB;
    border-top: 3px solid #00A6FB;
    border-bottom: 3px solid #00A6FB;
    position: relative;
    border-radius: 4px;
}
.header-bottom-slogan-inner:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    border-top: 24px solid #00A6FB;
    border-bottom: 24px solid #00A6FB;
}
.header-bottom-messengers{
    font-size: 20px;
    line-height: 1.2;
    margin-top: 15px;
    display: flex;
    align-items: center;
    padding-left: 30px;
}
.header-bottom-messengers a{
    margin: 0 15px;
}
.whatsapp-link{
    color: #94BF4C;
    display: inline-flex;
    align-items: center;
}
.whatsapp-link svg{
    fill: #94BF4C;
    margin-right: 6px;
    line-height: 1;
    position: relative;
    bottom: -2px;
}
.whatsapp-link:hover{
    color: #94BF4C;
    text-decoration: underline;
}
.telegram-link{
    color: #28A9EA;
    display: inline-flex;
    align-items: center;
}
.telegram-link svg{
    fill: #28A9EA;
    margin-right: 5px;
    line-height: 1;
    position: relative;
    bottom: -1px;
}
.telegram-link:hover{
    color: #28A9EA;
    text-decoration: underline;
}

.services-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}
.services-header .col{
    padding-left: 15px;
    padding-right: 15px;
}
.services-header .item {
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 50%;
    background: rgb(0 102 155);
    text-align: center;
    line-height: 1.3;
    font-weight: bold;
    border: 3px solid #00a6fb;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 30px;
}
.services-header .item:hover{
    transform: scale(1.1);
}

.header-buttons .phone-btn{
    color: #fff;
    border-color: #fff;
}
.header-buttons .phone-btn:hover{
    border-color: #00A6FB;
}
.header-callback-btn:hover{
    color: #fff;
    border-color: #fff;
}

@media(max-width: 1699px){
    .header-main {
        background-size: 55% auto;
        background-position: right 0 bottom 0;
    }
}
@media(max-width: 1489px){
    .header-buttons .btn{
        height: 44px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
    }
    .header-main {
        padding: 40px 0;
    }
    .header-title{
        font-size: 42px;
    }
    .header-content{
        width: 60%;
    }
}
@media(max-width: 1299px){
    .header-top{
        position: fixed;
        z-index: 500;
        top: 0;
        left: 0;
        right: 0;
        background: #00669b;
    }
    .header-top:before{
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.05);
    }
    .header-top .container{
        position: relative;
        z-index: 10;
    }
    .header-top-inner{
        padding: 10px 0;
        height: 80px;
    }
    .header-top-push{
        height: 80px;
    }
    .header-bottom-slogan {
        width: 300px;
        padding-left: 50px;
    }
    .header-form {
        width: calc(100% - 300px);
    }
    .top-nav{
        display: none;
    }
    .header-top-left{
        margin-right: 0;
    }
    .header-logo{
        margin-right: 30px;
    }
    .header-title{
        font-size: 36px;
    }
    .header-call-time{
        display: none;
    }
    .header-top-right{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .services-header{
        margin-left: -10px;
        margin-right: -10px;
    }
    .services-header .col{
        padding-left: 10px;
        padding-right: 10px;
    }
    .services-header .item{
        width: 150px;
        height: 150px;
        font-size: 13px;
        margin-bottom: 20px;
    }
}
@media(max-width: 1199px){
    .index-template .header{
        min-height: inherit;
    }
    .header-title{
        font-size: 32px;
    }
    .header-text {
        font-size: 17px;
        margin-top: 30px;
    }
    .header-content .item-phone-wrapper{
        margin-top: 30px;
    }
    .header-content .item-phone {
        font-size: 22px;
    }
    .item-phone svg{
        width: 36px;
        height: 36px;
    }
    .header-bottom-slogan {
        width: 250px;
        padding-left: 30px;
    }
    .header-form {
        width: calc(100% - 250px);
    }
    .header-bottom-slogan-inner{
        padding: 32px 25px;
        font-size: 20px;
    }
    .header-main {
        background-position: right 15px bottom 0;
        background-size: 55% auto;
        padding: 50px 0 120px;
    }
    .header-main.no-image{
        padding: 50px 0;
    }
}
@media(max-width: 991px){
    .header-form{
        width: 100%;
        margin-bottom: 20px;
    }
    .header-main {
        margin-bottom: 10px;
    }
    .header-bottom-slogan {
        width: 100%;
        padding-left: 0;
        display: block;
    }
    .header-bottom-slogan-inner{
        display: none;
        text-align: center;
        border: none;
        background: rgba(255,255,255,.1);
        color: #c1c1c1;
        padding: 15px;
        font-weight: normal;
        font-size: 16px;
        border-radius: 5px;
    }
    .header-bottom-slogan-inner:before{
        display: none;
    }
    .header-bottom-slogan-inner br{
        display: none;
    }
    .header-title{
        font-size: 28px;
    }
    .header-text{
        font-size: 15px;
    }
    .header-bottom-messengers{
        font-size: 18px;
    }
    .services-header{
        justify-content: center;
    }
}
@media(max-width: 767px){
    .header-form {
        padding: 10px 20px 15px;
    }
    .header-form-row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .header-form-row .col{
        padding-left: 5px;
        padding-right: 5px;
    }
    .header-form .btn,
    .header-form .form-control{
        height: 44px;
    }
    .header-form-title{
        font-size: 15px;
    }
    .header-title{
        font-size: 3.5vw;
    }
    .header-title br{
        display: none;
    }
    .header-text{
        margin-top: 3vw;
        font-size: 2vw;
    }
    .header-content .item-phone-wrapper{
        margin-top: 4vw;
    }
    .header-content .item-phone {
        font-size: 3vw;
    }
    .item-phone svg {
        width: 4vw;
        height: 4vw;
        margin-right: 5px;
    }
    .header-buttons .btn {
        height: 38px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 13px;
    }
    .header-bottom-messengers{
        flex-wrap: wrap;
        font-size: 16px;
        padding-left: 0;
    }
    
    .header-bottom-messengers .whatsapp-link svg{
        width: 19px;
        height: 19px;
        bottom: 0;
    }
    
}
@media(max-width: 599px){
    .header-form{
        padding: 15px;
    }
    .header-form-row{
        margin-left: 0;
        margin-right: 0;
    }
    .header-form-row .col{
        width: 100%;
        margin-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
    }
    .header-buttons .header-callback-btn{
        padding-left: 5px;
        padding-right: 5px;
        height: 28px;
        position: relative;
        bottom: -3px;
    }
    .header-callback-btn svg{
        fill: #fff;
        display: inline;
    }
    .header-callback-btn span{
        display: none;
    }
    .header-top-right{
        position: relative;
        padding-top: 20px;
    }
    .header-buttons .btn-item:first-child{
        position: absolute;
        top: -5px;
        right: 0;
        width: 200px;
        text-align: right;
        margin-right: 0;
        line-height: 1;
    }
    .header-buttons .phone-btn{
        padding: 0;
        border: none;
        color: #fff;
        height: auto;
        font-size: 12px;
    }
    .header-content{
        width: 100%;
    }
    .header-main {
        padding: 50px 0 60vw;
        background-size: 90% auto;
        background-position: left 0 bottom 0;
    }
    .header-main.no-image{
        padding: 50px 0;
    }
    .header-title{
        font-size: 6vw;
    }
    .header-text {
        margin-top: 5vw;
        font-size: 3.5vw;
    }
    .header-content .item-phone-wrapper{
        margin-top: 8vw;
    }
    .header-content .item-phone {
        font-size: 5vw;
    }
    .item-phone svg {
        width: 7vw;
        height: 7vw;
    }
    .header-bottom-slogan-inner{
        font-size: 13px;
    }
    .services-header .col{
        width: 100%;
    }
    .services-header .item{
        width: 100%;
        height: auto;
        min-height: 90px;
        font-size: 13px;
        border-radius: 10px;
        margin-bottom: 7px;
        border-width: 2px;
    }
    .header-bottom{
        padding-bottom: 60px;
    }
}
@media(max-width: 499px){
    .header-bottom-messengers > span{
        width: 100%;
        margin-bottom: 15px;
        display: inline-block;
    }
    .header-bottom-messengers a:first-of-type{
        margin-left: 0;
    }
}
/* /. Header */

.gray-bg{
    background: #E8ECF6;
}
.section{
    padding: 60px 0 50px;
}
.pt0{
    padding-top: 0;
}
.pb0{
    padding-bottom: 0;
}
.pt10{
    padding-top: 10px;
}
.pt20{
    padding-top: 20px;
}
.pt30{
    padding-top: 30px;
}
.pt40{
    padding-top: 40px;
}
.pt50{
    padding-top: 50px;
}
.pt60{
    padding-top: 60px;
}
.pt70{
    padding-top: 70px;
}
.pt80{
    padding-top: 80px;
}
.pb10{
    padding-bottom: 10px;
}
.pb20{
    padding-bottom: 20px;
}
.pb30{
    padding-bottom: 30px;
}
.pb40{
    padding-bottom: 40px;
}
.pb50{
    padding-bottom: 50px;
}
.pb60{
    padding-bottom: 60px;
}
.pb70{
    padding-bottom:70px;
}
.pb80{
    padding-bottom: 80px;
}
.pr120{
    padding-right: 120px;
}
@media(max-width: 1489px){
    .section{
        padding: 50px 0 30px;
    }
    .pt0{
        padding-top: 0;
    }
    .pb0{
        padding-bottom: 0;
    }
    .pt10{
        padding-top: 10px;
    }
    .pt20{
        padding-top: 20px;
    }
    .pt30{
        padding-top: 30px;
    }
    .pt40{
        padding-top: 30px;
    }
    .pt50{
        padding-top: 40px;
    }
    .pt60{
        padding-top: 50px;
    }
    .pt70{
        padding-top: 60px;
    }
    .pt80{
        padding-top: 70px;
    }
    .pb10{
        padding-bottom:10px;
    }
    .pb20{
        padding-bottom: 20px;
    }
    .pb30{
        padding-bottom: 30px;
    }
    .pb40{
        padding-bottom: 30px;
    }
    .pb50{
        padding-bottom: 40px;
    }
    .pb60{
        padding-bottom: 50px;
    }
    .pb70{
        padding-bottom: 60px;
    }
    .pb80{
        padding-bottom: 70px;
    }
}
/* num-section */
.nums{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.nums .col{
    width: 25%;
    padding-left: 15px;
    padding-right: 25px;
    margin-bottom: 25px;
}
.nums .item-title{
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 46px;
    line-height: 1.2;
    color: #00A6FB;
}
@media(max-width: 1299px){
    .nums .item-title{
        margin-bottom: 15px;
        font-size: 36px;
    }
    .nums .item-text{
        font-size: 14px;
        line-height: 1.4;
    }
}
@media(max-width: 991px){
    .nums .item-title{
        font-size: 30px;
    }
    .nums .item-text{
        font-size: 13px;
    }
}
@media(max-width: 767px){
    .nums .col{
        width: 50%;
    }
}
@media(max-width: 399px){
    .nums .col{
        width: 100%;
    }
}
/* /. num-section */

/* about-section */
.about-section-inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about-section-img{
    width: 50%;
    position: relative;
    margin-bottom: 60px;
}
.about-section-img img{
    border-radius: 4px;
    width: 100%;
}
.about-section-img-content-block{
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #fff;
    background: #00A6FB;
    font-weight: bold;
    font-size: 26px;
    position: absolute;
    left: -90px;
    bottom: -60px;
    text-align: right;
    line-height: 1.2;
    text-transform: uppercase;
    border-radius: 4px;
}
.about-section-img-content-block span{
    font-size: 120px;
    line-height: 1;
    display: block;
    padding: 10px 0;
}
.about-section-img-content-block .item-inner{
    position: relative;
    padding-left: 50px;
}
.about-section-img-content-block .item-inner:before{
    content:"";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: #fff;
}
.about-section-img-content-block .item-inner:after{
    content:"";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 40px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.about-section-content{
    width: 50%;
    padding-left: 60px;
}
.section-suptitle{
    font-weight: bold;
    text-transform: uppercase;
    color: #00A6FB;
    margin-bottom: 10px;
    font-size: 18px;
    position: relative;
    padding-left: 30px;
}
.section-suptitle:before{
    content: "";
    width: 20px;
    height: 3px;
    background: #00A6FB;
    position: absolute;
    left: 0;
    top: 13px;
}
@media(max-width: 1599px){
    .about-section-inner{
        align-items: stretch;
    }
    .about-section-img{
        margin-bottom: 0;
    }
    .about-section-img img{
        height: 100%;
        object-fit: cover;
    }
    .about-section-img-content-block {
        width: 220px;
        padding: 30px 20px;
        font-size: 20px;
        left: 0;
        bottom: 0;
        border-radius: 0 4px 0 4px;
    }
    .about-section-img-content-block .item-inner:after{
        width: 30px;
    }
    .about-section-img-content-block span{
        font-size: 90px;
    }
    .about-section-content{
        padding: 40px 0 20px 40px;
        font-size: 14px;
    }
}

@media(max-width: 991px){
    .about-section-img{
        width: 100%;
        height: auto;
        margin-bottom: 60px;
        padding-left: 70px;
        padding-bottom: 70px;
    }
    .about-section-content{
        width: 100%;
        padding: 0;
    }
    .about-section{
        padding-bottom: 50px;
    }
    .about-section-img-content-block{
        border-radius: 4px;
    }
}
@media(max-width:767px){
    .section-suptitle{
        font-size: 14px;
        padding-left: 25px;
    }
    .section-suptitle:before {
        content: "";
        width: 15px;
        height: 2px;
        top: 11px;
    }
}
@media(max-width: 599px){
    .about-section-img{
        padding-left: 0;
        padding-bottom: 0;
    }
    .about-section-img-content-block{
        border-radius: 0 4px 0 4px;
        padding: 20px 30px 20px 15px;
        font-size: 14px;
        width: auto;
    }
    .about-section-img-content-block span {
        font-size: 40px;
    }
    .about-section-img-content-block .item-inner{
        padding-left: 30px;
    }
    .about-section-img-content-block .item-inner:before {
        top: 6px;
        bottom: 6px;
        width: 2px;
    }
    .about-section-img-content-block .item-inner:after {
        top: 6px;
        bottom: 6px;
        width: 15px;
        border-top-width: 2px;
        border-bottom-width: 2px;
    }
}
@media(max-width:399px){
    .about-section-img-content-block {
        padding: 15px 20px 15px 15px;
        font-size: 12px;
    }
    .about-section-img-content-block span{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .about-section-img-content-block .item-inner{
        padding-left: 25px;
    }
}
/* /. about-section */

/* services */
.services-section.pb-big{
    padding-bottom: 200px;
}
.services{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.services .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.services .item{
    height: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.services .item-title{
    font-weight: bold;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
}
.services .item-price{
    margin-bottom: 10px;
    color: #00A6FB;
    font-size: 18px;
}
.services .item-bottom{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services .item-more{
    font-weight: bold;
}
.services .item:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center,ellipse,rgba(0,0,0,.35) 0%,rgba(0,0,0,0) 80%);
    background: radial-gradient(ellipse at center,rgba(0,0,0,.35) 0%,rgba(0,0,0,0) 80%);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform,opacity;
    transition-property: transform,opacity;
}
.services .item:hover{
    transform: translateY(-10px);
}
.services .item:hover:before{
    opacity: 1;
    transform: translateY(5px);
}
.services .item:hover .item-more span{
    color: #00A6FB;
    transition: all ease-out 300ms;
}
.services .item:hover .item-more span:hover{
    color: #333;
}
@media(max-width:1199px){
    .services-section.pb-big{
        padding-bottom: 40px;
    }
    .services{
        margin-left: -10px;
        margin-right: -10px;
    }
    .services .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .services .item{
        padding: 20px;
    }
    .services .item-more{
        font-size: 15px;
    }
    .services .item-title{
        font-size: 20px;
    }
}
@media(max-width:991px){
    .services .col{
        width: 50%;
    }
}
@media(max-width:699px){
    .services .col{
        width: 100%;
    }
}
@media(max-width:399px){
    .services .item-more{
        width: 100%;
        order: 2;
        margin-top: 20px;
    }
}
/* /. services */

/* why-section */
.why-block{
    background: url(../images/fs-bg.jpg) 50% / cover no-repeat;
    color: #fff;
    padding: 70px 70px 50px;
    border-radius: 10px;
}
.services-section + .why-section .why-block{
    margin-top: -160px;
}
.why-items{
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}
.why-items .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 60px;
    width: 33.3333%;
}
.why-items .item{
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
}
.why-items .item-icon{
    width: 45px;
}
.why-items .item-body{
    width: calc(100% - 45px);
    padding-left: 30px;
}
.why-items .item-title{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}
@media(max-width: 1199px){
    .why-section{
        padding-top: 60px;
    }
    .services-section + .why-section .why-block{
        margin-top: 0;
    }
    .why-block{
        padding: 50px 50px 30px;
    }
}
@media(max-width: 991px){
    .why-items .col{
        width: 50%;
    }
}
@media(max-width: 699px){
    .why-block{
        padding: 20px 20px 0;
    }
    .why-items .col{
        width: 100%;
        margin-bottom: 30px;
    }
    .why-items .item-icon{
        width: 32px;
    }
    .why-items .item-body{
        width: calc(100% - 32px);
        padding-left: 20px;
        font-size: 13px;
    }
    .why-items .item-title{
        font-size: 16px;
    }
}
/* /. why-section */

/* wedo-section */
.wedo{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.wedo .col1{
    text-align: right;
    width: calc(50% - 210px);
    padding-right: 80px;
}
.wedo .col2{
    text-align: center;
    width: 420px;
}
.wedo .col3{
    width: calc(50% - 210px);
    padding-left: 80px;
}
.wedo .item{
    padding: 30px 0;
    font-size: 17px;
    color: #000;
}
.wedo .item-title{
    font-size: 24px;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}
.wedo .item-title span{
    width: 90%;
    height: 2px;
    position: absolute;
    top: 17px;
    left: calc(100% + 20px);
    max-width: 200px;
    background: linear-gradient(90deg, rgba(9,9,121,0) 0%, rgba(0,212,255,1) 100%);
}
.wedo .item-title span:after{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: #00A6FB;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    right: 0;
    top: calc(50% - 7px);
}
.wedo .col3 .item-title span{
    left: auto;
    right: calc(100% + 20px); 
    background: linear-gradient(90deg, rgba(0,212,255,1) 0%, rgba(9,9,121,0) 100%);
}
.wedo .col3 .item-title span:after{
    right: auto;
    left: 0;
}
.wedo .item-num{
    display: none;
}
@media(max-width: 1489px){
    .wedo .col1{
        padding-right: 50px;
    }
    .wedo .col3{
        padding-left: 50px;
    }
    .wedo .item-title{
        font-size: 22px;
    }
    .wedo .item {
        padding: 25px 0;
        font-size: 15px;
    }
    .wedo .item-title span{
        max-width: 150px;
    }
}
@media(max-width: 1199px){
    .wedo .col1{
        padding-right: 40px;
        width: calc(50% - 160px);
    }
    .wedo .col2{
        width: 320px;
    }
    .wedo .col3{
        padding-left: 40px;
        width: calc(50% - 160px);
    }
    .wedo .item-title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .wedo .item {
        padding: 20px 0;
        font-size: 14px;
    }
    .wedo .item-title span:after{
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
    }
}
@media(max-width: 991px){
    .wedo-section{
        padding-bottom: 40px;
    }
    .wedo .col1{
        padding-right: 30px;
        width: calc(50% - 130px);
    }
    .wedo .col2{
        width: 260px;
    }
    .wedo .col3{
        padding-left: 30px;
        width: calc(50% - 130px);
    }
    .wedo .item-title{
        font-size: 18px;
    }
    .wedo .item {
        padding: 15px 0;
        font-size: 13px;
    }
    .wedo .item-title span{
        display: none;
    }
}
@media(max-width: 767px){
    .wedo{
        align-items: flex-start;
    }
    .wedo .col1{
        padding-right: 0;
        width: 100%;
        text-align: left;
    }
    .wedo .col2{
        display: none;
    }
    .wedo .col3{
        padding-left: 0;
        width: 100%;
    }
    .wedo .item{
        position: relative;
        padding-left: 70px;
        font-size: 15px;
    }
    .wedo .item-num{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 5px;
        left: 0;
        border-radius: 50%;
        border: 2px solid #00A6FB;
        color: #00A6FB;
        font-size: 18px;
        font-weight: bold;
    }
}
/* /. wedo-section */

/* warning-section */
.warning-items{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.warning-items .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 60px;
    width: 33.3333%;
}
.warning-items .item{
    display: flex;
    flex-wrap: wrap;
    color: #000;
}
.warning-items .item-icon{
    width: 60px;
}
.warning-items .item-body{
    width: calc(100% - 60px);
    padding-left: 20px;
}
.warning-items .item-title{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
}
@media(max-width:1299px){
    .warning-items .item-title{
        font-size: 18px;
    }
    .warning-items .item{
        font-size: 14px;
    }
}
@media(max-width:991px){
    .warning-section{
        padding-bottom: 10px;
    }
    .warning-items .col{
        width: 50%;
        margin-bottom: 40px;
    }
}
@media(max-width:767px){
    .warning-items .col{
        width: 100%;
    }
}
/* /. warning-section */

/* cases */
.cases{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.cases .col{
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.cases .item{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden;
    border-radius: 10px;
    color: #fff;
}
.cases .item-img{
    overflow: hidden;
}
.cases .item-img img{
    width: 100%;
    transition: all ease-out 300ms;
}
.cases .item-body{
    flex: 1 0 auto;
    padding: 15px;
    background: #0F141E;
}
.cases .item-title{
    font-weight: bold;
    line-height: 1.3;
    font-size: 18px;
    transition: all ease-out 300ms;
}
.cases .item-footer{
    background: #0F141E;
    padding: 0 15px;
    height: 54px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
    line-height: 1.3;
}
.item-footer-col{
    width: 50%;
}
.item-footer-col1{
    padding-right: 5px;
}
.item-footer-col2{
    padding-left: 5px;
    text-align: right;
}
.cases .item:hover .item-img img{
    transform: scale(1.1);
}
.cases .item:hover .item-title{
    color: #00A6FB;
}
.cases-carousel-wrapper{
    position: relative;
}
.cases-carousel{
    display: block;
}
.cases-carousel > div:not(:first-of-type){
    display: none;
}
.cases-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.cases-carousel .slick-slide {
    height: inherit;
}
.cases-carousel .slick-slide>div {
    height: 100%;
}
.cases-carousel .slick-dots{
    text-align: left;
}
.cases-carousel-wrapper .more-item{
    margin-top: -40px;
}
.cases-carousel-wrapper .more-item .btn{
    position: relative;
    z-index: 10;
}

@media(max-width:1299px){
    .cases .col{
        width: 33.33333%;
    }
}
@media(max-width:991px){
    .cases .col{
        width: 50%;
    }
}
@media(max-width:767px){
    .cases{
        margin-left: -5px;
        margin-right: -5px;
    }
    .cases .col{
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    .cases .item-body{
        padding: 10px;
    }
    .cases .item-title{
        font-size: 16px;
    }
    .cases .item-footer{
        height: auto;
        padding: 10px;
        font-size: 12px;
    }
    .cases .item-footer-col{
        width: 100%;
        text-align: left;
        padding: 0;
    }
    .cases .item-footer-col + .item-footer-col{
        margin-top: 5px;
    }
}
@media(max-width:499px){
    .cases .col{
        width: 100%;
    }
    .cases-carousel-wrapper .more-item{
        text-align: left;
        padding-top: 20px;
        margin-top: 0;
    }
    .cases-carousel-wrapper .more-item .btn{
        width: 100%;
    }
}
/* /. cases */

/* tarifs-section */
.tarifs{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.tarifs .col{
    width: 28%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.tarifs .col3{
    width: 44%;
}
.tarifs .item{
    background: #0F141E;
    border-radius: 10px;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tarifs .item-body{
    padding: 30px;
}
.tarifs .item-footer{
    padding: 30px 30px 40px;
    border-top: 1px solid rgba(255,255,255,.2);
}
.tarifs .item-title{
    font-weight: bold;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
}
.tarifs-property-list li{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.tarifs-property-list li:last-of-type{
    margin-bottom: 0;
}
.tarifs-property-list-icon{
    width: 34px;
}
.tarifs-property-list-value{
    width: calc(100% - 34px);
    padding-left: 16px;
    color: #c1c1c1;
}
.tarifs .item-price{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 35px;
    line-height: 1.2;
}
.tarifs .col3 .tarifs-property-list{
    display: flex;
    flex-wrap: wrap;
}
.tarifs .col3 .tarifs-property-list li{
    width: 50%;
    padding-right: 15px;
}
.tarifs .col3 .tarifs-property-list li:nth-of-type(2n){
    padding-right: 0;
    padding-left: 15px;
}
@media(max-width: 1399px){
    .tarifs-property-list-value{
        font-size: 14px;
    }
    .tarifs .item-title{
        font-size: 22px;
    }
}
@media(max-width: 1199px){
    .tarifs .col{
        width: 50%;
    }
    .tarifs .col3{
        width: 100%;
    }
}
@media(max-width:991px){
    .tarifs-section h2 + .push20{
        display: none;
    }
}
@media(max-width: 699px){
    .tarifs .col{
        width: 100%;
    }
    .tarifs .col3 .tarifs-property-list li{
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .tarifs .item-body{
        padding: 20px;
    }
    .tarifs .item-footer{
        padding: 20px 20px 30px;
    }
    .tarifs .item-price{
        margin-bottom: 20px;
    }
    .tarifs .item-title{
        font-size: 20px;
    }
}
/* /. tarifs-section */

/* faq-section */
.accordeon .item-body {
    display: none;
    padding-bottom: 35px;
    font-weight: 300;
}
.accordeon .item{
    border-bottom: 1px solid #E5E5E5;
}
.accordeon .item:last-child{
    border-bottom: none;
}
.accordeon .item-head{
    min-height: 90px;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordeon .item-title{
    font-size: 24px;
    line-height: 1.35;
    width: calc(100% - 60px);
}
.accordeon .item-icon{
    width: 30px;
    height: 30px;
    position: relative;
}
.accordeon .item-icon:after,
.accordeon .item-icon:before{
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #5b5858;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease 0s;
}
.accordeon .item-icon:after{
    transform: translateY(-50%) rotate(90deg);
}

.accordeon .item-head:hover .item-icon:before,
.accordeon .item-head:hover .item-icon:after{
    background: #00A6FB;
}
.accordeon .item-head:hover .item-title,
.accordeon .item.active .item-title{
    color: #00A6FB;
}
.accordeon .item.active .item-icon:before{
    transform: translateY(-50%) rotate(45deg);
    background: #00A6FB;
}
.accordeon .item.active .item-icon:after{
    transform: translateY(-50%) rotate(-45deg);
    background: #00A6FB;
}
@media(max-width: 991px){
    .accordeon .item-head{
        min-height: 80px;
        padding: 12px 0;
    }
    .accordeon .item-title{
        font-size: 20px;
    }
    .accordeon .item-body {
        padding-bottom: 30px;
        font-size: 14px;
    }
}
@media(max-width: 767px){
    .accordeon .item-head{
        min-height: 70px;
        padding: 10px 0;
    }
    .accordeon .item-title{
        font-size: 16px;
    }
    .accordeon .item-body {
        padding-bottom: 25px;
        font-size: 13px;
    }
    .accordeon .item-icon:after, 
    .accordeon .item-icon:before{
        width: 20px;
    }
}
/* /. faq-section */

/* scheme-section */
.scheme{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.scheme .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 70px;
    width: 25%;
}
.scheme .item{
    position: relative;
}
.scheme .item:after{
    content: "";
    width: 32px;
    height: 32px;
    transform: rotate(-54deg) skew(-20deg);
    border-bottom: 1px solid #28A9EA;
    border-right: 1px solid #28A9EA;
    position: absolute;
    right: -5px;
    top: calc(50% - 20px);
}
.scheme .col:last-child .item:after{
    display: none;
}
.scheme .item-num{
    font-weight: bold;
    font-size: 100px;
    line-height: 0;
    color: #00A6FB;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
}
.scheme .item-body{
    position: relative;
    z-index: 10;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    font-size: 15px;
}
.scheme .item-title{
    font-size: 20px;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 15px;
}
@media(max-width: 1489px){
    .scheme .item-body{
        font-size: 14px;
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media(max-width: 1299px){
    .scheme .col{
        width: 50%;
        margin-bottom: 60px;
    }
    .scheme .item:after{
        display: none;
    }
}
@media(max-width: 699px){
    .scheme .item-num{
        font-size: 80px;
    }
    .scheme .item-body{
        font-size: 13px;
        padding-left: 0;
        padding-right: 0;
    }
    .scheme .item-title{
        font-size: 18px;
        margin-bottom: 10px;
    }
}
@media(max-width: 499px){
    .scheme .col{
        width: 100%;
        margin-bottom: 50px;
    }
}
/* /. scheme-section */

/* application-section */
.application-block{
    display: flex;
    flex-wrap: wrap;
}
.application-block .col1{
    width: calc(100% - 450px);
}
.application-block .col2{
    width: 450px;
    padding-left: 30px;
}
.application-form{
    height: 100%;
    background: #00669B;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
}
.application-form-row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.application-form-row .col{
    width: 33.3333%;
    padding-left: 10px;
    padding-right: 10px;
}
.application-form-row .btn{
    width: 100%;
}
.application-form-title{
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 45px;
}
.application-form .agreement{
    margin-bottom: 0;
    font-size: 12px;
    color: #ccc;
}
.application-form .agreement{
    padding-left: 22px;
}
.application-form .agreement input+label:before {
    width: 15px;
    height: 15px;
    top: 1px;
}
.application-form .agreement a:hover{
    color: #fff;
}
.application-messengers{
    background: #E8ECF6;
    padding: 30px 30px 35px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}
.application-messengers-title{
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.application-messengers a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    max-width: 300px;
    padding: 0 30px;
    border: 2px solid;
    border-radius: 4px;
    font-weight: 600;
}
.application-messengers .telegram-btn{
    color: #00A6FB;
    margin-bottom: 10px;
}
.application-messengers .telegram-btn svg{
    fill: #00A6FB;
    margin-right: 5px;
    transition: all ease-out 300ms;
}
.application-messengers .telegram-btn:hover{
    background: #00A6FB;
    border-color: #00A6FB;
    color: #fff;
}
.application-messengers .telegram-btn:hover svg{
    fill: #fff;
}
.application-messengers .whatsapp-btn{
    color: #94BF4C;
}
.application-messengers .whatsapp-btn svg{
    fill: #94BF4C;
    margin-right: 5px;
    transition: all ease-out 300ms;
}
.application-messengers .whatsapp-btn:hover{
    background: #94BF4C;
    border-color: #94BF4C;
    color: #fff;
}
.application-messengers .whatsapp-btn:hover svg{
    fill: #fff;
}

@media(max-width: 1299px){
    .application-block .col1 {
        width: calc(100% - 350px);
    }
    .application-block .col2 {
        width: 350px;
        padding-left: 20px;
    }
    .application-messengers {
        padding: 20px 20px 25px;
    }
    .application-form {
        padding: 20px;
    }
}
@media(max-width: 1099px){
    .application-form-title{
        margin-bottom: 20px;
    }
    .application-form-row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .application-form-row .col{
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media(max-width: 991px){
    .application-block .col1{
        width: 100%;
    }
    .application-block .col2{
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .application-messengers{
        text-align: left;
        display: block;
        background: transparent;
        padding: 0 0 0 20px;
    }
    .application-messengers-buttons{
        display: flex;
        flex-wrap: wrap;
    }
    .application-messengers-buttons .telegram-btn{
        margin-right: 10px;
    }
}
@media(max-width: 767px){
    .application-form-row .col{
        width: 100%;
    }
    .application-form .agreement{
        margin-top: 20px;
    }
    .application-messengers{
        padding: 20px 20px 30px;
        background: #E8ECF6;
    }
    .application-messengers a{
        width: 100%;
        max-width: 100%;
        margin-right: 0!important;
    }
    .application-form-title,
    .application-messengers-title{
        font-size: 16px;
    }
}
/* /. application-section */

/* Reviews */
.reviews{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.reviews .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    width: 50%;
}
.reviews .item{
    padding: 30px 40px 30px 260px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 0 1px #ecf2f4;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.reviews .item-img{
    position: absolute;
    left: 30px;
    top: 30px;
    width: 200px;
}
.reviews .item-img  img{
    border-radius:4px;
}
.reviews .item-body{
    flex: 1 0 auto;
    font-size: 14px;
}
.reviews .item-footer .btn{
    margin: 30px 0 0;
}
.reviews .item-date,
.reviews-modal .item-date{
    color: #999;
    margin-bottom: 15px;
    font-size: 13px;
}
.reviews .item-title,
.reviews-modal .item-title{
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 5px;
}
.reviews .item-subtitle,
.reviews-modal .item-subtitle{
    color: #00a6fb;
    font-weight: 600;
}
.reviews .item-body,
.reviews-modal .item-body{
    padding-top: 10px;
}
.reviews-carousel > div:not(:first-of-type){
    display: none;
}
.reviews-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.reviews-carousel .slick-slide {
    height: inherit;
}
.reviews-carousel .slick-slide>div {
    height: 100%;
}
@media(max-width: 1299px){
    .reviews{
        margin-left: -10px;
        margin-right: -10px;
    }
    .reviews .item-body{
        font-size: 13px;
    }
    .reviews .col {
        padding-left: 10px;
        padding-right: 10px;
    }
    .reviews .item {
        padding: 30px 20px 30px 250px;
    }
    .reviews .item-img {
        left: 20px;
        top: 20px;
    }
}
@media(max-width: 1199px){
    .reviews .item-img {
        width: 150px;
    }
    .reviews .item {
        padding: 30px 20px 30px 190px;
    }
}
@media(max-width:991px){
    .reviews .col{
        width: 100%;
    }
}
@media(max-width:499px){
    .reviews .item-img{
        position: static;
        margin-bottom: 15px;
        width: 100%;
    }
    .reviews .item {
        padding: 20px;
    }
}
/* /. Reviews */

/* Footer */
.footer{
    background: #00669b;
}
.footer-main-top{
    padding: 50px 15px 0;
    color: #fff;
}
.footer-main-top-inner{
    display: flex;
    justify-content: space-between;
}
.footer-main-top-left_part{
    width: 540px;
    padding-right: 40px;
}
.footer-main-top-right_part{
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - 540px);
}
.footer-main-top-right_part .col{
    width: 350px;
    padding-right: 40px;
    margin-bottom: 35px;
}
.footer-main-top-right_part .item-title{
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
}
.footer-main-top-right_part .item-title a{
    color: #fff;
}
.footer-main-top-right_part .item-title a:hover{
    color: #00A6FB;
}
.footer-main-top-right_part nav li:not(:last-of-type){
    margin-bottom: 7px;
}
.footer-main-top-right_part nav a{
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    display: inline-block;
}
.footer-main-top-right_part nav a:hover{
    text-decoration: underline;
}
.footer-main-bottom{
    padding: 28px 15px;
}
.footer-bottom-container{
    padding: 14px 15px;
    font-size: 13px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-container-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-main-bottom-items{
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-left: -15px;
    margin-right: -15px;
    font-size: 14px;
}
.footer-main-bottom-items .item{
    display: flex;
    align-items: center;
    margin: 15px;
    flex-wrap: wrap;
}
.footer-main-bottom-items .item-icon{
    margin-right: 10px;
    width: 32px;
    height: 32px;
}
.footer-main-bottom-items .item-icon img{
    width: 100%;
}
.footer-main-bottom-items .item-text{
    width: calc(100% - 42px);
}
.footer-main-bottom-items .item a{
    color: #fff;
}
.footer-main-bottom-items .item a:hover{
    color: #00A6FB;
}
.footer-main-top-right_part .item-title-btn{
    display: none;
}
.development{
    display: flex;
    flex-wrap: wrap;
    margin-right: 30px;
}
.development .item-text{
    margin-left: 7px;
}
.development a:hover{
    color: #fff;
}
.footer-text{
    margin-bottom: 30px;
    font-size: 14px;
}
.footer-bottom-right-part{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(max-width: 1299px){
    .footer-main-top-right_part .col{
        width: 300px;
        padding-right: 30px;
    }
}
@media(max-width:1229px){
    .footer-main-top-left_part {
        width: 480px;
        padding-right: 30px;
    }
    .footer-main-top-right_part{
        max-width: calc(100% - 480px);
    }
    .footer-main-bottom-items{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer-main-bottom-items .item{
        font-size: 14px;
    }
}
@media(max-width:1199px){
    .footer-main-top-left_part {
        width: 440px;
        padding-right: 40px;
    }
    .footer-main-top-right_part {
        max-width: calc(100% - 440px);
    }
    .footer-main-top-right_part .col {
        width: 50%;
        padding-right: 2.5vw;
    }
    .footer-main-top-right_part .item-title{
        font-size: 14px;
    }
    .footer-main-top-right_part nav a{
        font-size: 12px;
    }
    .footer-text{
        font-size: 12px;
    }
}
@media(max-width:991px){
    .footer-main-top-inner{
        flex-wrap: wrap;
    }
    .footer-main-top-left_part{
        width: 100%;
        padding-right: 0;
    }
    .footer-main-top-right_part{
        width: 100%;
        max-width: 100%;
    }
}
@media(max-width: 767px){
    .footer-main-bottom-items{
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
    .footer-main-bottom-items .item{
        margin: 15px 0;
    }
    .footer-main-top{
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .footer-main-top-inner,
    .footer-main-top-right_part{
        display: block;
    }
    .footer-main-top-right_part .col{
        margin-bottom: 0;
        padding-right: 0;
        width: 100%;
    }
    .footer-main-top-right_part .dropdown{
        display: none;
        padding: 0 0 25px;
    }
    .footer-main-top-right_part .item{
        border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .footer-main-top-right_part .item-title{
        margin: 0;
        padding: 12px 48px 12px 0;
        position: relative;
        font-size: 15px;
    }
    .footer-main-top-right_part > div:last-of-type > .item{
        border-bottom: none;
    }
    .footer-main-top-right_part .item-title-btn{
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
    }
    .footer-main-top-right_part .item-title-btn g {
        stroke: #666666;
        transition: all ease-out 200ms;
    }
    .footer-main-top-right_part .item.active .item-title-btn svg{
        transform: rotate(45deg);
    }
    .footer-main-top-right_part nav a {
        font-size: 13px;
        color: rgba(255,255,255,0.9);
    }
    .footer-bottom-container-inner{
        display: block;
        font-size: 12px;
    }
    .footer-bottom-right-part{
        flex-wrap: wrap;
    }
    .footer-main-bottom,
    .footer-main-top,
    .footer-bottom-container{
        padding-left: 0;
        padding-right: 0;
    }
    .development{
        margin-right: 0;
        width: calc(100% - 60px);
    }
    .copyright{
        margin-bottom: 20px;
    }
}
@media(min-width:768px){
    .footer-main-top-right_part .item .dropdown{
        display: block !important;
    }
}
/* /. Footer */

.middle-section {
    padding-top: 35px;
    padding-bottom: 50px;
}
/* Breadcrumbs */
.breadcrumb{
    margin: 0 0 35px;
    font-size: 15px;
}
.breadcrumb > li {
    display: inline;
    color: #000;
    white-space: nowrap;
}
.breadcrumb > li > a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.breadcrumb > li > a:after {
    content: '';
    display: inline-block;
    background: url(../images/breadcrumb-arrow.svg) 0 0 no-repeat;
    margin-left: 4px;
    margin-right: 0px;
    width: 20px;
    height: 17px;
}
.breadcrumb > li > a:hover{
    color: #000;
}
.breadcrumb span,
.breadcrumb a{
    display: inline-block;
}
.breadcrumb span:first-letter,
.breadcrumb a:first-letter{
    text-transform: capitalize;
}
@media(max-width: 991px){
    .middle-section{
        padding-top: 35px;
    }
    .breadcrumb{
        display: flex;
        overflow: auto;
        margin-bottom: 25px;
    }
}
/* /. Breadcrumbs */ 

/* main-columns-section */
.main-columns-section{
    display: flex;
    flex-wrap: wrap;
}
.main-columns-section .pagetitle{
    width: calc(100% - 360px);
}
.main-column{
    width: calc(100% - 360px);
    padding-right: 50px;
}
.aside{
    width: 360px;
}
.page-img{
    margin-bottom:30px;
}
.page-img img{
    width: 100%;
    border-radius: 15px;
}
.post-info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}
.post-info .item,
.post-info-item{
    display: flex;
    flex-wrap: wrap;
    margin-right: 30px;
    font-size: 18px;
    margin-bottom: 15px;
    align-items: center;
}
.post-info .item-icon{
    width: 18px;
    margin-right: 6px;
    display: inline-flex;
}
.post-info .item-category .item-icon{
    margin-right: 8px;
}
.post-info .item-icon svg,
.post-info .item-icon path{
    fill: #00A6FB;
}
.post-info .item a,
.post-info-item a{
    color: #333;
}
.post-info .item a:hover,
.post-info-item a:hover{
    color: #00A6FB;
}

.property-list-wrapper{
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #c1c1c1;
    margin-bottom: 40px;
}
.property-list .item{
    font-size: 18px;
    margin-bottom: 15px;
}
.property-list .item span{
    font-weight: 600;
}
.gallery{
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}
.gallery .col{
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.gallery.cols2 .col{
    width: 50%;
}
.gallery.cols2 .col:nth-last-child(1),
.gallery.cols2 .col:nth-last-child(2){
    margin-bottom: 0;
}
.gallery .item{
    overflow: hidden;
    border-radius: 10px;
    display: block;
    position: relative;
}
.gallery .item img{
    width: 100%;
}
.gallery .item:after {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    background: url(../images/plus.svg) 0 0 no-repeat;
    background-size: contain;
    opacity: 0;
    transition: ease-out all 300ms;
    transform: scale(0);
}
.gallery .item:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(51,51,51,0.5);
    opacity: 0.2;
    transition: ease-out all 300ms;
}
.gallery .item:hover:before{
    opacity: 1;
}
.gallery .item:hover:after{
    opacity: 1;
    transform: scale(1);
}

.aside-item{
    margin-bottom: 40px;
}
.aside-item-title{
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
}
.aside-item-body{
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid #c1c1c1;
}
.aside-menu li{
    border-bottom: 1px solid #c1c1c1;
}
.aside-menu a{
    display: block;
    font-size: 17px;
    line-height: 1.4;
    color: #333;
    padding: 15px 0;
    
}
.aside-menu li:last-of-type{
    border-bottom: none;
}
.aside-menu a:hover,
.aside-menu .active > a{
    color: #00A6FB;
}

.aside-menu ul ul{
    margin-bottom: 15px;
}
.aside-menu ul ul li{
    border-bottom: none;
}
.aside-menu ul ul a{
    font-size: 14px;
    padding: 5px 0 5px 15px;
}
.aside-menu ul ul li:first-of-type > a{
    padding-top: 0;
}

.aside-blog-item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.aside-blog-item-img{
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
}
.aside-blog-item-body{
    width: calc(100% - 100px);
    padding-left: 20px;
}
.aside-blog-item-title a{
    font-weight: 700;
    color: #333;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
}
.aside-blog-item-title a:hover{
    color: #00A6FB;
}
.aside-blog-item-date{
    font-size: 14px;
    color: #00A6FB;
}

@media(min-width: 768px){
    .main-column .content{
        font-size: 18px;
    }
}
@media(min-width:992px){
    .aside .application-block .col1{
        width: 100%;
        margin-bottom: 40px;
    }
    .aside .application-block .col2{
        width: 100%;
        padding-left: 0;
    }
    .aside .application-messengers-title{
        text-align: left;
    }
    .aside .application-form-row .col{
        width: 100%;
    }
    .aside .application-form-title{
        margin-bottom: 20px;
    }
    .aside .application-form-row{
        margin-bottom: 20px;
    }
    .aside-sticky{
        position: sticky;
        top: 30px;
    }
}

@media(max-width: 1299px){
    .main-columns-section .pagetitle{
        width: calc(100% - 300px);
    }
    .main-column{
        width: calc(100% - 300px);
        padding-right: 40px;
    }
    .aside{
        width: 300px;
    }
    .aside-blog-item-title a{
        font-size: 15px;
    }
}
@media(max-width: 991px){
    .main-column {
        width: 100%;
        padding-right: 0;
    }
    .main-columns-section .pagetitle{
        width: 100%;
    }
    .main-column + .aside{
        padding-top: 50px;
    }
    .aside{
        width: 100%;
    }
    .gallery{
        margin-left: -10px;
        margin-right: -10px;
    }
    .gallery .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media(max-width: 767px){
    .gallery{
        margin-left: -5px;
        margin-right: -5px;
    }
    .gallery .col{
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }
    .gallery .item{
        border-radius: 5px;
    }
}
/* /. main-columns-section*/

/* price-section */
.price-section + .wedo-section{
    padding-top: 0;
}
.price-list .item{
    background: #E8ECF6;
    border-radius: 10px;
    padding: 40px 40px 50px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}
.price-list .item-aside{
    width: 250px;
}
.price-list .item-aside .btn{
    width: 100%;
}
.price-list .item-body{
    width: calc(100% - 250px);
    padding-right: 60px;
}
.price-list .item-title{
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}
.price-list .item-price{
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}
.price-list .item-price span{
    color: #00A6FB;
}

.price-page-list-item:not(:last-child){
    margin-bottom: 70px;
}
@media(max-width: 991px){
    .price-list .item {
        padding: 25px 25px 35px;
        margin-bottom: 20px;
    }
    .price-list .item-body{
        padding-right: 30px;
    }
    .price-list .item-text{
        font-size: 15px;
    }
    .price-list .item-title,
    .price-list .item-price{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .price-list .item .btn{
        height: 50px;
    }
}
@media(max-width: 767px){
    .price-list .item-body{
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .price-list .item-text{
        font-size: 13px;
    }
    .price-list .item-title,
    .price-list .item-price{
        font-size: 18px;
    }
    .price-page-list{
        padding-top: 20px;
    }
}
/* /. price-section */


/* contacts page */
.contacts-page-columns{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    box-shadow: 0px 23px 50px rgba(31, 41, 47, 0.06);
    background: #fff;
}
.map-section-contacts-block {
    width: 570px;
    background: #fff;
    box-shadow: 0px 23px 50px rgba(31, 41, 47, 0.06);
    padding: 70px 70px 80px;
    position: relative;
    z-index: 10;
}
.contacts-page-columns .map-wrapper{
    width: calc(100% - 570px);
}
.contacts-page-columns .map{
    height: 100%;
    min-height: 500px;
}
.contacts-page-content-wrapper{
    background: #fff;
    padding: 70px;
    box-shadow: 0px 23px 50px rgba(31, 41, 47, 0.06);
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}
.map-section-contacts-block .item{
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}
.map-section-contacts-block .item-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
}
.map-section-contacts-block .item-body{
    width: calc(100% - 50px);
    padding-left: 20px;
}
.map-section-contacts-block .item-title{
    font-weight: 600;
}
.map-section-contacts-block .item-phone{
    font-weight: 700;
    font-size: 18px;
}

.map-section-contacts-block .messengers-item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.map-section-contacts-block .messengers-item-title{
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    width: 115px;
}
.map-section-contacts-block .messengers-item-buttons{
    width: calc(100% - 115px);
    padding-left: 20px;
}
.map-section-contacts-block .messengers-item-buttons a {
    height: 38px;
    padding: 0 10px;
    display: inline-flex;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
    font-size: 13px;
    color: #000;
    text-decoration: none;
}
.map-section-contacts-block .messengers-item-buttons a img{
    margin-right: 5px;
}
.map-section-contacts-block .messengers-item-buttons a:last-of-type{
    margin-right: 0;
}
.map-section-contacts-block .messengers-item-buttons a img{
    height: 18px;
}
.map-section-contacts-block .messengers-item-buttons a:hover{
    box-shadow: 0 0 0 2px rgb(0 0 0 / 15%);
}

@media(max-width: 1249px){
    .map-section-contacts-block {
        width: 500px;
        padding: 60px 60px 70px;
    }
    .contacts-page-columns{
        margin-bottom: 15px;
    }
    .contacts-page-columns .map-wrapper{
        width: calc(100% - 500px);
    }
    .contacts-page-content-wrapper{
        padding: 60px;
    }
}
@media(max-width: 991px){
    .contacts-page-columns{
        margin-bottom: 10px;
    }
    .contacts-page-columns .map-section-contacts-block{
        width: 340px;
        padding: 30px;
    }
    .contacts-page-columns .map-wrapper{
        width: calc(100% - 340px);
    }
    .contacts-page-content-wrapper{
        padding: 30px;
    }
    .map-section-contacts-block {
        width: 440px;
        padding: 40px 40px 50px;
    }
    .map-section-contacts-block h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .map-section-contacts-block .item-icon{
        width: 44px;
        height: 44px;
    }
    .map-section-contacts-block .item-body {
        width: calc(100% - 44px);
        padding-left: 15px;
        font-size: 14px;
    }
    .map-section-contacts-block .item-phone{
        font-size: 16px;
        line-height: 1.4;
    }
    .map-section-contacts-block .item-title{
        font-size: 15px;
    }
    .map-section-contacts-block .messengers-item-title{
        width: 100%;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .map-section-contacts-block .messengers-item-buttons {
        width: 100%;
        padding-left: 0;
    }
}
@media(max-width: 767px){
    .contacts-page-columns .map-section-contacts-block{
        width: 100%;
    }
    .contacts-page-columns .map-wrapper{
        width: 100%;
    }
    .contacts-page-content-wrapper{
        margin-bottom: 0;
    }
    .contacts-page-columns{
        margin-bottom: 30px;
        background-color: transparent;
    }
    .contacts-page-columns .map{
        min-height: 300px;
        height: 300px;
    }
    .contacts-page-content-wrapper .content{
        font-size: 14px;
    }
}
/* /. contacts page */

/* blog */
.blog-columns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog .item{
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.10);
    border-radius: 15px;
}
.blog .item:last-child{
    margin-bottom: 0;
}
.blog .item-img{
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}
.blog .item-img img{
    width: 100%;
}
.blog .item-img a{
    display: block;
    position: relative;
}
.blog .item-body{
    padding: 30px;
}
.blog .item-title{
    line-height: 1.2;
}
.blog .item-intro{
    margin-bottom: 30px;
}
.blog-columns .pagination{
    text-align: left;
}
.blog + .pagination{
    margin-top: 20px;
}
.blog .post-info{
    margin-bottom: 0;
}
@media(max-width: 767px){
    .blog .item-body{
        padding: 20px 15px;
    }
    .blog .item-intro{
        font-size: 14px;
    }
    .blog .item-title{
        font-size: 16px;
        line-height: 1.4;
    }
    .blog .item-title a{
        color: #000;
    }
    .blog .item-intro{
        display: none;
    }
    .blog .post-info-item {
        width: 100%;
        margin-right: 0;
        font-size: 13px;
        margin-bottom: 5px;
    }
    .blog .post-info{
        margin-bottom: 10px;
    }
    .blog .item-img{
        height: 60vw;
    }
    .blog .item-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .blog .item-img a{
        display: block;
        height: 100%;
    }
}
/* /. blog */


/* trans */
.trans{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.trans .col{
    width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.trans .item{
    height: 100%;
    background: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.3);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.trans .item:hover{
    transform: scale(1.05);
}
.trans .item-img{
    text-align: center;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trans .item-body{
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 25px 0;
}
.trans .item-title{
    font-weight: bold;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: center;
    padding: 15px 0 0;
    border-top: 1px solid #000;
}

.trans .item-properties-row{
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 1.4;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    align-items: center;
}
.trans .item-properties-row:last-child{
    border-bottom: none;
}
.trans .item-properties-title{
    width: 50%;
    text-align: right;
    padding-right: 15px;
}
.trans .item-properties-value{
    width: 50%;
    padding-left: 15px;
}

.trans .item-btn{
    margin-top: 25px;
}
.trans .item-btn .btn{
    height: 48px;
    border-radius: 30px;
    line-height: 1.1;
}

@media(max-width: 1099px){
    .trans{
        margin-left: -10px;
        margin-right: -10px;
    }
    .trans .col{
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
    .trans .item{
        padding: 20px;
    }
    .trans .item-body{
        padding: 15px 15px 0;
    }
    .trans .item-title{
        font-size: 20px;
        margin-bottom: 12px;
        padding: 12px 0 0;
    }
    
    .trans .item-properties-row{
        font-size: 14px;
        padding: 12px 0;
    }
    .trans .item-properties-title{
        padding-right: 10px;
    }
    .trans .item-properties-value{
        padding-left: 10px;
    }
    
    .trans .item-btn{
        margin-top: 20px;
    }
}
@media(max-width: 991px){
    .trans{
        justify-content: center;
    }
    .trans .col{
        width: 50%;
    }
}
@media(max-width: 767px){
    .trans .col{
        width: 100%;
    }
}
/* /. trans*/


/* Files */

.files-list {
	display: flex;
	flex-wrap: wrap;
}

.files-list .item {
	width: 50%;
	position: relative;
	margin-bottom: 20px;
	padding: 0 20px 0 40px;
}

.files-list .item .title {
	margin-bottom: 10px;
}

.files-list .item .title a span {
	color: #000;
	border-bottom: 1px dotted #1e1e1e;
}

.files-list .item .title a:hover span {
	border-color: transparent;
}

.files-list a:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 30px;
	height: 40px;
	background: url(../images/doc-icon.svg) 0 0 no-repeat;
}

@media(max-width:991px){
    .files-list .item{
        width: 100%;
    }
}

/* /. Files */

.recaptcha-wrapper{
    margin: 20px 0;
}
@media(max-width: 1299px){
    .application-form div[id^="recaptcha"] {
    width: 230px;
    transform: scale(.79);
    transform-origin: 0 0;
  }
}
@media(max-width:420px) {
  div[id^="recaptcha"] {
    width: 230px;
    transform: scale(.79);
    transform-origin: 0 0;
  }
}
@media (max-width:340px) {
  div[id^="recaptcha"] {
    transform: scale(.75);
    transform-origin: 0 0;
  }
}

































