@charset "UTF-8";

:root {
    --big_white_arrow: 462px;
    --medium_white_arrow: 258px;
    --tranparent_map_arrow: 404px;
}

@font-face {
    font-family: "Raleway-Black";
    src: url("../fonts/Raleway-Black.woff2") format("woff2"), url("../Raleway-Black.woff") format("woff");
    font-weight: normal;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Raleway-Medium";
    src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../Raleway-Medium.woff") format("woff");
    font-weight: normal;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Raleway-Regular";
    src: url("../fonts/Raleway-Regular.woff2") format("woff2"), url("../Raleway-Regular.woff") format("woff");
    font-weight: normal;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Raleway-SemiBold";
    src: url("../fonts/Raleway-SemiBold.woff2") format("woff2"), url("../Raleway-SemiBold.woff") format("woff");
    font-weight: normal;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Raleway-Bold";
    src: url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../Raleway-Bold.woff") format("woff");
    font-weight: normal;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "Raleway-Light";
    src: url("../fonts/Raleway-Light.woff2") format("woff2"), url("../Raleway-Light.woff") format("woff");
    font-weight: normal;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'TT-FIRS-ThinItalic';
    src: url('../fonts/TYPETYPE-TTFIRS-THINITALIC.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-Thin';
    src: url('../fonts/TYPETYPE-TTFIRS-THIN.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-Regular';
    src: url('../fonts/TYPETYPE-TTFIRS-REGULAR.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-MediumItalic';
    src: url('../fonts/TYPETYPE-TTFIRS-MEDIUMITALIC.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-Medium';
    src: url('../fonts/TYPETYPE-TTFIRS-MEDIUM.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-LightItalic';
    src: url('../fonts/TYPETYPE-TTFIRS-LIGHTITALIC.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-Italic';
    src: url('../fonts/TYPETYPE-TTFIRS-ITALIC.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-ExtraLightItalic';
    src: url('../fonts/TYPETYPE-TTFIRS-EXTRALIGHTITALIC.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-ExtraLight';
    src: url('../fonts/TYPETYPE-TTFIRS-EXTRALIGHT.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-ExtraBoldItalic';
    src: url('../fonts/TYPETYPE-TTFIRS-EXTRABOLDITALIC.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-Bold';
    src: url('../fonts/TYPETYPE-TTFIRS-BOLD.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-BlackItalic';
    src: url('../fonts/TYPETYPE-TTFIRS-BLACKITALIC.OTF') format('opentype');
}

@font-face {
    font-family: 'TT-FIRS-Black';
    src: url('../fonts/TYPETYPE-TTFIRS-BLACK.OTF') format('opentype');
}

body {
    position: relative;
    min-width: 375px;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #1D1D1B;
    font-family: 'TT-FIRS-Regular';
    background-color: #ffffff;
}

body.open-modal {
    overflow-y: hidden;
}

.full {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

.wrapper {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 30px;
}

.over-text-h {
    display: flex;
    top: 0;
    height: calc(100% - 3px);
    width: 100%;
    position: absolute;
    z-index: 10;
}

.over-text {
    display: flex;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
}

.list-none {
    list-style-type: none;
}

.d-grid {
    display: grid;
}

.grid-3-1fr {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4-1fr {
    grid-template-columns: repeat(4, 1fr);
}

.grid-gap-16 {
    grid-gap: 16px;
}

.grid-gap-5 {
    grid-gap: 5px;
}

.grid-4-1fr_1-1fr {
    grid-template-columns: repeat(4, 1fr);
}

.grid-3-1fr_1-1fr {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2-1fr {
    grid-template-columns: repeat(2, 1fr);
}

.grid-1-1fr {
    grid-template-columns: repeat(1, 1fr);
}

.grid-gap-25 {
    grid-gap: 25px;
}

.grid-gap-24 {
    grid-gap: 24px;
}

.grid-gap-40 {
    grid-gap: 40px;
}

.d-flex {
    display: flex;
}

.row_column {
    flex-direction: row;
}

.f-column {
    flex-direction: column;
}

.p-relative {
    position: relative;
}

.bottom-0 {
    bottom: 0px;
}

.right-0 {
    right: 0px;
}

.p-absolute {
    position: absolute;
}

.f-wrap {
    flex-wrap: wrap;
}

.j-content_center {
    justify-content: center;
}

.j-content_end {
    justify-content: flex-end;
}

.j-content_space_b {
    justify-content: space-between;
}

.a-items_center {
    align-items: center;
}

.a-items_center_start {
    align-items: center;
}

.a-items_start {
    align-items: flex-start;
}

.a-items_end {
    align-items: flex-end;
}

.a-items_end_start {
    align-items: flex-end;
}

.p-20 {
    padding: 20px;
}

.p_40 {
    padding: 40px;
}

.p_40_20 {
    padding: 40px 20px;
}

.p_20 {
    padding: 20px;
}

.tt-bold {
    font-family: 'TT-FIRS-Bold';
}

.title_h1 {
    font-weight: 700;
    font-size: 66px;
    line-height: 66px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.title_h1.white {
    color: white;
}

.title_h2 {
    font-size: 36px;
    line-height: 39.6px;
    font-weight: 700;
}

.title_h2.white {
    color: white;
}

.title_h2_transform {
    line-height: 39.6px;
    font-size: 36px;
    font-weight: 700;
}

.title_h2_2_transform {
    line-height: 39.6px;
    font-size: 36px;
    font-weight: 700;
}

.title_h2_2_transform.white {
    color: white;
}

.title_h2_transform.white {
    color: white;
}

.title_28 {
    font-size: 28px;
    font-weight: 700;
    line-height: 30.8px;
}

.title_28.white {
    color: white;
}

.title_36_18 {
    font-size: 36px;
    font-weight: 700;
    line-height: 39.6px;
}

.title_28_18 {
    font-size: 28px;
    font-weight: 700;
    line-height: 30.8px;
}

.title_56_40 {
    font-size: 56px;
    font-weight: 700;
    line-height: 56px;
}

.title_82_40 {
    font-size: 82px;
    font-weight: 700;
    line-height: 82px;
}

.title_56_24 {
    font-size: 56px;
    font-weight: 700;
    line-height: 56px;
}

.title_66_56 {
    font-size: 66px;
    font-weight: 700;
    line-height: 66px;
}

.title_66_56.white {
    color: white;
}

.title_56_40.white {
    color: white;
}

.title_36_32 {
    font-size: 36px;
    line-height: 39.6px;
}

.text_404 {
    font-size: 24px;
    font-weight: 700;
    line-height: 26.4px;
    color: white;
}

.text_h2_bold {
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    font-family: 'TT-FIRS-Bold';
}

.text_h2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 21.6px;
}

.text_h3 {
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.text_h3.light {
    color: #E3ECF4;
    opacity: .7;
}

.text_h3.white {
    color: #ffffff;
}

.title_h3 {
    font-size: 24px;
    line-height: 28.8px;
    font-weight: 500;
}

.title_h3.white {
    color: white;
}

.title_h3_transform,
.title_h3_transform>* {
    font-size: 24px;
    line-height: 28.8px;
    font-weight: 500;
}

.title_h3_transform.white,
.title_h3_transform.white>* {
    color: white;
}

.title_h3_transform.light,
.title_h3_transform.light>* {
    color: #CEDDEB;
}

.title_h4 {
    font-size: 28px;
    line-height: 25.2px;
    font-weight: 700;
    color: white;
}

.title_h4.white {
    color: white;
}

.text_h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
}

.text_h5.white {
    color: white;
}

.title_18 {
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
}

.title_30 {
    font-size: 30px;
    line-height: 39.6px;
    font-weight: 700;
}

.number_120 {
    font-size: 120px;
    font-weight: 700;
    line-height: 120px;
}

.number_120.white {
    color: white;
}

.number_66 {
    font-size: 66px;
    font-weight: 700;
    line-height: 66px;
}

.number_260_175 {
    font-size: 260px;
    font-weight: 700;
    line-height: 260px;
}

.title_24_24 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
}

.title_42_24 {
    font-size: 42px;
    font-weight: 700;
    line-height: 46.2px;
}

.title_24 {
    font-size: 24px;
    font-weight: 700;
    line-height: 26.4px;
}

.text_16_2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    letter-spacing: 0.02em;
}

.font-700-500 {
    font-weight: 700;
}

.text_18 {
    font-size: 18px;
    font-weight: 500;
    line-height: 23.4px;
}

.text_16 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    letter-spacing: 0.1em;
}

.text_14 {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
}

.text_14_12 {
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.1em;
}

.text_12 {
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.number_144_56 {
    font-size: 114px;
    font-weight: 700;
    line-height: 102.6px;
    letter-spacing: -0.02em;
}

.title_16 {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}

.line-height-120percent {
    line-height: 120%;
}

.text_24_14 {
    font-size: 24px;
    font-weight: 700;
    line-height: 21.6px;
}

.text_24_18px {
    font-size: 24px;
}

.h-100 {
    height: 100%;
}

.w-auto-100 {
    width: auto;
}

.w-100 {
    width: 100%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.w-65 {
    width: 65%;
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

.w-45 {
    width: 45%;
}

.w-40 {
    width: 40%;
}

.w-35 {
    width: 35%;
}

.w-25-100 {
    width: 25%;
}

.w-50-100 {
    width: 50%;
}

.w-60-100 {
    width: 60%;
}

.w-75-100 {
    width: 75%;
}

.w-80-100 {
    width: 80%;
}

.w-70-100 {
    width: 70%;
}

.w-40-100 {
    width: 40%;
}

.title-h2--center {
    text-align: center;
}

.title-h3 {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}

h4 {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
}

h5 {
    font-size: 48px;
    line-height: 30px;
}

h6 {
    font-size: 48px;
    line-height: 30px;
}

p {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
    color: #1D1D1B;
}

a {
    position: relative;
    color: #1D1D1B;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

a:focus,
a:hover {
    text-decoration: none;
}

.content-text {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}

.page-main {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
}

.sidebar-menu__list .sub-menu.show {
    transform: translateX(375px);
}

.sub-menu {
    position: fixed;
    z-index: 12;
    width: 375px;
    height: 100%;
    left: -375px;
    top: 0;
    transform: translateX(0);
    background: #FEFFFF;
    transition: transform 0.4s ease;
    overflow: auto;
    overflow-y: auto;
}

.sidebar-menu {
    margin-top: 0px;
    position: fixed;
    z-index: 51;
    width: 375px;
    height: 100%;
    left: -375px;
    top: 0;
    transform: translateX(0);
    background: #FEFFFF;
    transition: transform 0.4s ease;
    overflow: auto;
    overflow-y: auto;
}

.sidebar-menu__top.blue {
    background-color: #0055A2;
}

.sidebar-menu__top img {
    height: 18px;
    width: 92px;
}

.sidebar-menu__top {
    position: relative;
    display: flex;
    padding: 16px 20px;
    height: 52px;
    font-size: 18px;
    font-weight: 600;
    line-height: inherit;
    text-align: center;
    letter-spacing: 1px;
    justify-content: space-between;
    align-items: center;
}

.sidebar-menu__content {
    padding: 20px 15px;
}

.sidebar-menu__top a {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #c7e0ff;
}

.sidebar-menu.show {
    transform: translateX(375px);
}

.sidebar-menu__list {
    background: none;
    height: auto;
    width: 100%;
    list-style: none;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    margin-bottom: 30px;
}

.sidebar-menu__list li {
    margin: 0;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-menu__list li a {
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
    position: relative;
    padding: 15px 0;
    margin-bottom: 20px;
}

.sidebar-menu li.social__item img {
    width: 48px;
}

.sidebar-menu li.social__item {
    margin-left: 25px;
}

.sidebar-menu li.social__item:first-child {
    margin-left: 0;
}

.sidebar-menu__list ul li {
    line-height: 42px;
    border-top: none;
}

.sub-back {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.02em;
    color: #0055A2;
    text-transform: uppercase;
}

.hidden-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background: #000000;
    opacity: 0;
    width: 0;
    height: 0;
    transition: opacity 1s;
}

.hidden-overlay.show {
    height: 100%;
    width: 100%;
    opacity: 0.6;
    transition: opacity 1s;
}

.sidebar-menu .choice {
    padding: 20px 0;
    color: #c7e0ff;
}

.section {
    padding: 60px 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(113, 113, 113, 0.7);
}

.link {
    position: relative;
    display: inline-block;
    color: #161616;
}

.link::before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #161616;
    transition: width 0.3s ease;
}

.main-title {
    color: #1D1D1B;
    font-weight: 700;
    font-size: 66px;
    line-height: 66px;
    font-family: 'TT-FIRS-Bold';
    margin-top: 20px;
    margin-bottom: 20px;
}

.about_text p {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
    max-width: 350px;
    color: #1D1D1B;
}

.main-title--margin {
    margin-bottom: 40px;
}

.main-title span,
h1 span {
    color: #0033a0;
}

.btn {
    display: inline-block;
    padding: 24px 30px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(360deg, #093caa 13.54%, #3a6edf 88.02%);
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 19px;
}

.burger {
    display: none;
}

.btn:hover {
    background: linear-gradient(360deg, #043fbe 13.54%, #3777ff 88.02%);
}

.btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--light {
    color: #0033a0;
    background: linear-gradient(180deg, #f2f8ff 0%, #c1ddff 100%);
}

.btn--light:hover {
    background: linear-gradient(180deg, #c1ddff 0%, #f2f8ff 100%);
}

.btn svg {
    width: 14px;
    height: 14px;
    margin-left: 10px;
    fill: #ffffff;
}

.btn--light svg {
    fill: #0033a0;
}

.btn img {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.header__top {
    position: fixed;
    z-index: 50 !important;
    background-color: white !important;
    width: 100% !important;
    padding: 20px 0;
}

.header__top.blue {
    background-color: #0055A2 !important;
}

.header {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    margin-bottom: 75px;
}

.header__top-inner {
    display: flex;
    justify-content: space-between;
}

.header__top-item {
    display: flex;
    align-items: center;
}

.header__top-item>div {
    margin-left: 25px;
}

.header__bottom {
    position: fixed;
    z-index: 99 !important;
    background-color: white !important;
    width: 100% !important;
    padding: 6px 0;
    margin-top: 76px;
    display: none;
}

.header__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs-list__item {
    position: relative;
    margin-bottom: 5px;
    padding-right: 15px;
    list-style-type: none;
}

.breadcrumbs-list__item::before {
    content: "";
    background-image: url(../../img/svg/arrow_gray.svg);
    position: absolute;
    top: 5px;
    right: 4px;
    width: 6px;
    height: 6px;
}

.breadcrumbs-list__item.gray_arrow::before {
    content: "";
    background-image: url(../../img/svg/arrow_gray3.svg);
    position: absolute;
    top: 5px;
    right: 4px;
    width: 6px;
    height: 6px;
}

.breadcrumbs-list__item.slash::before {
    content: "";
    background-image: url(../../img/svg/slash.svg);
    position: absolute;
    top: 6px;
    right: 4px;
    width: 6px;
    height: 6px;
}

.breadcrumbs-list__item:last-child {
    padding-right: 0;
}

.breadcrumbs-list__item:last-child::before {
    content: none;
}

.breadcrumbs-list__item svg {
    width: 15px;
    height: 15px;
    fill: none;
    vertical-align: middle;
}

.breadcrumbs-list__item a {
    color: #8B8D8D;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.breadcrumbs-list__item.light::before {
    content: "";
    background-image: url(../../img/svg/arrow_light_right.svg);
    position: absolute;
    top: 5px;
    right: 4px;
    width: 6px;
    height: 6px;
}

.breadcrumbs-list__item.black>* {
    color: #1D1D1B !important;
}

.breadcrumbs-list__item.gray_3>* {
    color: #E3ECF480 !important;
}

.breadcrumbs-list__item.gray_2>* {
    color: #8B8D8D !important;
}

.breadcrumbs-list__item.gray>* {
    color: #C4C5C6 !important;
}

.breadcrumbs-list__item.light>* {
    color: #E3ECF4 !important;
}

.breadcrumbs-list__item.white,
.breadcrumbs-list__item.white>* {
    color: #ffffff !important;
}

.breadcrumbs-list__item a:hover {
    color: #9d9d9c;
}

.breadcrumbs-list__item {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.1em;
    color: #1D1D1B;
}

.breadcrumbs-list__item>span {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.1em;
    color: #1D1D1B;
}

.swipe {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.flex-none {
    flex: none;
}

.swipe_open {
    flex: none;
    display: none;
}

.swipe.show .swipe__btn {
    display: none;
}

.swipe.show .swipe_open {
    display: block;
}

.swipe__btn {
    position: relative;
    width: 28px;
    height: 20px;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.swipe__btn span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #161616;
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.swipe__btn.white span {
    background-color: white;
}

.swipe__btn span:nth-child(1) {
    top: 0px;
}

.swipe__btn span:nth-child(2) {
    top: 8px;
}

.swipe__btn span:nth-child(3) {
    top: 16px;
}

.logo {
    display: inline-block;
}

.logo:hover {
    opacity: 0.7;
    cursor: pointer;
}

.menu__item {
    position: relative;
    display: inline-block;
    margin-right: 25px;
    list-style-type: none;
}

.menu__item.has-child>a {
    padding-right: 16px;
}

.menu__item:last-child {
    margin-right: 0;
}

.menu__item a {
    padding-bottom: 10px;
    position: relative;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.menu__item.has-child>a.white::before {
    background-image: url(../../img/svg/arrow_down_white.svg);
}

.menu__item.has-child>a::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 12px;
    height: 8px;
    background-image: url(../../img/svg/arrow_down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.menu__item ul {
    position: absolute;
    top: 160%;
    border: 1.5px solid #0055A2;
    left: 0;
    z-index: 1;
    display: none;
    min-width: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #ffffff;
    box-shadow: 0px 20px 80px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.menu__item ul li {
    list-style-type: none;
}

.menu__item:hover>ul {
    display: block;
}

.menu__item ul li a {
    display: inline-block;
    padding: 5px 20px;
}

.knobs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

#button-10 .knobs:before,
#button-10 .knobs:after,
#button-10 .knobs span {
    position: absolute;
    top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    border-radius: 100%;
    transition: 0.3s ease all;
}

#button-10 .knobs:before {
    content: "";
    left: 4px;
    background: linear-gradient(360deg, #093caa 13.54%, #3a6edf 88.02%);
}

#button-10 .knobs:after {
    content: "Рус";
    right: 1px;
    color: #0033a0;
}

#button-10 .knobs span {
    display: flex;
    align-items: center;
    justify-content: center;
    left: 4px;
    color: #fff;
    z-index: 1;
}

#button-10 .checkbox:checked+.knobs span {
    color: #0033a0;
}

#button-10 .checkbox:checked+.knobs:before {
    left: 42px;
    background: linear-gradient(360deg, #093caa 13.54%, #3a6edf 88.02%);
}

#button-10 .checkbox:checked+.knobs:after {
    color: #fff;
}

.choice {
    display: flex;
    align-items: center;
    color: #161616;
}

.sidebar-menu .choice svg {
    width: 36px;
    height: 36px;
}

.choice svg {
    width: 18px;
    height: 18px;
}

.sidebar-menu .choice__link {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.choice__link {
    position: relative;
    margin-left: 5px;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    line-height: 12px;
}

.choice__link.white {
    color: white;
}

.choice__link.white::before {
    background-color: white;
}

.choice__link::before {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    right: auto;
    left: 0;
    height: 1px;
    background-color: #161616;
    transition: width 0.3s ease;
}

.phone.white::before {
    background-color: white;
}

.phone::before {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    right: auto;
    left: 0;
    height: 1px;
    background-color: #161616;
    transition: width 0.3s ease;
}

.choice__link:hover::before {
    right: 0;
    width: 0;
}

.choice-window {
    padding: 40px;
    background: #ffffff;
    box-shadow: 0px 20px 80px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.choice-window__title {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.choice-window__btns a+a {
    margin-left: 12px;
}

.choice-window__wrapper {
    padding: 20px 10px;
    position: relative;
}

.close {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 28px;
    height: 28px;
    border: none;
    background-color: transparent;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.3s;
}

.close:hover {
    opacity: 0.7;
}

.modal .close {
    top: 15px;
    right: 15px;
}

.sidebar-menu .phone {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.phone {
    display: inline-block;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
}

.phone.white {
    color: white;
}

.sidebar-menu .social {
    margin-bottom: 20px;
}

.social {
    display: flex;
}

.social__item {
    margin-left: 11px;
    list-style-type: none;
}

.social__item:first-child {
    margin-left: 0;
}

.social__item svg {
    width: 30px;
    height: 30px;
}

.about {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.about__item {
    flex-basis: 50%;
}

.about__item:nth-child(2) {
    margin-top: 20px;
}

.text-center {
    text-align: center;
}

.feauters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.feauters-wrapper__item {
    flex-basis: 100%;
}

.feauters {
    display: flex;
    justify-content: flex-start;
}

.feauters__item {
    margin: 0 50px;
    text-align: center;
    list-style-type: none;
}

.feauters__text {
    font-size: 14px;
    line-height: 18.2px;
    font-weight: 700;
    color: #1D1D1B;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: left;
}

.feauters__stat {
    display: flex;
    align-items: flex-end;
    font-size: 60px;
    line-height: 54px;
    font-weight: 700;
    color: #0055A2;
    margin-bottom: 10px;
}

.feauters__stat .number {
    font-family: 'TT-FIRS-Bold';
    font-size: 110px;
    font-weight: 700;
    line-height: 99px;
    color: #0055A2;
    padding-right: 8px;
}

.service {
    display: flex;
    flex-wrap: wrap;
}

.service .service_block:nth-child(1) {
    flex-basis: 25%;
    max-width: 332px;
}

.service .service_block:nth-child(2) {
    flex-basis: 75%;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.service-card__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 20px;
    z-index: 12;
}

.service-list__item {
    position: relative;
    list-style-type: none;
}

.service_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 304px;
    margin: 0;
    padding: 0;
    border: 2px solid #0055A2;
    transition: all 0.3s ease;
    background-color: white;
    background-size: cover;
    background-position: top;
}

.service-card:hover {
    border: 0;
    cursor: default;
}

.service-card:hover .hover-show {
    display: block;
}

.service-card:hover .service-card__title_number {
    color: white;
    z-index: 10;
}

.service-card:hover .service-card__text {
    color: white;
    z-index: 10;
}

.service-card:hover .service-card__title_button {
    background-color: #0055A2;
    color: white;
    cursor: pointer;
}

.service-card:hover .service-card__title_button .arrow_white {
    display: block;
}

.service-card:hover .service-card__title_button .arrow_blue {
    display: none;
}

.service-card__title {
    display: flex;
    justify-content: space-between;
}

.service-card__title_number {
    font-size: 48px;
    line-height: 43.2px;
    font-weight: 700;
    color: #0055A2;
}

.service-card__title_button {
    display: flex;
    max-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 98;
}

.service-card__title_button .arrow_white {
    display: none;
}

.service-card__title_button {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 18.2px;
    letter-spacing: 0.24px;
    color: #0055A2;
    font-weight: 700;
}

.service-card__title_button img {
    margin-left: 10px;
}

.service-card__text {
    line-height: 30.6px;
    font-size: 25px;
    font-weight: 700;
    color: #1D1D1B;
    font-family: 'TT-FIRS-Bold';
}

.service-list__item .service-card {
    height: 100%;
}

.service-card:hover .line-gradient {
    display: block;
}

.line-gradient {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(209.56deg, rgba(0, 85, 162, 0) 25.7%, rgba(23, 24, 25, 0.28) 94.55%);
    z-index: 1;
    display: none;
}

.button_down {
    display: none !important;
}

.slider-app {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
}

.slider-app .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.mobilescreen-image {
    position: absolute;
    top: 50%;
    left: calc(50% + 0.5px);
    z-index: 2;
    display: block;
    height: calc(100% - 100px);
    background-image: url("../../img/phone-border.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    box-shadow: 0px 9px 30px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    max-width: 350px;
}

.slider-app .swiper-button-next {
    background-image: url("../../img/arrowRight.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-app .swiper-button-prev {
    background-image: url("../../img/arrowLeft.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-app .swiper-button-next:hover,
.slider-app .swiper-button-prev:hover {
    opacity: 0.6;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: none;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 0;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 0;
}

.form {
    display: flex;
    justify-content: space-between;
}

.form-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-list li {
    margin-bottom: 30px;
    list-style-type: none;
}

.form-list__50 {
    width: 48%;
}

.form-list__100 {
    width: 100%;
}

.group {
    position: relative;
}

.input,
.select {
    width: 100%;
    height: 60px;
    padding: 16px 24px;
    background: #ffffff;
    border: 1px solid #7590a863;
}

.textarea {
    width: 100%;
    padding: 16px 24px;
    background: #ffffff;
    border: 1px solid #7590a863;
}

.input--round {
    border-radius: 30px;
}

.textarea,
.input,
.select:focus {
    outline: none;
}

.label {
    position: absolute;
    top: 20px;
    left: 24px;
    color: #7590A8;
    pointer-events: none;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    display: flex;
    align-items: center;
}

.label.blue-light {
    color: #CEDDEB;
}

.label img {
    margin-right: 10px;
}

.input.focus~.label,
.textarea.focus~.label {
    top: -30px;
    font-size: 14px;
    color: #161616;
    display: none;
}

.input--round.focus~.label,
.input--round:valid~.label {
    color: #ffffff;
}

.private {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    color: #161616;
}

.private a {
    color: #0033a0;
}

.private a::before {
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.private a:hover::before {
    opacity: 0;
}

.private a::before {
    background-color: #0033a0;
}

.works .title-h2 {
    margin-bottom: 12px;
}

.works-list {
    padding-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -20px;
}

.section.workers {
    background-color: #0055A2;
}

.works {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 0;
    justify-content: space-between;
}

.work__item:nth-child(1) {
    height: 340px;
    background-image: url('../../img/svg/big_white_arrow.svg');
    background-repeat: repeat-x;
    background-size: var(--big_white_arrow) 100%;
    animation: moveArrows 5s linear infinite;
}

.map_arrows_animation {
    background-image: url('../../img/svg/transparent_half.svg');
    background-repeat: repeat-x;
    animation: moveArrows2 10s linear infinite;
}

.map_arrows {
    background-image: url('../../img/svg/transparent_half.svg'), url('../../img/svg/transparent_half.svg'), url('../../img/svg/transparent_half.svg');
    background-repeat: repeat-x;
    background-size: 120% 100%;
    background-position: 170% 0, -41% 0, -210% 0;
}

@keyframes moveArrows2 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: var(--tranparent_map_arrow) 0;
    }

    ;
}

@keyframes moveArrows {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: var(--big_white_arrow) 0;
    }

    ;
}

@keyframes moveArrows1 {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: var(--medium_white_arrow) 0;
    }

    ;
}

.title-workers {
    font-size: 56px;
    line-height: 56px;
    font-weight: 700;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
}

.tagline-workers {
    font-size: 24px;
    line-height: 28.8px;
    color: white;
    margin-bottom: 20px;
}

.tagline-workers-bottom {
    display: flex;
    align-items: flex-end;
    margin-top: 20px;
}

.phone-workers {
    display: flex;
    align-items: flex-start;
    margin-left: 30px;
}

.phone-workers>img {
    margin-right: 10px;
}

.works-list__item {
    list-style-type: none;
    margin: 0 20px 40px 20px;
    width: calc(25% - 40px);
}

.work-card {
    position: relative;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    box-shadow: 0px 40px 70px rgba(0, 51, 160, 0.15);
}

.logo-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.logo-list__item {
    text-align: center;
    border-radius: 20px;
    list-style-type: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: none;
}

.logo-list__item.show {
    display: block;
}

.logo-list__item.fade-in {
    opacity: 1;
}

.logo-list__item.fade-out {
    opacity: 0;
}

.text_logo_block>.contact_button {
    display: none;
}

.else_div {
    margin-bottom: 5px;
}

.text_number {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 18.2px;
    font-weight: 700;
    letter-spacing: 0.24px;
    color: #0055A2;
    margin-bottom: 10px;
}

.number_company {
    font-size: 127px;
    line-height: 114.3px;
    font-weight: 700;
    color: #0055A2;
}

.text_logo_block {
    margin-top: 60px;
}

.else_link {
    color: #0055A2;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.24px;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-list_blocks_item {
    flex-basis: 18%;
}

.logo-list_blocks_item_ul {
    flex-basis: 50%;
}

.logo-list_blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tagline-logo {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    margin-bottom: 40px;
    max-width: 300px;
}

.section_logo {
    background-color: #E3ECF4;
    background-image: url(../../img/svg/logos_arrow.svg);
}

.blog__inner {
    display: flex;
}

.blog__item {
    flex-basis: 33%;
}

.blog-line {
    position: relative;
    display: flex;
    margin-bottom: 24px;
    color: #161616;
    transition: all 0.3s ease;
    height: 100%;
    flex-direction: column;
}

.art_category {
    text-transform: uppercase;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
    color: #0055A2;
    border: 1px solid #0055A2;
}

.blog_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
}

.blog-line.main {
    height: auto !important;
}

.blog-line__info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-line::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url("../../img/link-image.png");
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.blog-line:last-child {
    margin-bottom: 0;
}

.blog-line a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-line__img {
    max-height: 260px;
    min-width: 240px;
}

.pagination_ul {
    display: flex;
    justify-content: center;
    padding: 40px 10px;
    overflow-x: auto;
}

.blog-line__img img {
    min-width: 85px;
    height: 260px;
}

.blog-line__date {
    opacity: 0.5;
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer_admin_title {
    color: #1D1D1B;
    font-size: 66px;
    line-height: 66px;
    font-weight: 700;
    font-family: 'TT-FIRS-Bold';
}

.footer_admin_block {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer_admin_block_item:nth-child(1) {
    flex-basis: 40%;
}

.footer_admin_block_item:nth-child(1) img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.footer_admin_block_item:nth-child(2) {
    flex-basis: 60%;
    padding: 0 30px;
    overflow-y: auto;
}

.footer_admin h3 {
    font-family: 'TT-FIRS-Bold';
}

h2 {
    font-family: 'TT-FIRS-Bold';
    line-height: 24px;
}

.footer_admin h3:nth-child(1) {
    margin-top: 0;
    font-size: 36px;
    line-height: 39.6px;
    font-weight: 700;
    color: #1D1D1B;
}

.footer_admin h3:nth-child(n+2) {
    position: relative;
    padding-left: 20px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: #1D1D1B;
}

.footer_admin h3:nth-child(n+2)::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 11px;
    height: 12px;
    background-image: url(../../img/svg/little_arrow_black.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.footer_admin p {
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 500;
    color: #1D1D1B;
}

.footer_admin_block_item:nth-child(2) {
    height: 400px;
    overflow-y: scroll;
    position: relative;
}

.footer_admin_block_item:nth-child(2)::-webkit-scrollbar {
    width: 3px;
}

.footer_admin_block_item:nth-child(2)::-webkit-scrollbar-thumb {
    height: 115px;
    background-color: #3F80B9;
    border-radius: 23px;
    opacity: 0.5;
}

.footer_admin_block_item:nth-child(2)::-webkit-scrollbar-track {
    background: transparent;
}

.footer_admin_block_item:nth-child(2) {
    scrollbar-color: #3F80B9 transparent;
    scrollbar-width: thin;
}

.footer {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    padding: 80px 0 30px;
    background-color: #1D1D1B;
}

.footer__title {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: white;
}

.footer_phone {
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: white;
}

.footer_phone::before {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    right: auto;
    left: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__inner-item {
    flex-basis: 25%;
}

.footer__inner-item:nth-child(1) {
    flex-basis: 20%;
}

.footer__inner-item:nth-child(2) {
    flex-basis: 20%;
}

.footer__inner-item:nth-child(3) {
    flex-basis: 30%;
}

.footer__inner-item:nth-child(4) {
    flex-basis: 20%;
}

.footer_arrows {
    display: flex;
}

.footer_arrows>* {
    margin-right: 15px;
}

.footer___inner {
    display: flex;
}

.footer___inner>div {
    padding: 0 10px;
    flex-basis: 50%;
}

.footer__inner-item:nth-child(5) {
    flex-basis: 100% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu__item {
    margin-bottom: 30px;
    list-style-type: none;
}

.footer-menu__item a {
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 500;
    color: white !important;
    text-decoration: none !important;
}

.footer__inner-item .phone {
    margin-bottom: 12px;
}

.footer__inner-item .social {
    margin-bottom: 20px;
}

.footer-menu__item:last-child {
    margin-bottom: 0;
}

.slogan {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 28px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: white;
}

.social-icons {
    display: flex;
    margin-bottom: 16px;
}

.social-icons__item {
    margin-right: 12px;
    list-style-type: none;
}

.social-icons__item:last-child {
    margin-right: 0;
}

.social-icons__item svg {
    width: 28px;
    height: 28px;
}

.copyright {
    font-weight: 500;
    font-size: 12px;
    line-height: 30px;
    letter-spacing: .6px;
    opacity: .5;
    text-transform: uppercase;
    color: white;
}

.address {
    font-size: 16px;
    line-height: 21px;
    color: white;
    margin-bottom: 12px;
}

.private-link {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: white;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.slider-app {
    width: 100%;
    margin: 0 auto;
    padding: 50px 40px;
}

.main-form {
    position: relative;
    z-index: 1;
}

.main-form__final {
    display: flex;
}

.main-form__final .btn {
    margin-right: 24px;
}

.column-text {
    -moz-column-width: 100px;
    column-width: 100px;
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.slider-foto {
    height: 100%;
}

.slick-vertical .slick-slide.slick-current {
    border: none;
}

.slider-thumb .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-thumb .slick-dots li {
    margin: 0 12px;
    border-radius: 100%;
}

.slider-thumb .slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    background-color: #9299a7;
    color: transparent;
    border: none;
    border-radius: 100%;
    cursor: pointer;
}

.slider-thumb .slick-dots li.slick-active button {
    background-color: #003ea5;
}

.slider-thumb .slick-dots li.slick-active button:focus {
    outline: none;
}

.list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 22px;
    font-size: 17px;
    line-height: 28px;
    list-style-type: none;
}

.list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 12px;
    background-image: url(../../img/vector.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    display: none;
    width: 100%;
    max-width: 952px;
    max-height: 620px;
    margin: auto;
}

.modal--country {
    max-width: 464px;
    height: 170px;
}

.modal__container {
    top: 0;
    position: relative;
    padding: 40px 50px;
    background-color: #ffffff;
    border: 2px solid gray;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal__wrapper {
    width: 100%;
    max-width: 704px;
    margin: 0 auto;
}

.slider-vacancy-info {
    flex-grow: 1;
    width: 100%;
    filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.05));
}

.slider-vacancy-info__prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 30px;
    background: url("../../img/arrow-left.png") no-repeat;
}

.slider-vacancy-info__next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 30px;
    background: url("../../img/arrow-right.png") no-repeat;
}

.slider-vacancy-info__pagination {
    display: none;
    margin-top: 25px;
    position: static;
    align-items: center;
    justify-content: center;
}

.slider-vacancy-info__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid rgba(0, 51, 160, 0.3);
}

.slider-vacancy-info__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    background: #0033a0;
}

.slider-vacancy-info__pagination .swiper-pagination-bullet {
    margin: 0 8px !important;
    padding: 10px;
    background: none;
    position: relative;
}

.slider-vacancy-info__pagination .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(22, 22, 22, 0.4);
}

.vacancy-option__check-main:first-child {
    margin-right: 30px;
}

.vacancy-tab__check {
    margin-right: 32px;
    margin-bottom: 12px;
}

.vacancy-tab__content {
    display: none;
}

.vacancy-tab__content.active {
    display: block;
}

.vacancy-card {
    cursor: pointer;
    padding: 40px;
    border: 1px solid #eceef3;
    transition: box-shadow 0.3s ease;
}

.vacancy-card:last-child {
    border-radius: 0px 0px 20px 20px;
}

.vacancy-card:hover {
    box-shadow: 0px 20px 80px rgba(0, 0, 0, 0.1);
}

.calculator__search-wrap {
    position: relative;
}

.calculator__search-input {
    padding-left: 65px;
}

.calculator__search-button {
    position: absolute;
    top: 14px;
    left: 20px;
    background: none;
}

.calc-tabs__button {
    display: block;
    margin-right: 60px;
    padding: 18px 0;
    font-size: 20px;
    line-height: 28px;
    color: #161616;
    opacity: 0.6;
    transition: none;
}

.calc-tabs__button.active {
    font-weight: 600;
    opacity: 1;
    border-bottom: 3px solid #093caa;
}

.calc-tabs__button:last-child {
    margin-right: 0px;
}

.calc-tabs__item {
    display: none;
}

.calc-tabs__item.active {
    display: block;
}

.block-info__title {
    text-align: center;
}

.block-info__text {
    border-top: 1px solid #eceef3;
    border-bottom: 1px solid #eceef3;
    padding: 40px 0 20px 0;
}

.block-info__text strong {
    font-size: 24px;
    line-height: 36px;
}

.block-info__column-text {
    padding: 40px 0 20px 0;
    display: flex;
}

.block-info__column-text strong {
    font-size: 20px;
    line-height: 28px;
}

.block-info__column {
    flex-grow: 1;
}

.block-info__column:first-child {
    flex-basis: 25%;
}

.block-info__column:last-child {
    flex-basis: 75%;
}

.block-info__column:nth-child(2) {
    margin-left: 40px;
}

.block-info img {
    margin: 40px 0;
    border-radius: 20px;
    width: 100%;
    max-height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
}

.block-fullscreent {
    display: flex;
    min-height: 700px;
}

.block-fullscreent__column {
    flex-grow: 1;
}

.block-fullscreent__column:first-child {
    flex: 0 0 50%;
    position: relative;
    z-index: 1;
}

.block-fullscreent__column:last-child {
    flex: 0 0 100%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    background: #0033a0;
}

.block-fullscreent__body {
    width: 50%;
    margin: 0 0 0 auto;
    padding-left: 140px;
}

.block-fullscreent__image {
    height: 100%;
}

.block-fullscreent__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.block-fullscreent__subtitle {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
}

.block-fullscreent__title {
    color: #ffffff;
    margin-bottom: 20px;
}

.block-fullscreent__text p {
    color: #ffffff;
}

.block-fullscreent__button {
    margin-top: 20px;
}

.block-info-column {
    display: flex;
    justify-content: space-between;
}

.block-info-column .title-h2 {
    margin-bottom: 25px;
}

.block-info-column .btn {
    margin-top: 20px;
}

.block-info-column__text {
    width: 42%;
}

.block-info-column__image {
    position: relative;
    width: 50%;
    max-height: 550px;
}

.block-info-column__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    max-height: 550px;
}

.block-info-column__image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 30px;
    left: 30px;
    background: #f3f8ff;
    border-radius: 20px;
    z-index: -1;
}

.block-trust .title-h2 {
    margin-bottom: 12px;
}

.hidden {
    display: none !important;
}

.invisible {
    opacity: 0;
}

.cc-window {
    display: flex;
    flex-direction: column;
    border: 1px solid #0055A2;
    background: white;
    position: fixed;
    bottom: 0;
    left: 10px;
    padding: 20px !important;
    z-index: 9999;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    color: #1D1D1B !important;
    font-family: 'TT-FIRS-Regular';
    max-width: 26em;
}

.cc-window.cc-invisible {
    display: none;
}

.cc-btn {
    margin: 10px 0;
}

.cc-compliance {
    margin: 0;
    padding: 0;
}

a.cc-link {
    text-decoration: underline;
    color: #0033a0 !important;
}

span#cookieconsent {
    padding: 10px;
}

.disabled {
    pointer-events: none;
}

.overflow-hidden {
    overflow: hidden;
}

.overflowX-auto {
    overflow-x: auto;
}

.overflowY-hidden {
    overflow-y: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflowY-auto {
    overflow-y: auto;
}

.menu__item.item .submenu {
    max-height: 500px;
    overflow-y: auto;
}

.menu__item ul li {
    padding: 3px 10px;
}

.menu__item.item ul li {
    padding: 3px 10px;
}

.menu__item.item.has-child>a::before {
    top: 10px;
}

.menu__item.item {
    padding-right: 40px;
    margin-right: 0 !important;
    width: 100%;
}

.job_card.active {
    border: 2px solid #0055A2;
}

.menu__item.item ul {
    top: -1px;
    left: 100%;
}

.menu__item.item {
    position: initial;
}

.blog__item.author {
    padding: 0 !important;
}

.blog-line__img.author img {
    height: 100% !important;
    width: auto !important;
    max-height: none !important;
}

.blog-line.author a {
    position: inherit;
}

.blog-line::before {
    display: none !important;
}

.blog-line.author:hover {
    box-shadow: none !important;
}

.blog-line.author {
    padding: 24px 0 !important;
    border: none !important;
}

.categories {
    display: flex;
    flex-wrap: wrap;
}

.categories p {
    margin: 10px 2px;
}

.categories p:first-child {
    margin-left: 0;
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #0055A2;
    text-decoration: none;
    color: #0055A2;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.button-link:hover {
    background-color: #0055A2;
    color: white;
}

.page-link.active {
    color: white;
    background-color: #0055A2;
}

.page-link:hover {
    opacity: .8;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 15px 23px;
    margin-left: -1px;
    line-height: 1.25;
    color: #B1C3D3;
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
}

.page-link.next_prev_1 {
    border: 1px solid #0055A2;
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page-item {
    margin-right: 10px;
    flex: 0 0 auto;
}

.white-space_no {
    white-space: nowrap;
}

.white-space_norm {
    white-space: normal;
}

ul.social-icons a {
    position: inherit !important;
}

.button-link.articles {
    margin-right: 40px;
}

.p {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
    color: #1D1D1B;
}

.arrow_text {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #1D1D1B;
    letter-spacing: 1.2px;
    opacity: .5;
    position: relative;
    display: flex;
    margin-left: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.arrow_text::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -20px;
    width: 10px;
    height: 10px;
    background-image: url(../../img/svg/little_arrow_gray.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.arrow_text2 {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #E3ECF4;
    letter-spacing: 1.2px;
    position: relative;
    display: flex;
    margin-left: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: .5;
}

.arrow_text2::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -20px;
    width: 10px;
    height: 10px;
    background-image: url(../../img/svg/little_arrow_gray2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.arrow_text_gray {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #838383;
    letter-spacing: 1.2px;
    position: relative;
    display: flex;
    margin-left: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.arrow_text_gray::before {
    content: "";
    position: absolute;
    top: 3px;
    left: -20px;
    width: 10px;
    height: 10px;
    background-image: url(../../img/svg/arrow_gray2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contact_button {
    display: inline-block;
    padding: 16px 30px;
    font-weight: 700;
    color: #ffffff;
    background-color: #0055A2;
    text-transform: uppercase;
    letter-spacing: .24px;
    line-height: 18.2px;
    font-size: 14px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 10%) 0, 100% 20%, 100% calc(100% - 20%), calc(100% - 10%) 100%, 0 100%, 0 20%);
    z-index: 10;
}

.contact_button.light {
    background-color: #E3ECF4;
    color: #0055A2;
}

.contact_button.transparent_white {
    background-color: transparent;
    color: #ffffff;
}

.contact_button.transparent {
    background-color: transparent;
    color: #0055A2;
}

.contact_button.white {
    background-color: #ffffff;
    color: #0055A2;
}

.contact_button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_button .span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_button img {
    width: 10px;
    height: 11px;
    margin-right: 10px;
}

.margin_left {
    margin-left: 332px;
}

.margin_left_2 {
    margin-left: 332px;
}

.whyus_title {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 40px;
}

.whyus_title_item:nth-child(1) {
    margin: 0;
    flex-basis: 68%;
}

.whyus_title_item:nth-child(2) {
    flex-basis: 32%;
}

.whyus_title_item:nth-child(2) p {
    font-size: 18px;
    line-height: 21.6px;
    color: #1D1D1B;
    font-weight: 500;
    margin: 0;
}

.whyus_grid-item {
    border: 1px solid #ccc;
}

.whyus_grid-container {
    display: grid;
    gap: 25px;
    width: 100%;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: "item1 item2" "item3 item4";
}

.whyus_grid-item {
    position: relative;
}

.whyus_grid-item:nth-child(1) {
    grid-area: item1;
    max-height: 369px;
    min-height: 300px;
}

.whyus_grid-item:nth-child(2) {
    grid-area: item2;
    max-height: 369px;
    min-height: 300px;
    background-color: #0055A2;
}

.whyus_grid-item:nth-child(3) {
    grid-area: item3;
    max-height: 295px;
    min-height: 221px;
    background-color: #1D1D1B;
}

.whyus_grid-item:nth-child(4) {
    grid-area: item4;
    max-height: 295px;
    min-height: 221px;
    background-color: #E3ECF4;
}

.whyus_text {
    color: white;
    display: flex;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 40px 20px;
    position: absolute;
    z-index: 10;
    flex-direction: column;
    justify-content: space-between;
}

.whyus_grid-item:nth-child(1) .whyus_text {
    background: linear-gradient(180deg, rgba(0, 85, 162, 0.17) 0%, rgba(7, 7, 7, 0.2584) 25.84%, rgba(0, 0, 0, 0) 50%, rgba(0, 4, 17, 0.7068) 70.68%);
}

.whyus_text_title {
    font-size: 36px;
    line-height: 39.6px;
    font-weight: 700;
}

.whyus_text_text {
    font-size: 24px;
    line-height: 28.8px;
    font-weight: 500;
}

.whyus_grid-item:nth-child(2) .whyus_text_text span {
    font-size: 105px;
    line-height: 105px;
    font-weight: 700;
    font-family: 'TT-FIRS-Bold';
}

.whyus_grid-item:nth-child(3) .whyus_text {
    justify-content: flex-end;
}

.whyus_grid-item:nth-child(3) .whyus_text_title {
    margin-bottom: 15px;
}

.whyus_grid-item:nth-child(4) .whyus_text {
    justify-content: flex-end;
}

.whyus_grid-item:nth-child(4) .whyus_text_title {
    margin-bottom: 15px;
    color: #1D1D1B;
}

.whyus_grid-item:nth-child(4) .whyus_text_text {
    color: #1D1D1B;
}

.case_under_title {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
}

.cases_button span {
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.24px;
    color: #0055A2;
    text-transform: uppercase;
    font-weight: 700;
}

.cases_button img {
    margin-right: 10px;
}

.cases_columns {
    display: flex;
    flex-direction: row;
    height: 700px;
    overflow: hidden;
}

.case_column {
    border-radius: 1px;
    padding: 50px 30px;
}

.case_column:nth-child(1) {
    background-color: #E3ECF4;
}

.case_column:nth-child(2) {
    background-color: #0055A2;
}

.cases_tabs {
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.clicable {
    cursor: pointer;
}

.case_tab {
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.24px;
    font-weight: 700;
    color: #8B8D8D;
    margin-right: 20px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.case_tab.selected {
    opacity: .7;
    color: #0055A2;
}

.case_column1_title {
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    font-family: 'TT-FIRS-Bold';
    margin-bottom: 50px;
}

.case_heads {
    display: flex;
    justify-content: space-between;
    margin-bottom: 130px;
}

.case_head {
    display: flex;
    flex-direction: column;
}

.case_head .head_text {
    opacity: 0.7;
    font-size: 14px;
    line-height: 18.2px;
    letter-spacing: 0.24px;
    font-weight: 700;
    color: #CEDDEB;
    text-transform: uppercase;
    margin-bottom: 10px;
    max-width: 170px;
}

.case_head .head {
    font-size: 42px;
    line-height: 42px;
    color: white;
    font-weight: 700;
}

.case_head span {
    font-size: 42px;
    line-height: 42px;
    color: white;
    font-weight: 700;
}

.cases .case_column .contact_button {
    min-width: 190px;
}

.case_texts {
    border-top: 1.5px solid rgba(255, 255, 255, 0.5);
}

.case_text_title {
    margin-top: 40px;
    font-size: 36px;
    line-height: 39.6px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.case_text {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 31.2px;
    font-weight: 500;
    color: white;
}

.case_buttons {
    justify-content: space-between;
    align-items: center;
}

.case_buttons a.cases_button span {
    color: white;
}

.main .title-h1 {
    margin-top: 0;
    margin-bottom: 10px;
}

.main_screen {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.main-screen__item:nth-child(1) {
    flex-basis: 65%;
}

.main-screen__item:nth-child(2) {
    flex-basis: 35%;
    position: relative;
    max-height: 252px;
    max-width: 311px;
}

.main_screen_row {
    display: flex;
    align-items: center;
}

.main_screen_row p {
    flex-basis: 30%;
    margin-right: 20px;
}

.main_carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    justify-content: space-between;
}

.hover:hover .hover-show {
    display: block;
}

.hover:hover .hover-hide {
    display: none;
}

.hover-show {
    display: none;
}

.main_carousel__item:hover .hover-hide {
    display: none;
}

.main_carousel__item:hover .hover-show {
    display: block !important;
}

.main_carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-name {
    display: flex;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
    justify-content: center;
    align-items: flex-end;
}

.main_carousel__item {
    max-height: 340px;
    max-width: 312px;
    position: relative;
}

@keyframes slideIn1 {
    from {
        left: -25%;
    }

    to {
        left: 0;
    }

    ;
}

@keyframes slideIn2 {
    from {
        left: -54%;
    }

    to {
        left: 0;
    }

    ;
}

@keyframes slideIn3 {
    from {
        left: -81%;
    }

    to {
        left: 0;
    }

    ;
}

.case-line-gradient {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(164.43deg, rgba(7, 7, 7, 0.187) -2.05%, rgba(0, 0, 0, 0) 37.28%, rgba(0, 0, 0, 0.5115) 72.36%);
    z-index: 1;
    display: none;
}

.case-line-gradient_2 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(148.72deg, rgba(0, 0, 0, 0.3255) -1.24%, rgba(0, 0, 0, 0.3255) 5.19%, rgba(0, 0, 0, 0.020831) 48.07%);
    z-index: 12;
}

.main_right_block {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    z-index: 22;
}

.menu__item a.white {
    color: white;
}

.white_p {
    color: white;
}

.white_p_black {
    color: white;
}

.white_p p {
    color: white;
}

.title_white_h3 {
    color: white;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
}

.main_carousel_card {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    z-index: 22;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.work_steps_text {
    width: 40%;
    margin-bottom: 110px;
}

.work_steps {
    display: flex;
    align-items: center;
}

.work_step_block:nth-child(1) {
    position: relative;
    flex: 0 0 auto;
}

.work_step_block:nth-child(2) {
    padding-left: 20px;
}

.white_back {
    z-index: 12;
    color: white;
    position: absolute;
    height: 100%;
    width: calc(100% - 1px);
    right: 0;
    top: 0;
    background-color: white;
    animation-play-state: paused;
}

@keyframes revealAnimation {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }

    ;
}

.cases_ul {
    margin-bottom: 30px;
}

.cases_ul>li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 12px;
    background-image: url(../../img/vector.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.cases_ul>li {
    margin-bottom: 12px;
    padding-left: 22px;
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
    position: relative;
    list-style-type: none;
}

.steps_blocks_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    position: relative;
    align-items: center;
    overflow: hidden;
}

.steps_blocks {
    display: flex;
    overflow: hidden;
}

.step_img {
    position: relative;
}

.work_step_number {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 13;
    font-size: 72.16px;
    line-height: 64.94px;
    padding: 20px;
    color: white;
}

.step_block {
    flex: 0 0 auto;
    margin-right: 20px;
    max-width: 312px;
    box-sizing: border-box;
    overflow: hidden;
}

.step_block img {
    min-height: 270px;
    object-fit: cover;
}

.step_block_last {
    flex: 0 0 auto;
    margin-right: 20px;
    max-width: 312px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.step_block_last a {
    margin-top: 20px;
}

.step_block_last img {
    height: 100%;
    object-fit: cover;
}

.step_block_last .last_step {
    position: absolute;
    padding: 20px;
    bottom: 0;
}

.why_choice .title-h1 {
    margin-top: 0;
}

.why_choice_block {
    min-height: 422px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    justify-content: space-between;
}

.why_choice_block>div {
    flex-basis: 49%;
}

.why_choice_block.active {
    z-index: 1;
    animation: SlideRight 0.5s forwards;
}

.why_choice_block.prev {
    animation: SlideLeft 0.5s forwards;
}

@keyframes SlideRight {
    0% {
        left: 110%;
    }

    99.9% {
        left: 0;
    }

    100% {
        left: 0;
    }

    ;
}

@keyframes SlideLeft {
    0% {
        display: flex;
        left: 0;
    }

    99.9% {
        left: -110%;
    }

    100% {
        display: none;
        left: -110%;
    }

    ;
}

.why_choice_img {
    max-height: 422px;
    position: relative;
}

.why_choice_img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.why_choice_arrows {
    position: relative;
    background-color: #1D1D1B;
}

.why_choice_block:nth-child(even) .why_choice_arrows {
    background-color: #0055A2;
}

.why_choice_wrapper {
    position: relative;
    min-height: 422px;
}

.why_choice_line_gradient {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(192.43deg, rgba(0, 0, 0, 0) 9.03%, rgba(0, 0, 0, 0.26) 74.08%);
    z-index: 1;
}

.why_choice_right_block {
    position: absolute;
    padding: 20px;
    top: 0;
    left: 0;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
}

.arrows_img {
    margin-bottom: 70px;
}

.arrows_img img {
    position: relative;
}

@keyframes arrowMove {
    from {
        left: -42%;
    }

    to {
        left: 0;
    }

    ;
}

.flex-20 {
    flex-basis: 20%;
}

.flex-25-auto {
    flex-basis: 25%;
}

.flex-25 {
    flex-basis: 25%;
}

.flex-30 {
    flex-basis: 30%;
}

.flex-35 {
    flex-basis: 35%;
}

.flex-40 {
    flex-basis: 40%;
}

.flex-45 {
    flex-basis: 45%;
}

.flex-49 {
    flex-basis: 49%;
}

.flex-50 {
    flex-basis: 50%;
}

.flex-47 {
    flex-basis: 47%;
}

.flex-46 {
    flex-basis: 46%;
}

.flex-68 {
    flex-basis: 68%;
}

.flex-50-100 {
    flex-basis: 50%;
}

.flex-60-100 {
    flex-basis: 60%;
}

.flex-40-100 {
    flex-basis: 40%;
}

.flex-50-100_1000 {
    flex-basis: 50%;
}

.row_column_1000 {
    flex-direction: row;
}

.flex-40-100_1000 {
    flex-basis: 40%;
}

.flex-66-100 {
    flex-basis: 66%;
}

.flex-64-100 {
    flex-basis: 64%;
}

.flex-33-100 {
    flex-basis: 33%;
}

.flex-66-none {
    flex-basis: 66%;
}

.flex-55 {
    flex-basis: 55%;
}

.flex-60 {
    flex-basis: 60%;
}

.flex-31 {
    flex-basis: 31%;
}

.flex-67 {
    flex-basis: 67%;
}

.flex-65 {
    flex-basis: 65%;
}

.flex-70 {
    flex-basis: 70%;
}

.flex-75 {
    flex-basis: 75%;
}

.flex-100 {
    flex-basis: 100%;
}

.margin-0 {
    margin: 0;
}

.padding-0 {
    padding: 0;
}

.padding-40 {
    padding: 40px;
}

.padding-12-16 {
    padding: 12px 16px;
}

.padding-24-32 {
    padding: 24px 32px;
}

.padding-40-24 {
    padding: 40px 24px;
}

.padding-24 {
    padding: 24px;
}

.padding-82-0_0 {
    padding: 82px 0;
}

.padding-16 {
    padding: 16px;
}

.padding-16-24 {
    padding: 16px 24px;
}

.padding-8-0 {
    padding: 8px 0;
}

.padding-8-16 {
    padding: 8px 16px;
}

.padding-8 {
    padding: 8px;
}

.padding-80 {
    padding: 80px;
}

.padding-t-20 {
    padding-top: 20px;
}

.padding-t-2 {
    padding-top: 2px;
}

.padding-t-60 {
    padding-top: 60px;
}

.padding-t-80 {
    padding-top: 80px;
}

.padding-b-60 {
    padding-bottom: 60px;
}

.padding-b-80 {
    padding-bottom: 80px;
}

.padding-r-10 {
    padding-right: 10px;
}

.padding-b-10 {
    padding-bottom: 10px;
}

.padding-b-40 {
    padding-bottom: 40px;
}

.padding-b-30 {
    padding-bottom: 30px;
}

.padding-t-30 {
    padding-top: 30px;
}

.padding-t-40 {
    padding-top: 40px;
}

.padding-r-20 {
    padding-right: 20px;
}

.padding-r-l-24 {
    padding: 0 24px;
}

.padding-r-40 {
    padding-right: 40px;
}

.padding-l-40 {
    padding-left: 40px;
}

.padding-l-5 {
    padding-left: 5px;
}

.padding-l-25 {
    padding-left: 25px;
}

.padding-r-5 {
    padding-right: 5px;
}

.padding-r-50 {
    padding-right: 50px;
}

.margin-b-0 {
    margin-bottom: 0;
}

.margin-b-10 {
    margin-bottom: 10px;
}

.margin-b-5 {
    margin-bottom: 5px;
}

.margin-r-5 {
    margin-right: 5px;
}

.margin-b-15 {
    margin-bottom: 15px;
}

.margin-b-20 {
    margin-bottom: 20px;
}

.margin-b-25 {
    margin-bottom: 25px;
}

.margin-b-30 {
    margin-bottom: 30px;
}

.margin-b-40 {
    margin-bottom: 40px;
}

.margin-b-60 {
    margin-bottom: 60px;
}

.margin-t-0 {
    margin-top: 0;
}

.margin-l-10 {
    margin-left: 10px;
}

.margin-l-15 {
    margin-left: 15px;
}

.margin-t-5 {
    margin-top: 5px;
}

.margin-t-10 {
    margin-top: 10px;
}

.margin-t-20 {
    margin-top: 20px;
}

.margin-t-30 {
    margin-top: 30px;
}

.margin-t-40 {
    margin-top: 40px;
}

.margin-t-60 {
    margin-top: 60px;
}

.margin-t-80-20 {
    margin-top: 80px;
}

.margin-t-80 {
    margin-top: 80px;
}

.margin-r-10 {
    margin-right: 10px;
}

.margin-r-15 {
    margin-right: 15px;
}

.margin-r-20 {
    margin-right: 20px;
}

.margin-r-40 {
    margin-right: 40px;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.img_over {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opacity-07 {
    opacity: .7;
}

.whyus_2_grid-container {
    display: grid;
    gap: 25px;
    width: 100%;
    max-height: 700px;
    grid-template-columns: 2099fr 1000fr;
    grid-template-rows: 799fr 1000fr;
    grid-template-areas: "item1 item2" "item3 item4";
}

.whyus_2_grid-item {
    position: relative;
}

.whyus_2_grid-item:nth-child(1) {
    grid-area: item1;
    min-height: 300px;
    background-color: #1D1D1B;
}

.whyus_2_grid-item:nth-child(2) {
    grid-area: item2;
    min-height: 186px;
    background-color: #E3ECF4;
}

.whyus_2_grid-item:nth-child(3) {
    grid-area: item3;
    min-height: 347px;
}

.whyus_2_grid-item:nth-child(4) {
    grid-area: item4;
    min-height: 369px;
    background-color: #0055A2;
}

.whyus_2_grid-item:nth-child(3) .over-text {
    background: linear-gradient(187.83deg, rgba(7, 7, 7, 0.2584) -11.22%, rgba(0, 0, 0, 0) 42.61%, rgba(0, 4, 17, 0.7068) 78.65%);
}

.whyus_2_grid-item:nth-child(4) .over-text span {
    font-size: 105px;
    font-weight: 700;
    line-height: 105px;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bg-white {
    background-color: #ffffff;
}

.bg-white1 {
    background-color: #FAFDFF;
}

.bg-white2 {
    background: linear-gradient(156.59deg, #FEFFFF -4.93%, #EDF6FD 136.96%);
}

.bg-white3 {
    background-color: #F8FCFF;
}

.bg-white4 {
    background-color: #FBFDFE;
}

.bg-black {
    background-color: #1D1D1B;
}

.bg-blue {
    background-color: #0055A2;
}

.bg-blue_light {
    background-color: #0055A21A;
}

.bg-gray {
    background-color: #E3ECF4;
}

.color-white {
    color: white;
}

.color-white-black {
    color: white;
}

.color-black {
    color: #1D1D1B;
}

.footer_admin a {
    color: #0055A2;
}

.color-blue {
    color: #0055A2;
}

.color-gray {
    color: #8B8D8D;
}

.work_hire-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.work_hire .work_hire-card {
    border: 2px solid #0055A2;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: top;
    min-height: 304px;
}

.work_hire .work_hire-card:hover {
    border: 0;
}

.work_hire .work_hire-card__text {
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
}

.work_hire .work_hire-card:hover .hover-show {
    display: block;
}

.work_hire .work_hire-card:hover .hover-hide {
    display: none;
}

.work_hire .work_hire-card:hover .service-card__title_number {
    color: white;
}

.work_hire .work_hire-card:hover .work_hire-card__text {
    color: white;
}

.work_hire .work_hire-card__info img {
    margin-right: 20px;
}

.work_hire .work_hire-card__info {
    z-index: 12;
}

.work_hire_arrows_dekstop {
    width: 50px;
    height: 55px;
}

.work_hire_arrows_mobile {
    width: 39.09px;
    height: 43px;
}

.main_search {
    background-color: #0055A2;
    padding-bottom: 80px;
    padding-top: 100px;
}

.main_search_screen_right {
    font-size: 48px;
    font-weight: 700;
    line-height: 52.8px;
    color: #F2F6FA;
}

.main_search_screen {
    margin-bottom: 50px;
}

.main_carousel_arrows {
    margin-top: 20px;
    display: none !important;
    margin-bottom: 20px;
}

.work_slider_wrapper {
    margin-top: 20px;
}

.work_slider_arrow_move:hover {
    background: #F8FBFE;
}

.work_slider_arrow_move {
    cursor: pointer;
    width: 55px;
    height: 50px;
    padding: 15px 17px 15px 19px;
    background-color: #ffffff;
    border: 1px solid #CEDDEB;
    z-index: 2;
}

.work_slider_arrow_move.left {
    left: 20px;
    top: 45%;
}

.work_slider_arrow_move.right {
    top: 45%;
    right: 20px;
}

.work_slider_arrow_move2:hover {
    background: #F8FBFE;
}

.work_slider_arrow_move2 {
    width: 55px;
    height: 50px;
    padding: 16px 18px 16px 20px;
    background-color: #ffffff;
    border: 1px solid #CEDDEB;
    z-index: 2;
}

.work_slider_arrow_move2.left {
    left: -3%;
    top: 45%;
}

.work_slider_arrow_move2.right {
    top: 45%;
    right: -3%;
}

.work_slider_wrapper {
    position: relative;
}

.work_slider_blocks__item {
    flex: 0 0 auto;
    max-height: 531px;
    width: 80%;
}

.work_slider_blocks__item_img {
    width: 100% !important;
}

.work_slider_arrows {
    width: 15%;
    padding: 0 15px;
}

.work_slider_blocks {
    overflow-x: hidden;
    overflow-y: hidden;
}

.work_slider_arrow {
    max-width: none;
    width: 101px;
    height: 111px;
    flex: 0 0 auto;
}

.work_slider_arrow.one {
    margin-bottom: 25px;
}

.work_slider_arrow.two {
    margin-top: 25px;
}

.work_slider_arrows_mobile {
    width: 97%;
}

.vakhta_ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 38px;
}

.vakhta_li {
    background-color: #E3ECF4;
    max-width: 512px;
    height: 176px;
    padding: 24px;
    gap: 48px;
    opacity: 0px;
}

.mestnye_wrapper {
    position: relative;
}

.tab_link_mestnye {
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    color: #8B8D8D;
    cursor: pointer;
}

.tab_link_mestnye.active {
    color: #0055A2;
}

.tab-content.active {
    display: block !important;
}

.tab-content {
    display: none;
}

.job-cards_mestnye {
    overflow-x: hidden;
    display: flex;
}

.job-card_mestnye:last-child {
    margin-right: 0;
}

.job-card_mestnye {
    min-width: 425px;
    max-width: 425px;
    height: 439px;
    background-color: #CEDDEB;
    padding: 24px;
    overflow: hidden;
}

.job-card_mestnye__item:last-child {
    padding-right: 0;
}

.job-card_mestnye__item {
    padding-right: 20px;
}

.short_desc p {
    height: 61px;
    overflow: hidden;
    margin-bottom: 25px;
}

.job_block {
    height: 28px;
    margin-bottom: 5px;
    margin-right: 15px;
    padding: 8px;
    border: 1px solid #0055A2;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    text-transform: uppercase;
}

.job_block img {
    padding-right: 5px;
}

.title_mestnye {
    font-size: 32px;
    font-weight: 700;
    line-height: 35.2px;
    height: 70px;
    overflow: hidden;
}

.job_blocks {
    height: 39px;
    overflow: hidden;
}

.text_mestnye {
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
    height: 24px;
    overflow: hidden;
}

.text_mestnye img {
    padding-right: 3px;
}

.get_job {
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    text-transform: uppercase;
    color: #0055A2;
}

.cookie_title {
    text-align: left;
    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
    line-height: 26.4px;
}

.cc-message a {
    color: #0055A2;
}

.cc-floating .cc-message {
    font-family: 'TT-FIRS-Regular';
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    color: #1D1D1B;
    margin-top: 15px;
}

.cookie_buttons {
    display: flex;
    align-items: center;
}

.cc-btn+.cc-btn {
    margin: 0 !important;
}

.custom-select {
    position: relative;
    display: inline-block;
}

.custom-select select {
    width: 100%;
    padding: 16px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #7590a863;
    border-radius: 4px;
    background: white url('../../img/svg/arrow_select.svg') no-repeat right 10px center;
    font-size: 16px;
    line-height: 1.5;
}

.checkbox {
    display: none;
}

.custom-checkbox-container {
    display: flex;
    align-items: center;
}

.custom-checkbox-container a {
    color: #0055A2;
}

.custom-checkbox {
    width: 15px;
    height: 15px;
    border: 1px solid #1D1D1B;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}

.custom-checkbox.white {
    border: 1px solid white;
}

.custom-checkbox.white::after {
    border: solid white;
}

.custom-checkbox::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 4px;
    height: 7px;
    border: solid #1D1D1B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
}

.checkbox:checked+.custom-checkbox::after {
    transform: rotate(45deg) scale(1);
}

.custom-checkbox-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
}

.custom-checkbox-label.white {
    color: white;
}

.modal .social__item a img {
    width: 40px;
}

.send_us {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.input.transparent {
    background: transparent;
    border: 1px solid #DADADA;
    color: white;
}

.custom-checkbox.white::after {
    border: solid white;
    border-width: 0 2px 2px 0;
}

.form .label {
    color: white;
}

.form {
    background-color: #0055A2;
}

.faq_block_item {
    border-bottom: 1px solid #3F80B9;
}

.faq_answer {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
}

.faq_answer.active {
    display: block;
}

.faq_block_item .faq_question {
    cursor: pointer;
    padding: 25px 0;
}

.cases.hide {
    display: none;
}

.cases.hide.active {
    display: block !important;
}

.button-link.active {
    background-color: #0055A2;
    color: white;
}

.feedbacks_block {
    margin-top: 180px;
}

.feedback_go {
    position: absolute;
    width: 31.25px;
    height: 33.8px;
    top: 28.06px;
    left: 29.97px;
}

.switch_circle {
    width: 88px;
    height: 88px;
    border-radius: 92px;
}

.rounded-line {
    width: 44px;
    height: 5px;
    gap: 0px;
    opacity: 0.3px;
    background-color: #4C88BE;
    margin: 10px 0;
    margin-right: 20px;
}

.feedback_prof {
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.2em;
    opacity: .6;
    color: #FFFFFF;
}

.feedback_arrows_block {
    height: 120px;
}

.feedback_arrows {
    position: absolute;
    width: 100%;
    top: -80px;
    background-image: url(../../img/svg/transparent_arrow_right.svg);
    background-position: center;
    background-repeat: repeat-x;
    height: 218px;
}

.rounded-line.show {
    background-color: #FFFFFF;
}

.feedback_block {
    display: none;
    flex-direction: column;
    min-height: 480px;
    justify-content: space-between;
}

.feedback_block.show {
    display: flex;
}

.about_project_block {
    border-top: 1px solid #C4C5C6;
    padding: 36px 0 64px;
}

.about_project p {
    margin-top: 0;
}

.project_title {
    padding-left: 50px;
    font-size: 36px;
    font-weight: 700;
    line-height: 39.6px;
    text-align: left;
}

.project_number {
    color: #0055A2;
    font-size: 36px;
    font-weight: 700;
    line-height: 39.6px;
}

.case_top_img {
    max-height: 560px;
}

.case_top .case_text {
    font-size: 18px;
    line-height: 21.6px;
    padding-right: 70px;
}

.case_result .text_h3 {
    letter-spacing: 0.1em;
}

.cases_top_img {
    max-height: 549px;
}

.cases_top_text {
    padding: 100px 131px;
}

.areas_top_text {
    padding: 50px 131px;
}

.areas_top_img {
    max-height: 478px;
}

.areas_title {
    font-size: 36px;
    font-weight: 700;
    line-height: 39.6px;
}

.area_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.img_over_areas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.areas_block {
    position: relative;
}

.fixed-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: clip-path 0.5s ease-in-out;
}

.img_container {
    display: none;
    position: absolute;
    width: 100%;
}

.img_container.active {
    display: block;
}

p.answer {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
}

p.answer a {
    color: #0055A2;
}

.constant_workers_li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: white;
    border-radius: 50%;
}

.constant_workers_li {
    position: relative;
    padding-left: 20px;
    list-style-type: none;
    font-size: 21px;
    font-weight: 500;
    line-height: 25.6px;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.fillin_grid_title {
    font-size: 143px;
    font-weight: 700;
    line-height: 128.7px;
    color: #0055A2;
}

.fillin_grid_text {
    font-size: 60px;
    font-weight: 700;
    line-height: 54px;
    color: #0055A2;
}

.fillin_autsors .text_h3 {
    letter-spacing: 0.1em;
}

.fillin_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 38px;
}

.search-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    padding-left: 300px;
}

.search-card__text {
    font-size: 24px;
    font-weight: 700;
    line-height: 26.4px;
}

.search_workers .work_hire-card:hover .search-card__text {
    color: white;
    z-index: 3;
}

.search_workers .work_hire-card:hover {
    border: none;
}

.search_workers .work_hire-card:hover .service-card__title_number {
    color: white;
    z-index: 3;
}

.search_workers .work_hire-card:hover .hover-show {
    display: block !important;
}

.search_workers .work_hire-card {
    border: 2px solid #0055A2;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: top;
    min-height: 260px;
}

.mobile {
    display: none;
}

.mobile_1200 {
    display: none;
}

.mobile_1000 {
    display: none;
}

.why_us_number {
    font-size: 48px;
    font-weight: 700;
    line-height: 43.2px;
}

.why_us_number.white {
    color: #ffffff;
}

.why_us_title {
    font-size: 36px;
    font-weight: 700;
    line-height: 39.6px;
}

.why_us_title.white {
    color: #ffffff;
}

.text_gray_opacity {
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    letter-spacing: 0.2em;
    color: #E3ECF4;
    opacity: 0.7;
}

.up {
    text-transform: uppercase;
}

.text_litte_gray {
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    letter-spacing: 0.02em;
    color: #E3ECF4;
}

.border-bottom-gray2 {
    border-bottom: 1px solid #E3ECF4;
}

.border-bottom-gray {
    border-bottom: 1px solid #8B8D8D;
}

.border-white {
    border: 1px solid #E3ECF4;
}

.border-bottom-blue-light {
    border-bottom: 1px solid #CEDDEB;
}

.border-bottom-blue {
    border-bottom: 1px solid #0055A2;
}

.border-bottom-blue_before::before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    right: auto;
    left: 0;
    height: 1px;
    background-color: #0055A2;
}

.border-blue {
    border: 1px solid #0055A2;
}

.border-blue3 {
    border: 1px solid #3F80B9;
}

.border-blue-2 {
    border: 2px solid #0055A2;
}

.bordered_button {
    z-index: 22;
    background-color: #0055A2;
    padding: 16px 30px;
    clip-path: polygon(0 0, calc(100% - 10%) 0, 100% 20%, 100% calc(100% - 20%), calc(100% - 10%) 100%, 0 100%, 0 20%);
    color: white;
}

.custom-button {
    display: inline-block;
    padding: 2px;
    font-weight: 700;
    background-color: white;
    text-transform: uppercase;
    letter-spacing: .24px;
    line-height: 18.2px;
    font-size: 14px;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 10%) 0, 100% 20%, 100% calc(100% - 20%), calc(100% - 10%) 100%, 0 100%, 0 20%);
}

.custom-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.custom-button img {
    width: 10px;
    height: 11px;
    margin-right: 10px;
}

.articles_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
}

.article_heads {
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.article_body img {
    width: 100%;
}

.article_body a {
    color: #0055A2 !important;
}

.nagivation_title {
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.services_slider_item {
    width: 653px;
    padding-right: 20px;
}

.services_slider_item:last-child {
    padding-right: 0;
}

.services_slider_item img.img_over {
    height: 400px;
}

.whyte_us_areas_item_1 {
    min-height: 390px;
    max-height: 390px;
}

.whyte_us_areas_item_2 {
    min-height: 390px;
    max-height: 390px;
    background: #E3ECF4;
}

.whyte_us_areas_item_3 {
    min-height: 390px;
    max-height: 390px;
    background: #1D1D1B;
}

.whyte_us_areas_item_4 {
    min-height: 390px;
    max-height: 390px;
    background: #0055A2;
}

.areas_services_item {
    background-color: #E3ECF4;
}

.constant_workers_cards_price {
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.constant_workers_cards_item {
    border: 1px solid #0055A2;
    height: 408px;
    overflow: hidden;
}

.constant_workers_cards_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

.constant_workers_cards .mobile {
    display: none;
}

.linear-gradient {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12;
}

.privacy_li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 12px;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: #1D1D1B;
    border-radius: 50%;
}

.privacy_li {
    position: relative;
    padding-left: 20px;
    list-style-type: none;
}

.job_top_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    grid-column-gap: 40px;
}

.jobs_new_popular {
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.jobs_filter_text {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
}

.radio {
    display: none;
}

.custom-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
}

.radio-container input:checked~.custom-radio:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: black;
    transform: translate(-50%, -50%);
}

.filter_checkbox_label {
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.filter_window {
    display: none;
    z-index: 12;
    left: 0;
    width: 250px;
    top: 0;
}

.filter_window.active {
    display: block;
}

.jobs_filter_modal {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.jobs_filter::before {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 100%;
    right: auto;
    left: 0;
    height: 1px;
    background-color: #161616;
    transition: width 0.3s ease;
}

.jobs_filter_title {
    font-size: 12px;
    font-weight: 700;
    line-height: 15.6px;
    letter-spacing: 0.1em;
}

.jobs_filter_window {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
}

.team_slider__item img {
    height: 280px;
}

.team_slider__item {
    width: 425px;
    padding-right: 20px;
}

.team_slider__item:last-child {
    padding-right: 0;
}

.border-bottom-white::before {
    content: "";
    position: absolute;
    bottom: 3px;
    width: 100%;
    right: auto;
    left: 0;
    height: 1px;
    background-color: white;
}

.border-bottom-black::before {
    content: "";
    position: absolute;
    bottom: 3px;
    width: 100%;
    right: auto;
    left: 0;
    height: 1px;
    background-color: #161616;
}

.border-bottom-black2_hover_blue {
    position: relative;
}

.border-bottom-black2_hover_blue::before {
    content: "";
    position: absolute;
    bottom: 1px;
    width: 100%;
    left: 2px;
    height: 1px;
    background-color: #161616;
    transition: background-color 0.3s ease;
}

.border-bottom-black2_hover_blue:hover::before {
    background-color: #0055A2;
}

.modal__wrapper-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-height: 736px;
    overflow-y: auto;
    max-width: 100%;
}

.modal__wrapper-column {
    display: flex;
    flex-direction: column;
    max-width: 200px;
    width: 200px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    padding-top: 40px;
}

.modal__wrapper-letter {
    position: absolute;
    left: 0;
    top: -5px;
}

.padding-contacts-form {
    padding: 95px;
}

.socials__item_text {
    background-image: url('../../img/svg/arrow_transparent.svg');
    background-repeat: repeat-x;
    background-position: 230px 0;
}

.move-arrow {
    animation: moveArrow 5s linear infinite;
}

@keyframes moveArrow {
    0% {
        background-position: 230px 0;
    }

    100% {
        background-position: 610px 0;
    }

    ;
}

.socials__item {
    margin-right: 30px;
}

.socials__item:last-child {
    margin-right: 0;
}

.search_icon:after {
    content: "";
    background: url(../../img/svg/search_icon.svg) no-repeat center;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 20px;
    bottom: 19px;
    pointer-events: none;
}

.calc_arrows {
    background-image: url(../../img/svg/arrow_transparent3.svg);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: 600px;
}

.calc_domain.active {
    color: white !important;
    background-color: #0055A2 !important;
}

.calc_domain img {
    width: 32px;
    height: 32px;
    padding-right: 10px;
}

.calc_domain .calc_domain_2 {
    display: none;
}

.calc_domain.active .calc_domain_1 {
    display: none;
}

.calc_domain.active .calc_domain_2 {
    display: block;
}

.calc_spec.active {
    color: white !important;
    background-color: #0055A2 !important;
}

.calc_spec:hover {
    background: #CEDDEB;
}

.progress {
    height: 0;
    transition: height 1.5s ease-out;
}

.progress-h_0_10.animate {
    height: 10%;
}

.progress-h_0_90.animate {
    height: 90%;
}

.navigation_markers_scroll>div:hover {
    color: #0055A2;
}

.custom-button.blue {
    background-color: #0055A2 !important;
}

.bordered_button.white {
    background-color: white !important;
}

.bordered_button.white span {
    color: #0055A2 !important;
}

.job_card_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 35.2px;
}

.job_titles_text {
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    letter-spacing: 0.02em;
}

.dekstop .job_card_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.mobile .job_card_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px;
}

.black_li {
    position: relative;
    padding-left: 20px;
    list-style-type: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
}

.black_li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: #1D1D1B;
    border-radius: 50%;
}

.form_arrow {
    background-image: url(/img/svg/form_arrow.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: auto;
}

.google_form_header_arrows {
    background-image: url(../../img/svg/arrow_border_white.svg);
    background-repeat: repeat-x;
}

.google-form-card {
    max-width: 650px;
    opacity: 1;
    gap: 40px;
    padding-top: 40px;
    padding-right: 60px;
    padding-bottom: 40px;
    padding-left: 60px;
    margin-bottom: 20px;
}

.google-form {
    width: 650px;
    max-width: 100%;
    margin: 0 auto;
}

.google-form li {
    margin-bottom: 17px !important;
}

.google-form label {
    cursor: pointer;
}

.group input.input[type="text"]:disabled {
    border: 1px solid #C4C5C6;
}

.group input.input[type="text"]:disabled+label {
    color: #C4C5C6;
}

@media (max-width: 1700px) {
    .cases_top_text {
        padding: 100px 30px;
    }

    .areas_top_text {
        padding: 50px 30px;
    }
}

@media (max-width: 1440px) {
    .main-form__final .btn {
        padding: 18px 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .breadcrumbs .wrapper {
        padding: 0;
    }

    .form-list li {
        margin-bottom: 20px;
    }

    .input.focus~.label,
    .textarea.focus~.label {
        top: -25px;
    }
}

@media (max-width: 1439px) {
    .slider-app {
        width: 100%;
    }
}

@media (max-width: 1400px) {
    .burger {
        display: block;
    }

    .why_choice_block>div {
        flex-basis: 100%;
    }

    .arrows_img {
        margin-bottom: 30px;
    }

    .why_choice_arrows {
        height: 336px;
    }

    .p_mestnye {
        flex-basis: 40% !important;
    }

    .tabs_mesntye {
        flex-basis: 40% !important;
    }

    .cookie_buttons {
        flex-direction: column;
    }

    .cookie_buttons a {
        width: 100%;
    }
}

@media (max-width: 1350px) {
    .menu__item {
        margin-right: 15px;
    }

    .service .hover-show {
        display: block !important;
    }

    .line-gradient {
        display: block;
    }

    .service-card {
        border: 0;
    }

    .service-card .service-card__title_number {
        color: white;
        z-index: 10;
    }

    .service-card .service-card__text {
        color: white;
        z-index: 10;
    }

    .service-card .service-card__title_button {
        background-color: #0055A2;
        color: white;
    }

    .service-card .service-card__title_button .arrow_white {
        display: block;
    }

    .service-card .service-card__title_button .arrow_blue {
        display: none;
    }

    .service_block {
        flex-basis: 100% !important;
    }

    .button_up {
        display: none !important;
    }

    .service_block:nth-child(2) {
        margin-bottom: 20px;
    }

    .button_down {
        display: block !important;
    }

    .main_search {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .main_search_screen {
        flex-direction: column;
    }

    .main_search_screen_item_item {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1300px) {
    .menu {
        display: none;
    }

    .feauters {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .feauters__item {
        width: 40%;
        margin: 0;
        margin-bottom: 20px;
    }

    .form {
        flex-wrap: wrap;
    }

    .work__item:nth-child(1) {
        margin-bottom: 50px;
    }

    .work__item {
        flex-basis: 100% !important;
    }

    .works {
        padding: 0;
    }

    .works-list__item {
        width: calc(33% - 40px);
        margin: 0 20px 24px 20px;
    }

    .column-text {
        -moz-column-count: 1;
        column-count: 1;
    }

    .vacancy-tab__check {
        margin-right: 20px;
    }

    .vacancy-card {
        padding: 40px 20px;
    }

    .block-fullscreent__body {
        padding-left: 50px;
    }

    .whyus {
        margin-left: 0;
    }

    .margin_left {
        margin-left: 0;
    }

    .work_hire-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .search_workers .search-list {
        padding-left: 0;
    }
}

@media (max-width: 1250px) {
    .logo-list_blocks_item {
        flex-basis: 100%;
    }

    .logo-list_blocks_item_ul {
        flex-basis: 100%;
        margin-top: 20px;
    }

    .tagline-logo {
        margin-bottom: 20px;
    }

    .text_logo_block {
        margin-top: 30px;
    }

    .logo-list_blocks_item>.contact_button {
        display: none;
    }

    .text_logo_block>.contact_button {
        display: inline-block;
    }

    .footer__inner-item {
        flex-basis: 50% !important;
        margin-top: 20px;
    }
}

@media (max-width: 1200px) {
    .whyus_grid-container {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
        grid-template-areas: "item1" "item2" "item3" "item4";
    }

    .cases_columns {
        flex-direction: column;
        height: auto;
        overflow: inherit;
    }

    .case_column {
        flex-basis: 100%;
    }

    .case_column1_title {
        font-size: 32px;
        line-height: 32px;
    }

    .case_heads {
        margin-bottom: 40px;
    }

    .case_column {
        padding: 30px 15px;
    }

    .case_tab {
        margin-right: 10px;
    }

    .cases_title_block {
        flex-direction: column;
        align-items: flex-start;
    }

    .case_buttons.mobile {
        display: flex;
    }

    .case_under_title {
        display: block;
    }

    .case_text_title {
        font-size: 24px;
        line-height: 24px;
    }

    .case_text {
        font-size: 18px;
        line-height: 21.6px;
    }

    .cases .case_column .contact_button {
        min-width: auto;
        padding: 16px 10px;
    }

    .mobile_1200 {
        display: block;
    }

    .dekstop_1200 {
        display: none;
    }
}

@media (max-width: 1100px) {
    .about {
        flex-wrap: wrap;
    }

    .service-card__title_button {
        display: none;
    }

    .service-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .service-card__text {
        font-size: 28px;
        line-height: 30.8px;
        width: 200px;
    }

    .block-info-column {
        display: block;
    }

    .block-info-column__text {
        width: 100%;
        margin-bottom: 80px;
    }

    .block-info-column__image {
        width: 100%;
    }

    .form_columns {
        flex-direction: column;
    }

    .form_columns__item {
        flex-basis: 100% !important;
    }

    .form .label {
        font-size: 16px;
        font-weight: 500;
        line-height: 19.2px;
    }
}

@media (max-width: 1000px) {
    .wrapper {
        padding: 0 30px;
    }

    .main-title--margin {
        text-align: center;
    }

    .btn {
        font-size: 16px;
    }

    .btn {
        font-size: 17px;
    }

    .works-list__item {
        width: calc(50% - 40px);
    }

    .blog__inner {
        flex-wrap: wrap;
    }

    .blog__item {
        flex-basis: 100%;
    }

    .blog__item:nth-child(2) {
        flex-basis: 100%;
    }

    .blog__item:nth-child(1) {
        margin-bottom: 20px;
    }

    .footer__inner {
        justify-content: space-between;
    }

    .footer-menu {
        margin-bottom: 15px;
    }

    .main-form__final {
        flex-wrap: wrap;
    }

    .modal {
        height: 100%;
    }

    .modal--country {
        height: 170px;
    }

    .slider-vacancy-info__pagination {
        display: flex;
    }

    .calc-tabs__button {
        margin-right: 40px;
    }

    .block-info__column-text {
        display: block;
    }

    .block-info__column:nth-child(2) {
        margin-left: 0;
    }

    .block-info img {
        margin: 20px 0;
    }

    .block-fullscreent {
        display: block;
    }

    .block-fullscreent__column:last-child {
        padding: 60px 0;
        transform: none;
    }

    .block-fullscreent__body {
        width: 100%;
        padding-left: 0;
    }

    .mobile_1000 {
        display: block;
    }

    .dekstop_1000 {
        display: none;
    }
}

@media (max-width: 900px) {
    .grid-4-1fr_1-1fr {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-3-1fr_1-1fr {
        grid-template-columns: repeat(1, 1fr);
    }

    .row_column {
        flex-direction: column;
    }

    .a-items_center_start {
        align-items: flex-start;
    }

    .a-items_end_start {
        align-items: flex-start;
    }

    .title_82_40 {
        font-size: 40px;
        font-weight: 700;
        line-height: 40px;
    }

    .title_56_24 {
        font-size: 24px;
        line-height: 24px;
    }

    .text_404 {
        font-size: 24px;
        line-height: 24px;
    }

    .title_66_56 {
        font-size: 56px;
        font-weight: 700;
        line-height: 56px;
    }

    .title_56_40 {
        font-size: 40px;
        line-height: 40px;
    }

    .title_36_32 {
        font-size: 32px;
        line-height: 32px;
    }

    .title_28_18 {
        font-size: 18px;
        font-weight: 700;
        line-height: 21.6px;
    }

    .title_36_18 {
        font-size: 18px;
        font-weight: 700;
        line-height: 21.6px;
    }

    .font-700-500 {
        font-weight: 500;
    }

    .title_42_24 {
        font-size: 24px;
        font-weight: 700;
        line-height: 28.8px;
    }

    .text_24_18px {
        font-size: 18px;
    }

    .text_14_12 {
        font-size: 12px;
        font-weight: 700;
        line-height: 15.6px;
        letter-spacing: 0.1em;
    }

    .number_144_56 {
        font-size: 56px;
        font-weight: 700;
        line-height: 50.4px;
    }

    .title_24_24 {
        font-size: 24px;
        font-weight: 700;
        line-height: 24px;
    }

    .text_24_14 {
        font-size: 14px;
        font-weight: 700;
        line-height: 12.6px;
    }

    .number_260_175 {
        font-size: 175px;
        font-weight: 700;
        line-height: 175px;
    }

    .title_h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .title_h2_transform {
        font-size: 28px;
        line-height: 30.8px;
    }

    .title_h2_2_transform {
        font-size: 24px;
        line-height: 24px;
    }

    .title_h3_transform,
    .title_h3_transform>* {
        font-size: 18px;
        line-height: 21.6px;
    }

    .w-25-100 {
        width: 100%;
    }

    .w-50-100 {
        width: 100%;
    }

    .w-60-100 {
        width: 100%;
    }

    .w-40-100 {
        width: 100%;
    }

    .w-70-100 {
        width: 100%;
    }

    .w-75-100 {
        width: 100%;
    }

    .w-80-100 {
        width: 100%;
    }

    .w-auto-100 {
        width: 100%;
    }

    .section {
        padding: 30px 0;
    }

    .feauters__stat .number {
        font-size: 71px;
        line-height: 63.9px;
    }

    .feauters__stat {
        font-size: 28px;
        line-height: 25.2px;
    }

    .feauters__text {
        font-size: 12px;
        line-height: 15.6px;
    }

    .feauters__item {
        width: 40%;
        margin: 0;
        margin-bottom: 20px;
    }

    .main-title {
        font-size: 40px;
        line-height: 40px;
    }

    .form-list__50 {
        width: 100%;
    }

    .map_arrows_animation {
        background-image: url('../../img/svg/transparent_half_mobile.svg');
        background-repeat: repeat-x;
        animation: moveArrows2 10s linear infinite;
    }

    .work__item:nth-child(1) {
        position: relative;
        height: 172px;
        background-image: url('../../img/svg/medium_white_arrow.svg');
        background-repeat: repeat-x;
        background-size: var(--medium_white_arrow) 100%;
        animation: moveArrows1 5s linear infinite;
    }

    .title-workers {
        font-size: 40px;
        line-height: 40px;
    }

    .tagline-workers {
        font-size: 18px;
        line-height: 21.6px;
    }

    .phone-workers {
        margin-left: 0;
    }

    .tagline-workers-bottom {
        flex-wrap: wrap;
    }

    .phone-workers {
        flex-basis: 100%;
        margin-top: 20px;
    }

    .blog_title {
        line-height: 24px;
    }

    .footer_admin_block_item:nth-child(1) {
        flex-basis: 100%;
    }

    .footer_admin_block_item:nth-child(2) {
        flex-basis: 100%;
        margin-top: 20px;
        padding: 0 0;
        height: 400px;
    }

    .footer_admin_title {
        font-size: 40px;
        line-height: 40px;
        font-weight: 700;
    }

    .footer_admin h3:nth-child(1) {
        font-size: 32px;
        line-height: 32px;
    }

    .footer_admin p {
        font-size: 14px;
        line-height: 18.2px;
    }

    .modal {
        overflow: auto;
    }

    .pagination_ul {
        justify-content: unset;
    }

    .whyus_title_item:nth-child(1) {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .whyus_title_item {
        flex-basis: 100% !important;
    }

    .whyus_text_text {
        font-size: 18px;
        line-height: 21.6px;
    }

    .whyus_grid-item:nth-child(3) .whyus_text {
        justify-content: space-between;
    }

    .whyus_grid-item:nth-child(4) .whyus_text {
        justify-content: space-between;
    }

    .whyus_text {
        padding: 20px;
    }

    .whyus_grid-item:nth-child(1) {
        max-height: 300px;
    }

    .whyus_grid-item:nth-child(2) {
        max-height: 300px;
    }

    .whyus_grid-item:nth-child(3) {
        max-height: 221px;
    }

    .whyus_grid-item:nth-child(4) {
        max-height: 221px;
    }

    .why_service_mobile_card {
        height: 227px !important;
    }

    .cases_landing .wrapper {
        padding: 0 !important;
    }

    .cases_landing .wrapper_cases {
        padding: 0 20px !important;
    }

    .white_p_black {
        color: #1D1D1B;
    }

    .main_screen {
        flex-wrap: wrap;
    }

    .main_carousel {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        margin-bottom: 30px;
    }

    .main_carousel__item {
        scroll-snap-align: start;
        transition: none;
        min-width: 100%;
    }

    .main_carousel__item img.hover-hide {
        object-fit: none;
    }

    .main-screen__item:nth-child(2) {
        max-height: none;
        max-width: none;
    }

    .main-screen__item {
        flex-basis: 100% !important;
    }

    .main_screen_row {
        flex-direction: column;
        align-items: flex-start;
    }

    .main_carousel__item .hover-hide {
        display: none !important;
    }

    .main_carousel__item .hover-show {
        display: block !important;
    }

    .work_steps_text {
        margin-bottom: 30px;
        width: 100%;
    }

    .work_step_block:nth-child(2) {
        padding: 0;
    }

    .why_choice_img {
        max-height: 223px;
    }

    .arrows_img img {
        height: 74px;
    }

    .flex-50-100_1000 {
        flex-basis: 100%;
    }

    .flex-60-100 {
        flex-basis: 100%;
    }

    .flex-25-auto {
        flex-basis: auto;
    }

    .flex-40-100_1000 {
        flex-basis: 100%;
    }

    .flex-66-100 {
        flex-basis: 100%;
    }

    .flex-33-100 {
        flex-basis: 100%;
    }

    .row_column_1000 {
        flex-direction: column;
    }

    .flex-66-none {
        flex-basis: unset;
    }

    .flex-64-100 {
        flex-basis: 100%;
    }

    .flex-50-100 {
        flex-basis: 100%;
    }

    .flex-40-100 {
        flex-basis: 100%;
    }

    .padding-82-0_0 {
        padding: 0;
    }

    .margin_left_2 {
        margin-left: 0;
    }

    .whyus_2_grid-item>div {
        padding: 20px;
    }

    .whyus_2 .j-content_end {
        justify-content: space-between;
    }

    .whyus_2_grid-container {
        grid-template-rows: auto;
        max-height: none;
        grid-template-columns: 1fr;
        grid-template-areas: "item1" "item2" "item3" "item4";
    }

    .color-white-black {
        color: #1D1D1B;
    }

    .work_hire .work_hire-card__text {
        line-height: 30.8px;
    }

    .work_hire-list {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 75px;
    }

    .work_hire .work_hire-card {
        min-height: 200px;
    }

    .margin-t-80-20 {
        margin-top: 20px;
    }

    .main_search_screen_right {
        font-size: 32px;
        line-height: 32px;
    }

    .main_carousel_arrows {
        display: flex !important;
    }

    .work_slider_blocks__item {
        width: 98%;
    }

    .work_slider_arrows {
        width: 12%;
    }

    .work_slider_arrow {
        width: 33px;
        height: 36px;
    }

    .vakhta_li {
        max-width: 100%;
    }

    .vakansii_vakhta__item {
        flex-basis: 100% !important;
    }

    .vakhta_ul {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 32px;
    }

    .job_blocks {
        height: 78px;
    }

    .job-card_mestnye {
        max-width: 335px;
        min-width: 335px;
        height: 559px;
    }

    .tabs_mesntye {
        width: 80% !important;
    }

    .texts_mestnye {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .p_mestnye {
        flex-basis: 100% !important;
    }

    .city_shift {
        flex-direction: column;
    }

    .text_mestnye {
        margin-bottom: 10px;
    }

    .socials_mestnye {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .socials_mestnye a {
        margin-top: 10px;
    }

    .socials_mestnye .contact_button {
        padding: 16px 0;
    }

    .faq_block {
        flex-direction: column;
    }

    .feedback_arrows {
        background-image: url(../../img/svg/transparent_arrow_right_little.svg);
        position: relative;
        top: 0;
        height: 106px;
        justify-content: start !important;
    }

    .feedback_block.show {
        min-height: 450px;
    }

    .feedback__item {
        flex-basis: 100% !important;
    }

    .feedback__items {
        flex-direction: column;
    }

    .feedback__item:nth-child(1) {
        max-height: 350px;
    }

    .feedback__item:nth-child(1) img.img_over {
        height: 350px;
    }

    .feedbacks_block {
        margin-top: 0;
    }

    .project_title {
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .case_top .case_head .head_text {
        max-width: 130px;
        min-height: 54.56px;
        color: white;
        opacity: 1;
    }

    .case_top .case_head .head {
        font-size: 40px;
        line-height: 40px;
    }

    .case_top .case_text {
        padding: 0;
    }

    .case_top_img {
        max-height: 287px;
    }

    .areas_title {
        font-size: 32px;
        line-height: 32px;
    }

    .area_grid {
        grid-template-columns: repeat(1, 1fr);
        border-bottom: 1px solid #3F80B9;
    }

    .fillin_grid_title {
        font-size: 71px;
        line-height: 63.9px;
    }

    .fillin_grid_text {
        font-size: 28px;
        line-height: 25.2px;
    }

    .search_workers .hover-show {
        display: block !important;
    }

    .search_workers .search-list {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 0;
    }

    .search_workers .work_hire-card .search-card__text {
        color: white;
        z-index: 3;
    }

    .search_workers .work_hire-card .service-card__title_number {
        color: white;
        z-index: 3;
    }

    .search_workers .work_hire-card {
        border: none;
        min-height: 240px;
    }

    .constant_workers .wrapper {
        padding: 0;
    }

    .mobile {
        display: block;
    }

    .dekstop {
        display: none;
    }

    .why_us_title {
        font-size: 24px;
        font-weight: 700;
        line-height: 26.4px;
    }

    .articles_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services_slider_item {
        width: 312px;
    }

    .services_slider_item img.img_over {
        height: 270px;
    }

    .whyte_us_areas_item_1 {
        height: 358px;
    }

    .whyte_us_areas_item_2 {
        min-height: 354px;
        max-height: 354px;
    }

    .whyte_us_areas_item_3 {
        min-height: 314px;
        max-height: 314px;
    }

    .whyte_us_areas_item_4 {
        min-height: 332px;
        max-height: 332px;
    }

    .areas_services_item {
        width: 335px !important;
    }

    .constant_workers_cards .mobile {
        display: block;
    }

    .constant_workers_cards .dekstop {
        display: none;
    }

    .job_top_grid {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 0;
        grid-gap: 30px;
    }

    .team_slider__item {
        width: 335px;
    }

    .padding-contacts-form {
        padding: 40px 20px 70px 20px;
    }

    .form_arrow {
        background-image: url(/img/svg/form_arrow2.svg);
        background-repeat: no-repeat;
        background-position: 100% 50%;
        background-size: auto;
    }

    .google-form-card {
        padding: 20px;
    }
}

@media (max-width: 800px) {
    .about {
        margin-bottom: 0;
    }

    .about__item {
        flex-basis: 100%;
    }

    .about__item:nth-child(1) {
        display: none;
    }

    .footer__inner-item {
        flex-basis: 100% !important;
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding: 0 20px;
    }

    .works-list {
        padding-bottom: 20px;
    }

    .cases_top_text {
        padding: 100px 20px;
    }
}

@media (max-width: 767px) {
    .main-form__final .private {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .calc-tabs__button {
        padding: 9px 0;
        margin-right: 0px;
    }

    .calc-tabs__button.active {
        border: none;
    }

    .block-info-column__text {
        margin-bottom: 40px;
    }

    .block-info-column__image::before {
        top: 20px;
        left: 0px;
    }
}

@media (max-width: 700px) {
    .header__top-item .choice {
        display: none;
    }

    .header__top-item .phone {
        display: none;
    }

    .header__top-item .social {
        display: none;
    }

    .header {
        margin-bottom: 65px;
    }

    .arrow_text {
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .wrapper {
        padding: 0 20px;
    }

    .content-text {
        margin-top: 194px;
    }

    .input.focus~.label,
    .textarea.focus~.label {
        top: -20px;
        font-size: 11px;
    }

    .works-list__item {
        width: calc(100% - 40px);
    }

    .logo-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner-item:nth-child(5) {
        flex-direction: column;
        align-items: normal;
    }

    .footer__inner-item:nth-child(5)>.private-link {
        margin-bottom: 20px;
    }

    .slider-vacancy-info__prev {
        display: none;
    }

    .slider-vacancy-info__next {
        display: none;
    }

    .vacancy-option__check-main:first-child {
        margin-right: 0;
        margin-bottom: 12px;
    }
}

@media (max-width: 430px) {
    .choice-window__btns a+a {
        margin-left: 6px;
    }

    .choice-window__btns .btn {
        padding: 14px 15px;
    }
}

@media (max-width: 359px) {
    .choice-window__btns a+a {
        margin: 0 0 6px 0;
    }

    .modal--country {
        height: 200px;
    }
}

@media (max-width: 320px) {
    .title-h3 {
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 1.2;
    }

    .btn {
        padding: 24px 20px;
    }

    .btn img {
        margin-right: 5px;
    }

    .blog-line__img img {
        height: auto;
        min-width: 85px;
    }

    .footer {
        padding: 50px 0 20px 0;
    }

    .main-form__final {
        flex-wrap: wrap;
    }
}