body {
    font-family: 'Roboto', sans-serif ;
}
p {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
.container {
    max-width: 1440px;
}
header {

}
.header__row {
    height: 50px;
    justify-content: flex-end;
}
.header__menu {
    display: flex;
    height: 100%;
}
.header__menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 100%;
    text-align: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    color: #333333;

}
.header__menu a:not(:first-child) {
    transition: .3s;
    border-left: 2px solid #ECECEC;
}
.header__menu a p {
    margin: auto 0;
}
.header__menu a:hover {
    background: #E3E3E3;
    text-decoration: none;
    color: #333333;
}
.header__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    height: 100%;
    text-align: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    color: #333333;
    border-left: 2px solid #ECECEC;
    border-right: 2px solid #ECECEC;
    transition: .3s;
}
.header__contact img {
    margin-right: 12px;
}
.header__contact:hover {
    background: #E3E3E3;
    text-decoration: none;
    color: #333333;
}
.header__exit {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    color: #333333;
    height: 100%;
    text-align: center;
    border-left: 2px solid #ECECEC;
    transition: .3s;
    padding:0 12px;
}
.header__exit img {
    width: 13px;
    margin: 0 6px 0 0;
}
.header__exit:hover {
    background: #E3E3E3;
    text-decoration: none;
    color: #333333;
}

.mob-menu__exit{
    float: right;
    color: white;
    text-decoration: none;
}
.mob-menu__exit img{
    width: 13px;
    margin-right: 8px;
}

.header__country {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 100%;
    text-align: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    color: #333333;
    border-right: 2px solid #ECECEC;
    transition: .3s;
}
.header__country img {
    margin-right: 12px;
}
.header__country:hover {
    background: #E3E3E3;
    text-decoration: none;
    color: #333333;
}
.header__language {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 105px;
    height: 100%;
    text-align: center;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    color: #333333;
    transition: .3s;
}
.header__language:hover {
    text-decoration: none;
    color: #333333;
}
.header__row .header__language:hover {
    background: #E3E3E3;
}
.header__language img:first-child {
    margin-right: 12px;
}
.header__language img:last-child {
    margin-left: 3px;
}
.welcome {
    height: 800px;
    background-attachment: fixed;
    background-size: cover;
}

.welcome__header {
    justify-content: space-between;
    align-items: center;
    padding: 20px 35px;
}
.welcome__header-menu {
    width: 800px;
    display: flex;
    justify-content: space-between;
}
.welcome__header-logo {
}
.welcome__header-item {
    font-family: Frutiger;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-bottom: 5px;
    transition: .3s linear;
}
.welcome__header-menu nav ul:after {
  content: "";
  display: table;
  clear: both;
}
.welcome__header-menu nav a {
  text-decoration: none;
  display: block;
  transition: .3s linear;
}
.welcome__header-menu nav {
    width: 750px;
}
.welcome__header-menu .topmenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.welcome__header-menu .topmenu > li {
  position: relative;
}
.welcome__header-menu .topmenu > li > a {
  padding: 5px;
  text-transform: uppercase;
  color: #FEFDFD;
}
.welcome__header-menu .topmenu > li > a.active,
.welcome__header-menu .submenu a:hover {color: #005BBB;}
.welcome__header-menu .topmenu .fa,
.welcome__header-menu .submenu .fa {
  margin-left: 5px;
  color: inherit;
}
.welcome__header-menu .submenu {
  position: absolute;
  z-index: 5;
  top: 35px;
  min-width: 200px;
  background: white;
  border-top: 1px solid #CBCBCC;
  border-left: 1px solid #CBCBCC;
  border-right: 1px solid #CBCBCC;
  visibility: hidden;
  opacity: 0;
  transform-origin: 0% 0%;
  transform: rotateX(-90deg);
  transition: .3s linear;
}
.welcome__header-menu .submenu li {position: relative;}
.welcome__header-menu .submenu li a {
  color: #282828;
  padding: 10px 20px;
  border-bottom: 1px solid #CBCBCC;
}
.welcome__header-menu .submenu .submenu {
  position: absolute;
  left: 100%;
  top: -1px;
  transition: .3s linear;
}
.welcome__header-menu nav li:hover > .submenu {
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}
.welcome__header-menu nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.welcome .dropdown-item {
    font-family: Frutiger;
    font-size: 14px;
    white-space: normal;
}
.welcome .dropdown-menu {
    width: 240px;
}
.welcome__header-item:hover {
    border-bottom: 2px solid #005BBB;
    text-decoration: none;
    color: #FFFFFF;
    padding-bottom: 3px!important;
}
.welcome__header-search {
    margin-left: 35px;
    position: relative;
}
.welcome__header-search img {
    cursor: pointer;
}
.welcome__header-searchMobile {
    display: none;
}
.search__block {
    background: #ffffff;
    padding: 10px;
    top: 50px;
    right: -5px;
    position: absolute;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    z-index: 5;
}
.welcome__header-searchMobile .search__block{
    right: auto;
    left: 0;
}
.search__block form {
    display: flex;
}
.search__block form input {
    height: 50px;
    width: 300px;
    margin-right: 15px;
    padding-left: 15px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #777777;

}
.search__block form button {
    background: #005BBB;
    width: 50px;
    height: 50px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.welcome__title {
    margin-top: 175px;
}
.welcome__title h1 {
    width: 885px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 50px;
    line-height: 63px;
    color: #FFFFFF;
}
.welcome__bottomLinks {
    margin-top: 165px;
    justify-content: space-between;
}
.welcome__links-item {
    display: block;
}
.welcome__links-item {
    display: block;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
}
.welcome__links-item p {
    opacity: 0.6;
    transition: .3s;
}
.welcome__links-item:hover {
    text-decoration: none;
    color: #ffffff;
}
.welcome__links-item:hover p{
    opacity: 1;
}
.welcome__links-itemLine {
    margin: 0 auto;
    width: 60px;
    height: 2px;
    background: #005BBB;
    transition: .3s;
}
.welcome__links-item:hover .welcome__links-itemLine {
    width: 100%;
}
.news {
    padding: 60px 0;
}
.news__title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news__title h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 63px;
    color: #005bbb;
}
.news__title a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #005BBB;
    transition: .3s;
}
.news__title a:hover {
    color: #FE5815;
}
.news__items {
    /*justify-content: space-between;*/
    margin-top: 65px;
}
.news__item-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 200px;
}
@media screen and (max-width: 768px) {
    .news__item-img {
        justify-content: flex-start;
    }
    .news__item-img img {
        margin: 0 !important;
    }
}
.news__item img {
    transition: .3s;
}
.news__item {
    width: 340px;
    transition: .3s;
}
.news__item:hover {
    text-decoration: none;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
.news__item:hover img {
    transform: scale(1.1);
    transition: .3s;
}
.news__item-desc {
    padding: 28px;
    border-right: 1px solid #F3F3F3;
    border-left: 1px solid #F3F3F3;
    border-bottom: 1px solid #F3F3F3;
}
.news__item-tag {
    margin-bottom: 10px;
}
.news__item-tag p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 13px;
    color: #FE5815;
}
.news__item-data {
    display: flex;
    align-items: center;
}
.news__item-author {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    text-transform: uppercase;
    color: #FE5815;
    margin-right: 25px;
}
.news__item-date {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 14px;
    color: #777777;
}
.news__item-title {
    margin-top: 15px;
}
.news__item-title h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    min-height: 75px;
}
.solutions {
    padding: 60px 0;
}
.solutions__title h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 46px;
    line-height: 63px;
    color: #333333;
}
.solutions__text {
    margin-top: 25px;
}
.solutions__text p {
    width: 750px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    color: #777777;
}
.solutions__item {
    width: 180px;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    transition: .3s;
}
.solutions__item h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
}
.solutions__items {
    display: flex;
    width: 100%;
}
.solutions__items-left {
    width: 417px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FE5815;
}
.solutions__items-right {
    width: 100%;
}
.solutions__items-topLeftLeft {
    height: 100%;
    width: 417px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C4D600;
}
.solutions__items-topLeftRight {
    height: 100%;
    width: 417px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #509E2F;
}
.solutions__items-topRight {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #001A70;
}
.solutions__items-botLeft {
    height: 100%;
    width: 623px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #005BBB;
}
.solutions__items-botRight {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFA02F;
}
.solutions__items-top {
    width: 100%;
    height: 322px;
    display: flex;
    align-items: center;
}
.solutions__items-topLeft {
    height: 100%;
    display: flex;
    align-items: center;
}
.solutions__items-bot {
    width: 100%;
    height: 322px;
    display: flex;
    align-items: center;
}
.solutions__items a:hover {
    text-decoration: none;
}
.solutions__items a:hover .solutions__item {
    transform: scale(1.1);
}
.clients {
    /* padding: 60px 0; */
}
.clients__title {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.clients__title h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 46px;
    line-height: 63px;
    color: #333333;
}
.clients__arrows {
    display: flex;
    width: 100px;
    margin: 20px 0 20px 0;
    justify-content: space-between;
}
.clients__arrow {
    width: 43px;
    height: 43px;
    cursor: pointer;
    transition: .3s;
}
.clients__arrows-prev {
    background: url("../img/clients__arrow-prev.svg") center no-repeat;
}
.clients__arrows-prev:hover {
    background: url("../img/clients__arrow-prevA.svg") center no-repeat;
}
.clients__arrows-next {
    background: url("../img/clients__arrow-next.svg") center no-repeat;
}
.clients__arrows-next:hover {
    background: url("../img/clients__arrow-nextA.svg") center no-repeat;
}
.clients__content {
    height: 220px;
    width: 100%;
    margin-top: 45px;
}
.clients__slider  {
    height: 100%;
}
.clients__slider-item {
    width: 280px;
    height: 220px;
    border: 1px solid #EDEDED;
    transition: .3s;
}
.clients__slider-item:hover {
    border: 2px solid #005BBB;
}
.clients__slider-itemBlock {
    width: 280px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.subscribe {
    padding: 60px 0;
    background: #005BBB;
}
.subscribe__row {
    align-items: flex-end;
}
.subscribe__form {
    width: 660px;
}
.subscribe__form h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 26px;
    line-height: 29px;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.subscribe__form form {
    display: flex;
}
.subscribe__form input {
    background: #FFFFFF;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #777777;
    padding-left: 35px;
    height: 62px;
    width: 575px;
    border: none;
    outline: none;
}
.subscribe__form button {
    width: 84px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: none;
    cursor: pointer;
    transition: .3s;
    border-left: 1px solid #EDEDED;
}
.subscribe__form button img {
    transition: .3s;
}
.subscribe__form button:hover img {
    transform: scale(1.8);
}
.subscribe__links {
    margin-left: 135px;
}
.subscribe__link {
    display: block;
    width: 62px;
    height: 62px;
    transition: .3s;
}
.subscribe__links-facebook {
    background: url("../img/subfacebook.svg") center no-repeat;
}
.subscribe__links-facebook:hover {
    background: url("../img/subfacebookA.svg") center no-repeat;
}
.subscribe__links-twitter {
    background: url("../img/subtwitter.svg") center no-repeat;
}
.subscribe__links-twitter:hover {
    background: url("../img/subtwitterA.svg") center no-repeat;
}
.subscribe__links-in {
    background: url("../img/subin.svg") center no-repeat;
}
.subscribe__links-in:hover {
    background: url("../img/subinA.svg") center no-repeat;
}
.subscribe__links-youtube {
    background: url("../img/subyoutube.svg") center no-repeat;
}
.subscribe__links-youtube:hover {
    background: url("../img/subyoutubeA.svg") center no-repeat;
}
.subscribe__links-block {
    width: 377px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.subscribe__links h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 30px;
}
footer {
    padding: 30px 0 20px;
}
.footer__row {
    justify-content: space-between;
}
.footer__bio {
    width: 185px;
}
.footer__bio p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #777777;
    margin-top: 40px;
}
.footer__siteMap {
    width: 285px;
}
.footer__siteMap h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    color: #333333;
    margin-bottom: 25px;
}
.footer__siteMap-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.footer__siteMap-block a {
    display: block;
    margin-bottom: 25px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    color: #777777;
}
.footer__siteMap-left {
    width: 120px;
}
.footer__siteMap-right {
    width: 120px;
}
.footer__contact1 {
    width: 190px;
}
.footer__contact1 h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    color: #333333;
    margin-bottom: 25px;
}
.footer__contact1 p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
    color: #777777;
}
.footer__contact1 p a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
    color: #777777;
    margin-left: 5px;
}
.footer__contact1 p a:hover {
    color: #777777;
}
.footer__bottom {
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
}
.footer__menu a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #777777;
    margin-right: 35px;
}
.footer__menu a:last-child {
    margin-right: 0;
}
.footer__copyright {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #777777;
}
.mobileSideMenu {
    display: none;
}
.header__row .dropdown-menu {
    width: 100px;
    min-width: auto;
}
.header__row .dropdown-menu .dropdown-item {
    text-align: center;
}
.welcome__title p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin-top: 13px;
}
.breadcrumbs p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 12px;
    color: #777777;
}
.breadcrumbs p a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 12px;
    color: #777777;
}
.breadcrumbs p span {
    color: #FE5815;
}
.breadcrumb__row {
    margin-bottom: 45px;
}
.publicationsPreview {
    background: #F8F8F8;
    padding: 75px 0 150px;
}
.publicationsPreview__item {
    display: block;
    width: 310px;
    margin-bottom: 40px;
}
.publicationsPreview__item-img {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.publicationsPreview__item img {
    transition: .3s;
}
.publicationsPreview__item:hover img {
    transform: scale(1.1);
}
.publicationsPreview__item-desc {
    width: 100%;
    padding: 25px 0 0;
}
.publicationsPreview__item-data {
    display: flex;
    align-items: center;
}

.publicationsPreview__item-desc h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 33px;
    color: #333333;
    margin-bottom: 18px;
    margin-top: 23px;
}
.publicationsPreview__item-desc p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #005BBB;
}
.publicationsPreview__item-desc p img {
    margin-top: -5px;
}
.publicationsPreview__item-data p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 12px;
    color: #777777;
    margin-right: 18px;
}
.publicationsPreview__item-data p:last-child {
    margin-right: 0;
}
.publicationsPreview__item-data p span {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 15px;
    text-transform: uppercase;
    color: #d8881f;
}
.publicationsPreview__item:hover {
    text-decoration: none;
}
.publicationsPreview__items {
    justify-content: space-between;
    margin-top: 69px;
}
.mediaLibraryPreview {
    padding: 75px 0 75px;
}
.pagination__row {
    justify-content: space-around;
}
.pagination {
    background: #F8F8F8;
    padding: 8px;
}
.pagination__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #005BBB;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-right: 15px;
}
.pagination li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #005BBB;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-right: 15px;
}
.pagination li a:hover {
    text-decoration: none;
    color: #ffffff;
    background: #FE5815;
}
.pagination .active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #FE5815;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-right: 15px;
}
.pagination__item:hover {
    text-decoration: none;
    color: #ffffff;
}
.pagination__item:last-child {
    margin-right: 0;
}
.pagination__left, .pagination__right {
    background: none;
}
.pagination__item:hover {
    background: #FE5815;
}
.listsFilter__row {
    justify-content: flex-end;
}
.listsFilter {
    display: flex;
    align-items: center;
}
.listsFilter p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #005BBB;
}
.listsFilter select {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #005BBB;
    border: none;
    outline: none;
}

.filterBlock__row {
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 88px;
}
.filterBlock {
    width: 345px;
    background: #EDEDED;
    padding: 15px 20px 15px;
    margin-left: 15px;
}
.filterBlock h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 15px;
    margin-top: 30px;
}
.filterBlock p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #777777;
    margin-bottom: 10px;
    width: 110%;
}
.filterBlock label {
    width: 100%;
    margin-bottom: 0;
    cursor: pointer;
}
.filterBlock p input {
    margin-right: 15px;
}
.filterItemList {
    width: 1070px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.filterItemList .news__item {
    margin-bottom: 25px;
}
.filterBlock__search {
    display: flex;
    align-items: center;
    width: 100%;
    height: 62px;
    background: #ffffff;
    padding-left: 20px;
}
.filterBlock__search input {
    border: none;
    height: 100%;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #777777;
    padding-left: 30px;
    outline: none;
}
.filterBlock button, .filterBlock .button {
    width: 100%;
    height: 60px;
    background: #005BBB;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 32px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: .3s;
    margin-top: 20px;
}
.filterBlock button:hover, .filterBlock .button:hover {
    background: #FE5815;
}
.welcomeSmall {
    height: 529px;
}
.textPage {
    padding: 75px 0 75px;
}
.textPage__block {
    /*padding: 0 80px;*/
    margin-top: 70px;
    width: 100%;
}
.textPage__block img {
    max-width: 100%;
}
.textPage__block h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #333333;
}
.textPage__block h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #005BBB;
    margin-bottom: 30px;
    margin-top: 30px;
}
.textPage__block p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: #333333;
}
.textPage__block h4 {
    display: block;
    border-left: 5px solid #FFA02F;
    padding-left: 30px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 32px;
    color: #333333;
    margin-top: 40px;
}
.contactContent {
    padding: 75px 0 75px;
}
.welcomeContact {
    height: 90px;
    background: #005BBB;
}
.contactMap__block {
    width: 100%;
    height: 585px;
}
.contactContent__data {
    width: 450px;
}
.contactContent__data h2 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    color: #333333;
    margin-bottom: 35px;
}
.contactContent__item {
    margin-bottom: 35px;
}
.contactContent__item h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: -0.5px;
    color: #333333;
}
.contactContent__item p {
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
}
.contactContent__form {
    width: 880px;
}
.contactContent__form input {
    width: 100%;
    height: 60px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    padding-left: 25px;
    border: 1px solid #C9CCD4;
    margin-bottom: 15px;
}
.contactContent__form textarea {
    width: 100%;
    height: 130px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    padding-left: 25px;
    padding-top: 15px;
    resize: none;
    border: 1px solid #C9CCD4;
}
.contactContent__form button {
    border: none;
    cursor: pointer;
    width: 300px;
    height: 60px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 32px;
    color: #FFFFFF;
    background: #005BBB;
    margin-top: 15px;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contactContent__form button img {
    margin-right: 40px;
}
.contactContent__form button:hover {
    background: #FE5815;
}
.contactContent__row {
    justify-content: space-between;
}
.leadership__row {
    /*justify-content: space-between;*/
    padding: 0 130px;
    margin-top: 65px;
}
.leadership__item {
    width: 369px;
    padding: 10px 10px 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    margin-bottom: 50px;
}
.leadership__item h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 33px;
    line-height: 39px;
    display: flex;
    align-items: center;
    color: #333333;
    margin: 15px 0;
}
.leadership__item p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #005BBB;
}
.textPage__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 9px 35px;
    margin-top: 25px;
    background: #F8F8F8;

}
.textPage__link p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #005BBB;
}
.textPage__pdf-row {
    display: flex;
    align-items: flex-start;
}
.textPage__pdf {
    width: 382px;
    margin-right: 20px;
}
.textPage__pdf h5 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 33px;
    line-height: 39px;
    color: #333333;
    margin: 20px 0;
}
.textPage__pdf-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;

}
.textPage__pdf-link p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #005BBB;
}
.textPage__video {
    width: 100%;
    height: 450px;
    margin: 50px 0;
}
.textPage__stat {
    width: 500px;
    margin-right: 70px;
}
.textPage__stat:last-child {
    margin-right: 0;
}
.textPage__stat h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 96px;
    line-height: 112px;
    color: #FFFFFF;
}
.textPage__stat p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
}
.textPage__stat-row {
    justify-content: center;
}
.textPage__stat-block {
    background: #005BBB;
    padding: 50px 0;
}
.textPage__linkWithImg-row {
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: space-around;
}
.textPage__linkWithImg {
    width: 398px;
    display: block;
}
.textPage__linkWithImg:hover {
    text-decoration: none;
}
.textPage__linkWithImg:hover .textPage__linkWithImg-plus {

}
.textPage__linkWithImg p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    color: #333333;
    margin-top: 15px;
    margin-bottom: 10px;
    min-height: 100px;
}
.textPage__linkWithImg-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.textPage__linkWithImg-bottom h5 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #333333;
}
.textPage__linkWithImg-plus {
    width: 45px;
    height: 45px;
    background: #d8881f;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-basis: 45px;
    flex-grow: 0;
    flex-shrink: 0;
}
.textPage__imgWithButton {
    display: flex;

}
.textPage__imgWithButton-content {
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #005BBB;
    flex-wrap: wrap;
}
.textPage__imgWithButton-content p {
    width: 100%;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
    padding: 0 50px;
}
.textPage__imgWithButton-content a {
    width: 303px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FE5815;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 32px;
    color: #FFFFFF;
    text-align: center;
}
.textPage__imgWithButton-row {
    display: flex;
    justify-content: space-around;
    margin-top: 75px;
}

.textPage__accordion {
    margin: 40px 0;
}
.textPage__accordion .tab input, .tab-content { display: none; }
.textPage__accordion .tab {

    margin-bottom: 10px; /* Расстояние между пунктами */
    border-top: 5px solid #FFA02F;
}
.textPage__accordion .tab p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    color: #333333;
}
.textPage__accordion .tab-title {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 32px;
    color: #333333;
    display: block; /* Блочный элемент */
    cursor: pointer; /* Вид курсора */
    padding: 9px 30px;
    margin-bottom: 0;
    background-color: #F8F8F8; /* Цвет фона */

}
.textPage__accordion .tab-title::after {
    content: '+'; /* Выводим плюс */
    float: right; /* Размещаем по правому краю */
}
.textPage__accordion .tab-content {
    padding: 10px 20px; /* Поля вокруг текста */
}
.textPage__accordion .tab :checked .tab-content{
    border-left: 1px solid #e9eaec;
}
.textPage__accordion .tab :checked + .tab-title::after {
    content: '−'; /* Выводим минус */
}
.textPage__accordion .tab :checked ~ .tab-content {
    display: block; /* Показываем содержимое */
}

.career__bio {
    padding: 70px 0 150px;
}
.career__bio-row {
    justify-content: space-between;
}
.career__bio-data {
    width: 262px;
}
.career__bio-data h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 35px;
    color: #333333;
    margin-top: 15px;
}
.career__bio-data p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #005BBB;
    margin-top: 20px;
}
.career__bio-text {
    width: 1090px;
}
.career__bio-text p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
}
.career__bio-text p span {
    font-weight: bold;
}
.career__videoTitle-block {
    background: #005BBB;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 200px 30px 50px;
    position: relative;
    top: 60px;
}
.career__videoTitle-block h5 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #FFFFFF;
}
.career__video-block {
    width: 100%;
    height: 700px;
}
.career__videoTitle-row {
    justify-content: flex-end;
}
.career__paths {
    padding: 100px 0 70px;
}
.career__vacancy {
    width: 100%;
}
.career__vacancy .textPage__accordion {
    width: 100%;
}
.career__vacancy .modal-content form div {
    margin-bottom: 5px;
}
.career__vacancy .modal-content form label {
    width: 100%;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    color: #333333;
}
.career__vacancy .modal-content form input[type="text"] {
    width: 100%;
    height: 30px;
    border: 1px solid #C9CCD4;
}
.career__vacancy .modal-content form input[type="email"] {
    width: 100%;
    height: 30px;
    border: 1px solid #C9CCD4;
}
.career__vacancy .modal-content form select {
    width: 100%;
}
.career__vacancy-agree {
    display: flex;
    margin-top: 10px;
}
.career__vacancy-agree input {
    margin-right: 5px;
}
.career__vacancy .modal-content form .career__vacancy-agree label {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    color: #333333;
}
.career__vacancy .modal-content form button {
    width: 200px;
    height: 40px;
    background: #005BBB;
    border: none;
    cursor: pointer;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 32px;
    color: #FFFFFF;
    transition: .3s;
}
.career__vacancy .modal-content form button:hover {
    background: #FE5815;
}
.career__vacancy-btn {
    width: 303px;
    height: 60px;
    background: #005BBB;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    transition: .3s;
}
.career__vacancy-btn:hover {
    background: #FE5815;
    color: #ffffff;
    text-decoration: none;
}
.career__hire {
    padding: 70px 0;
    background: #F8F8F8;
}
.career__hire-items {
    flex-wrap: wrap;
    margin-top: 60px;
}
.career__hire-item {
    width: 100%;
    margin-bottom: 50px;
}
.career__hire-item:last-child {
    margin-bottom: 0;
}
.career__hire-item h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -1.27273px;
    color: #333333;
    margin-bottom: 10px;
}
.career__hire-item p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
}
.career__daysWithoutFalls {
    background: #F8F8F8;
    padding: 90px 0;
}
.career__events {
    padding: 50px 0;
}
.daysWithoutFalls__row {
    justify-content: center;
    margin-top: 100px;
}
.daysWithoutFalls__row p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 126px;
    line-height: 148px;
    letter-spacing: 73px;
    color: #005BBB;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    padding-left: 73px;
}
.career__events-block {
    width: 100%;
}
.career__events-block a {
    display: block;
}
.career__events-row {
    margin-top: 50px;
}
.career__events-slide {
    margin: 0 auto;
}
.career__events-block .textPage__accordion {
    width: 100%;
}
.career__events-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.career__events-content .career__events-text {
    width: 1000px;
}
.career__ethic {
    background: #F8F8F8;
    padding: 100px 0;
}
.career__ethic-item {
    display: block;
    width: 265px;
}
.career__ethic-row {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 100px;
}
.career__stats {
    padding: 50px 0;
}
.career__stats-row {
    justify-content: space-between;
    margin-top: 20px;
}
.career__stats-item {
    display: flex;
    flex-wrap: wrap;
    height: 240px;
    width: 30%;
    justify-content: center;
    align-items: center;
    background: #005BBB;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    padding: 0 45px;
    margin-bottom: 50px;
}
.career__stats-item h5 {
    width: 100%;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: #FFFFFF;
}
.career__stats-item p {
    width: 100%;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
}
.career__history {
    padding: 50px 0;
}
.career__history-row {
    margin-top: 50px;
}
.career__history-block {
    width: 100%;
}
.career__history-slider {
    width: 100%;
}
.career__history-slideBlock {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.career__history-slide {
    width: 100%;
}
.career__history-info {
    width: 340px;
    text-align: center;
}
.career__history-info img {
    border-radius: 50%;
    margin: 0 auto;
}
.career__history-info h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    color: #333333;
    margin-top: 20px;
}
.career__history-info p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.3px;
    color: #005BBB;
    margin-top: 10px;
}
.career__history-text {
    width: 967px;
}
.career__history-text p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
}
.career__history-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #C4C4C4;
}
.career__history-arrow:hover {
    background: #005BBB;
    cursor: pointer;
}
.career__history-arrows {
    width: 125px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.search__results {
    margin: 50px 0;
}
.ss-result__title a {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #005BBB;
}
.ss-result__text {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px;
    color: #333333;
    margin: 10px 0;
}
.ss-result__url a {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.3px;
    color: #005BBB;
}
.projects {
    padding: 60px 0 0;
}
.projects__item {
    width: auto;
    background: #FFFFFF;
    border: 1px solid #F3F3F3;
    border-radius: 3px;
    margin-bottom: 60px;
    transition: .3s;
}
.projects__item:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
.projects__item img {
    transition: .3s;
}
.projects__item:hover img {
    transform: scale(1.1);
}
.projects__item-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 200px;
    max-width: 400px;
}
.projects__item .proekty{
    padding: 10px 15px;
    max-width: 400px;
}
.projects__item-img img {
    max-width: 100%;
}
.projects__item-desc {
    padding: 20px;
}
.projects__item-desc h3 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    color: #333333;
    min-height: 64px;
}
.projects__items {
    justify-content: space-between;
    margin-top: 60px;
}
.projects__items a:hover {
    text-decoration: none;
}
.modal-open {
    padding-right: 0!important;
}
.textPage__block-table {
    width: 100%;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 30px;
    color: #777777;
}
.textPage__block-table table {
    width: 100%;
}
.textPage__block-table table td {
    padding: 15px ;
    width: 50%;
}
.textPage__block-table table tr:nth-child(2n) {
    background: #F9FAFC;
}
.dalkiaMaps__map {
    margin-top: 50px;
    height: 471px;
    width: 100%;
}
#gdpr-cookie-message {
    display: none;
    width: 100%;
    background: #005BBB;
    padding: 20px;
}
#gdpr-cookie-message h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 5px;
}
#gdpr-cookie-message p {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 16px;
    color: #ffffff;
}
#gdpr-cookie-message .cookies__bottom {
    display: flex;
    justify-content: flex-end;
}
#gdpr-cookie-message button {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    height: 30px;
    width: 203px;
    background: #d8881f;
    transition: .3s;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 10px;
    outline: none;
}
.modalForm {
    padding: 60px 0;
    background: #FE5815;
}
.modalForm__block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.modalForm__block h4 {
    width: 100%;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 35px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}
.modalForm__block a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 303px;
    height: 60px;
    text-transform: uppercase;
    background: #d8881f;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 32px;
    color: #FFFFFF;
    border: 1px solid #ffffff;
}
.modalForm__block a:hover {
    text-decoration: none;
    background: #ffa02f;
}
.modalForm__modal .modal-header {
    border-bottom: none;
}
.modalForm__modal form input {
    width: 100%;
    height: 60px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    padding-left: 25px;
    border: 1px solid #C9CCD4;
    margin-bottom: 15px;
}
.modalForm__modal form textarea {
    width: 100%;
    height: 130px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    padding-left: 25px;
    padding-top: 15px;
    resize: none;
    border: 1px solid #C9CCD4;
}
.modalForm__modal form button, .modalForm__modal form .button {
    border: none;
    cursor: pointer;
    width: 300px;
    height: 60px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 32px;
    color: #FFFFFF;
    background: #005BBB;
    transition: .3s;
    margin-top: 15px;
}
.modalForm__modal form button:hover, .modalForm__modal form .button:hover {
    background: #FE5815;
}
.modalForm__modal-btnRow {
    display: flex;
    justify-content: center;
}
.thanksModals {
    padding: 40px 0;
}
.thanksModals p {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 25px;
    color: #005BBB;
    text-align: center;
}


    /* боковое меню */
.nav {
    /*  ширна произвольная, не стесняйтесь экспериментировать */
    width: 320px;
    min-width: 320px;
    /* фиксируем и выставляем высоту панели на максимум */
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: 0;
    /* сдвигаем (прячем) панель относительно левого края страницы */
    left: -320px;
    /* внутренние отступы */
    /*padding: 15px 20px;*/
    /* плавный переход смещения панели */
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    transition: left 0.3s;
    /* определяем цвет фона панели */
    background: #005BBB;
    /* поверх других элементов */
    z-index: 2000;
}
.nav > .mobileSideWrapper{
    overflow: auto;
    height: 100%;
    padding: 15px 20px;
}

/**
 * Кнопка переключения панели
 * тег <label>
 */

.nav-toggle {
    /* абсолютно позиционируем */
    position: absolute;
    /* относительно левого края панели */
    left: 320px;
    /* отступ от верхнего края панели */
    top: 25px;
    /* внутренние отступы */
    padding: 0.5em;
    /* определяем цвет фона переключателя
     * чаще вчего в соответствии с цветом фона панели
    */
    background: inherit;
    /* цвет текста */
    color: #dadada;
    /* вид курсора */
    cursor: pointer;
    /* размер шрифта */
    font-size: 1.2em;
    line-height: 1;
    /* всегда поверх других элементов страницы */
    z-index: 2001;
    /* анимируем цвет текста при наведении */
    -webkit-transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out;
}

/* определяем текст кнопки
 * символ Unicode (TRIGRAM FOR HEAVEN)
*/

.nav-toggle:after {
    content: '\2630';
    text-decoration: none;
}

/* цвет текста при наведении */

.nav-toggle:hover {
    color: #f4f4f4;
}

/**
 * Скрытый чекбокс (флажок)
 * невидим и недоступен :)
 * имя селектора атрибут флажка
 */

[id='nav-toggle'] {
    position: absolute;
    display: none;
}

/**
 * изменение положения переключателя
 * при просмотре на мобильных устройствах
 * когда навигация раскрыта, распологаем внутри панели
*/

[id='nav-toggle']:checked ~ .nav &gt; .nav-toggle {
    left: auto;
    right: 2px;
    top: 1em;
}

/**
 * Когда флажок установлен, открывается панель
 * используем псевдокласс:checked
 */

[id='nav-toggle']:checked ~ .nav {
    left: 0;
    box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
    -moz-box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
    -webkit-box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
    /*overflow-y: auto;*/
}
[id='nav-toggle']:checked ~ .nav .nav-toggle:after {
    content: '\2715';
}

/*
 * смещение контента страницы
 * на размер ширины панели,
 * фишка необязательная, на любителя
*/

[id='nav-toggle']:checked ~ main &gt; article {
    -webkit-transform: translateX(320px);
    -moz-transform: translateX(320px);
    transform: translateX(320px);
}

/*
 * изменение символа переключателя,
 * привычный крестик (MULTIPLICATION X),
 * вы можете испльзовать любой другой значок
*/

[id='nav-toggle']:checked ~ .nav &gt; .nav-toggle:after {
    content: '\2715';
}

/**
 * профиксим баг в Android &lt;= 4.1.2
 * см: http://timpietrusky.com/advanced-checkbox-hack
 */

body {
    -webkit-animation: bugfix infinite 1s;
}

@-webkit-keyframes bugfix {
    to {
        padding: 0;
    }
}

/**
 * позаботьтимся о средних и маленьких экранах
 * мобильных устройств
 */

 .banner_main_text{
	 margin-bottom: 15%;
 }
.banner_container{
	padding: 0 !important;
}
.career__stats .textPage__block{
	margin-top: 0px !important;
}
.projects__items &gt; a{
	width: 30%;
}


@media screen and (min-width: 320px) {
    html,
    body {
        margin: 0;
        overflow-x: hidden;
    }
}

@media screen and (max-width: 320px) {
    html,
    body {
        margin: 0;
        overflow-x: hidden;
    }
    .nav {
        width: 100%;
        box-shadow: none
    }
}



.disabled {
    display: none;
}




@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    .clients__slider-itemBlock {
        width: 240px;
    }
    .news__item {
        margin-bottom: 40px;
    }
    /*.news__items {*/
    /*    justify-content: space-around;*/
    /*}*/
    .solutions {
        padding-top: 0;
    }
    .publicationsPreview__items {
        justify-content: space-around;
    }
    .filterItemList {
        width: 700px;
    }
    .leadership__row {
        padding: 0;
    }
    .textPage__img {
        width: 100%;
    }
    .textPage__img img {
        width: 100%;
        height: auto;
    }
    .career__ethic-row {
        justify-content: space-around;
    }
    .career__history-text {
        width: 800px;
    }
    .career__ethic-item {
        margin-bottom: 20px;
    }
    .career__bio-text {
        width: 800px;
    }
    .career__bio {
        padding-bottom: 70px;
    }
    .career__events-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .projects__items {
        justify-content: space-around;
    }

}
@media (max-width: 1300px) {
    .textPage__imgWithButton {
        flex-wrap: wrap;
        width: 600px;
    }
    .textPage__imgWithButton-content {
        padding: 50px 0;
    }
    .textPage__stat-row {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .textPage__stat {
         margin: 0 auto;
     }
    .textPage__stat:last-child {
        margin: 0 auto;
    }
}
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .solutions__items {
        flex-wrap: wrap;
    }
    .solutions__items-left {
        width: 100%;
    }
    .solutions__items-right {
        width: 100%;
    }
    .solutions__items-top {
        flex-wrap: wrap;
        height: auto;
    }
    .solutions__items-topLeft {
        width: 100%;
        flex-wrap: wrap;
    }
    .solutions__items-topLeftLeft {
        width: 100%;
    }
    .solutions__items-topLeftRight {
        width: 100%;
    }
    .solutions__items-topRight {
        width: 100%;
    }
    .solutions__items-bot {
        flex-wrap: wrap;
        width: 100%;
        height: auto;
    }
    .solutions__items-botLeft {
        width: 100%;
    }
    .solutions__item {
        padding: 30px 0;
    }
    .clients__content {
        display: flex;
        justify-content: center;
    }
    .clients__slider {
        width: 750px;
    }
    .subscribe__row {
        justify-content: center;
    }
    .subscribe__links {
        margin-left: 0;
        margin-top: 30px;
    }
    .subscribe__form h2 {
        text-align: center;
    }
    .subscribe__links h2 {
        text-align: center;
    }
    .welcome__bottomLinks {
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 100px;
    }
    .welcome__links-item {
        width: 500px;
        text-align: center;
        margin-bottom: 20px;
    }
    .filterBlock__row {
        justify-content: space-around;
    }
    .filterBlock {
        width: 100%;
        margin-bottom: 30px;
    }
    .filterItemList {
        width: 100%;
        justify-content: space-around;
    }
    .filterBlock__row {
        margin-top: 30px;
    }
    .textPage__block {
        padding: 0;
    }
    .textPage__block h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .textPage__block h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .textPage__block p {
        font-size: 18px;
        line-height: 30px;
    }
    .textPage__block h4 {
        padding-left: 15px;
        font-size: 18px;
        line-height: 28px;
    }
    .leadership__row {
        /*justify-content: space-around;*/
    }
    .textPage__linkWithImg-row {
        flex-wrap: wrap;

    }
    .textPage__linkWithImg {
        margin-bottom: 50px;
    }
    .textPage__pdf-row {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .textPage__pdf {
        margin-right: 0;
        margin-bottom: 50px;
    }
    .career__stats-row {
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .career__video-block {
        height: 500px;
    }
    .career__history-slideBlock {
        flex-wrap: wrap;
    }
    .career__history-info {
        width: 100%;
        text-align: center;
    }
    .career__history-text {
        width: 100%;
        margin-top: 30px;
    }
    .career__history-arrows {
        margin: 0 auto 50px;
    }
    .career__bio-text {
        width: 100%;
    }
    .career__bio-data {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
}
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    .welcome__header-menu {
        display: none;
    }
    .welcome__header-menu {
        width: auto;
    }
    .welcome__header {
        justify-content: space-around;
    }
    header {
        display: none;
    }
    .mobileSideMenu {
        display: block;
    }
    .mobileSideMenu {
        display: block;
    }
    .welcome__header-search {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .mobileSideMenu #accordion .dropdown {
        margin-bottom: 15px;
    }
    .mobileSideMenu .header__language .dropdown-menu {
        width: 60px;
        min-width: auto!important;
    }
    .mobileSideMenu .header__language .dropdown-item {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    .mobileSideMenu #accordion {
        margin-top: 20px;
    }
    .mobileSideMenu .card-header {
        background: none;
    }
    .mobileSideMenu .card {
        background: none;
        border: none;
    }
    .mobileSideMenu .card-header h5 .btn-link{
        font-family: Roboto;
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: #FFFFFF;
        padding-left: 0;
    }
    .mobileSideMenu .card-header h5 {
        display: flex;
        justify-content: space-between;
    }
    .mobileSideMenu .card-header h5 a {
        color: #ffffff;
    }
    .mobileSideMenu #accordion .card-body .dropdown-item {
        color: #ffffff;
        white-space: normal;
        border-bottom: 1px solid rgba(0,0,0,.125);
        padding-left: .1rem;
    }
    .mobileSideMenu #accordion .card-body .dropdown-item2 {
        padding-left: 1.5rem;
    }
    .mobileSideMenu .header__contact {
        border: none;
        margin-top: 20px;
    }
    .mobileSideMenu .header__contact:hover {
        background: none;
    }
    .mobileSideMenu .header__contact, .mobileSideMenu .header__language {
        height: 50px;
        color: #ffffff;
        font-size: 16px;
    }
    .mobileSideMenu .header__language {
        background:none;
        color: #ffffff;
        padding-left: 0;
    }
    .mobileSideMenu .header__language option {
        color: #000000;
    }
    .mobileSideMenu .card-header {
        padding-left: 0;
    }
    .welcome__title {
        margin-top: 60px;
    }
    .welcome {
        height: 700px;
    }
    .footer__row {
        justify-content: space-around;
        text-align: center;
    }
    .footer__siteMap {
        display: none;
    }
    .footer__contact1 {
        display: none;
    }
    .footer__siteMap-block {
        width: 300px;
        margin: 0 auto;
    }
    .footer__bio {
        margin-bottom: 30px;
    }
    .footer__bottom {
        flex-wrap: wrap;
    }
    .footer__menu {
        flex-wrap: wrap;
        justify-content: space-around;
        width: 100%;
    }
    .footer__menu a {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer__copyright {
        width: 100%;
        text-align: center;
    }
    .footer__bottom {
        margin-top: 0;
    }
    footer {
        padding: 30px 0 20px;
    }
    .mobileSideMenu .welcome__header-search {
        margin-top: 12px;
        display: inline-block;
    }
    .header__language {
        justify-content: flex-start;
    }
    .welcomeSmall {
        height: 529px;
    }
    .welcomeContact {
        height: 90px;
    }
    .contactMap__block {
        height: 350px;
    }
    .contactContent__form {
        width: 100%;
    }
    .contactContent__form button {
        margin: 15px auto 0;
    }
    .welcome__header-searchMobile {
        display: block;
    }
    .search__block {
        top: 30px;
    }
    .search__block form input {
        width: 200px;
        font-size: 14px;
        padding-left: 5px;
    }
}
@media (max-width: 810px) {
    .clients__slider {
        width: 280px;
    }
    .clients__slider-itemBlock {
        width: 280px;
    }
    .welcomeSmall {
        height: 329px;
    }
}
@media (max-width: 760px) {
    .container {
        max-width: 540px;
    }
    .welcome__title {
        width: 100%;
    }
    .welcome__title h1 {
        font-size: 25px;
        line-height: 26px;
        text-align: center;
        width: 100%;
    }
    .welcome__links-item {
        font-size: 25px;
        line-height: 29px;
    }
    .welcome {
        height: 600px;
    }
    .subscribe__form input {
        width: 375px;
    }
    .subscribe__form form {
        justify-content: center;
    }
    .welcomeSmall {
        height: 329px;
    }
    .welcomeContact {
        height: 90px;
    }
    .textPage__video {
        height: 300px;
    }
    .textPage__imgWithButton-img  {
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    .daysWithoutFalls__row p {
        font-size: 56px;
        letter-spacing: 33px;
        padding-left: 33px;
    }
    .daysWithoutFalls__row {
        margin-top: 50px;
    }
    .career__videoTitle-block {
        position: static;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .career__videoTitle-block h5 {
        width: 100%;
        text-align: center;
    }
    .career__video-block {
        height: 400px;
    }
}
@media (max-width: 610px) {
    .news__title h2, .solutions__title h2, .clients__title h2 {
        font-size: 36px;
        line-height: 43px;
    }
    .contactContent__data {
        width: 100%;
    }
    .textPage__stat {
        width: 100%;
        padding: 0 20px;
    }
    .textPage__imgWithButton-content {
        width: 100%;
    }
    .textPage__imgWithButton-img {
        height: auto;
    }
}
@media (max-width: 550px) {
    .container {
        max-width: 100%;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .solutions__grid .row {
        margin-right: -15px;
        margin-left: -15px;
    }
    .contactMap .row {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media (max-width: 475px) {
    .subscribe__form input {
        width: 315px;
    }
    .subscribe__form button {
        width: 50px;
    }
    .subscribe__links-block {
        width: 315px;
    }
    .news__title a {
        display: none;
    }
    .contactContent__form button {
        width: 100%;
    }
    .textPage__linkWithImg {
        width: 280px;
    }
    .textPage__linkWithImg img {
        width: 100%;
        height: auto;
    }
    .textPage__linkWithImg-plus img {
        width: 21px;
        height: 22px;
    }
    .textPage__pdf {
        width: 280px;
    }
    .textPage__pdf img {
        width: 100%;
        height: auto;
    }
    .textPage__pdf-link img {
        width: 21px;
        height: 20px;
    }
}
@media (max-width: 430px) {
    .career__video-block {
        height: 200px;
    }
    .textPage__imgWithButton-content a {
        width: 100%;
    }
    .textPage__imgWithButton-content p {
        padding: 0 15px;
        margin-bottom: 15px;
    }
    .textPage__imgWithButton-content {
        padding-bottom: 0;
    }
}
@media (max-width: 415px) {
    .career__stats-item {
        width: 100%;
    }
    .textPage__accordion .tab-title::after {
        content: "";
    }
    .textPage__accordion .tab :checked + .tab-title::after {
        content: "";
    }
}
@media (max-width: 395px) {
    .subscribe__form input {
        width: 260px;
    }
    .leadership__item img {
        width: 300px;
        height: 365px;
    }
    .leadership__item {
        width: 323px;
    }
    .leadership__item h3 {
        font-size: 27px;
        line-height: 30px;
    }
}
@media (max-width: 370px) {
    .career__events-block a {
        width: 290px;
    }
    .textPage__block-table {
        padding: 20px 5px;
    }
}
@media (max-width: 768px) {
    .textPage__block h2 {
        font-size: 24px;
        line-height: 28px;
    }
}
