@import url('fonts/fonts.css');

/*-- RESET --*/

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea, input, button {
    font-family: inherit;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    border: 0 none;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
html {
	height: 100%;
}
body {
	font-family: 'Poppins', sans-serif;
    font-variant-numeric: lining-nums;
    margin: 0;
	height: 100%;
	width: 100%;
}
a {
	color: #0086d5;
}
a:hover {
	text-decoration: none;
}
ol, ul {
    list-style: outside none none;
}
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
strong, b {
    font-weight: 500;
}
img {
	max-width: 100%;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
img {
	max-width: 100%;
}
button input {
	display: none !important;
}
form *:focus {
    outline: none;
}

/*-- GENERAL --*/

body {
	background-color: #fff;
	background-position: top center;
	background-repeat: no-repeat;
    color: #000;
    height: auto;
    position: relative;
}
.wrapper {
    overflow: clip;
    padding-top: 120px;
    position: relative;
}
.container {
    display: block;
    margin: 0 auto;
    max-width: 1336px;
    padding: 0 12px;
    position: relative;
    width: 100%;
}
.container--large {
    max-width: 1400px;
}

.title_bk {
    color: #101828;
    font-weight: 600;
    font-size: 46px;
}
.title_bk--center {
    text-align: center;
}
.title_bk--white {
    color: #fff;
}
.subtitle_bk {
    font-size: 18px;
    margin-top: 16px;
}
.subtitle_bk > * {
    margin-bottom: 27px;
}
.subtitle_bk > *:last-child {
    margin-bottom: 0;
}
.subtitle_bk--center {
    text-align: center;
    max-width: 644px;
    margin-left: auto;
    margin-right: auto;
}
.subtitle_bk--white {
    color: #fff;
}

.section_bk {
    padding: 80px 0;
}

.btn {
    background: linear-gradient(180deg, #0c4076 0%, #011a35 100%);
    border: none;
    border-radius: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    padding: 0 24px;
    height: 64px;
    transition: 0.25s;
}
.btn:hover {
    opacity: 0.8;
}
.btn_small {
    font-size: 14px;
    padding: 0 18.5px;
    height: 40px;
}

.list {
    margin-top: 32px;
}
.list ul.d_flex {
    gap: 12px 16px;
}
.list ul li {
    color: #0c4076;
    font-weight: 600;
    padding: 2px 0 1px 34px;
    position: relative;
    margin-bottom: 12px;
}
.list ul li:last-child {
    margin-bottom: 0;
}
.list ul li:before {
    background-image: url(../img/icon_list_check.svg);
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    width: 28px;
}
.list ul.d_flex li {
    margin-bottom: 0;
}

/*-- HEADER --*/

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
}
.header_top {
    background: linear-gradient(180deg, #0c4076 0%, #011a35 100%);
}
.header_top_infos {
    gap: 32px;
}
.header_top_info {
    color: #eff4ff;
    font-weight: 500;
    font-size: 16px;
}
.header_top_info > * {
    display: inline-block;
    color: inherit;
    padding-left: 24px;
    position: relative;
    text-decoration: none;
    vertical-align: top;
    transition: 0.25s;
}
.header_top_info > *:before {
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
}
.header_top_info--email > *:before {
    background-image: url(../img/icon_header_email.svg);
}
.header_top_info--address > *:before {
    background-image: url(../img/icon_header_address.svg);
}
.header_top_info a:hover {
    opacity: 0.7;
}
.header_top_phone {
    position: relative;
}
.header_top_phone:after {
    background: #087aea;
    content: '';
    position: absolute;
    left: calc(100% + 12px);
    top: 0;
    height: 100%;
    width: 100vw;
}
.header_top_phone a {
    background: #087aea;
    border-radius: 20px 0 0 20px;
    display: inline-block;
    color: #eff4ff;
    padding: 8px 12px 7px 32px;
    font-weight: 500;
    font-size: 16px;
    margin-right: -12px;
    text-decoration: none;
    vertical-align: top;
    transition: 0.25s;
}
.header_top_phone a:hover {
    background: #0064c8;
}
.header_top_phone a span {
    display: inline-block;
    padding-left: 24px;
    position: relative;
    vertical-align: top;
}
.header_top_phone a span:before {
    background-image: url(../img/icon_header_phone.svg);
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
}
.header_bottom {
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 5px 5px 0 rgba(0,0,0,0.05)
}
.header_bottom.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}
.header_bottom_inside {
    height: 80px;
}
.header_bottom_inside > * {
    flex-shrink: 0;
}
.header_bottom.hidden_menu .header_menu {
    display: none;
}
.header_logo {
    font-size: 0;
}
.header_logo__mobile {
    display: none;
}
.header_menu {
    white-space: nowrap;
}
.header_menu ul {
    gap: 14px;
}
.header_menu a {
    color: #344054;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: 0.25s;
}
.header_menu li.active a,
.header_menu a:hover {
    color: #087aea;
}
.header_actions {
    gap: 10px;
    white-space: nowrap;
    position: relative;
}
.header_btn_dropdown_outer {
    display: none;
}
.header_bottom.hidden_menu .header_btn_dropdown_outer {
    display: block;
}
.header_btn_dropdown {
    cursor: pointer;
    font-size: 0;
    height: 40px;
    width: 40px;
    transition: 0.25s;
}
.header_btn_dropdown:hover {
    opacity: 0.7;
}
.header_btn_dropdown > * {
    pointer-events: none;
}
.header_dropdown {
    background: #eaf4fe;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-150%);
    padding: 16px;
    position: absolute;
    right: 0;
    top: -8px;
    width: 324px;
    transition: 0.25s;
}
.header_dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header_dropdown_top {
    padding-bottom: 16px;
}
.header_dropdown_logo {
    font-size: 0;
}
.header_dropdown_close {
    cursor: pointer;
    font-size: 0;
    transition: 0.25s;
    height: 40px;
    width: 40px;
}
.header_dropdown_close:hover {
    opacity: 0.7;
}
.header_dropdown_close > * {
    pointer-events: none;
}
.header_dropdown_menu {
    text-align: center;
}
.header_dropdown_menu ul li {
    margin-bottom: 8px;
}
.header_dropdown_menu ul li:last-child {
    margin-bottom: 0;
}
.header_dropdown_menu ul li a {
    color: #475467;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    padding: 8px 0;
    vertical-align: top;
    transition: 0.25s;
}
.header_dropdown_menu ul li.active a,
.header_dropdown_menu ul li a:hover {
    color: #087aea;
}
.header_dropdown_infos {
    margin-top: 40px;
}
.header_dropdown_info {
    padding: 16px 0;
}
.header_dropdown_info > * {
    color: #0c4076;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    padding-left: 38px;
    position: relative;
    transition: 0.25s;
}
.header_dropdown_info a:hover {
    opacity: 0.7;
}
.header_dropdown_info > *:before {
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    width: 28px;
}
.header_dropdown_info--phone > *:before {
    background-image: url(../img/icon_header_dropdown_phone.svg);
}
.header_dropdown_info--email > *:before {
    background-image: url(../img/icon_header_dropdown_email.svg);
}
.header_langs_dropdown {
    position: relative;
}
.header_langs_btn {
    background-color: #fff;
    border: none;
    padding: 0 4px;
    gap: 4px;
    cursor: pointer;
    height: 40px;
    transition: 0.25s;
}
.header_langs_flag {
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    border: 1px solid #0d153c;
    height: 16px;
    width: 24px;
}
.header_langs_flag.qtranxs_flag_en {
    background-image: url(../img/flag_en.svg);
}
.header_langs_flag.qtranxs_flag_et {
    background-image: url(../img/flag_et.svg);
}
.header_langs_label {
    color: rgba(13, 21, 60, 0.9);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}
.header_langs_chevron {
    background-image: url(../img/icon_dropdown_arr.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: top;
    height: 16px;
    width: 16px;
    transition: 0.25s;
}
.header_langs_dropdown.is-open .header_langs_chevron {
    transform: rotate(180deg);
}
.header_langs_panel {
    background: #f9fafb;
    box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08);
    border: none;
    border-radius: 10px;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px) translateX(-50%);
    transition: 0.25s;
    width: 147px;
    z-index: 200;
}
.header_langs_dropdown.is-open .header_langs_panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) translateX(-50%);
}
.header_langs_item {
    margin: 0;
    padding: 0;
}
.header_langs_link {
    background-repeat: no-repeat;
    background-image: url(../img/icon_check_disable.svg);
    background-position: calc(100% - 8px) center;
    color: rgba(13,21,60,0.9);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    gap: 4px;
    padding: 0 8px;
    height: 35px;
    transition: 0.25s;
}
.header_langs_link:not(.is-current):hover {
    background-color: #eee;
}
.header_langs_item.is-current .header_langs_link {
    background-color: #fff;
    background-image: url(../img/icon_check_active.svg);
    cursor: default;
}
.header_langs_panel .header_langs_flag.qtranxs_flag {
    height: 16px;
    width: 24px;
}

/*-- FIRST BK --*/

.first_bk {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    position: relative;
}
.ftbk_outer {
    position: relative;
    width: calc(50% - 12px);
}
.ftbk_outer:before {
    background: rgba(0, 14, 48, 0.8);
    backdrop-filter: blur(3.5px);
    border-radius: 0 16px 16px 16px;
    content: '';
    position: absolute;
    right: 0;;
    top: 0;
    height: 100%;
    width: 100vw;
    z-index: 1;
}
.ftbk_inside {
    padding: 77px 64px 77px 0;
    position: relative;
    z-index: 2;
}
.ftbk_icon {
    font-size: 0;
}
.ftbk_title {
    color: #fff;
    font-weight: 600;
    font-size: 50px;
    margin-top: 20px;
}
.ftbk_desc {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    margin-top: 28px;
}
.ftbk_desc > * {
    margin-bottom: 43px;
}
.ftbk_desc > *:last-child {
    margin-bottom: 0;
}

/*-- INQUIRY --*/

.inquiry {
    background-image: url(../img/bg_about.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 56px 0;
}
.row.row_inquiry_features {
    margin: 0 -12px 0;
}
.row.row_inquiry_features > .col {
    padding: 0 12px;
    margin-bottom :0;
}
.inquiry_feature {
    padding: 16px;
    text-align: center;
}
.inquiry_feature_icon {
    background: linear-gradient(180deg, #0c4076 0%, #011a35 100%);
    border-radius: 16px;
    font-size: 0;
    margin: 0 auto;
    height: 80px;
    width: 80px;
}
.inquiry_feature_title {
    color: #101828;
    font-weight: 600;
    font-size: 18px;
    margin-top: 12px;
}
.inquiry_feature_desc {
    color: #101828;
    margin-top: 8px;
}

.inquiry_form {
    background: #f9fafb;
    border: 1px solid #D3D8DF;
    border-radius: 18px;
    padding: 24px;
    margin: -276px auto 0;
    width: calc(100% - 114px);
}
.inquiry_form_title {
    color: #101828;
    font-weight: 600;
    font-size: 38px;
    text-align: center;
}
.inquiry_form_fields {
    margin-top: 24px;
}
.row.row_inquiry_form_fields {
    margin: 0 -8px -16px;
}
.row.row_inquiry_form_fields > .col {
    padding: 0 8px;
    margin-bottom: 16px;
}
.inquiry_form_field input,
.inquiry_form_field textarea {
    background: #eaecf0;
    border: none;
    border-radius: 12px;
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    width: 100%;
}
.inquiry_form_field input {
    height: 59px;
}
.inquiry_form_field textarea {
    padding-bottom: 16px;
    padding-top: 16px;
    height: 160px;
}
.inquiry_form_field input::-webkit-input-placeholder,
.inquiry_form_field textarea::-webkit-input-placeholder {
    color: #344054;
}
.inquiry_form_field input::-moz-placeholder,
.inquiry_form_field textarea::-moz-placeholder {
    color: #344054;
}
.inquiry_form_field input:-ms-input-placeholder,
.inquiry_form_field textarea:-ms-input-placeholder {
    color: #344054;
}
.inquiry_form_field input:-moz-placeholder,
.inquiry_form_field textarea:-moz-placeholder {
    color: #344054;
}
.inquiry_form_field--submit {
    margin-top: 16px;
}
.inquiry_form_field--submit .btn {
    width: 100%;
}
.inquiry_form_privacy {
    color: #344054;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

/*-- ABOUT --*/

.about {
    background: #eaf4fe;
}
.about_image {
    font-size: 0;
}
.about_image img {
    border-radius: 16px;
}
.about_image__mobile {
    display: none;
}

/*-- AREAS --*/

.areas_items {
    margin-top: 32px;
}
.areas_item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    min-height: 380px;
    height: 100%;
}
.areas_item:after {
    background: linear-gradient(180deg, rgba(0, 14, 48, 0.27) 0%, rgba(0, 14, 48, 0.9) 80%);
    border-radius: inherit;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.areas_item_info {
    position: relative;
    z-index: 2;
}
.areas_item_title {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.areas_item_desc {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin-top: 8px;
}

/*-- TRADE --*/

.trade {
    background: #eaf4fe;
}
.trade_image {
    font-size: 0;
}
.trade_image img {
    border-radius: 16px;
}
.trade_image__mobile {
    display: none;
}
.trade_inside {
    padding: 0 24px;
}

/*-- OFFER --*/

.offer {
    background: linear-gradient(180deg, #0c4076 0%, #011a35 100%);
}
.offer_items {
    margin-top: 32px;
}
.offer_item {
    text-align: center;
    padding: 16px;
}
.offer_item_icon {
    font-size: 0;
}
.offer_item_title {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-top: 8px;
}
.offer_item_desc {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    margin-top: 8px;
}

/*-- WORK --*/

.work {
    background: #eaf4fe;
}
.work_items {
    counter-reset: works;
    margin-top: 32px;
}
.row.row_work_items {
    margin-bottom: -16px;
}
.row.row_work_items .col {
    margin-bottom: 16px;
}
.work_item {
    counter-increment: works;
    padding: 24px 0;
}
.work_item_count {
    position: relative;
    height: 100%;
    width: 102px;
}
.work_item_count:before {
    content: '0' counter(works);
    color: #087aea;
    font-weight: 500;
    font-size: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.work_item_count:after {
    background: #0c4076;
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 50px;
    z-index: 1;
}
.work_item_info {
    padding-left: 8px;
    width: calc(100% - 102px);
}
.work_item_title {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    padding: 10px 0;
}
.work_item_desc {
    color: #101828;
}

/*-- CHOOSE --*/

.choose_items {
    margin-top: 44px;
}
.row.row_choose_items {
    margin-bottom: -18px;
}
.row.row_choose_items .col {
    margin-bottom: 18px;
}
.choose_item {
    background: linear-gradient(180deg, #0c4076 0%, #011a35 100%);
    border-radius: 16px;
    padding: 10px 17px;
    min-height: 60px;
    height: 100%;
}
.choose_item_icon {
    font-size: 0;
    width: 60px;
}
.choose_item_title {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding-left: 9px;
    width: calc(100% - 60px);
}

/*-- FOOTER --*/

.footer {
    background: linear-gradient(180deg, #0c4076 0%, #011a35 100%);
    border-radius: 16px 16px 0 0;
    padding: 44px 0;
}
.footer_logo {
    font-size: 0;
}
.footer_infos {
    gap: 64px;
}
.footer_info > * {
    color: #fff;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    padding-left: 32px;
    position: relative;
    vertical-align: top;
    text-decoration: none;
    transition: 0.25s;
}
.footer_info a:hover {
    opacity: 0.7;
}
.footer_info > *:before {
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    width: 28px;
}
.footer_info--email > *:before {
    background-image: url(../img/icon_footer_email.svg);
}
.footer_info--phone > *:before {
    background-image: url(../img/icon_footer_phone.svg);
}
.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    padding-top: 16px;
}
.footer_copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 100%;
    text-align: center;
}

/*-- CUSTOM --*/

.wpcf7-form {
    position: relative;
}
.wpcf7-form .wpcf7-spinner {
    display: none;
}
.wpcf7-form .wpcf7-response-output {
    background: #fff;
    padding: 4px !important;
    position: absolute;
    font-size: 12px;
    text-align: center;
    left: 0;
    right: 0;
    top: 100%;
}
.wpcf7-form .wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-form .wpcf7-not-valid {
    box-shadow: 0 0 0 1px #ff0000;
}

/* ADDITIONAL RESET */

.row {
	margin-left: -12px;
	margin-right: -12px;
    margin-bottom: -24px;
}
.row .col {
    padding: 0 12px;
    margin-bottom: 24px;
}
.row.no_mg {
    margin: 0;
}
.row.no_mg .col {
    padding: 0;
    margin: 0;
}
.col-1 {
	width: 100%;
}
.col-2 {
	width: 50%;
}
.col-3 {
	width: 33.3333333%;
}
.col-30 {
	width: 30%;
}
.col-35 {
	width: 35%;
}
.col-4 {
	width: 25%;
}
.col-5 {
	width: 20%;
}
.col-6 {
    width: calc(100% / 6);
}
.col-66 {
    width: calc(100% - (100% / 3));
}

.col-41 {
    width: 41.67%;
}
.col-58 {
    width: 58.33%;
}

.d_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.f_wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.f_wrap_reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.f_no_wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.f_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.f_direction_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.j_content_start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.j_content_end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.j_content_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.j_content_between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.a_items_start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.a_items_end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.a_items_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/*-- ANIMATION --*/

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/*--------------- RESPONSIVE ---------------*/

.menu_btn_outer {
    display: none;
}
.menu_btn {
    cursor: pointer;
    font-size: 0;
    height: 32px;
    width: 32px;
}
.menu_btn > * {
    pointer-events: none;;
}

.mobile_header_wrapper {
    background: #eaf4fe;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-125%);
    transition: 0.25s;
}
.mobile_header_wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mobile_header_wrapper > div,
.mobile_header_wrapper > div > div {
    height: 100%;
}
.mobile_header {
    padding-bottom: 32px;
    overflow: auto;
}
.mobile_header_top {
    padding: 16px 0;
}
.mobile_header_close {
    cursor: pointer;
    font-size: 0;
    height: 32px;
    width: 32px;
}
.mobile_header_close > * {
    pointer-events: none;
}
.mobile_header .header_dropdown_menu {
    margin-top: 32px;
}
.mobile_header .header_callback {
    max-width: 345px;
    margin: 24px auto 0;
}

@media screen and (max-width: 1170px) {
    .ftbk_icon {
        max-width: 80px;
    }
    .ftbk_title {
        font-size: 27px;
    }
    .ftbk_desc {
        margin-top: 12px;
        font-size: 16px;
    }
    .ftbk_desc > * {
        margin-bottom: 19px;
    }
}

@media screen and (max-width: 1024px) {
    .section_bk {
        padding: 64px 0;
    }
    .container {
        padding: 0 16px;
    }
    .title_bk {
        font-size: 32px;
    }
    .subtitle_bk {
        font-size: 16px;
        margin-top: 10px;
    }
    .subtitle_bk > * {
        margin-bottom: 19px;
    }
    .btn {
        font-size: 14px;
        height: 48px;
    }
    .first_bk {
        padding-bottom: 340px;
    }
    .ftbk_outer {
        width: 100%;
    }
    .ftbk_outer:before {
        display: none;
    }
    .ftbk_inside {
        background: rgba(0, 14, 48, 0.8);
        border-radius: 0 0 16px 16px;
        padding: 64px 16px 36px;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    .inquiry {
        padding: 64px 0;
    }
    .row.row_inquiry_cols > .col {
        width: 100%;
    }
    .row.row_inquiry_cols > .col:nth-child(1) {
        order: 1;
    }
    .inquiry_form {
        max-width: 420px;
        margin-top: -359px;
        padding: 16px;
        width: 100%;
    }
    .inquiry_form_title {
        font-size: 24px;
    }
    .inquiry_form_fields {
        margin-top: 20px;
    }
    .row.row_inquiry_form_fields > .col {
        width: 100%;
    }
    .inquiry_form_field input, 
    .inquiry_form_field textarea {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 14px;
    }
    .inquiry_form_field input {
        height: 44px;
    }
    .inquiry_form_field textarea {
        height: 100px;
    }
    .inquiry_form_field--submit {
        margin-top: 4px;
    }
    .row.row_inquiry_features {
        margin: 0 -6px 0;
    }
    .row.row_inquiry_features > .col {
        padding: 0 6px;
    }
    .inquiry_features {
        max-width: 640px;
        margin: 0 auto;
    }
    .inquiry_feature {
        padding: 16px 0;
    }
    .inquiry_feature_icon {
        height: 64px;
        width: 64px;
    }
    .inquiry_feature_icon img {
        max-width: 38px;
    }
    .inquiry_feature_title {
        font-size: 14px;
        margin-top: 8px;
    }
    .inquiry_feature_desc {
        font-size: 14px;
        margin-top: 4px;
    }
    .about {
        border-radius: 16px;
        position: relative;
    }
    .about:before {
        background: #fff;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }
    .trade_inside {
        padding: 0;
    }
    .offer {
        border-radius: 16px;
        position: relative;
    }
    .offer:before {
        background: #eaf4fe;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }
    .row.row_offer_items {
        margin: 0 -8px -16px;
    }
    .row.row_offer_items .col {
        padding: 0 8px;
        margin-bottom: 16px;
    }
    .work_item_count {
        width: 73px;
    }
    .work_item_count:after {
        width: 24px;
    }
    .work_item_info {
        width: calc(100% - 73px);
    }
    .work_item_title {
        font-size: 18px;
        padding: 10px 0;
        line-height: 156%;
    }
}

@media screen and (max-width: 968px) {
    .wrapper {
        padding-top: 64px;
    }
    .header_top {
        display: none;
    }
    .header_bottom {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 10;
    }
    .header_bottom_inside {
        height: 64px;
    }
    .header_logo {
        max-width: 252px;
    }
    .header .header_callback,
    .header .header_btn_dropdown_outer,
    .header .header_dropdown {
        display: none !important;
    }
    .menu_btn_outer {
        display: block;
    }
}

@media screen and (max-width: 860px) {
    .footer {
        padding: 32px 0 24px;
    }
    .footer_top {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
    }
    .footer_infos {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
    .footer_info > * {
        padding: 8.5px 0 8.5px 32px;
    }
    .footer_bottom {
        margin-top: 20px;
    }
    .footer_copyright {
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .list {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 24px;
    }
    .list ul li {
        font-size: 14px;
    }
    .row.row_about_cols .col {
        width: 100%;
    }
    .about_image__desktop {
        display: none;
    }
    .about_image__mobile {
        display: block;
        max-width: 420px;
        margin: 24px auto 0;
    }
    .areas_items {
        margin-top: 24px;
    }
    .row.row_areas_items .col {
        width: 100%;
    }
    .areas_item {
        padding: 16px;
        max-width: 420px;
        margin: 0 auto;
    }
    .areas_item_title {
        font-size: 16px;
    }
    .areas_item_desc {
        font-size: 14px;
    }
    .trade {
        border-radius: 16px;
        position: relative;
    }
    .trade:before {
        background: #fff;
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }
    .row.row_trade_cols .col {
        width: 100%;
    }
    .trade_image__desktop {
        display: none;
    }
    .trade_image__mobile {
        display: block;
        margin: 24px auto 0;
        max-width: 420px;
    }
    .offer_items {
        margin-top: 24px;
    }
    .row.row_offer_items .col {
        width: 100%;
    }
    .offer_item {
        max-width: 420px;
        margin: 0 auto;
    }
    .work_items {
        margin-top: 24px;
    }
    .row.row_work_items .col {
        width: 100%;
    }
    .work_item {
        max-width: 420px;
        margin: 0 auto;
    }
    .choose_items {
        margin-top: 33px;
    }
    .row.row_choose_items {
        margin-bottom: -12px;
    }
    .row.row_choose_items .col {
        margin-bottom: 12px;
        width: 100%;
    }
    .choose_item {
        max-width: 540px;
        margin: 0 auto;
        padding: 10px 12px;
    }
    .choose_item_title {
        font-size: 15px;
        font-weight: 500;
        padding-left: 4px;
    }
}

@media screen and (max-width: 480px) {
    .header_logo__desktop {
        display: none;
    }
    .header_logo__mobile {
        display: block;
    }
}

@media screen and (max-width: 420px) {
    .ftbk_inside {
        margin: 0 -16px;
        max-width: auto;
        width: calc(100% + 32px);
    }
}