/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/

/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/

/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/

/* ___________ BASE STYLE____________*/

.layout-center {
    max-width: 1300px;
    margin: 0 auto;
}

.main-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.main-footer {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.no-padd-left {
    padding-left: 0;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    outline: none;
}

h1.vacancy {
    font-size: 36px;
    color: #f3972d;
    text-transform: uppercase;
    background: none;
    padding-top: 12px;
    padding-bottom: 0px;
}

h2 {
    color: #9bcfec;
    text-transform: uppercase;
    font-size: 36px;
}

h2 > em {
    color: #029dd8;
    font-style: normal;
    text-transform: uppercase;
}

.modal-body h2 {
    color: #fff;
}

.container .row h3 {
    margin-top: 30px;
    color: #0771b7;
    font-size: 26px;
    line-height: 26px;
}

.container .row h4 {
    margin-top: 30px;
    font-size: 20px;
    line-height: 20px;
}

.career h4 {
    font-size: 18px !important;
    font-weight: bold;
}

.career div > h4 {
    font-weight: normal;
    color: #f3972d;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    outline: none !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a.vacancy-backlink {
    color: #f3972d;
    text-decoration: none;
    font-size: 18px;
}

a.vacancy-backlink img {
    margin-bottom: 5px;
}

p {
    line-height: 24px;
}

p a {
    text-decoration: underline;
    color: #000;
}

ul, ol {
    margin-top: 10px;
}

li {
    line-height: 24px;
}

li a {
    color: #000;
}

img {
    vertical-align: middle;
    outline: none !important;
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 20px;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

svg {
    display: inline-block;
    fill: currentColor;
    -webkit-transition: fill .3s;
    transition: fill .3s;
}

b {
    font-family: "DIN-Medium";
    font-weight: normal;
}

html {
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    font-size: 18px;
    line-height: 24px;
    min-width: 320px;
    position: relative;
    font-family: "DIN-Regular", sans-serif;
    overflow-x: hidden;
    color: #000;
    background-color: #fff;
    padding-top: 130px;
    height: 100%;
}

/*MAIN-HEADER*/

.main-header {
    min-height: 130px;
    position: fixed;
    background-color: #fff;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 200;
}

.top-row__left {
    float: left;
    padding: 22px 0 0 36px;
    width: 20%;
}

.top-row__right {
    float: right;
    width: 80%;
}

.header-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 39px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.header-info__content {
    width: 617px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.header-info__links {
    background-color: #e8e8e8;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 16px;
    color: #0771b7;
    font-size: 16px;
    font-family: "DIN-Medium";
    min-height: 39px;
}

.header-info__links a {
    color: #0771b7;
    font-size: 16px;
    font-weight: 400;
    font-family: "DIN-Medium";
    line-height: 24px;
    padding-right: 20px;
}

.header-info__links a:last-child {
    padding-left: 20px;
}

.phone-block {
    border: 1px solid #9cc6e2;
    -webkit-border-radius: 0 0 0 4px;
    border-radius: 0 0 0 4px;
    border-top: none;
    border-right: none;
    width: 282px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 16px;
    font-size: 18px;
    min-height: 39px;
}

.phone-block span {
    font-size: 18px;
    font-weight: 500;
    color: #0771b7;
    font-family: "DIN-Medium";
    padding-right: 10px;
}

.phone-link {
    color: #f3972d;
    font-family: "DIN-Medium";
}

.phone-link:hover {
    color: #f3972d;
}

/*HEADER-NAV*/

.header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    float: right;
}

.header-nav__search {
    margin-left: 5px;
}

.header-nav__search form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.header-nav__search input {
    border: none;
    width: 207px;
    height: 40px;
    background-color: #e8e8e8;
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    font-size: 18px;
    font-weight: 500;
    padding-left: 18px;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
    padding-top: 5px;
}

.header-nav__search input::-webkit-input-placeholder {
    color: #0771b7;
    opacity: 1;
}

.header-nav__search input:-ms-input-placeholder {
    color: #0771b7;
    opacity: 1;
}

.header-nav__search input::-ms-input-placeholder {
    color: #0771b7;
    opacity: 1;
}

.header-nav__search input::-webkit-input-placeholder {
    color: #0771b7;
    opacity: 1;
}

.header-nav__search input::-moz-placeholder {
    color: #0771b7;
    opacity: 1;
}

.header-nav__search input:-ms-input-placeholder {
    color: #0771b7;
    opacity: 1;
}

.header-nav__search input::placeholder {
    color: #0771b7;
    opacity: 1;
}

.header-nav__search input:focus {
    outline: none;
}

.header-nav__search input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.header-nav__search input:focus:-ms-input-placeholder {
    opacity: 0;
}

.header-nav__search input:focus::-ms-input-placeholder {
    opacity: 0;
}

.header-nav__search input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.header-nav__search input:focus::-moz-placeholder {
    opacity: 0;
}

.header-nav__search input:focus:-ms-input-placeholder {
    opacity: 0;
}

.header-nav__search input:focus::placeholder {
    opacity: 0;
}

.header-nav__search button[type="submit"] {
    border: none;
    background-color: #e8e8e8;
    height: 40px;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    width: 45px;
    text-align: center;
    padding-top: 0;
    padding-left: 12px;
}

.search-form-wrap_open {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.search-toggle {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    margin-right: 24px;
    background-color: #e8e8e8;
    border: none;
    padding: 11px;
    display: none;
    vertical-align: middle;
    text-align: center;
}

.search-toggle_open {
    background-color: #0771b7;
}

.search-toggle_open .search-icon {
    background: url("../img/components/close-icon.png") center no-repeat;
}

.search-icon {
    background-image: url(../img/sprite/sprite.png);
    background-position: -30px -136px;
    width: 18px;
    height: 18px;
    display: block;
}

.main-menu {
    border: none;
    background-color: transparent;
    padding-top: 9px;
    margin-bottom: 0;
}

.navbar-toggle {
    margin: 0;
    width: 40px;
    height: 40px;
    background-color: #e8e8e8;
    -webkit-border-radius: 4px !important;
    border-radius: 4px !important;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 11px 10px !important;
    margin-right: 4px;
    text-align: center;
    background-image: url("../img/components/close-icon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0771b7;
}

.navbar-toggle.collapsed {
    background-color: #e8e8e8;
    background-image: none;
}

.navbar-toggle.collapsed .icon-bar {
    display: block !important;
}

.icon-bar {
    width: 17px !important;
    height: 3px !important;
    background-color: #0771b7;
    display: none !important;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 3px !important;
}

.caret {
    display: none;
    border: none;
    background: url("../img/components/arr-bottom-icon.png") center no-repeat;
}

.nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 700px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.nav a {
    position: relative;
    z-index: 1;
}

.nav > li > a {
    padding: 0;
    color: #0771b7;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    font-family: "DIN-Medium";
    text-transform: lowercase;
}

.nav > li > a:hover {
    background-color: transparent;
}

.nav > li > a:focus {
    background-color: transparent;
}

.nav > li:nth-child(1) a {
    color: #106c90;
}

.nav > li:nth-child(1) .active {
    background-color: #0771b7;
}

.nav > li:nth-child(1) .active a {
    color: #fff;
}

.nav > li:nth-child(1) li:hover {
    background-color: #0771b7;
}

.nav > li:nth-child(1) li:hover a {
    color: #fff;
}

.nav > li:nth-child(1) > a {
    color: #0771b7;
}

.nav > li:nth-child(2) a {
    color: #029dd8;
}

.nav > li:nth-child(2) .active {
    background-color: #029dd8;
}

.nav > li:nth-child(2) .active a {
    color: #fff;
}

.nav > li:nth-child(2) li:hover {
    background-color: #029dd8;
}

.nav > li:nth-child(2) li:hover a {
    color: #fff;
}

.nav > li:nth-child(3) a {
    color: #9bcfec;
}

.nav > li:nth-child(3) .active {
    background-color: #9bcfec;
}

.nav > li:nth-child(3) .active a {
    color: #fff;
}

.nav > li:nth-child(3) li:hover {
    background-color: #9bcfec;
}

.nav > li:nth-child(3) li:hover a {
    color: #fff;
}

.nav > li:nth-child(4) a {
    color: #0771b7;
}

.nav > li:nth-child(4) .active {
    background-color: #0771b7;
}

.nav > li:nth-child(4) .active a {
    color: #fff;
}

.nav > li:nth-child(4) li:hover {
    background-color: #0771b7;
}

.nav > li:nth-child(4) li:hover a {
    color: #fff;
}

.nav > li:nth-child(5) a {
    color: #029dd8;
}

.nav > li:nth-child(5) .active {
    background-color: #029dd8;
}

.nav > li:nth-child(5) .active a {
    color: #fff;
}

.nav > li:nth-child(5) li:hover {
    background-color: #029dd8;
}

.nav > li:nth-child(5) li:hover a {
    color: #fff;
}

.nav > li:nth-child(6) a {
    color: #9bcfec;
}

.nav > li:nth-child(6) .active {
    background-color: #9bcfec;
}

.nav > li:nth-child(6) .active a {
    color: #fff;
}

.nav > li:nth-child(6) li:hover {
    background-color: #9bcfec;
}

.nav > li:nth-child(6) li:hover a {
    color: #fff;
}

.nav > li:nth-child(7) a {
    color: #c6c6c5;
}

.nav > li:nth-child(7) .active {
    background-color: #c6c6c5;
}

.nav > li:nth-child(7) .active a {
    color: #fff;
}

.nav > li:nth-child(7) li:hover {
    background-color: #c6c6c5;
}

.nav > li:nth-child(7) li:hover a {
    color: #fff;
}

.nav > li.open a {
    background-color: transparent !important;
}

.navbar-collapse {
    padding: 0;
    position: relative;
    z-index: 100;
    max-height: calc(100vh - 79px);
}

.dropdown-menu {
    left: -15px;
    top: 65px;
    -webkit-border-radius: 4px !important;
    border-radius: 4px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.dropdown-menu a {
    font-family: "DIN-Medium";
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
}

.staf-item-mobile {
    display: none !important;
    background-color: #c6c6c5 !important;
}

.customers-item-mobile {
    display: none !important;
    background-color: #c6c6c5 !important;
}

/*JUMBO*/

.jumbo {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.jumbo .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.jumbo_home {
    min-height: 718px;
}

.jumbo_home .container {
    margin-bottom: 0;
}

.jumbo_page {
    min-height: 478px;
}

.jumbo_page .jumbo__left-circle {
    padding-bottom: 0;
    left: 0;
    background-color: rgba(7, 113, 183, .8);
}

.jumbo_page .jumbo__link {
    display: none;
}

.jumbo_page .jumbo__left {
    padding-top: 45px;
    padding-left: 53px;
}

.jumbo_locations .jumbo__left-circle {
    background-color: rgba(2, 157, 216, .8);
}

.jumbo_services .jumbo__left-circle {
    background-color: rgba(155, 207, 236, .8);
}

.jumbo_news {
    background-position: center !important;
}

.jumbo_news .jumbo__left-circle {
    background-color: rgba(7, 113, 183, .7);
}

.jumbo_contacts .jumbo__left-circle {
    background-color: rgba(2, 157, 216, .8);
}

.jumbo_career .jumbo__left-circle {
    background-color: rgba(2, 157, 216, .8);
}

.jumbo_career .jumbo__left-title {
    color: #fff;
}

.jumbo_career .jumbo__right {
    padding-top: 110px;
}

.jumbo_career .jumbo__right-link_aplication {
    top: 0;
}

.jumbo__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.jumbo__left {
    padding-top: 60px;
    margin-left: -60px;
}

.jumbo__left-circle {
    position: relative;
    left: -61px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 380px;
    height: 380px;
    padding-left: 50px;
    padding-bottom: 14px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(7, 113, 183, .7);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.jumbo__left-title {
    margin: 0;
    color: #fff;
    font-family: "DIN-Medium";
    font-size: 36px;
    line-height: 40px;
    text-transform: uppercase;
}

.jumbo__left-title span {
    font-family: "DIN-Light";
}

.jumbo__link {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 20px;
    -webkit-transition: all .5s;
    transition: all .5s;
    color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 5px;
}

.jumbo__link span {
    font-size: 20px;
}

.jumbo__link span:after {
    content: "";
    background-image: url(../img/sprite/sprite.png);
    background-position: -58px -136px;
    width: 18px;
    height: 16px;
    display: inline-block;
    margin-left: 5px;
}

.jumbo__link_environment {
    z-index: 1;
    top: 25px;
    right: -102px;
    width: 146px;
    height: 146px;
    background-color: rgba(108, 184, 113, .9);
    padding-top: 14px;
}

.jumbo__link_environment span:after {
    position: relative;
    top: 3px;
}

.jumbo__link_environment:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    background-color: #6cb871;
}

.jumbo__link_community {
    z-index: 0;
    top: 125px;
    right: -162px;
    width: 182px;
    height: 181px;
    color: #0771b7;
    background-color: rgba(255, 255, 255, .9);
    padding-left: 25px;
    padding-top: 0;
}

.jumbo__link_community:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    background-color: #fff;
}

.jumbo__link_community span:after {
    background-image: url(../img/sprite/sprite.png);
    background-position: -169px 0;
    width: 17px;
    height: 14px;
}

.jumbo__link_values {
    z-index: 1;
    top: 263px;
    right: -76px;
    width: 143px;
    height: 143px;
    background-color: rgba(243, 151, 45, .9);
    padding-top: 9px;
}

.jumbo__link_values span:after {
    position: relative;
    top: 5px;
}

.jumbo__link_values:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    background-color: #f3972d;
}

.jumbo__right {
    padding-top: 110px;
}

.jumbo__right-link {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #0771b7;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    font-family: "DIN-Regular";
    text-transform: uppercase;
    padding-left: 17px;
    position: relative;
}

.jumbo__right-link span {
    text-transform: none;
}

.jumbo__right-link span:after {
    content: "";
    background-image: url(../img/sprite/sprite.png);
    background-position: -58px -136px;
    width: 18px;
    height: 16px;
    display: inline-block;
    margin-left: 8px;
    position: relative;
    top: 3px;
}

.jumbo__right-link_career {
    width: 186px;
    height: 186px;
    margin-right: 56px;
    background-color: #fff;
    background-position: 84px 20px;
    background-repeat: no-repeat;
}

.jumbo__right-link_career span:after {
    background-image: url(../img/sprite/sprite.png);
    background-position: -169px 0;
    width: 17px;
    height: 14px;
}

.jumbo__right-link_aplication {
    width: 160px;
    height: 160px;
    background-color: #0771b7;
    margin-right: 56px;
    color: #fff;
    position: relative;
    right: -81px;
    top: -30px;
}

.jumbo__right-link_aplication span:after {
    margin-left: 12px;
}

.jumbo__right-link_career, .jumbo__right-link_aplication {
    width: 120px;
    height: 120px;
}

.jumbo__right-link_aplication {
    right: -65px;
    top: -30px !important;
    background-color: rgba(108, 184, 113, 1);
}

.jumbo__right-link_orange {
	width: 128px;
	height: 128px;
	background: #f3972d;
	color: #fff;
	right: -45px;
	top: -45px!important;
	text-align: center;
	padding-left: 0!important;
	padding-top: 7px;
}

.jumbo__right-link {
    font-size: 14px;
    line-height: 18px;
}

#career_btn, #application_btn, #custom_orange_btn {
    -webkit-transition: all .5s;
    transition: all .5s;
}

#career_btn:hover, #application_btn:hover, #custom_orange_btn:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.additionally__left, .additionally__right {
    height: 300px;
}

.additionally__left .arr-btn {
    margin-bottom: 26px;
}

.term-facts__btns .arr-btn {
    margin-top: 26px;
}

.term-facts .inner-container {
    padding-top: 10px;
}

.term-facts__items {
    padding-top: 10px;
    padding-bottom: 30px;
}

.term-facts__item {
    margin-bottom: 0;
}

.term-facts__item-icon {
    float: left;
    margin-right: 20px;
}

.term-facts__item-body {
    border: none;
}

.term-facts p {
    margin-bottom: 0;
}

.inner-content-right {
    max-width: 460px;
}

.filter-line {
    margin-bottom: 30px;
}

.vacancy__item a {
    color: #fff;
    text-decoration: none;
}

.vacancy__item a:hover > h3 {
    color: #f3972d;
}

.no_vacancy {
    display: hidden;
}

.page-carousel .carousel-inner img {
    margin: 0 auto;
}

.carousel .term-content-block {
    height: 800px;
}

.field_text {
    width: 90%;
}

.person-block__name {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
}

.testimonial__autor-name {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
}

.js-prev-tab-btn {
    visibility: hidden;
}

.title-help {
    cursor: pointer;
}

.title-help:hover > span {
    display: block;
    width: 200px;
    min-height: 100px;
    padding: 10px;
    background-color: #EEEEEE;
    font-weight: normal;
}

.title-help span {
    display: none;
}

/*BREADCRUMBS*/

.breadcrumbs__content {
    background-color: #fff;
    font-size: 18px;
    line-height: 24px;
    border-bottom: 1px solid #6cb871;
}

.breadcrumbs__content_border-blue {
    border-bottom: 1px solid #0771b7;
}

.breadcrumbs__content a {
    color: #c6c6c5;
    margin-right: 12px;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.breadcrumbs__content a:hover {
    color: #0771b7;
}

.breadcrumbs__content span {
    color: #0771b7;
    margin-right: 12px;
}

.breadcrumbs__wrap {
    min-height: 62px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.home-link {
    background-image: url(../img/sprite/sprite.png);
    background-position: -132px 0;
    width: 27px;
    height: 24px;
    margin-right: 19px !important;
}

.bc-separator {
    background-image: url(../img/sprite/sprite.png);
    background-position: -114px -136px;
    width: 17px;
    height: 14px;
}

.bc-separator_blue {
    background-image: url(../img/sprite/sprite.png);
    background-position: -169px 0;
    width: 17px;
    height: 14px;
}

/*TESTIMONIAL*/

.testimonial_in {
    margin-top: 52px;
}

.testimonial__content {
    background-color: #0771b7;
    min-height: 290px;
    color: #fff;
    text-align: center;
    padding-bottom: 38px;
}

.testimonial__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.testimonial__title {
    font-family: "Shadows Into Light", cursive;
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    margin-top: 33px;
    margin-bottom: 17px;
    max-width: 640px;
    min-width: 640px;
}

.testimonial__img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    width: 219px;
    height: 219px;
    margin-top: -37px;
}

.testimonial__img img {
    display: block;
    max-width: 101%;
    height: auto;
}

.testimonial__text {
    max-width: 530px;
    min-width: 530px;
    line-height: 24px;
    margin-left: 50px;
}

.testimonial__text p {
    margin: 0;
}

.testimonial__btn {
    width: 154px;
    height: 39px;
    margin: 31px 29px 0;
}

/*ADDITIONALY*/

.additionally {
    color: #fff;
}

.additionally__left {
    width: 50%;
    background-color: #0771b7;
    float: left;
    height: 250px;
    padding-top: 50px;
    text-align: right;
}

.additionally__left .arr-btn {
    width: 282px;
    height: 39px;
}

.additionally__right {
    padding-top: 50px;
    padding-left: 65px;
    padding-right: 15px;
    width: 50%;
    background: #0771b7 url("../img/pict/service-bottom-img.jpg") center no-repeat;
    background-size: cover;
    float: left;
    height: 250px;
    position: relative;
}

.additionally__right:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 0;
}

.additionally__right p {
    max-width: 450px;
    margin-bottom: 14px;
}

.additionally__right .arr-btn {
    width: 211px;
    height: 39px;
}

.additionally__cont {
    position: relative;
    z-index: 1;
}

.additionally__download {
    width: 282px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin-right: 196px;
    margin-left: 20px;
}

.additionally__download-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 27px;
}

.download-btn {
    position: relative;
    justify-content: flex-start;
}

.download-btn svg{
   display: block;
   margin-left: auto;
}

.download-btn:hover:before {
    border-top-color: #ffb349;
}

.download-btn:after {
    display: none;
}

.download-btn:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 12px 0 12px;
    border-color: #f3972d transparent transparent transparent;
    position: absolute;
    bottom: -10px;
    right: 35px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.page-carousel {
    background-color: #e8e8e8;
    margin-top: 25px;
    margin-bottom: 40px;
    padding-top: 68px;
    padding-bottom: 68px;
    text-align: center;
}

.page-carousel .carousel-inner {
    max-width: 959px;
    margin: 0 auto;
}

.page-carousel .carousel-inner img {
    max-width: 100%;
    height: auto;
}

.page-carousel .carousel-indicators {
    bottom: 0;
}

.page-carousel .carousel-indicators li {
    background-color: white;
    border: 1px solid #6cb871;
}

.page-carousel .carousel-indicators li.active {
    background-color: #6cb871;
}

.carousel-contr-left {
    width: 41px;
    height: 41px;
    background-color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 46%;
    left: 89px;
}

.carousel-contr-left .carousel-contr-icon {
    background-image: url(../img/sprite/sprite.png);
    background-position: -96px -103px;
    width: 23px;
    height: 20px;
}

.carousel-contr-right {
    width: 41px;
    height: 41px;
    background-color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 46%;
    right: 83px;
}

.carousel-contr-right .carousel-contr-icon {
    background-image: url(../img/sprite/sprite.png);
    background-position: -30px -103px;
    width: 23px;
    height: 20px;
}

/* DOWNLOADS SECTION */

.downloads-sect__content {
    background-color: #0771b7;
    padding-top: 60px;
    padding-bottom: 43px;
}

.downloads-sect__title {
    font-size: 30px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 0;
    margin-bottom: 30px;
}

.downloads-sect__btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.downloads-sect__btns .arr-btn {
    margin-bottom: 24px;
    width: 284px;
    height: 40px;
    margin-right: 29px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px;
}

.downloads-sect__btns .arr-btn:last-child {
    margin-right: 0;
}

/*POLICY SECTION*/

.policy__content {
    background-image: url("../img/pict/policy-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 550px;
    color: #fff;
    padding-top: 68px;
    padding-bottom: 30px;
}

.policy p {
    margin-bottom: 0;
}

.section-title {
    font-size: 36px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 42px;
}

.section-list {
    font-size: 18px;
    line-height: 24px;
    padding-left: 87px;
}

/*CORP MOVIE*/

.corp-movie {
    padding-top: 48px;
    padding-bottom: 52px;
}

.corp-movie__title {
    color: #0771b7;
    font-size: 36px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 33px;
}

.corp-movie__clip {
    height: 426px;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 36px;
}

.corp-movie__clip iframe {
    width: 100%;
    height: 100%;
}

/*SECTION NAV*/

.section-nav {
    top: 20px;
    left: 0;
    width: 100% !important;
    position: absolute;
    z-index: 3;
}

.section-nav__list {
    background-color: #0771b7;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 70px;
    text-align: center;
    padding: 19px 0;
    display: block;
    min-width: 1px !important;
    border: none;
    position: relative;
    z-index: 25;
}

.section-nav__list img {
    height: 36px;
    width: 36px;
}

.section-nav__list li {
    margin-bottom: 21px;
    float: none;
}

.section-nav__list li:last-child {
    margin-bottom: 0;
}

.section-nav__list li.active a {
    background-color: transparent;
}

.section-nav__list li.active a:hover {
    background-color: transparent;
}

.section-nav__list li.active a span {
    display: block;
}

.section-nav__list li.active a:after {
    display: block;
}

.section-nav__list a {
    position: relative;
    color: #fff !important;
    display: block;
    border: none !important;
}

.section-nav__list a:focus {
    background-color: transparent !important;
}

.section-nav__list a:active {
    background-color: transparent !important;
}

.section-nav__list a:hover span {
    display: block;
}

.section-nav__list a:hover:after {
    display: block;
}

.section-nav__list a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 6px 7px 0;
    border-color: transparent #0771b7 transparent transparent;
    right: -17px;
    top: 50%;
    margin-top: -7px;
    display: none;
}

.section-nav__list span {
    position: absolute;
    left: 85px;
    top: 50%;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    margin-top: -17px;
    display: none;
    white-space: nowrap;
    text-align: left;
    background-color: #0771b7;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 8px 15px;
}

.section-nav__list svg {
    vertical-align: middle;
}

/*MY MODAL*/

.my-modal {
    background-color: transparent;
    opacity: 1;
}

.my-modal__title {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
}

.my-modal .modal-dialog {
    max-width: 970px;
    width: auto;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    margin-top: 0;
}

.my-modal .modal-content {
    color: #fff;
    background-color: #f3972d;
    border: 2px solid white;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0 0 7px rgba(3, 4, 4, .3);
    box-shadow: 0 0 7px rgba(3, 4, 4, .3);
    padding-bottom: 20px;
    border-top: none;
}

.my-modal .modal-body {
    padding: 0;
}

.my-modal .close {
    opacity: 1;
    position: relative;
    top: 8px;
    right: 10px;
}

.my-modal .close span {
    background-image: url(../img/sprite/sprite.png);
    background-position: -91px 0;
    width: 31px;
    height: 30px;
    display: inline-block;
}

/*DOWNLOADS PAGE*/

.main-title {
    margin-top: 0;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #029dd8;
}

.main-title span {
    color: #9bcfec;
}

.main-title_light-blue {
    color: #9bcfec;
    font-family: "DIN-Medium";
}

.main-title_light-blue span {
    font-family: "DIN-Regular";
}

.main-title_dark-blue {
    color: #0771b7;
    font-family: "DIN-Medium";
}

.main-title_dark-blue span {
    font-family: "DIN-Regular";
}

.main-title_orange {
    color: #f3972d;
}

.main-title_green {
	margin-top: 20px;
    font-family: "DIN-Medium";
    color: #6cb871;
}

.page {
    padding-top: 39px;
    padding-bottom: 0px;
}

.page.search, .page.searchresults {
    padding-top: 0;
}

.downloads {
    background-color: #fff;
}

.downloads__blocks {
    padding-top: 11px;
    padding-bottom: 30px;
}

.downloads__block-title {
    line-height: 24px;
    color: #0771b7;
    margin-bottom: 2px;
}

.downloads__block:nth-child(2) {
    padding-bottom: 10px;
}

.downloads__block_padding {
    padding-bottom: 34px !important;
}

.downloads__link {
    font-size: 18px;
    color: #000;
    line-height: 24px;
    padding-left: 20px;
    display: block;
    position: relative;
}

.downloads__link:hover {
    text-decoration: underline;
}

.downloads__link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background-image: url(../img/sprite/sprite.png);
    background-position: -169px -71px;
    width: 12px;
    height: 14px;
    margin-top: -8px;
}

/* LOCATIONS */

.locations {
    padding-bottom: 55px;
}

.locations-map {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    margin-top: 26px;
    margin-bottom: 66px;
}

.locations-map img {
    width: 100%;
    height: auto;
}

.locations-items .row {
	margin-bottom: 40px!important;
}

.location-country {
    min-height: 260px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.location-item {
    line-height: 24px;
    font-size: 18px;
}

.location-item__title {
    color: #029dd8;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 26px;
}

.location-item__title.second {
	width: 47%;
	float: left;
}

.location-item__title.second:last-child {
	margin-left: 6%;
}

.location-item__title_min {
    color: #0771b7;
    font-size: 18px;
    margin: 0;
}

.location-item__addr {
    margin-bottom: 24px;
}

.location-item__addr.second {
	width: 47%;
	float: left;
}

.location-item__addr.second:last-child {
	margin-left: 6%;
}

.location-item__addr span {
    display: block;
}

.location-item__cont {
    margin-bottom: 25px;
}

.location-item__cont .contact {
    margin-top: 25px;
}

.location-item__cont span {
    color: #0771b7;
}

.location-item__link {
    color: #000;
}

.location-item__mail {
    text-decoration: underline;
}

.location-item__mail:hover {
    text-decoration: none;
}

.location-item__btn {
    width: 234px;
    height: 39px;
}

.arr-btn {
    background-color: #f3972d;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.arr-btn:hover {
    background-color: #ffb349;
}

.arr-btn:active {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
}

.arr-btn:after {
    content: "";
    background-image: url(../img/sprite/sprite.png);
    background-position: -141px -136px;
    width: 17px;
    height: 14px;
}

.arr-btn.apply {
    margin-bottom: 40px;
}

/*services*/

.services {
    padding-bottom: 0 !important;
}

.services-blocks {
    padding-top: 0;
    position: relative;
}

.services-blocks .section-nav {
    top: 90px;
}

.service {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 700px;
    background-color: #e1f1f9;
}

.service_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    background-color: #fff;
}

.service_reverse .service__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 50px 52px 20px 34px;
}

.service_reverse .person-block {
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 36px;
}

.service__img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 39%;
}

.service__content {
    width: 61%;
    padding: 55px 34px 20px 52px;
}

.service__content-block {
    max-width: 570px;
    min-width: 570px;
}

.service__title {
    color: #0771b7;
    font-size: 30px;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 30px;
}

.service__title_mobile {
    display: none;
}

.service__content-block > p {
    margin-bottom: 24px;
}

.person-block {
    text-align: center;
    padding-top: 30px;
    padding-left: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.person-block .service__content-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.person-block_bd_top {
    border-top: 1px solid #0771b7;
}

.person-block_bd_bottom {
    border-bottom: 1px solid #0771b7;
}

.person-block__img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    max-width: 171px;
    min-width: 171px;
    height: 171px;
    margin-right: 40px;
}

.person-block__img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.person-block__text {
    font-family: "Shadows Into Light", cursive;
    color: #0771b7;
    font-size: 28px;
    line-height: 34px;
    padding-top: 5px;
    margin-bottom: 31px;
    max-width: 350px;
    min-width: 280px;
}

.person-block__name {
    color: #0771b7;
    font-size: 16px;
    line-height: 24px;
}

/*NEWS*/

.news {
    padding-top: 0 !important;
    padding-bottom: 100px;
}

.nav-tabs-news {
    border: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: #e8e8e8;
}

.nav-tabs-news__text {
    min-width: 450px;
}

.nav-tabs-news__text:after {
    content: "";
    background-image: url(../img/sprite/sprite.png);
    background-position: 0 -136px;
    width: 20px;
    height: 23px;
    display: inline-block;
    margin-left: 60px;
    display: none;
}

.nav-tabs-news li {
    width: 50%;
    float: left;
}

.nav-tabs-news li:first-child a {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.nav-tabs-news li:last-child a {
    padding-left: 18px;
}

.nav-tabs-news li.active a {
    background-color: transparent;
    color: #6cb871;
    cursor: default;
}

.nav-tabs-news li.active a:hover {
    background-color: transparent;
}

.nav-tabs-news li.active .nav-tabs-news__text:after {
    display: inline-block;
}

.nav-tabs-news li a {
    min-height: 88px;
    background-color: #6cb871;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: background .3s;
    transition: background .3s;
}

.nav-tabs-news li a:hover {
    background-color: #86d28b;
}

/*filter-line*/

.filter-line {
    background-color: #e8e8e8;
}

.filter-line__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 88px;
    vertical-align: middle;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0 10px;
}

.filter-line label {
    color: #6cb871;
    font-size: 18px;
    line-height: 24px;
    font-family: "DIN-Medium";
    font-weight: normal;
    padding-right: 26px;
}

.filter-line label:last-child {
    margin-right: 0;
}

.my-formstyler label {
    vertical-align: middle;
    margin-bottom: 0;
    padding-top: 3px;
    padding-left: 12px;
}

.my-formstyler .jq-checkbox {
    width: 25px;
    height: 25px;
    background-color: #fff;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    vertical-align: middle;
    -webkit-user-select: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.jq-checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 0px;
    padding: 0px;
}

.my-formstyler .jq-checkbox.checked {
    background-image: url("../img/sprite/sprite.png");
    background-position: -275px -72px;
}

/*tabs-panel*/

.tab-content {
    padding-top: 36px;
}

.post-preview {
    padding: 15px 0 40px 0;
    border-bottom: 1px solid #0771b7;
}

.post-preview:last-child {
    margin-bottom: 40px;
}

.post-preview a {
    color: inherit;
}

.post-preview p {
    margin-bottom: 20px;
}

.post-preview__img {
    min-height: 260px;
}

.post-preview__img img {
    height: auto;
    width: 100%;
}

.post-preview__head_mobile {
    display: none;
}

.post-preview__date {
    font-size: 18px;
    line-height: 20px;
    float: left;
    margin-bottom: 10px;
}

.post-preview__tag {
    color: #6cb871;
    font-size: 18px;
    line-height: 20px;
    float: right;
}

.post-preview__title {
    clear: both;
    color: #6cb871;
    font-size: 24px;
    line-height: 30px;
    padding-right: 20px;
    font-family: "DIN-Medium";
}

.post-preview__more {
    width: 154px;
    height: 39px;
}

.tab-pane__btn {
    padding-top: 38px;
}

.load-art-btn {
    height: 70px;
    background-color: #6cb871;
    font-size: 24px;
    color: #fff;
    line-height: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.load-art-btn:hover {
    background-color: #88d48d;
}

.load-art-btn:active {
    background-color: #6cb871;
}

/*NEWS DETAIL*/

.news-detail {
    padding-bottom: 80px;
}

.article p {
    margin-bottom: 24px;
}

.article img {
    max-width: 100%;
    height: auto;
}

.article figure {
    padding-bottom: 30px;
}

.bold-par {
    font-family: "DIN-Medium";
}

.block-title-green {
    color: #6cb871;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.page-btn {
    width: 154px;
    height: 39px;
    margin-bottom: 40px;
}

.head-line {
    max-width: 972px;
    margin: 0 auto;
    padding: 17px 0;
    background-color: rgba(108, 184, 113, .2);
    color: #6cb871;
    font-size: 18px;
    line-height: 24px;
    margin-top: 8px;
    margin-bottom: 32px;
}

.head-line__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.head-line__print {
    background-image: url(../img/sprite/sprite.png);
    background-position: -91px -40px;
    width: 26px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.head-line__mail {
    background-image: url(../img/sprite/sprite.png);
    background-position: -132px -34px;
    width: 25px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
}

.head-line__share {
    background-image: url(../img/sprite/sprite.png);
    background-position: -132px -63px;
    width: 22px;
    height: 21px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}

/*TERMINAL*/

.terminal {
    padding-bottom: 0 !important;
}

.term-content-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.term-content-block__pt {
    margin-top: 50px;
}

.term-content-block__left {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.term-content-block__left > div {
    width: 100%;
    padding-right: 15px;
}

.term-content-block__right {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.term-content-block__right > div {
    width: 100%;
}

.inner-container {
    max-width: 436px;
    margin-left: auto;
}

.term-facts {
    background-color: #029dd8;
    width: 100%;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-right: 15px;
}

.term-facts__title {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    color: #fff;
    text-transform: uppercase;
}

.term-facts__items {
    padding-top: 22px;
}

.term-facts__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 22px;
}

.term-facts__item:last-child {
    margin-bottom: 0;
}

.term-facts__item:last-child .term-facts__item-body {
    border: none;
}

.term-facts__item-body {
    border-bottom: 1px solid #fff;
    max-width: 310px;
}

.term-facts__item-icon {
    color: #fff;
    background-color: transparent;
    margin-right: 22px;
    padding-top: 6px;
}

.term-facts__item-title {
    line-height: 24px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.term-facts p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 13px;
}

.term-facts__btns {
    padding-top: 17px;
}

.term-facts__btns .arr-btn {
	color: white;
    max-width: 390px;
    height: 40px;
    margin-bottom: 26px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 16px 0 29px;
}

.term-location {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.term-location__map {
    min-height: 568px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.term-location__address {
    background-color: #e8e8e8;
    padding-left: 63px;
    padding-top: 50px;
    padding-bottom: 15px;
}

.term-location__address .location-item {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 12px;
}

.term-location__address .location-item:last-child {
    margin-right: 0;
}

#map_canvas {
    width: 100%;
    margin: 0 auto;
}

.inner-content-right {
    max-width: 260px;
    position: relative;
}

.partners {
    padding-top: 40px;
    padding-bottom: 88px;
}

.partners__title {
    color: #029dd8;
    font-size: 30px;
    font-weight: normal;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.partners__logo {
    margin-bottom: 4px;
    text-align: left;
    height: 50px;
    vertical-align: bottom;
    display: table-cell;
    padding-bottom: 10px;
}

.partners__logo img {
    max-width: 100%;
    height: auto;
}

.partners__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 14px;
}

.partners__item {
    text-align: left;
    max-width: 190px;
    margin-bottom: 20px;
}

.partners__item p {
    font-size: 16px;
    line-height: 20px;
}

.term-info-blocks {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.term-info-block {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-height: 260px;
    height: 50%;
    padding-left: 64px;
    padding-top: 42px;
    color: #fff;
    padding-bottom: 25px;
}

.term-info-block_access {
    background-color: #029dd8;
    background-image: url("../img/pict/term-block-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 80% 100%;
}

.term-info-block_access p {
    margin-bottom: 24px;
}

.term-info-block_access .arr-btn {
    width: 259px;
    height: 40px;
}

.term-info-block_project {
    background: #0771b7 url("../img/pict/service-bottom-img.jpg") center no-repeat;
    background-size: cover;
    position: relative;
}

.term-info-block_project:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 0;
}

.term-info-block_project .arr-btn {
    width: 154px;
    height: 39px;
}

.term-info-block_project p {
    margin-bottom: 25px;
}

.term-info-block__title {
    margin-top: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    min-height: 70px;
    margin-bottom: 0;
}

.testimonial_terminal {
    padding-top: 20px;
    padding-bottom: 41px;
    background-color: #0771b7;
}

.testimonial_terminal .testimonial__title-block {
    padding-right: 45px;
}

.testimonial_terminal .testimonial__title {
    min-width: 1px;
}

.testimonial_terminal .testimonial__text {
    min-width: 1px;
    max-width: 190px;
    margin-left: 0;
    text-align: left;
    margin-right: 20px;
}

.testimonial_terminal .testimonial__img {
    margin-top: 0;
    width: 209px;
    height: 209px;
}

.testimonial_terminal .testimonial__btn-wrap {
    padding-top: 56px;
    padding-right: 28px;
}

.testimonial_terminal .testimonial__btn {
    margin: 0 auto;
}

.testimonial__middle-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 40px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*RFP*/

.rfp {
    padding-bottom: 90px;
}

.rfp .main-title + p {
    margin-bottom: 30px;
}

.blue-title {
    color: #0771b7;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 0;
}

.blue-list {
    padding: 0 0 0 16px;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    color: #0771b7;
}

.form-navs {
    background-color: #e8e8e8;
    margin-top: 67px;
}

.form-navs__list {
    min-height: 95px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.form-navs__list span {
    width: 27px;
    height: 27px;
    background-color: #029dd8;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    margin-right: 11px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-navs__list li {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.form-navs__list li.active {
    background-color: #0771b7;
}

.form-navs__list li.active a {
    color: #fff;
}

.form-navs__list li.active:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #0771b7 transparent transparent transparent;
}

.form-navs__list li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 2;
}

.form-navs__list a {
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0771b7;
}

.form-panels label {
    padding-top: 4px;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    padding-left: 10px;
    min-width: 99px;
    cursor: pointer;
}

.form-panels label:first-child {
    display: block;
    padding-left: 0;
    margin-bottom: 9px;
    cursor: default;
}

.form-panels input[type="text"] {
    background-color: #e8e8e8;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: none;
    height: 45px;
    padding: 0 13px 0 10px;
    margin-right: 10px;
}

.form-panels input[type="text"]:last-child {
    margin-right: 0;
}

.form-panels input[type="text"]::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
}

.form-panels input[type="text"]:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

.form-panels input[type="text"]::-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

.form-panels input[type="text"]::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
}

.form-panels input[type="text"]::-moz-placeholder {
    color: #000;
    opacity: 1;
}

.form-panels input[type="text"]:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

.form-panels input[type="text"]::placeholder {
    color: #000;
    opacity: 1;
}

.form-panels input[type="text"]:focus {
    outline: none;
}

.form-panels input[type="text"]:focus::-webkit-input-placeholder {
    opacity: 0;
}

.form-panels input[type="text"]:focus:-ms-input-placeholder {
    opacity: 0;
}

.form-panels input[type="text"]:focus::-ms-input-placeholder {
    opacity: 0;
}

.form-panels input[type="text"]:focus::-webkit-input-placeholder {
    opacity: 0;
}

.form-panels input[type="text"]:focus::-moz-placeholder {
    opacity: 0;
}

.form-panels input[type="text"]:focus:-ms-input-placeholder {
    opacity: 0;
}

.form-panels input[type="text"]:focus::placeholder {
    opacity: 0;
}

.form-panels textarea {
    width: 100%;
    height: 132px;
    background-color: #e8e8e8;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: none;
    resize: none;
    padding: 8px 13px;
}

.form-panels .jq-checkbox {
    background-color: #e8e8e8;
    width: 29px;
    height: 29px;
}

.form-panels .jq-checkbox.checked {
    background-position: -80px -129px;
}

.form-group-line {
    margin-bottom: 14px;
}

.field-day {
    width: 110px;
}

.field-month {
    width: 110px;
}

.field-month_big {
    width: 142px;
}

.field-month_min {
    width: 99px;
}

.field-year {
    width: 184px;
}

.field-year_big {
    width: 283px;
}

.form-panel__row {
    padding-bottom: 39px;
    margin-bottom: 38px;
    position: relative;
}

.form-panel__row:first-child {
    margin-bottom: 45px;
    padding-bottom: 31px;
}

.form-panel__row_message {
    padding-top: 10px;
    padding-bottom: 55px;
    margin-bottom: 51px;
}

.form-panel__row:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #0771b7;
}

.form-panel__title {
    color: #0771b7;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 22px;
    margin-top: 34px;
}

.form-panel__sub-title {
    color: #0771b7;
    font-size: 20px;
    line-height: 24px;
    font-family: "DIN-Medium";
    margin-bottom: 3px;
}

.form-panel__col-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 11px;
}

.form-panel__col-head .form-panel__sub-title {
    margin: 0;
    position: relative;
}

.form-panel__col-head .title-help {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    background-image: url(../img/sprite/sprite.png);
    background-position: -169px -48px;
    width: 13px;
    height: 13px;
}

.form-panel__col-head span {
    color: #0771b7;
    font-size: 15px;
    line-height: 24px;
}

.storage-title {
    margin-bottom: 23px;
}

.in-out-items .form-group-line {
    margin-bottom: 20px;
}

.pag-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pag-btns .arr-btn {
    width: 154px;
    height: 39px;
}

.pag-btns__prev {
    padding: 0 3px;
}

.pag-btns__prev:after {
    display: none;
}

.pag-btns__prev:before {
    content: "";
    background-image: url(../img/sprite/sprite.png);
    background-position: -141px -136px;
    width: 17px;
    height: 14px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* ABOUT */

.about {
    padding-bottom: 0 !important;
}

.about-blocks {
    position: relative;
}

.about-block {
    padding-top: 45px;
    padding-bottom: 55px;
    margin-bottom: 22px;
}

.about-block > .container > p {
    padding: 0 50px 50px 50px;
    text-align: center;
}

.about-block__row.about-block_common {
    border-bottom: 1px solid #0771b7;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    padding-bottom: 21px;
    margin-bottom: 30px;
}

.special .about-block__img::after {
    width: 150%;
    -webkit-transition: width 2s; /* Safari */
    transition: width 2s;
}

.about-block__img img.special2 {
    width: 105%;
    max-width: 105%;
    max-height: 105%;
    -webkit-transition: width 1s; /* Safari */
    transition: width 1s;
}

.about-block__img img.special3 {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: width 1s; /* Safari */
    transition: width 1s;
}

.about-block:last-child {
    padding-bottom: 28px;
    margin-bottom: 0;
}

.about-block__content {
    padding-left: 46px;
}

.about-block__content a {
    position: relative;
    z-index: 5;
}

.about-block_gray {
    background-color: #e8e8e8;
}

.about-block__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 43px;
}

.about-block__row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.about-block__row_reverse .about-block__img {
    padding: 0;
}

.about-block__title {
    color: #0771b7;
    font-size: 36px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 39px;
}

.about-block__subtitle {
    color: #0771b7;
    font-size: 30px;
    font-weight: 400;
    line-height: 41px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 11px;
}

.about-block__subtitle_mobile {
    display: none;
}

.about-block__img {
    margin: 0 9px;
    text-align: center;
}

.about-block__img::after {
    width: 1%;
    -webkit-transition: width 2s; /* Safari */
    transition: width 2s;
}

.about-block__img img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    max-width: 418px;
    max-height: 418px;
    height: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.connecting-line-right {
    position: relative;
}

.connecting-line-right:after {
    content: "";
    width: 150%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #30acdb;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.connecting-line-left {
    position: relative;
}

.connecting-line-left:after {
    content: "";
    width: 150%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #30acdb;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.about-block_common {
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 48px;
}

.about-block_common .row:last-child .about-block__row {
    border: none;
    margin-bottom: 20px;
}

.about-block_common .about-block__row {
    border-bottom: 1px solid #0771b7;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    padding-bottom: 21px;
    margin-bottom: 30px;
}

.about-block_common .about-block__content {
    padding-left: 0;
}

.about-block_common .about-block__subtitle {
    margin-top: 0;
}

.about-block_common .about-block__img {
    margin: 0;
}

.about-block_common .about-block__img img {
    border: 6px solid #dfe0e1;
}

/*CAREER*/

.row_mb {
    margin-bottom: 23px;
}

.career {
    padding-bottom: 0 !important;
}

.block-title-blue {
    line-height: 24px;
    color: #0771b7;
    font-size: 24px;
    margin-bottom: 0;
}

.block-title-blue_min {
    font-size: 18px;
    line-height: 24px;
    font-family: "DIN-Medium";
    margin-top: 20px;
}

.blue-par {
    color: #0771b7;
}

.blue-par_medium {
    font-family: "DIN-Medium";
}

/*career slider*/

.career-carousel .term-content-block__pt {
    margin-top: 39px;
}

.career-carousel__img {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 300px;
}

.career-carousel__img img {
    display: none;
}

.career-carousel__cont {
    padding: 64px 90px 31px 68px;
    background-color: #e8e8e8;
}

.career-carousel__cont p {
    margin-bottom: 24px;
}

.career-carousel__cont .person-block__text {
    font-size: 36px;
    line-height: 40px;
    max-width: 100%;
    text-align: center;
    padding-top: 14px;
    margin-bottom: 17px;
}

.career-carousel__cont .person-block__name {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    display: block;
}

.career-carousel__cite {
    margin-bottom: 39px;
}

.career-carousel .carousel-contr-left {
    background-color: #029dd8;
    top: 51%;
    left: 30px;
}

.career-carousel .carousel-contr-left .carousel-contr-icon {
    background-image: url(../img/sprite/sprite.png);
    background-position: -129px -103px;
    width: 23px;
    height: 20px;
}

.career-carousel .carousel-contr-right {
    background-color: #029dd8;
    top: 51%;
    right: 30px;
}

.career-carousel .carousel-contr-right .carousel-contr-icon {
    background-image: url(../img/sprite/sprite.png);
    background-position: -63px -103px;
    width: 23px;
    height: 20px;
}

.carousel .term-content-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.career-list {
    background-color: #0771b7;
}

.vacancy {
    background-color: #0771b7;
    padding-top: 30px;
    padding-bottom: 60px;
}

.vacancy__title {
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    color: #fff;
}

.vacancy__form {
    padding-top: 26px;
    padding-bottom: 10px;
}

.vacancy__form .row > div {
    margin-bottom: 30px;
}

.vacancy__form input,
.vacancy__form select,
.vacancy__form button {
    width: 100%;
    height: 50px;
    border: none;
}

.vacancy__form input {
    padding: 0 50px 0 18px;
    color: #6d6e76;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}

.vacancy__form input::-webkit-input-placeholder {
    color: #6d6e76;
    opacity: 1;
}

.vacancy__form input:-ms-input-placeholder {
    color: #6d6e76;
    opacity: 1;
}

.vacancy__form input::-ms-input-placeholder {
    color: #6d6e76;
    opacity: 1;
}

.vacancy__form input::-webkit-input-placeholder {
    color: #6d6e76;
    opacity: 1;
}

.vacancy__form input::-moz-placeholder {
    color: #6d6e76;
    opacity: 1;
}

.vacancy__form input:-ms-input-placeholder {
    color: #6d6e76;
    opacity: 1;
}

.vacancy__form input::placeholder {
    color: #6d6e76;
    opacity: 1;
}

.vacancy__form input:focus {
    outline: none;
}

.vacancy__form input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.vacancy__form input:focus:-ms-input-placeholder {
    opacity: 0;
}

.vacancy__form input:focus::-ms-input-placeholder {
    opacity: 0;
}

.vacancy__form input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.vacancy__form input:focus::-moz-placeholder {
    opacity: 0;
}

.vacancy__form input:focus:-ms-input-placeholder {
    opacity: 0;
}

.vacancy__form input:focus::placeholder {
    opacity: 0;
}

.vacancy__form button {
    padding: 0;
    display: inline-block;
    position: relative;
    text-align: left;
    padding-left: 18px;
}

.vacancy__form button:after {
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 12px;
}

.vacancy .jq-selectbox {
    width: 100%;
}

.vacancy .jq-selectbox__select {
    height: 50px;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 50px 0 18px;
    color: #6d6e76;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.vacancy .jq-selectbox__select:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 50px;
    background-color: #f3972d;
    top: 0;
    right: 0;
}

.vacancy .jq-selectbox__select:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: #fff transparent transparent transparent;
}

.vacancy .jq-selectbox__dropdown {
    background-color: #fff;
    width: 100%;
    color: #6d6e76;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .3);
}

.vacancy .jq-selectbox__dropdown ul {
    margin-bottom: 0;
    padding-left: 0;
}

.vacancy .jq-selectbox__dropdown ul li {
    padding: 10px 5px 10px 18px;
    cursor: pointer;
}

.vacancy .jq-selectbox__dropdown ul li:hover {
    background-color: #f3972d;
    color: #fff;
}

.vacancy__items {
    color: #fff;
}

.vacancy__item {
    border-bottom: 1px solid #f3972d;
    padding-bottom: 4px;
}

.vacancy__item:last-child {
    border: none;
}

.vacancy__item-title {
    font-size: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.field-wrap {
    position: relative;
}

.field-wrap:after {
    content: "";
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f3972d;
    background-image: url("../img/components/seach-job-icon.png");
    background-repeat: no-repeat;
    background-position: center;
}

.no-vacancy {
    background-color: #e8e8e8;
    color: #333;
    padding-top: 47px;
    padding-bottom: 53px;
}

.no-vacancy__title {
    color: #f3972d;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.no-vacancy__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-top: 24px;
    margin-bottom: 26px;
}

.no-vacancy ul {
    list-style-type: none;
    padding: 0;
}

.no-vacancy ul li {
    margin-bottom: 28px;
}

.no-vacancy ul a {
    text-decoration: underline;
    color: #0771b7;
}

.no-vacancy ul a:hover {
    text-decoration: none;
}

.no-vacancy ul span {
    color: #0771b7;
}

/*CONTACTS PAGE*/

.contacts-page {
    padding-bottom: 0 !important;
}

.contacts-page .term-content-block {
    background-color: #e8e8e8;
}

.contacts-page .term-location__map {
    min-height: 458px;
}

.drop-tab {
    background-color: #f3972d;
    padding: 25px 0;
    margin-top: 37px;
}

.drop-tab__list {
    width: 426px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.drop-tab__list .dropdown {
    width: 100%;
    background-color: white;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.drop-tab__list .dropdown.open {
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}

.drop-tab__list .dropdown-toggle {
    padding: 0 10px 0 21px;
    color: #0771b7;
    font-size: 18px;
    line-height: 44px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.drop-tab__list .dropdown-toggle .js-toggle-text {
    padding-top: 4px;
}

.drop-tab__list .caret {
    width: 40px;
    height: 30px;
    display: inline-block;
    float: right;
    border-left: 1px solid #0771b7;
    background: #fff url("../img/components/drop-tab-arr-icon.png") center no-repeat;
}

.drop-tab__list .dropdown-menu {
    top: 42px;
    -webkit-box-shadow: 0 8px 10px rgba(0, 0, 0, .08);
    box-shadow: 0 8px 10px rgba(0, 0, 0, .08);
    left: 0;
    -webkit-border-radius: 0 0 4px 4px !important;
    border-radius: 0 0 4px 4px !important;
    width: 100%;
}

.single-contacts {
    padding-top: 55px;
    padding-bottom: 25px;
    padding-left: 15px;
}

.single-contacts .location-item__title {
    color: #f3972d;
    text-transform: uppercase;
}

.single-contacts .location-item__title_min {
    color: #f3972d;
}

.single-contacts .location-item__cont span {
    color: #f3972d;
}

/*MAIN FOOTER*/

.main-footer .container {
    padding-left: 15px;
    padding-right: 15px;
}

.main-footer .row > div:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

.main-footer .row > div:nth-child(2) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
}

.main-footer .row > div:nth-child(3) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
}

.main-footer .row > div:nth-child(4) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

.main-footer .row > div:nth-child(5) {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
}

.main-footer__content {
    background-color: rgba(155, 207, 236, .25);
    padding-top: 34px;
    padding-bottom: 34px;
    min-height: 326px;
}

.main-footer__logo {
    margin-bottom: 37px;
}

.main-footer__text {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    padding-right: 10px;
}

.main-footer__text p {
    line-height: 18px;
}

.phone-block_footer {
    border: none;
    display: block;
    padding-left: 0;
    padding-top: 23px;
    font-size: 24px !important;
    width: auto;
    float: left;
}

.phone-block_footer span {
    text-transform: uppercase;
    font-size: 18px;
}

.phone-block_footer a {
    margin-top: 3px;
    display: block;
}

.phone-block_footer a[href^="tel"]:before {
	font-family: "fontello";
    content: '\f098';
	padding-right: 10px;
}

.phone-block_footer a[href^="mailto"]:before {
	font-family: "fontello";
    content: '\f0e0';
	padding-right: 10px;
	font-size: 22px !important;
}

.footer-addr-info {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    font-family: "DIN-Medium";
}

.footer-addr-info__left {
    float: left;
}

.footer-addr-info__right {
    float: right;
    padding-right: 10px;
}

.footer-addr-info a {
    color: #000;
    display: block;
}

.footer-addr-info span {
    display: block;
}

.footer-addr-info__title {
    color: #0771b7;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: -2px;
    margin-bottom: 15px;
}

.bottom-footer {
    height: 70px;
    min-height: 70px;
}

.bottom-footer .main-footer__content {
    height: 70px;
    min-height: 70px;
    border-top: 1px solid #0771b7;
    padding-top: 20px;
}

.bottom-footer .container {
    padding-left: 0;
    padding-right: 0;
    height: 30px;
    min-height: 30px;
    margin-bottom: 0;
    font-size: 14px;
    color: #0771b7;
}

.bottom-footer .container a {
    text-decoration: none;
    color: #0771b7;
}

.icons-btn {
    float: right;
    padding-top: 23px;
    padding-right: 13px;
}

.icons-btn a {
    text-align: right;
    display: block;
    color: #0670b8;
    margin-bottom: 7px;
    margin-bottom: 8px;
}

.world, .world > #map_canvas {
    position: relative;
    height: 600px;
    margin-bottom: 30px;
}

table {
    width: 900px;
}

table tr {
    height: 122px;
    line-height: 20px;
}

table td {
    font-size: 18px;
    padding: 20px;
    display: table-cell;
    border: 1px solid #c6c6c5;
    vertical-align: middle;
}

table td h3 {
    font-size: 30px;
    color: #0771b7;
    margin-top: 0 !important;
}

table td h3 a {
    text-decoration: none;
}

table tr:first-child {
    background-color: #0771b7;
    color: #fff;
    text-transform: uppercase;
}

.norightmargin {
    margin-right: 0;
}

.floatright {
    float: right;
}

/*IE FIX*/

/* ___________ MEDIA QUERIES ____________*/

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {

    .location-country {
        height: 345px;
    }

    .location-country:last-child {
        height: 535px;
    }

    .breadcrumbs__wrap {
        height: 62px;
    }

    .filter-line__items {
        height: 88px;
    }

    .nav-tabs-news li a {
        height: 88px;
    }

    .nav-tabs-news a {
        text-align: left;
    }

    .form-navs__list {
        height: 95px;
    }
}

@media (min-width: 769px) {

    .navbar-collapse {
        display: block;
    }
}

@media (max-width: 1200px) {

    .header-nav {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .nav {
        min-width: 535px;
    }

    .nav > li > a {
        font-size: 18px;
    }

    .jumbo_career .jumbo__right {
        padding-top: 158px;
    }

    .jumbo_career .jumbo__right-link_aplication {
        right: 0;
    }

    .jumbo__left {
        padding-top: 18px;
        margin-left: 0;
    }

    .jumbo__left-circle {
        left: 0;
    }

    .carousel-contr-left {
        left: 20px;
    }

    .carousel-contr-right {
        right: 20px;
    }

    .term-location__address {
        padding-left: 15px;
    }

    .career-carousel__cont {
        padding: 40px 60px 31px 30px;
    }
}

@media (max-width: 1080px) {

    .section-nav__list {
        width: 60px;
    }

    .section-nav__list img {
        width: 27px;
        height: 27px;
    }

    .section-nav__list svg {
        width: 27px;
        height: 27px;
    }

    .section-nav__list a:after {
        right: -14px;
    }

    .section-nav__list span {
        left: 72px;
        font-size: 14px;
    }

    .service__content-block {
        min-width: 100%;
    }
}

@media (max-width: 1024px) {
    .jumbo__left-circle {
        padding: 0 25px 0 50px;
    }
}

@media (max-width: 992px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    p, li {
        font-size: 15px;
        line-height: 20px;
    }

    .header-info__content {
        width: 544px;
    }

    .phone-block {
        -webkit-box-flex: 7;
        -webkit-flex-grow: 7;
        -ms-flex-positive: 7;
        flex-grow: 7;
        width: auto;
    }

    .search-form-wrap {
        display: none;
        width: 270px;
        height: 60px;
        position: absolute;
        background-color: #0771b7;
        text-align: center;
        right: 0;
        top: 130px;
        padding-left: 9px;
        padding-top: 10px;
        z-index: 80;
    }

    .search-toggle {
        display: inline-block;
    }

    .main-menu {
        padding-top: 7px;
    }

    .jumbo_home {
        min-height: 571px;
        background-position: 90% 50%;
    }

    .jumbo_page {
        min-height: 384px;
    }

    .jumbo_page .jumbo__left {
        padding-top: 36px;
    }

    .jumbo_career .jumbo__right {
        padding-top: 124px;
    }

    .jumbo__left {
        padding-top: 48px;
    }

    .jumbo__left-circle {
        width: 304px;
        height: 304px;
        padding-left: 41px;
        padding-bottom: 5px;
        margin-left: 16px;
    }

    .jumbo__left-title {
        font-size: 30px;
        line-height: 32px;
    }

    .jumbo__link {
        font-size: 24px;
        padding-left: 15px;
    }

    .jumbo__link span {
        font-size: 16px;
    }

    .jumbo__link_environment {
        width: 116px;
        height: 116px;
        top: 18px;
        right: -82px;
        padding-top: 19px;
    }

    .jumbo__link_environment span:after {
        top: -2px;
        right: 3px;
    }

    .jumbo__link_community {
        width: 145px;
        height: 145px;
        top: 100px;
        right: -131px;
        padding-left: 18px;
        padding-bottom: 3px;
    }

    .jumbo__link_community span:after {
        position: relative;
        right: 2px;
        top: 1px;
    }

    .jumbo__link_values {
        width: 115px;
        height: 115px;
        top: 209px;
        right: -62px;
    }

    .jumbo__right {
        padding-top: 44px;
    }

    .jumbo__right-link {
        font-size: 14px;
        line-height: 19px;
        padding-left: 12px;
    }

    .jumbo__right-link span:after {
        margin-left: 4px;
    }

    .jumbo__right-link_career {
        width: 149px;
        height: 149px;
        background-size: contain;
        background-position: 67px 12px;
        margin-right: 62px;
        padding-left: 14px;
        padding-bottom: 3px;
    }

    .jumbo__right-link_aplication {
        width: 128px;
        height: 128px;
        right: -64px;
        padding-left: 17px;
        padding-top: 7px;
    }

    .breadcrumbs__wrap {
        min-height: 49px;
    }

    .testimonial_in {
        margin-top: 32px;
    }

    .testimonial__content {
        min-height: 230px;
    }

    .testimonial__title {
        font-size: 28px;
        line-height: 32px;
        margin-top: 25px;
        margin-bottom: 11px;
        max-width: 480px;
        min-width: 480px;
    }

    .testimonial__autor-name {
        font-size: 15px;
        line-height: 20px;
    }

    .testimonial__img {
        width: 176px;
        height: 176px;
        margin-top: -29px;
    }

    .testimonial__text {
        min-width: 435px;
        max-width: 435px;
        margin-left: 15px;
    }

    .testimonial__btn {
        width: 123px;
        height: 31px;
    }

    .additionally__left .arr-btn {
        width: 226px;
        height: 31px;
    }

    .additionally__left {
        height: 200px;
        padding-top: 40px;
    }

    .additionally__right .arr-btn {
        width: 169px;
        height: 31px;
    }

    .additionally__right {
        height: 200px;
        padding-top: 40px;
    }

    .additionally__download-title {
        font-size: 24px;
    }

    .carousel-contr-left {
        width: 33px;
        height: 33px;
    }

    .carousel-contr-left .carousel-contr-icon {
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        transform: scale(.7);
    }

    .carousel-contr-right {
        width: 33px;
        height: 33px;
    }

    .carousel-contr-right .carousel-contr-icon {
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        transform: scale(.7);
    }

    .downloads-sect__content {
        padding-top: 48px;
        padding-bottom: 32px;
    }

    .downloads-sect__title {
        font-size: 24px;
        line-height: 19px;
    }

    .downloads-sect__btns .arr-btn {
        width: 222px;
        height: 30px;
    }

    .policy__content {
        min-height: 440px;
        padding-top: 48px;
    }

    .policy p {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 29px;
        line-height: 19px;
        margin-bottom: 30px;
    }

    .section-list {
        font-size: 14px;
        line-height: 19px;
        padding-left: 60px;
    }

    .corp-movie {
        padding-top: 35px;
        padding-bottom: 25px;
    }

    .corp-movie__title {
        margin-bottom: 10px;
        line-height: 36px;
        font-size: 30px;
    }

    .corp-movie__clip {
        margin-bottom: 20px;
        height: 355px;
    }

    .my-modal__title {
        font-size: 20px;
    }

    .main-title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    .locations-map {
        min-height: 540px;
        margin-bottom: 50px;
    }

    .location-country {
        min-height: 270px;
        margin-bottom: 55px;
    }

    .location-country:last-child {
        min-height: 430px;
    }

    .location-item {
        font-size: 15px;
        line-height: 20px;
    }

    .location-item__title {
        font-size: 20px;
        line-height: 19px;
        margin-bottom: 18px;
    }

    .location-item__title_min {
        font-size: 15px;
        line-height: 20px;
    }

    .location-item__addr {
        margin-bottom: 18px;
    }

    .location-item__btn {
        width: 187px;
        height: 31px;
    }

    .arr-btn {
        font-size: 14px;
        line-height: 20px;
    }

    .service {
        min-height: 590px;
    }

    .service_reverse .service__content {
        padding: 45px 29px 10px 20px;
    }

    .service__img {
        width: 31%;
    }

    .service__content {
        width: 69%;
        padding: 45px 20px 10px 29px;
    }

    .service__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service__content-block > p {
        margin-bottom: 20px;
    }

    .person-block {
        padding-left: 0;
        padding-top: 20px;
    }

    .person-block__img {
        max-width: 136px;
        min-width: 136px;
        height: 136px;
        margin-right: 10px;
    }

    .person-block__text {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 16px;
    }

    .person-block__name {
        font-size: 14px;
    }

    .nav-tabs-news__text:after {
        margin-left: 35px;
    }

    .nav-tabs-news li a {
        font-size: 30px;
        min-height: 70px;
    }

    .filter-line__items {
        min-height: 70px;
    }

    .filter-line label {
        font-size: 14px;
    }

    .my-formstyler .jq-checkbox.checked {
        background-position: -351px -91px;
    }

    .tab-content {
        padding-top: 0;
    }

    .post-preview p {
        margin-bottom: 14px;
    }

    .post-preview__date {
        margin-bottom: 2px;
        font-size: 15px;
    }

    .post-preview__tag {
        margin-bottom: 2px;
        font-size: 15px;
    }

    .post-preview__title {
        font-size: 20px;
        line-height: 24px;
    }

    .load-art-btn {
        height: 56px;
    }

    .article p {
        margin-bottom: 20px;
    }

    .article figure {
        padding-bottom: 15px;
    }

    .block-title-green {
        font-size: 20px;
        line-height: 19px;
        margin-top: 10px;
    }

    .page-btn {
        width: 123px;
        height: 31px;
    }

    .term-content-block__pt {
        margin-top: 20px;
    }

    .inner-container {
        max-width: 342px;
    }

    .term-facts {
        padding-left: 15px;
        padding-top: 5px;
        padding-bottom: 0;
    }

    .term-facts__title {
        font-size: 24px;
    }

    .term-facts__items {
        padding-top: 10px;
    }

    .term-facts__item {
        margin-bottom: 12px;
    }

    .term-facts__item-icon {
        padding-top: 4px;
        margin-right: 12px;
    }

    .term-facts__item-icon svg {
        width: 48px;
        height: 48px;
    }

    .term-facts__item-title {
        font-size: 15px;
        line-height: 20px;
    }

    .term-facts p {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .term-facts__btns {
        padding-top: 45px;
    }

    .term-facts__btns .arr-btn {
        height: 32px;
        margin-bottom: 22px;
    }

    .term-location__map {
        min-height: 455px;
    }

    .term-location__address {
        padding-top: 35px;
    }

    .term-location__address .location-item {
        font-size: 14px;
    }

    .partners {
        padding-top: 30px;
    }

    .partners__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .partners__items {
        padding-right: 0;
    }

    .partners__item {
        max-width: 155px;
    }

    .partners__item p {
        font-size: 13px;
        line-height: 16px;
    }

    .term-info-block {
        padding-top: 30px;
        padding-left: 17px;
    }

    .term-info-block_access {
        background-position: 100% 100%;
    }

    .term-info-block_access .arr-btn {
        width: 207px;
        height: 30px;
    }

    .term-info-block_project .arr-btn {
        width: 123px;
        height: 30px;
    }

    .term-info-block_project p {
        margin-bottom: 20px;
    }

    .term-info-block__title {
        font-size: 20px;
        line-height: 24px;
        min-height: 55px;
    }

    .testimonial_terminal {
        padding-bottom: 20px;
        padding-left: 15px;
    }

    .testimonial_terminal .testimonial__title-block {
        padding-right: 26px;
    }

    .testimonial_terminal .testimonial__text {
        max-width: 142px;
        margin-right: 10px;
    }

    .testimonial_terminal .testimonial__img {
        width: 166px;
        height: 166px;
    }

    .testimonial_terminal .testimonial__btn-wrap {
        padding-top: 32px;
    }

    .blue-title {
        line-height: 20px;
        font-size: 20px;
    }

    .blue-list {
        line-height: 20px;
        font-size: 15px;
    }

    .form-navs {
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .form-navs__list {
        min-height: 76px;
    }

    .form-navs__list span {
        width: 22px;
        height: 22px;
        font-size: 14px;
        margin-right: 8px;
    }

    .form-navs__list a {
        font-size: 15px;
        line-height: 20px;
    }

    .form-panels label {
        font-size: 14px;
        line-height: 19px;
        padding-left: 8px;
        min-width: 92px;
    }

    .form-panels input[type="text"] {
        height: 36px;
        font-size: 15px;
    }

    .form-panels textarea {
        height: 106px;
    }

    .form-group-line {
        margin-bottom: 10px;
    }

    .field-day {
        width: 78px;
    }

    .field-month {
        width: 78px;
    }

    .field-month_big {
        width: 101px;
    }

    .field-month_min {
        width: 68px;
    }

    .field-year {
        width: 133px;
    }

    .field-year_big {
        width: 202px;
    }

    .form-panel__row {
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .form-panel__row:first-child {
        margin-bottom: 35px;
    }

    .form-panel__row_message {
        padding-bottom: 42px;
        padding-top: 0;
    }

    .form-panel__title {
        font-size: 20px;
        line-height: 20px;
    }

    .form-panel__sub-title {
        font-size: 16px;
        line-height: 19px;
    }

    .form-panel__col-head {
        margin-bottom: 2px;
    }

    .form-panel__col-head span {
        font-size: 14px;
    }

    .storage-title {
        margin-bottom: 15px;
    }

    .in-out-items .form-panel__sub-title {
        margin-top: 0;
    }

    .in-out-items .form-group-line {
        margin-bottom: 16px;
    }

    .pag-btns .arr-btn {
        width: 123px;
        height: 31px;
    }

    .about-block_common .about-block__row_reverse .about-block__img {
        padding: 0 27px;
    }

    .row_mb {
        margin-bottom: 10px;
    }

    .block-title-blue {
        font-size: 20px;
        line-height: 20px;
    }

    .block-title-blue_min {
        font-size: 15px;
        line-height: 19px;
    }

    .career-carousel .term-content-block__pt {
        margin-top: 20px;
    }

    .career-carousel__cont p {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .career-carousel__cont .person-block__text {
        font-size: 28px;
        line-height: 32px;
        padding-top: 5px;
        margin-bottom: 10px;
    }

    .career-carousel__cont .person-block__name {
        font-size: 15px;
        line-height: 19px;
    }

    .career-carousel__cite {
        margin-bottom: 28px;
    }

    .vacancy {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .vacancy__title {
        font-size: 24px;
        line-height: 31px;
    }

    .vacancy__form {
        padding-top: 15px;
        padding-bottom: 0;
    }

    .vacancy__form .row > div {
        margin-bottom: 25px;
    }

    .vacancy__form input,
    .vacancy__form select,
    .vacancy__form button {
        height: 39px;
    }

    .vacancy__form input {
        padding: 0 40px 0 10px;
        font-size: 13px;
    }

    .vacancy .jq-selectbox__select {
        padding: 0 40px 0 10px;
        font-size: 13px;
        height: 40px;
    }

    .vacancy .jq-selectbox__select:before {
        width: 40px;
    }

    .vacancy .jq-selectbox__select:after {
        right: 15px;
    }

    .vacancy .jq-selectbox__dropdown {
        font-size: 13px;
    }

    .vacancy .jq-selectbox__dropdown ul li {
        padding: 8px 5px 8px 10px;
    }

    .vacancy__item {
        padding-bottom: 0;
    }

    .vacancy__item-title {
        font-size: 18px;
        line-height: 20px;
        margin-top: 13px;
    }

    .field-wrap:after {
        width: 40px;
    }

    .no-vacancy {
        padding-top: 15px;
    }

    .no-vacancy__title {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .no-vacancy__subtitle {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 20px;
    }

    .no-vacancy ul li {
        margin-bottom: 20px;
    }

    .contacts-page .term-location__map {
        min-height: 366px;
    }

    .drop-tab {
        margin-top: 20px;
        padding: 20px 0;
    }

    .drop-tab__list {
        width: 311px;
    }

    .drop-tab__list .dropdown-toggle {
        font-size: 15px;
        line-height: 36px;
    }

    .drop-tab__list .caret {
        background-position: 50% 50%;
        background-size: 16px 18px;
        height: 24px;
    }

    .drop-tab__list .dropdown-menu {
        top: 37px !important;
    }

    .drop-tab__list .dropdown-menu a {
        font-size: 15px;
    }

    .single-contacts {
        padding-top: 45px;
    }

    .icons-btn {
        padding-right: 0;
    }
}

@media (max-width: 991px) {

    .nav-tabs-news__text {
        min-width: 361px;
    }

    .my-formstyler .jq-checkbox {
        width: 20px;
        height: 20px;
    }

    .form-panels .jq-checkbox {
        width: 23px;
        height: 23px;
    }

    .form-panels .jq-checkbox.checked {
        background-position: -83px -132px;
    }

    .about-block {
        padding-top: 25px;
        padding-bottom: 14px;
    }

    .about-block__content {
        padding-left: 0;
    }

    .about-block__row_reverse .about-block__content {
        padding-left: 63px;
    }

    .about-block__row {
        margin-bottom: 30px;
    }

    .about-block__title {
        font-size: 29px;
        line-height: 19px;
    }

    .about-block__subtitle {
        font-size: 24px;
        line-height: 30px;
    }

    .about-block__img {
        padding-left: 55px;
    }

    .about-block_common {
        padding-top: 22px;
    }

    .about-block_common .about-block__row {
        padding-bottom: 15px;
    }

    .about-block_common .about-block__row_reverse .p-none-mobile {
        padding: 0;
    }

    .p-none-mobile {
        padding-left: 0;
    }
}

@media (max-width: 769px) {

    .dropdown-menu {
        padding-bottom: 0;
        padding-top: 0;
        position: static;
        width: 100%;
    }

    .drop-tab__list .dropdown-menu {
        position: absolute;
    }
}

@media (max-width: 768px) {

    .top-row__left {
        padding-left: 24px;
    }

    .top-row__right {
        width: 72%;
    }

    .header-nav {
        height: 40px;
    }

    .main-menu {
        padding-top: 0;
        position: static;
    }

    .navbar-toggle {
        display: block;
    }

    .caret {
        display: inline-block;
        vertical-align: top;
        float: right;
        width: 46px;
        height: 46px;
        border-left: 1px solid #9bcfec;
    }

    .nav {
        min-width: 320px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
        z-index: 100;
        position: relative;
    }

    .nav a {
        color: #fff !important;
        line-height: 46px !important;
        font-size: 20px !important;
        padding: 0 0 0 26px !important;
        border-bottom: 1px solid #9bcfec !important;
    }

    .nav a:focus {
        background-color: transparent !important;
    }

    .nav li {
        background-color: #0771b7;
    }

    .nav li:hover {
        background-color: #398dc5;
    }

    .nav li.open {
        background-color: #61a4d1;
    }

    .nav li.open .caret {
        background: url("../img/components/close-icon.png") center no-repeat;
    }

    .nav li li {
        background-color: #398dc5;
    }

    .nav li li.active {
        background-color: #398dc5 !important;
    }

    .nav li li:hover {
        background-color: #398dc5 !important;
    }

    .navbar-collapse {
        position: absolute;
        top: 129px;
        right: 0;
        max-width: 334px;
    }

    .staf-item-mobile a {
        color: #0771b7 !important;
        border-bottom: 1px solid !important;
    }

    .staf-item-mobile {
        display: block !important;
    }

    .customers-item-mobile a {
        border: none !important;
        color: #0771b7 !important;
    }

    .customers-item-mobile {
        display: block !important;
    }

    .breadcrumbs__content {
        font-size: 15px;
    }

    .home-link {
        margin-right: 15px !important;
    }

    .additionally__right {
        padding-left: 15px;
        padding-right: 30px;
    }

    .additionally__download-title {
        margin-bottom: 41px;
    }

    .page-carousel {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .carousel-contr-left {
        left: 10px;
    }

    .carousel-contr-right {
        right: 10px;
    }

    .section-nav__list li:hover {
        background-color: transparent !important;
    }

    .section-nav__list a {
        border: none !important;
        line-height: 24px !important;
        padding: 0 !important;
    }

    .my-modal {
        display: none !important;
    }

    .nav-tabs-news__text {
        min-width: 1px;
    }

    .nav-tabs-news li:first-child a {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-left: 15px;
    }

    .filter-line__items {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .partners {
        padding-left: 15px;
    }

    .term-info-block_access {
        background-position: 125% 100%;
    }

    .rfp {
        padding-bottom: 70px;
    }

    .form-navs .container {
        padding: 0;
    }

    .main-footer .no-padd-left {
        padding-left: 15px;
    }

    table {
        width: 720px;
    }

    .about-block_common .about-block__row_reverse .about-block__img, .about-block_common .about-block__img {
        margin: 0 auto;
        float: none;
        width: 150px;
    }
}

@media (min-width: 768px) {
    .service {
        margin-left: 60px;
    }
}

@media (max-width: 767px) {

    .vacancy {
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .vacancy__form {
        padding-top: 0;
    }

    .vacancy__form .row > div {
        margin-bottom: 16px;
    }

    .no-vacancy {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .no-vacancy ul {
        font-size: 15px;
        line-height: 20px;
    }
}

@media (max-width: 750px) {

    .jumbo__right-link {
        font-size: 12px;
        line-height: 16px;
        padding-left: 12px;
    }

    .rfp {
        padding-bottom: 55px;
    }

    .rfp .col-xs-6,
    .rfp .col-xs-4 {
        width: 100%;
    }

    .rfp .main-title + p {
        margin-bottom: 10px;
    }

    .form-navs {
        margin-bottom: 10px;
    }

    .form-panels input[type="text"] {
        margin-right: 6px;
    }

    .field-day {
        width: 72px;
    }

    .field-month {
        width: 72px;
    }

    .field-month_big {
        width: 93px;
    }

    .field-year {
        width: 123px;
    }

    .field-year_big {
        width: 186px;
    }

    .form-panel__row {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .form-panel__row:first-child {
        padding-bottom: 25px;
        margin-bottom: 30px;
    }

    .form-panel__row_message {
        padding-bottom: 0;
    }

    .form-panel__row_message textarea {
        margin-bottom: 30px;
    }

    .form-panel__title {
        margin-bottom: 10px;
    }

    .in-out-items .field-month_min {
        width: 65px;
    }

    .in-out-items .field-year {
        width: 107px;
    }

    .in-out-items .form-panel__sub-title {
        margin-top: 10px;
    }

    .pag-btns {
        padding-top: 5px;
    }
}

@media (max-width: 720px) {

    .header-info__links a {
        font-size: 14px;
    }

    .phone-block {
        font-size: 16px;
    }

    .phone-block span {
        font-size: 16px;
    }

    .testimonial__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    }

    .testimonial__title-block {
        margin-bottom: 10px;
    }

    .testimonial__title {
        max-width: 100%;
        min-width: 100px;
    }

    .testimonial__title br {
        display: none;
    }

    .testimonial__img {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .testimonial__text {
        max-width: 100%;
        min-width: 100px;
        margin-left: 0;
    }

    .testimonial__btn {
        margin-top: 20px;
    }

    .section-nav {
        display: none;
    }

    .locations {
        padding-bottom: 20px;
    }

    .term-content-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .term-content-block__left {
        width: 100%;
    }

    .term-content-block__left_reverse {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .term-content-block__right {
        width: 100%;
    }

    .term-content-block__right_reverse {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .inner-container {
        max-width: 100%;
    }

    .term-facts {
        padding-bottom: 40px;
    }

    .term-facts__btns {
        padding-top: 24px;
    }

    .partners {
        padding-bottom: 35px;
        padding-top: 10px;
    }

    .partners__title {
        margin-bottom: 18px;
    }

    .partners__item {
        margin-right: 10px;
    }

    .term-info-block {
        padding-bottom: 35px;
    }

    .term-info-block_access {
        background-position: 100% 100%;
    }

    .testimonial_terminal {
        padding-top: 0;
        padding-bottom: 0;
    }

    .testimonial_terminal .testimonial__title-block {
        padding-right: 0;
    }

    .testimonial_terminal .testimonial__text {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        max-width: 100%;
        text-align: center;
    }

    .testimonial_terminal .testimonial__img {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .testimonial_terminal .testimonial__btn-wrap {
        padding-top: 20px;
    }

    .testimonial__middle-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
        padding-top: 10px;
    }

    .about-block {
        padding-bottom: 0;
        margin-bottom: 5px;
    }

    .about-block:last-child {
        padding-bottom: 0;
    }

    .about-block__content {
        padding: 0 !important;
    }

    .about-block__row_reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .about-block__row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .about-block__row > div {
        width: 100%;
    }

    .about-block__title {
        margin-bottom: 18px;
    }

    .about-block__subtitle {
        display: none;
    }

    .about-block__subtitle_mobile {
        display: block;
    }

    .about-block__img {
        margin: 0 0 28px 0;
        padding-left: 0;
        max-width: 285px;
        margin-right: auto;
        margin-left: auto;
    }

    .connecting-line-right:after {
        display: none;
    }

    .connecting-line-left:after {
        display: none;
    }

    .about-block_common .about-block__row {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .about-block_common .about-block__row_reverse .about-block__img {
        padding: 0;
        float: right;
    }

    .about-block_common .about-block__content {
        padding: 0;
    }

    .about-block_common .about-block__subtitle {
        display: block;
    }

    .about-block_common .about-block__img {
        margin: 0 0 20px;
        max-width: 170px;
    }

    .p-none-mobile {
        padding: 0 15px !important;
    }

    .col-xxs-12 {
        width: 100%;
    }

    .row_mb {
        margin-bottom: 0;
    }

    .block-title-blue {
        margin-top: 5px;
    }

    .career-carousel__cont {
        padding: 20px 15px 10px 15px;
    }

    .career-carousel .carousel-contr-left {
        left: 8px;
        top: 152px;
    }

    .career-carousel .carousel-contr-right {
        right: 8px;
        top: 152px;
    }

    .drop-tab__list {
        width: 288px;
    }

    .phone-block_footer {
        font-size: 24px;
    }

    .phone-block_footer span {
        font-size: 18px !important;
    }
}

@media (max-width: 680px) {

    .header-info__links {
        display: none;
    }

    .phone-block {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        border: none;
        padding-right: 12px;
        font-size: 18px;
    }

    .jumbo {
        background-position: 33% 50%;
    }

    .jumbo_page .jumbo__left {
        padding-top: 15px;
    }

    .jumbo_page .jumbo__right {
        padding-top: 0;
    }

    .jumbo_career .jumbo__right {
        padding-left: 30px;
    }

    .jumbo_career .jumbo__right-link_aplication {
        top: -42px;
    }

    .jumbo__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .jumbo__left {
        padding-left: 40px;
    }

    .jumbo__right {
        padding-left: 50px;
    }

    .additionally__left {
        width: 100%;
        text-align: left;
    }

    .additionally__right {
        width: 100%;
    }

    .additionally__download {
        margin-right: 0;
    }

    .downloads-sect__title {
        text-align: center;
    }

    .downloads-sect__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    }

    .downloads-sect__btns .arr-btn {
        margin-right: 0;
    }

    .service {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 1px;
    }

    .service_reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .service_reverse .service__content {
        padding: 25px 15px 25px 15px;
    }

    .service__img {
        width: 100%;
        height: 300px;
        background-position: left center;
    }

    .service__content {
        width: 100%;
        padding: 25px 15px 25px 15px;
    }

    .service__title {
        display: none;
    }

    .service__title_mobile {
        display: block;
        margin-top: 37px;
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .nav-tabs-news__text:after {
        -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
        transform: scale(.8);
        position: relative;
        top: 2px;
        margin-left: 28px;
    }

    .nav-tabs-news li:last-child a {
        padding-left: 12px;
    }

    .nav-tabs-news li a {
        font-size: 24px;
        min-height: 58px;
    }

    .filter-line__items > div {
        margin-bottom: 3px;
    }

    .filter-line__items {
        min-height: 58px;
    }

    .filter-line label {
        font-size: 12px;
        padding-left: 5px;
        padding-right: 17px;
    }

    .my-formstyler .jq-checkbox.checked {
        background-position: -353px -92px;
    }

    .my-formstyler .jq-checkbox {
        width: 16px;
        height: 16px;
    }

    .post-preview {
        padding: 30px 0;
    }

    .post-preview .col-xs-6 {
        width: 100%;
    }

    .post-preview p {
        margin-top: 14px;
    }

    .post-preview__img img {
        max-height: 260px;
        width: 100%;
    }

    .post-preview__img {
        min-height: 1px;
    }

    .post-preview__head {
        display: none;
    }

    .post-preview__head_mobile {
        display: block;
        margin-bottom: 3px;
    }

    .post-preview__date {
        margin-bottom: 5px;
    }

    .tab-pane__btn {
        padding-top: 30px;
    }

    .form-panels .jq-checkbox {
        width: 23px;
        height: 23px;
    }

    .form-panels .jq-checkbox.checked {
        background-position: -83px -132px;
    }
}

@media (max-width: 650px) {

    .locations .col-xs-4 {
        width: 50%;
    }

    .locations .col-xs-4:last-child {
        width: 100%;
    }
}

@media (max-width: 640px) {

    .locations-map {
        display: none;
    }

    .locations-items {
        padding-top: 30px;
    }

    .main-footer .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .main-footer .row > div {
        width: 100%;
    }

    .main-footer__contacts {
        margin-bottom: 25px;
    }

    .main-footer__content {
        padding-top: 24px;
    }

    .main-footer__logo {
        margin-bottom: 20px;
    }

    .phone-block_footer {
        padding-top: 10px;
    }

    .icons-btn {
        padding-top: 16px;
    }

    .world {
        display: none;
    }

    .jumbo__left-circle {
        padding: 0 25px 0 25px;
    }

    .bottom-footer .container div {
        margin-left: 0;
        margin-right: 0;
    }

    .bottom-footer .container div div:first-child {
        padding-left: 15px;
    }
}

@media (max-width: 560px) {

    .form-navs__list li.active a {
        font-size: 15px;
    }

    .form-navs__list a {
        font-size: 0;
    }
}

@media (max-width: 480px) {

    p > img {
        width: 100%;
        height: auto;
    }

    .jumbo__left {
        padding-left: 0;
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }

    .jumbo__link {
        display: none;
    }

    .section-title {
        text-align: center;
    }

    .section-list {
        padding-left: 15px;
    }

    .corp-movie {
        padding-top: 10px;
    }

    .corp-movie__title {
        text-align: center;
        margin-bottom: 15px;
    }

    .downloads .col-xs-6 {
        width: 100%;
    }

    .locations .col-xs-4 {
        width: 100%;
    }

    .location-country {
        margin-bottom: 40px;
        min-height: 100px;
    }

    .location-country:last-child {
        min-height: 100px;
    }

    .service_reverse .person-block {
        margin-top: 0;
        margin-bottom: 25px;
    }

    .person-block .service__content-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -ms-grid-row-align: center;
        align-items: center;
    }

    .person-block__img {
        margin-bottom: 10px;
    }

    .person-block__text {
        max-width: 100%;
    }

    .form-panels label {
        padding-left: 6px;
        min-width: 75px;
    }

    .carousel .term-content-block {
        height: 950px;
    }
}

@media (max-width: 430px) {

    body {
        padding-top: 80px;
    }

    .main-header {
        min-height: auto;
        height: 90px;
        min-height: 90px;
        max-height: 90px;
    }

    .logo img {
        width: 115px;
        height: 64px;
    }

    .top-row__left {
        padding: 10px 0 0 15px;
    }

    .header-info {
        margin-bottom: 13px;
        padding-top: 8px;
        min-height: 10px;
    }

    .phone-block {
        min-height: 10px;
        font-size: 15px;
    }

    .phone-block span {
        font-size: 15px;
    }

    .search-form-wrap {
        top: 80px;
    }

    .search-toggle {
        width: 35px;
        height: 35px;
        padding: 9px;
    }

    .navbar-toggle {
        width: 35px;
        height: 35px;
        padding: 9px 8px !important;
    }

    .nav {
        min-width: 100%;
    }

    .navbar-collapse {
        top: 79px;
        max-width: 100%;
        width: 100%;
    }

    .jumbo_home {
        min-height: 490px;
    }

    .jumbo_career .jumbo__right-link_aplication {
        top: -31px;
        right: 86px;
        margin: 0 auto;
    }

    .jumbo__left {
        padding-top: 25px;
    }

    .jumbo__left-circle {
        width: 184px;
        height: 183px;
        padding-left: 25px;
    }

    .jumbo__left-title {
        font-size: 18px;
        line-height: 19px;
    }

    .jumbo__right {
        padding-left: 10px;
    }

    .jumbo__right-link_career {
        width: 124px;
        height: 124px;
        background-position: 56px 14px;
        margin-right: 0;
    }

    .jumbo__right-link_aplication {
        width: 108px;
        height: 108px;
    }

    .breadcrumbs {
        display: none;
    }

    .page {
        padding-top: 30px;
    }

    .nav-tabs-news li:last-child .nav-tabs-news__text:after {
        margin-left: 12px;
    }

    .partners__item {
        max-width: 130px;
    }
}

@media (max-width: 380px) {

    .corp-movie__clip {
        height: 165px;
    }
}

@media (max-width: 320px) {

    .phone-block {
        font-size: 13px;
    }

    .phone-block span {
        font-size: 13px;
        padding-right: 10px;
    }

    .phone-link {
        position: relative;
        left: -3px;
    }

    .search-toggle {
        margin-right: 15px;
        position: relative;
        top: 3px;
    }

    .navbar-toggle {
        position: relative;
        top: 3px;
        left: 2px;
        padding: 9px 8px !important;
    }

    .jumbo_home {
        background-position: 42% 57%;
    }

    .jumbo_page .jumbo__left {
        padding-left: 0;
    }

    .jumbo_page .jumbo__right {
        margin-top: -46px;
    }

    .jumbo__left-circle {
        margin-left: 4px;
    }

    .jumbo__right-link_career {
        position: relative;
        top: 12px;
        padding-top: 4px;
    }

    .jumbo__right-link_aplication {
        right: -55px;
        top: -11px;
    }

    .jumbo__right-link_aplication span {
        position: relative;
        top: -3px;
    }

    .location-item__btn {
        width: 290px;
        height: 31px;
    }

    .inner-content-right {
        max-width: 228px;
    }

    .partners__item {
        margin-right: 0;
    }

    .term-info-block_access {
        background-position: 155% 100%;
    }

    .main-footer__text p {
        margin-bottom: 0;
    }

    .footer-addr-info {
        position: relative;
        top: -4px;
    }

    .footer-addr-info__right {
        padding-right: 0;
    }

    .footer-addr-info__title {
        margin-bottom: 11px;
    }

    .icons-btn {
        padding-top: 8px;
    }
}

*, *:after, *:before {
    box-sizing: border-box;
}

.graph__row .col-md-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.graph {
    margin: 60px 10px;
    position: relative;
    width: 200px;
    height: 200px;
}

@media screen and (max-width: 510px) {
    .graph {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@media screen and (max-width: 390px) {
    .graph {
        -webkit-transform: scale(0.65);
        transform: scale(0.65);
    }
}

.graph__bg {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.graph__bg:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 60px solid currentColor;
    border-radius: 50%;
}

.graph__data {
    position: relative;
    z-index: 2;
    font-size: 0.85em;
    text-align: center;
    width: calc(100% - 90px);
    height: calc(100% - 90px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    line-height: 1.2;
}

.graph__pie {
    z-index: 1;
}

.graph__pie, .graph__chunk {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.graph__pie svg, .graph__chunk svg {
    opacity: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.graph__pie svg circle, .graph__chunk svg circle {
    stroke-width: 50%;
    fill: transparent;
}

.graph__lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.graph__line {
    position: absolute;
    color: currentColor;
    top: 100px;
    left: 100px;
    font-size: 20px;
    min-width: 120px;
    text-align: right;
    font-weight: bold;
    line-height: 1.2;
}

.graph__line.reverse {
    text-align: left;
}

.graph__line.reverse:after {
    right: auto;
    left: 0;
}

.graph__line span {
    font-size: 1rem;
    display: block;
    font-weight: normal;
}

.graph__line:after {
    content: '';
    background-color: currentColor;
    width: calc(100% + 20px);
    height: 1px;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
}

.graph__title {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 10px 0;
}
.g-recaptcha {
	float: right!important;
}
