@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Russo+One&display=swap');

/*-- 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: 'Montserrat';
    margin: 0;
	height: 100%;
	width: 100%;
}
a {
	color: #027b84;
}
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: 700;
}
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: #e6e6e6;
	background-position: top center;
	background-repeat: no-repeat;
    color: #000;
    height: auto;
    position: relative;
}
.container {
    display: block;
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 10px;
    position: relative;
    width: 100%;
}
.wrapper {
    overflow: hidden;
    position: relative;
}

.title_head {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
}
.title_bk {
    color: #fff;
    font-family: "Russo One";
    font-weight: 400;
    font-size: 34px;
    text-transform: uppercase;
}
.title_head_left {
    margin-right: 30px;
    flex: 1 auto auto;
}
.title_head_right {
    flex: auto;
}
.title_head_lines {
    margin: 0 -10px;
}
.title_head_lines span {
    padding: 0 10px;
    width: 25%;
}
.title_head_lines span:before,
.title_head_lines span:after {
    background: #fff;
    display: block;
    content: '';
    height: 4px;
    width: 100%;
}
.title_head_lines span:after {
    margin-top: 11px;
}

.btn {
    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;
    background: #da291c;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    padding: 10px 30px;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    height: 50px;
    transition: 0.25s;
}
.btn:hover {
    opacity: 0.7;
}
.btn_red_transparent {
    background: none;
    border: 4px solid #da291c;
    border-radius: 0;
    color: #da291c;
    font-size: 24px;
    height: 69px;
}

/*-- HEADER --*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
}
.header_inside {
    background: #000;
    padding: 0 30px;
}
.header_logo {
    font-size: 0;
}
.header_logo a {
    transition: 0.25s;
}
.header_logo a:hover {
    opacity: 0.7;
}
.header_menu {
    font-size: 0;
}
.header_menu ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}
.header_menu ul li:last-child {
    margin-right: 0;
}
.header_menu ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    height: 70px;
    padding: 0 10px;
    position: relative;
    transition: 0.25s;
}
.header_menu ul li a:after {
    background: #43b02a;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 0;
    transition: 0.25s;
}
.header_menu ul li a:hover:after,
.header_menu ul li.active a:after {
    width: 100%;
}
.header_menu ul li a span {
    transition: 0.25s;
}
.header_menu ul li a span:nth-child(2) {
    font-weight: 800;
    color: #43b02a;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    transition: 0.25s;
}
.header_menu ul li a:hover span:nth-child(1),
.header_menu ul li.active a span:nth-child(1) {
    opacity: 0;
}
.header_menu ul li a:hover span:nth-child(2),
.header_menu ul li.active a span:nth-child(2) {
    opacity: 1;
}
.header_info {
    height: 100%;
}
.header_info_title {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 0 15px;
}
.header_info_phone,
.header_info_email {
    height: 70px;
    position: relative;
}
.header_info_phone:before,
.header_info_email:before {
    background: #da291c;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
}
.header_info_phone {
    padding: 0 5px 0 15px;
}
.header_info_email {
    padding: 0 15px 0 5px;
}
.header_info_phone a,
.header_info_email a {
    font-weight: 800;
    font-size: 14px;
    color: #da291c;
    text-decoration: none;
    transition: 0.25s;
}
.header_info_phone a:hover,
.header_info_email a:hover {
    opacity: 0.7;
}
.header_langs {
    font-size: 0;
    padding: 0 10px;
}
.header_langs ul li {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}
.header_langs ul li:last-child {
    margin-right: 0;
}
.header_langs ul li a {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s;
}
.header_langs ul li.active a,
.header_langs ul li a:hover {
    color: #da291c;
}

/*-- FIRST BK --*/

.first_bk {
    padding-top: 90px;
}
.ftbk_inside {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    padding: 30px;
    height: 420px;
}
.ftbk_title {
    font-family: "Russo One";
    font-weight: 400;
    font-size: 62px;
    letter-spacing: 0.01em;
    color: #fff;
    padding: 0 20px 0 127px;
    position: relative;
}
.ftbk_title_icon {
    font-size: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    pointer-events: none;
    height: 190px;
}

/*-- DESCRIPTION TOP --*/

.ftbk_form_outside {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px 63px;
}
.ftbk_form_title {
    font-family: "Russo One";
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    color: #fff;
}
.ftbk_form {
    margin-top: 25px;
}
.ftbk_form_field--input {
    margin-top: 10px;
}
.ftbk_form_field:first-child {
    margin-top: 0; 
}
.ftbk_form_field__label {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}
.ftbk_form_field__label span {
    color: #da291c;
}
.ftbk_form_field__input {
    margin-top: 8px;
}
.ftbk_form_field__input input {
    background: #fff;
    border: none;
    border-radius: 5px;
    color: #000;
    padding: 0 10px;
    font-weight: 400;
    font-size: 14px;
    height: 30px;
    width: 100%;
}
.ftbk_form_field__input input::-webkit-input-placeholder {
    color: #000;
}
.ftbk_form_field__input input::-moz-placeholder {
    color: #000;
}
.ftbk_form_field__input input:-ms-input-placeholder {
    color: #000;
}
.ftbk_form_field__input input:-moz-placeholder {
    color: #000;
}
.ftbk_form_field--required {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #fff;
    margin-top: 10px;
}
.ftbk_form_field--submit {
    margin-top: 25px;
}
.ftbk_form_field--submit .btn {
    width: 100%;
}

.description_top {
    margin-top: 20px;
}
.description_top_inside {
    background: #fff;
    border-left: 4px solid #da291c;
    border-right: 4px solid #da291c;
    padding: 20px 26px;
}
.description_top_col_left {
    padding-right: 20px;
    width: calc(100% - 400px);
}
.description_top_col_right {
    position: relative;
    width: 400px;
}
.description_top_content {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    color: #000;
}
.description_top_content > * {
    margin-bottom: 22px;
}
.description_top_content > *:last-child {
    margin-bottom: 0;
}

/*-- TRANSPORT MODE --*/

.transport_mode {
    margin-top: 20px;
}
.transport_mode_items {
    margin-top: 20px;
}
.transport_mode_item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    padding: 30px 15px;
    position: relative;
    height: 500px;
}
.transport_mode_item:after {
    background: linear-gradient(180deg, #0072ce 0%, rgba(0, 114, 206, 0) 40%);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.transport_mode_item__title {
    color: #fff;
    font-family: "Russo One";
    font-weight: 400;
    font-size: 34px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/*-- OUR PARTNERS --*/

.our_partners {
    margin-top: 20px;
}
.our_partners_bk {
    background: #fff;
    border-left: 4px solid #da291c;
    border-right: 4px solid #da291c;
    padding: 34.5px 15px;
    text-align: center;
}
.our_partners_title {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #000;
}
.our_partners_title span {
    color: #da291c;
}
.our_partners_desc {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-top: 20px;
}

.our_partners_items {
    margin-top: 20px;
}
.our_partners_item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    padding: 30px 15px 42px;
    position: relative;
    text-align: center;
    height: 340px;
}
.our_partners_item:after {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 50%), linear-gradient(180deg, rgba(218, 41, 28, 0) 50%, #da291c 100%);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.our_partners_item__title,
.our_partners_item__desc {
    font-family: "Russo One";
    font-weight: 400;
    font-size: 28px;
    position: relative;
    color: #fff;
    z-index: 2;
}
.our_partners_item__desc {
    text-transform: uppercase;
}

/*-- BENEFITS --*/

.benefits {
    margin-top: 20px;
}
.benefits .title_head_lines span:after {
    display: none;
}
.benefits_icons_outside {
    background: #fff;
    margin-top: 20px;
    padding: 40px 15px;
}
.benefits_icons {
    max-width: 940px;
    margin: 0 auto;
}
.benefits_icon {
    font-size: 0;
    text-align: center;
    height: 100%;
}
.benefits_infos_outside {
    background: linear-gradient(157deg, rgba(0, 0, 0, 0.8) 0%, #000 100%);
    margin-top: 10px;
    padding: 30px 15px;
}
.benefits_infos {
    max-width: 950px;
    margin: 0 auto;
}
.benefits_info_icon {
    display: none;
}
.benefits_info {
    text-align: center;
}
.benefits_info_title {
    font-weight: 800;
    font-size: 22px;
    color: #fff;
}
.benefits_info_desc {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}

/*-- CONTACT US --*/

.contact_us {
    margin-top: 20px;
}
.contact_us_inside {
    background: #fff;
    padding: 34.5px 120px;
}
.contact_us_left {
    width: 340px;
}
.contact_us_right {
    text-align: center;
    padding-left: 140px;
    width: calc(100% - 340px);
}
.contact_us_title {
    font-weight: 800;
    font-size: 24px;
    color: #da291c;
    text-transform: uppercase;
}
.contact_us_desc {
    font-weight: 500;
    font-size: 18px;
    color: #da291c;
    margin-top: 20px;
}

/*-- ABOUT --*/

.about {
    margin-top: 20px;
}
.about .title_head_lines {
    margin: 0;
}
.about .title_head_lines span {
    padding: 0;
}
.about .title_head_lines span:after {
    display: none;
}
.about_contacts_cols {
    margin-top: 20px;
}
.about_contacts_col_left {
    padding-right: 20px;
    width: calc(100% - 340px);
}
.about_contacts_col_right {
    width: 340px;
}
.about_contacts_col_left > *,
.about_contacts_col_right > * {
    height: 100%;
}
.about_contacts_basic {
    background-image: url(../img/bg_about_basic.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 40px 40px;
}
.about_basic_desc {
    font-weight: 600;
    font-size: 28px;
    color: #fff;
    max-width: 900px;
}
.about_basic_desc > * {
    margin-bottom: 10px;
}
.about_basic_desc > *:last-child {
    margin-bottom: 0;
}
.about_basic_infos {
    margin-top: 30px;
}
.about_basic_info {
    margin-bottom: 20px;
}
.about_basic_info:last-child {
    margin-bottom: 0;
}
.about_basic_info__title {
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    color: #da291c;
}
.about_basic_info__value {
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.35;
}
.about_basic_info__value a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s;
}
.about_basic_info__value a:hover {
    opacity: 0.7;
}
.about_contacts_side {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 40px 60px;
}
.about_side_logo {
    border-bottom: 4px solid #000;
    padding-bottom: 50px;
    margin-top: -8px;
    font-size: 0;
}
.about_side_infos {
    margin-top: 70px;
}
.about_side_info {
    margin-bottom: 40px;
}
.about_side_info:last-child {
    margin-bottom: 0;
}
.about_side_info__title {
    font-weight: 600;
    font-size: 18px;
    color: #000;
}
.about_side_info__value {
    font-weight: 700;
    font-size: 18px;
    color: #da291c;
    margin-top: 10px;
}
.about_side_info__value a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s;
}
.about_side_info__value a:hover {
    opacity: 0.7;
}

/*-- FOOTER --*/

.footer {
    margin-top: 20px;
}
.footer_inside {
    background: #fff;
    padding: 13.5px 40px;
}
.footer_copyright {
    font-weight: 500;
    font-size: 16px;
    color: #000;
}
.footer_privacy {
    font-weight: 500;
    font-size: 16px;
    text-align: right;
    color: #000;
}
.footer_privacy span {
    display: block;
    margin-bottom: 5px;
}
.footer_privacy span:last-child {
    margin-bottom: 0;
}

/*-- LIGHTBOX CUSTOM --*/

.lb-outerContainer {
    border-radius: 0;
}
.lb-data .lb-details {
    display: none;
}
.lightbox .lb-image {
    object-fit: cover;
    border-radius: 0;
    border: none;
}
.lb-nav {
    top: calc(100% - 32px);
    height: 32px;
    width: 72px;
}
.lb-nav a {
    background-color: rgba(0, 0, 0, 0.7) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 16px !important;
    opacity: 1 !important;
    height: 32px !important;
    width: 32px !important;
    transition: 0.25s !important;
}
.lb-nav a.lb-prev {
    background-image: url(../img/icon_lightbox_prev.svg);
    margin-right: 8px;
}
.lb-nav a.lb-next {
    background-image: url(../img/icon_lightbox_next.svg);
    float: left;
}
.lb-nav a:hover {
    background-color: rgba(0, 0, 0, 0.9) !important;
}
.lb-dataContainer {
    padding-top: 0;
    position: relative;
}
.lb-data .lb-close {
    background-color: rgba(0, 0, 0, 0.7) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 16px !important;
    background-image: url(../img/icon_lightbox_close.svg);
    opacity: 1 !important;
    height: 32px !important;
    width: 32px !important;
    transition: 0.25s !important;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
}
.lb-data .lb-close:hover {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/*-- CUSTOM --*/

.ftbk_form_outside--new {
    padding: 44px 45px;
}
.ftbk_form_image {
    font-size: 0;
	text-align: center;
}

.wpcf7-not-valid-tip {
    display: none !important;
}
.ftbk_form_field__input input.wpcf7-not-valid {
    box-shadow: 0 0 0 1px #ff0000;
}
.wpcf7-spinner {
    display: none !important;
}
form {
    position: relative;
}
.wpcf7-response-output {
    background: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5);
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    padding: 5px 8px 4px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin: 0 !important;
}

/* ADDITIONAL RESET */

.row {
	margin-left: -10px;
	margin-right: -10px;
    margin-bottom: -20px;
}
.row .col {
    padding: 0 10px;
    margin-bottom: 20px;
}
.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 {
    display: none;
    cursor: pointer;
    width: 32px;
    transition: 0.25s;
}
.menu_btn:hover {
    opacity: 0.7;
}
.menu_btn span {
    background: #fff;
    display: block;
    margin-bottom: 7px;
    height: 4px;
}
.menu_btn span:last-child {
    margin-bottom: 0;
}

.header_mobile_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    height: 100vh;
    z-index: 999;
    transition: 0.25s;
}
.header_mobile_wrapper.active {
    top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header_mobile_wrapper .container,
.header_mobile {
    height: 100%;
}
.header_mobile {
    background: #000;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    margin: 0 -10px;
    padding: 0 10px;
}
.header_mobile_top {
    height: 55px;
    padding: 10px 20px;
}
.mobile_close {
    position: relative;
    height: 32px;
    width: 32px;
}
.mobile_close span {
    display: block;
    background: #fff;
    border-radius: 4px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 5px;
    width: 100%;
}
.mobile_close span:nth-child(1) {
    transform: translateY(-50%) rotate(-45deg);
}
.mobile_close span:nth-child(2) {
    transform: translateY(-50%) rotate(45deg);
}
.header_mobile_body {
    overflow: auto;
    padding: 24px 20px;
    max-width: 420px;
    margin: 0 auto;
    height: calc(100% - 55px);
}
.header_mobile_body .header_info_wrapper,
.header_mobile_body .header_langs {
    display: block;
}
.header_mobile_body .header_info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}
.header_mobile_body .header_info_title {
    padding: 0;
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
}
.header_mobile_body .header_info_phone {
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
}
.header_mobile_body .header_info_email {
    margin: 0;
    height: auto;
}
.header_mobile_body .header_langs {
    padding: 0;
    margin-top: 24px;
}
.header_mobile_menu ul li {
    margin-bottom: 12px;
}
.header_mobile_menu ul li:last-child {
    margin-bottom: 0;
}
.header_mobile_menu ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: 0.25s;
    height: 30px;
}
.header_mobile_menu ul li a span {
    transition: 0.25s;
}
.header_mobile_menu ul li a span:nth-child(2) {
    font-weight: 800;
    color: #43b02a;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.25s;
}
.header_mobile_menu ul li.active a span:nth-child(1),
.header_mobile_menu ul li a:hover span:nth-child(1) {
    opacity: 0;
}
.header_mobile_menu ul li.active a span:nth-child(2),
.header_mobile_menu ul li a:hover span:nth-child(2) {
    opacity: 1;
}
.header_mobile_body .header_info_phone:before,
.header_mobile_body .header_info_email:before {
    display: none;
}
.header_mobile_body .header_info_phone a,
.header_mobile_body .header_info_email a {
    font-size: 16px;
    font-weight: 600;
}

@media screen and (max-width: 1440px) {
    .ftbk_title {
        font-size: 48px;
    }
}

@media screen and (max-width: 1366px){
    .header_menu ul li {
        margin-right: 8px;
    }
    .header_menu ul li a,
    .header_info_title,
    .header_info_phone a, 
    .header_info_email a,
    .header_langs ul li a {
        font-size: 13px;
    }
}

@media screen and (max-width: 1280px) {
    .header_inside {
        padding: 0 20px;
    }
    .header_logo {
        max-width: 125px;
    }
    .header_menu ul li {
        margin-right: 5px;
    }
    .header_menu ul li a {
        padding: 0 5px;
    }
    .header_info_title,
    .header_info_phone, 
    .header_info_email {
        padding: 0 5px;
    }
    .header_langs {
        padding: 0;
    }
    .ftbk_title_icon {
        height: 134px;
        width: 100px;
    }
    .ftbk_title {
        padding-left: 90px;
        font-size: 36px;
    }
}

@media screen and (max-width: 1170px) {
    .header_menu ul li a, 
    .header_info_title, 
    .header_info_phone a, 
    .header_info_email a, 
    .header_langs ul li a {
        font-size: 12px;
    }
    .transport_mode_item__title {
        font-size: 24px;
    }
    .transport_mode_item {
        height: 400px;
    }
}

@media screen and (max-width: 1024px) {
    .header_menu,
    .header_info_wrapper,
    .header_langs {
        display: none;
    }
    .menu_btn {
        display: block;
    }
    .header_inside {
        height: 55px;
    }
    .first_bk {
        padding-top: 75px;
    }
    .description_top_inside {
        background: none;
        border: none;
        padding: 0;
    }
    .description_top_col_left {
        background: #fff;
        border-left: 4px solid #da291c;
        border-right: 4px solid #da291c;
        padding: 20px 26px;
        order: 1;
        width: 100%;
        margin-top: 20px;
    }
    .description_top_col_right {
        order: 0;
        width: 100%;
    }
    .ftbk_form_outside {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    .description_top_col_left {
        padding: 20px 16px;
    }
    .description_top_content {
        font-size: 17px;
        line-height: 1.35;
    }
    .description_top_content > * {
        margin-bottom: 10px;
    }
    .ftbk_inside {
        height: 350px;
    }
    .ftbk_title {
        font-size: 40px;
        padding-right: 0;
        width: 100%;
    }
    .title_bk {
        font-size: 24px;
    }
    .title_head_lines span:before, 
    .title_head_lines span:after {
        height: 3px;
    } 
    .title_head_lines span:after {
        margin-top: 6px;
    }
    .our_partners_item {
        padding: 20px 15px;
        height: 280px;
    }
    .our_partners_item__title, 
    .our_partners_item__desc {
        font-size: 20px;
    }
    .benefits_icons_outside {
        display: none;
    }
    .benefits_infos_outside {
        margin-top: 20px;
    }
    .benefits_infos .col {
        width: 50%;
    }
    .benefits_info {
        max-width: 280px;
        margin: 0 auto;
    }
    .benefits_info_icon {
        text-align: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 99px;
    }
    .benefits_info_icon img {
        max-width: 80px;
    }
    .benefits_info_title {
        margin-top: 20px;
    }
    .contact_us_inside {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px;
    }
    .contact_us_left {
        order: 1;
        margin: 20px auto 0;
        max-width: 280px;
        width: 100%;
    }
    .contact_us_right {
        padding: 0;
        width: 100%;
    }
    .about_contacts_col_left {
        padding: 0;
        width: 100%;
    }
    .about_contacts_col_right {
        max-width: 540px;
        margin: 20px auto 0;
        width: 100%;
    }
    .about_contacts_side {
        padding: 20px;
    }
    .about_side_logo {
        margin-top: 0;
        padding-bottom: 25px;
    }
    .about_side_logo img {
        max-width: 75px;
    }
    .about_side_infos {
        margin-top: 25px;
    }
    .about_side_info {
        margin-bottom: 15px;
    }
    .about_side_info__title {
        font-size: 14px;
    }
    .about_side_info__value {
        font-size: 15px;
        margin-top: 5px;
    }
    .about_basic_desc {
        font-size: 20px;
    }
    .about_basic_desc > * {
        margin-bottom: 6px;
    }
    .about_basic_infos {
        margin-top: 15px;
    }
    .about_basic_info {
        margin-bottom: 10px;
    }
    .about_basic_info__title,
    .about_basic_info__value {
        font-size: 17px;
    }
    .about_basic_info__value {
        margin-top: 5px;
    }
    .footer_inside {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer_privacy {
        text-align: center;
        width: 100%;
    }
    .footer_copyright {
        text-align: center;
        margin-top: 12px;
        width: 100%;
        order: 1;
    }
	.ftbk_form_outside--new {
		max-width: 400px;
	}
}

@media screen and (max-width: 768px) {
    .description_top_content {
        font-size: 15px;
    }
    .transport_mode_item__title {
        font-size: 20px;
    }
    .transport_mode_items .col {
        width: 50%;
    }
    .transport_mode_item {
        max-width: 240px;
        margin: 0 auto;
    }
    .title_head {
        padding: 12px 20px;
    }
    .title_head_lines span {
        width: calc(100% / 3);
    }
    .title_head_lines span:nth-child(3) {
        display: none;
    }
    .title_bk {
        font-size: 22px;
    }
    .our_partners_bk {
        padding: 20px 16px;
    }
    .our_partners_title {
        font-size: 18px;
    }
    .our_partners_desc {
        font-size: 16px;
        margin-top: 10px;
    }
    .our_partners_items .col {
        width: 50%;
    }
    .our_partners_item {
        max-width: 280px;
        margin: 0 auto;
    }
    .btn_red_transparent {
        font-size: 18px;
        height: 50px;
    }
    .contact_us_left {
        max-width: 240px;
    }
    .contact_us_title {
        font-size: 20px;
    }
    .contact_us_desc {
        margin-top: 10px;
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
	.ftbk_title {
		padding-left: 100px;
		font-size: 50px;
	}
}

@media screen and (max-width: 540px) {
    .ftbk_inside {
        padding: 20px;
        height: 300px;
    }
    .ftbk_title {
        padding-left: 70px;
        font-size: 32px;
    }
    .ftbk_title_icon {
        height: 90px;
        width: 70px;
    }
    .transport_mode_item {
        height: 300px;
    }
    .title_head_lines span {
        width: 50%;
    }
    .title_head_lines span:nth-child(2),
    .title_head_lines span:nth-child(3) {
        display: none;
    }
    .our_partners_title {
        font-size: 16px;
    }
    .our_partners_desc {
        font-size: 14px;
    }
    .benefits_info_icon {
        height: 60px;
    }
    .benefits_info_icon img {
        max-width: 50px;
    }
    .benefits_info_title {
        font-size: 16px;
        margin-top: 10px;
    }
    .benefits_info_desc {
        font-size: 15px;
        margin-top: 5px;
    }
    .benefits_infos_outside {
        padding: 20px;
    }
    .contact_us_title {
        font-size: 18px;
    }
    .btn_red_transparent {
        border-width: 3px;
        font-size: 16px;
    }
    .about_contacts_basic {
        padding: 20px;
    }
    .about_basic_desc {
        font-size: 15px;
    }
    .about_basic_info__title, 
    .about_basic_info__value {
        font-size: 14px;
    }
    .footer_copyright,
    .footer_privacy {
        font-size: 14px;
    }
	.transport_mode_item {
		padding: 20px 15px;
	}
}

@media screen and (max-width: 420px) {
    .btn {
        font-size: 16px;
    }
    .ftbk_form_outside {
        padding: 24px 20px;
    }
    .ftbk_form_title {
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .ftbk_form_field--required {
        font-size: 14px;
    }
    .transport_mode_item__title {
        font-size: 18px;
    }
    .transport_mode_item {
        height: 250px;
    }
    .title_bk {
        font-size: 18px;
    }
    .title_head_left {
        margin-right: 10px;
    }
    .title_head_lines span {
        width: 100%;
    }
    .title_head_lines span:nth-child(2),
    .title_head_lines span:nth-child(3),
    .title_head_lines span:nth-child(4) {
        display: none;
    }
    .our_partners_items .col {
        width: 100%;
    }
    .benefits_infos_outside {
        padding: 12px;
    }
    .benefits_info_title {
        font-size: 14px;
    }
    .benefits_info_desc {
        font-size: 13px;
    }
}

@media screen and (max-width: 375px) {
	.ftbk_title {
		font-size: 28px;
	}
}