/*
main styles
*/
@import "/vvv/assets/css/parts/normalize.css"; /* normalize */
@import "/vvv/assets/css/parts/fonts.css"; /* fonts */

html , body {
    width: 100%;
    overflow-x: hidden;
}
body {
    padding:136px 0 0;
    margin:0 0;
    background: #fff;
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: normal;
    font-style: normal;
    position: relative;
}
body * {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-weight: normal;
    font-style: normal;
    box-sizing: border-box;
    /*cursor: url("../images/cursor.svg"), default !important;*/
}
/*html[lang="uk-UA"] body #latest_news .latest_news_list a {*/
/*    cursor: url("../images/cursor_blog_ua.svg"), url("../images/cursor.svg"), default !important;*/
/*}*/
/*html[lang="ru-RU"] body #latest_news .latest_news_list a {*/
/*    cursor: url("../images/cursor_blog_ru.svg"), url("../images/cursor.svg"), default !important;*/
/*}*/
/*html[lang="en-US"] body #latest_news .latest_news_list a {*/
/*    cursor: url("../images/cursor_blog_en.svg"), url("../images/cursor.svg"), default !important;*/
/*}*/

* {
    transition-duration: 0.3s;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-size: 14px;
    line-height: 140%;
    color: #A0A0A0;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 14px;
    line-height: 140%;
    color: #A0A0A0;
}

::-ms-input-placeholder { /* Microsoft Edge */
    font-size: 14px;
    line-height: 140%;
    color: #A0A0A0;
}

a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.wow {
    visibility: hidden;
}
.container {
    display: block;
    width: 1624px;
    padding: 0 0;
    margin: 0 auto;
    position: relative;
}
.divider {
    display: table;
    clear: both;
}
.hidden {
    display: none !important;
}
.btn_blue {
    display: inline-block;
    width: auto;
    height: 55px;
    padding:17px 54px 17px 24px;
    background: #2849C1;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 40px;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
}
.btn_blue i {
    display: block;
    position: absolute;
    width: 36px;
    height: 36px;
    top:9px;
    right: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/arrow_tr_white.svg');
    background-size: contain;
}
.btn_blue:hover {
    background: #1E3EAE;
}

.btn_circle_red {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    width: 179px;
    height: 179px;
    border: 3px solid #DE341D;
    background: transparent;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    color: #DE341D;
    border-radius: 50%;
    text-align: center;
}
.btn_circle_red:hover {
    background: #DE341D;
    color: #fff;
}

.btn_circle_blue {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    width: 179px;
    height: 179px;
    border: 3px solid #2849C1;
    background: #2849C1;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}
.btn_circle_blue:hover {
    background: #1E3EAE;
}

.btn_circle_white {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    width: 179px;
    height: 179px;
    border: 3px solid #fff;
    background: transparent;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}
.btn_circle_white:hover {
    background: #FFCB30;
    border: 3px solid #FFCB30;
    color:#292929;
}

.btn_circle_yellow {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    width: 179px;
    height: 179px;
    border: 3px solid #FFCB30;
    background: #FFCB30;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    color:#292929;
    border-radius: 50%;
    text-align: center;
}
.btn_circle_yellow:hover {
    background: #F1B80E;
    border: 3px solid #F1B80E;
}

.nav {
    width: 160px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: space-between;
}
.nav div {
    width: 74px;
    height: 74px;
    border: 3px solid #292929;
    background-color: transparent;
    background-size: 37px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../images/arrow_r_black.svg");
    border-radius: 50%;
    cursor: pointer;
}
.nav div:hover {
    background-color: #292929;
    background-image: url("../images/arrow_r_white.svg");
}
.nav div.prev {
    transform: scaleX(-1);
}
.nav div.disabled {
    pointer-events: none;
    border: 3px solid transparent;
}









header {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    background: #fff;
    z-index: 99;
}
header .h_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: space-between;
    height: 137px;
}
header .h_wrap .socials {
    width: 33.3%;
    min-width: 33.3%;
    text-align: left;
}
header .h_wrap .socials span,
header .h_wrap .socials a {
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase;
    color: #666666;
}
header .h_wrap .socials a.active {
    font-weight: 500;
}
header .h_wrap .socials span {
    padding: 0 20px;
}
header .h_wrap .logo {
    width: 33.3%;
    min-width: 33.3%;
    text-align: center;
}
header .h_wrap .logo img {
    height: 71px;
}
header .h_wrap .language {
    width: 33.3%;
    min-width: 33.3%;
    text-align: right;
}
header .h_wrap .language span,
header .h_wrap .language a {
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase;
    color: #666666;
}
header .h_wrap .language a.active {
    font-weight: 500;
}
header .h_wrap .language span {
    padding: 0 20px;
}
header .h_wrap .open_menu {
    display: none;
}
header .h_wrap .menu_wrap {
    position: fixed;
    right: 64px;
    top:100px;
}
header .h_wrap .menu_wrap .menu {
    display: flex;
    list-style: none;
    flex-direction: row-reverse;
    padding: 0 0;
    margin: 0 0;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    transition-duration: 0s !important;
}
header .h_wrap .menu_wrap .menu li {
    padding: 0 10px;
}
header .h_wrap .menu_wrap .menu li a {
    display: block;
    position: relative;
}
header .h_wrap .menu_wrap .menu li a span {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}
header .h_wrap .menu_wrap .menu li a.active span,
header .h_wrap .menu_wrap .menu li a:hover span {
    color: #292929;
}
header .h_wrap .menu_wrap .menu li a::after {
    content:'';
    display: block;
    position: absolute;
    top:100%;
    left:50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #292929;
    transition-duration: 0.2s;
}
header .h_wrap .menu_wrap.black_bg .menu li a span {
    color: #7E7E7E;
}
header .h_wrap .menu_wrap.black_bg .menu li a.active span,
header .h_wrap .menu_wrap.black_bg .menu li a:hover span {
    color: #ffffff;
}
header .h_wrap .menu_wrap.black_bg .menu li a::after {
    background: #ffffff;
}
header .h_wrap .menu_wrap .menu li a.active::after ,
header .h_wrap .menu_wrap .menu li a:hover::after {
    width: 82%;
}
header .h_wrap .menu_wrap .menu li a i {
    display: none;
}


footer {
    background-color: #fff;
    background-image: url('../images/footer_bg.svg');
    background-repeat: repeat;
    background-position: center top;
    padding: 60px 0 33px;
}
footer .footer_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    -webkit-display: flex;
    -webkit-align-items: flex-start;
    -webkit-justify-content: space-between;
}
footer .footer_wrap .col {
    width: 560px;
}
footer .footer_wrap .col + .col {
    width: 720px;
}
footer .footer_wrap .col + .col + .col {
    width: 340px;
}
footer .footer_wrap .f_title {
    font-weight: normal;
    font-size: 26px;
    line-height: 26px;
    color: #292929;
    display: block;
    margin: 0 0 33px;
}
footer .footer_wrap ul {
    margin: 0 0;
    padding: 0 0;
    list-style: none;
}
footer .footer_wrap ul li {
    display: block;
    margin: 0 0 32px;
}
footer .footer_wrap ul a {
    display: block;
    font-weight: 500;
    font-size: 58px;
    line-height: 57px;
    color: #292929;
    padding-right: 70px;
    position: relative;
}
footer .footer_wrap ul a i {
    display: block;
    height: 57px;
    width: 57px;
    position: absolute;
    top:0;right: 0;
    background-image: url("../images/arrow_tr_black.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60px;
}

/*article_content*/
.article_content p {
    display: block;
    font-weight: normal;
    font-size: 24px;
    line-height: 40px;
    color: #292929;
    margin: 0 0 25px;
}
.article_content strong,
.article_content b {
    font-weight: bold;
}
.article_content em,
.article_content i {
    font-style: italic;
}
.article_content img {
    margin:0 0 25px;
    max-width: 100%;
    height: auto;
}
.article_content a {
    font-weight: bold;
    color: #2E36CB;
}
.article_content a:hover {
    background: #E4E5F1;
}
.article_content ul {
    margin: 0 0;
    padding: 0 0 0 30px;
}
.article_content ul li {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #292929;
}
.article_content ol {
    margin: 0 0;
    padding: 0 0 0 30px;
}
.article_content ol li {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #292929;
}


/*themes*/
body[data-theme="dark"] header {background: #292929;}
body[data-theme="dark"] header .h_wrap .menu_wrap .menu li a span,
body[data-theme="dark"] header .h_wrap .language span,
body[data-theme="dark"] header .h_wrap .language a ,
body[data-theme="dark"] header .h_wrap .socials span,
body[data-theme="dark"] header .h_wrap .socials a {color: #E2E2E2;}
body[data-theme="dark"] header .h_wrap .menu_wrap .menu li a.active span,
body[data-theme="dark"] header .h_wrap .menu_wrap .menu li a:hover span {color: #ffffff;}
body[data-theme="dark"] header .h_wrap .menu_wrap .menu li a::after {background: #ffffff;}

body[data-theme="yellow"] header {background: #FFCB30;}

body[data-theme="blue"] header {background: #1131A8;}
body[data-theme="blue"] header .h_wrap .menu_wrap .menu li a span,
body[data-theme="blue"] header .h_wrap .language span,
body[data-theme="blue"] header .h_wrap .language a ,
body[data-theme="blue"] header .h_wrap .socials span,
body[data-theme="blue"] header .h_wrap .socials a {color: #E2E2E2;}
body[data-theme="blue"] header .h_wrap .menu_wrap .menu li a.active span,
body[data-theme="blue"] header .h_wrap .menu_wrap .menu li a:hover span {color: #ffffff;}
body[data-theme="blue"] header .h_wrap .menu_wrap .menu li a::after {background: #ffffff;}

body[data-theme="gray"] header {background: #95A1AE;}
body[data-theme="gray"] header .h_wrap .menu_wrap .menu li a span,
body[data-theme="gray"] header .h_wrap .language span,
body[data-theme="gray"] header .h_wrap .language a ,
body[data-theme="gray"] header .h_wrap .socials span,
body[data-theme="gray"] header .h_wrap .socials a {color: #E2E2E2;}
body[data-theme="gray"] header .h_wrap .menu_wrap .menu li a.active span,
body[data-theme="gray"] header .h_wrap .menu_wrap .menu li a:hover span {color: #ffffff;}
body[data-theme="gray"] header .h_wrap .menu_wrap .menu li a::after {background: #ffffff;}
/*======*/
#history .r_col ul li a:hover,
footer .footer_wrap ul a:hover,
header .h_wrap .socials a:hover,
header .h_wrap .language a:hover {
    color: #1E3EAE;
}

#latest_projects .latest_list .l_item_wrap .l_item:hover .data,
#blog .blog_item:hover .data .date,
#projects .projects_list .pr_item:hover,
#clients .client_item .data .link:hover,
#history .r_col ul li a:hover,
#order_site .order_steps li a.text:hover,
#home_about_us .services_list .service_wrap .service_item:hover .si_arrow,
footer .footer_wrap ul a:hover i {
    background-image: url('../images/arrow_tr_blue.svg');
}
/*======*/
@media screen and (max-width: 1640px) {
    body {
        padding:116px 0 0;
    }
    .container {
        width: 100%;
        padding: 0 50px;
    }
    header .h_wrap {
        height: 116px;
    }
    header .h_wrap .menu_wrap {
        right: 14px;
        top: 84px;
    }
    footer .footer_wrap ul a {
        font-size: 40px;
        line-height: 50px;
    }
}

@media screen and (max-width: 1100px) {
    body {
        padding: 116px 0 0;
    }
    .container {
        width: 100%;
        padding: 0 50px;
    }
    header .h_wrap .language span, header .h_wrap .language a,
    header .h_wrap .socials span, header .h_wrap .socials a {
        color: #A5AAB2;
    }
    footer {
        padding: 76px 0 34px;
        text-align: center;
    }
    footer .footer_wrap {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    footer .footer_wrap .col {
        width: 100% !important;
    }
    footer .footer_wrap .col + .col .f_title {
        padding-top: 10px;
    }
    footer .footer_wrap .col + .col + .col .f_title {
        padding-top: 28px;
    }
    footer .footer_wrap ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        -webkit-display: flex;
        -webkit-flex-direction: column;
        -webkit-align-items: center;
    }
    footer .footer_wrap ul a {
        font-size: 58px;
        line-height: 57px;
        padding: 0 0;
    }
    footer .footer_wrap .col + .col + .col ul a {
        padding: 0 70px 0 0;
        width: 340px;
        text-align: left;
    }

    .article_content img {
        margin:0 0 50px;
    }
    .article_content p {
        margin: 0 0 50px;
    }
}

@media screen and (max-width: 760px) {
    .container {
        padding: 0 20px;
    }
    body {
        padding: 94px 0 0;
    }
    header .h_wrap {
        height: 95px;
    }
    header .h_wrap .menu_wrap,
    header .h_wrap .socials,
    header .h_wrap .language {
        display: none;
    }
    header .h_wrap .logo {
        width: 260px;
        min-width: 260px;
        text-align: left;
    }
    header .h_wrap .logo img {
        height: 45px;
    }
    footer .footer_wrap ul li {
        margin: 0 0 50px;
        width: 100%;
    }
    footer .footer_wrap ul a {
        font-size: 36px;
        line-height: 36px;
        width: 100%;
    }
    footer .footer_wrap .col + .col + .col ul a {
        width: 100%;
    }
    footer .footer_wrap ul a i {
        top: -10px;
        right: -10px;
    }

    header .h_wrap .logo {
        order: 1;
    }
    header .h_wrap .open_menu {
        display: block;
        width: 31px;
        background: transparent;
        border: 1px solid transparent;
        outline: none;
        padding: 10px 0;
        margin: 0 0;
        position: relative;
        order: 2;
    }
    header .h_wrap .open_menu span {
        display: block;
        width: 31px;
        height: 3px;
        background: #292929;
        margin:5px 0;
    }
    body.mm_opened header {
        height: 100vh;
        overflow-y: auto;
    }
    body.mm_opened header .h_wrap {
        align-items: flex-start;
        -webkit-align-items: flex-start;
        height: auto;
        padding-top: 36px;
    }
    body.mm_opened header .h_wrap .open_menu {
        margin-top: -10px;
    }
    body.mm_opened header .h_wrap .open_menu span:nth-child(1) {
        transform: rotate(45deg) translate(1px, 2px) scaleX(1.2);
    }
    body.mm_opened header .h_wrap .open_menu span:nth-child(2) {
        transform:rotate(-45deg) translate(4px, -4px) scaleX(1.2);
    }
    body.mm_opened header .h_wrap {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    body.mm_opened header .h_wrap .language {
        order: 1;
        display: block;
        width: 70%;
        min-width: 70%;
        text-align: left;
    }
    body.mm_opened header .h_wrap .logo {
        display: none;
        order: 1;
    }
    body.mm_opened header .h_wrap .socials {
        order: 4;
        display: block;
        width: 100%;
        min-width: 100%;
        text-align: center;
    }
    header .h_wrap .menu_wrap {
        right: 0;
        top: 0;
        position: relative;
        width: 100%;
        margin: 54px 0 40px;
    }
    body.mm_opened header .h_wrap .menu_wrap {
        order: 3;
        display: block;
    }
    header .h_wrap .menu_wrap .menu {
        flex-direction: column;
        transform: rotate(0);
        border-top: 3px solid #292929;
    }
    header .h_wrap .menu_wrap .menu li {
        padding: 0 0;
    }
    header .h_wrap .menu_wrap .menu li a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 0;
        border-bottom: 3px solid #292929;
        background-image: url("../images/arrow_tr_black.svg");
        background-position: right -10px center;
        background-repeat: no-repeat;
        background-size: 44px;
    }
    header .h_wrap .menu_wrap .menu li a span {
        font-size: 24px;
        text-transform: uppercase;
        color: #292929;
    }
    header .h_wrap .menu_wrap .menu li a i {
        display: block;
        font-weight: bold;
        font-size: 18px;
        line-height: 18px;
        text-transform: uppercase;
        color: #2E36CB;
        width: 38px;
        min-width: 38px;
    }
    header .h_wrap .menu_wrap .menu li a::after {
        display: none;
    }

    /*tpl_about*/
    body[data-theme="dark"] header .h_wrap .menu_wrap .menu {border-top: 3px solid #fff;}
    body[data-theme="dark"] header .h_wrap .open_menu span {background: #ffffff;}
    body[data-theme="dark"] header .h_wrap .menu_wrap .menu li a {background-image: url('../images/arrow_tr_white.svg');border-bottom: 3px solid #fff;}


    body[data-theme="blue"] header .h_wrap .menu_wrap .menu {border-top: 3px solid #fff;}
    body[data-theme="blue"] header .h_wrap .open_menu span {background: #ffffff;}
    body[data-theme="blue"] header .h_wrap .menu_wrap .menu li a {background-image: url('../images/arrow_tr_white.svg');border-bottom: 3px solid #fff;}


    body[data-theme="gray"] header .h_wrap .menu_wrap .menu {border-top: 3px solid #fff;}
    body[data-theme="gray"] header .h_wrap .open_menu span {background: #ffffff;}
    body[data-theme="gray"] header .h_wrap .menu_wrap .menu li a {background-image: url('../images/arrow_tr_white.svg');border-bottom: 3px solid #fff;}


    #latest_news .latest_news_list li a.text .more {display: none !important;}
}

/*======*/