@charset "UTF-8";

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?gt1nl1");
  src: url("../fonts/icomoon.eot?gt1nl1#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?gt1nl1") format("truetype"), url("../fonts/icomoon.woff?gt1nl1") format("woff"), url("../fonts/icomoon.svg?gt1nl1#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Rambla', sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
body,
ul,
p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

button,
input,
textarea {
  outline: none;
  border: 0;
}

.header {
  background-color: #0e7677;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
}

.header.index nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header.index .container {
  justify-content: center;
}

.header .menu {
  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;
  padding: 25px 0;
}

.header .menu-secondary {
  padding: 0;
}

.header .menu-secondary .menu__item {
  font-weight: normal;
}

.header .menu__logo {
  margin-right: 10px;
}

.header .menu__search {
  background-image: url("../img/search.svg");
  background-size: contain;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin: 0 20px;
  display: block;
}

.header .menu__item {
  font-weight: bold;
  font-size: 20px;
  padding: 25px 40px;
  color: #ffffff;
  position: relative;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.header .menu__item:hover:not(.menu__item_lang) {
  background-color: #F0C84E;
  color: #0e7677;
}

.header .menu__item.active {
  background-color: #F0C84E;
  color: #0e7677;
  font-weight: bold;
}

.header .lang-active:before {
  content: '';
  background-image: url("../img/lang.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 20px;
  top: 40%;
}

.lang {
  position: relative;
  padding-left: 20px;
}

.lang select option{
  color: #000;
}

.lang::before {
  content: '';
  background-image: url("../img/lang.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 5px;
  top: 3px;
}

.lang-drop {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}

.lang-drop.open {
  display: flex;
}

.lang-active {
  font-weight: bold;
  font-size: 20px;
  padding: 25px 40px;
  color: #ffffff;
  position: relative;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.menu__item_lang {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  position: relative;
}

.menu__item_lang:hover {
  color: #F0C84E;
}

.lang-active {
  position: relative;
}

.header .lang-active:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3.5px 0 3.5px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 27px;
}

.main {
  background-color: #0e7677;
  padding-top: 0px;
  padding-bottom: 50px;
  position: relative;
}

section.main::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #F0C84E;
  z-index: 1;
}

.main .container {
  position: relative;
  z-index: 2;
  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;
}

.main__email {
  cursor: pointer;
  -ms-flex-item-align: start;
  align-self: flex-start;
  /*margin-left: 300px;*/
  background-color: #fff;
  min-width: 120px;
  min-height: 60px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px 5px 5px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  position: fixed;
  top: 25%;
  z-index: 5;
  left: -60px;
}

.main__email:hover {
  left: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.main__email:after {
  content: '';
  font-size: 30px;
  margin: 10px;
  font-family: 'icomoon';
  content: "\e906";
  color: #0e7677;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.main__email:hover {
  background-color: #F0C84E;
}

.main__email:hover.main__email:after {
  color: #ffffff;
}

.main__img {
  margin-bottom: 25px;
  margin-top: 40px;
  height: 75px;
}

.main__form {
  position: relative;
  margin-bottom: 75px;
}

.main__form:before {
  content: '';
  background-image: url("../img/search.svg");
  width: 29px;
  height: 29px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main__search {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
  width: 770px;
  padding: 12px 65px;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
}

.main .technology {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1000px;
  margin-bottom: 60px;
}

.main .technology-item {
  position: relative;
  /*margin: 0 3px;*/
  margin: 5px;
}

.main .technology-item__text {
  width: 100%;
  color: #ffffff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-size: 22px;
  line-height: 29px;
  padding: 0 5px;
  z-index: 2;
}

.technology-item {
  margin-right: 18px;
  margin-bottom: 18px;
}

.technology-item__img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main__btn {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  padding: 18px 50px;
  background-color: #09595A;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.main__btn:hover {
  color: #09595A;
  background-color: #ffffff;
}

.advantages {
  text-align: center;
  padding: 170px 0;
  position: relative;
  background: url("../img/gear.svg") no-repeat center bottom 50px/cover;
}

.advantages__title {
  font-weight: bold;
  font-size: 54px;
  text-transform: uppercase;
  color: #0e7677;
  margin-bottom: 100px;
}

.advantages-list {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.advantages__item {
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  width: calc(100% / 3);
  margin-bottom: 70px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}

.advantages__item:nth-last-of-type(1) {
  margin-left: 150px;
}

.advantages__item .number {
  font-size: 165px;
  color: #0e7677;
  font-weight: normal;
  line-height: 115px;
  margin-right: 10px;
}

.partners {
  padding: 110px 0;
  background-color: #F5F5F5;
}

.partners__title {
  color: #09595A;
  font-weight: bold;
  font-size: 64px;
  text-align: center;
  margin-bottom: 80px;
}

.partners-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 900px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.partners__item {
  background-color: #C4C4C4;
  padding: 15px 67px;
  position: relative;
  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;
  margin: 20px;
}

.partners__item:before {
  content: '';
  background-image: url("../img/plus.svg");
  width: 28px;
  height: 28px;
  background-size: contain;
  position: absolute;
}

.partners__item:after {
  content: '';
  width: 40px;
  height: 40px;
  border: 1.5px solid #ffffff;
}

.contacts {
  background-color: #09595A;
  padding-top: 55px;
  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;
}

.contacts__title {
  font-weight: bold;
  font-size: 64px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 66px;
}

.contacts-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contacts-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  margin-bottom: 20px;
}

.contacts-phone__icon {
  background-image: url("../img/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 32px;
  height: 34px;
  margin-right: 54px;
}

.contacts-phone-text {
  margin-right: 130px;
}

.contacts-phone-text__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  /* height: 50px; */
  width: 370px;
}

.contacts-phone-text__item_name {
  font-size: 14px;
  line-height: 17px;
  margin-right: 70px;
}

.contacts-phone-text__item_number {
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  flex-shrink: 0;
}

.contacts-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 65px;
}

.contacts-email__icon {
  background-image: url("../img/email.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 32px;
  height: 34px;
  margin-right: 54px;
}

.contacts-email-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  justify-content: space-between;
  width: 370px;
}

.contacts-email-text__left,
.contacts-email-text__right {
  color: #ffffff;
  font-size: 14px;
}

.contacts-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.contacts-location__icon {
  background-image: url("../img/location.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 32px;
  height: 34px;
  margin-right: 54px;
}

.contacts-location__text {
  color: #ffffff;
  font-size: 14px;
  line-height: 17px;
}

.contacts-form {
  width: 570px;
  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;
}

.contacts-form .input-file {
  visibility: hidden;
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
  position: absolute;
}

.file-label {
  align-self: flex-end;
  margin-top: -15px;
  margin-right: 40px;
  margin-left: auto;
  cursor: pointer;
  margin-top: -45px;
  z-index: 2;
}


.file-label br {
  display: none;
}

.file-name {
  color: #fff;
}

.custom-input-file {
  display: block;
  height: 40px;
  width: 40px;
  background: #F0C84E;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  font-size: 0;
  border: none;
  background-image: url("../img/file.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

.contacts-form_1,
.contacts-form_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

.contacts-form input,
.contacts-form textarea {
  width: 270px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  font-size: 14px;
  line-height: 17px;
  padding: 10px 5px;
  color: rgba(0, 0, 0, 0.6);
  font-family: 'Open Sans', sans-serif;
}

.contacts-form textarea {
  width: 100%;
  height: 137px;
}

.contacts-form__container {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.contacts-form .wpcf7-submit {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  padding: 10px 75px;
  cursor: pointer;
  background: #E5C154;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.contacts-form .wpcf7-submit:hover {
  color: #09595A;
  background-color: #ffffff;
}

.contacts__up {
  width: 76px;
  height: 69px;
  background-color: #E5C154;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px 10px 0px 0px;
  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;
  -webkit-transition: 300ms;
  transition: 300ms;
  margin: 0 auto;
}

.contacts__up_arrow:after {
  content: '';
  font-size: 20px;
  font-family: 'icomoon';
  content: "\e90a";
  color: #fff;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.contacts__up:hover {
  background-color: #fff;
}

.contacts__up:hover .contacts__up_arrow:after {
  color: #0e7677;
}

.map {
  height: 790px;
  max-height: 90vh;
}

.about-us-content {
  overflow: hidden;
}

.about-us-content__list {
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0;
  margin-right: -18px;
}

.about-us-content__item {
  width: calc(100% / 3 - 18px);
  margin: 0;
  margin-right: 18px;
  margin-bottom: 18px;
}

.about-us-content__company {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

}

.about-us-content__company:hover .about-us-content__company_img:before {
  background-color: rgba(240, 200, 78, 0.55);
}

.about-us-content__company_text {
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
}

.about-us-content__company:hover .about-us-content__company_text {
  color: #0e7677;
}

.about-us-content__company:hover .about-us-content__company_text:before {
  color: #0e7677;
}

.about-us-content__company_img {
  position: relative;
  pointer-events: none;
  height: 100%;
  width: 100%;
}

.about-us-content__company_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-us-content__company_img:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.about-us-content__company_text {
  -webkit-transition: 300ms;
  transition: 300ms;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 100%;
  font-size: 24px;
  color: #ffffff;
}

.about-us-content__company_text:before {
  font-family: 'icomoon';
  font-size: 75px;
  margin-bottom: 25px;
}

/* .about-us-content__company_text:before {
  content: "\e901";
} */

.about-us-content__gallery {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-us-content__gallery:hover .about-us-content__gallery_img:before {
  background-color: rgba(240, 200, 78, 0.55);
}

.about-us-content__gallery:hover .about-us-content__gallery_text {
  color: #0e7677;
}

.about-us-content__gallery:hover .about-us-content__gallery_text:before {
  color: #0e7677;
}

.about-us-content__gallery_img {
  position: relative;
  pointer-events: none;
}

.about-us-content__gallery_img:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.about-us-content__gallery_text {
  -webkit-transition: 300ms;
  transition: 300ms;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 100%;
  font-size: 24px;
  color: #ffffff;
}

.about-us-content__gallery_text:before {
  font-family: 'icomoon';
  font-size: 75px;
  margin-bottom: 25px;
}

.about-us-content__icon{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  top: 100px;
  max-height: 75px;
  max-width: 75px;
}

.about-us-content__gallery_text:before {
  content: "\e908";
}

.about-us-content__vacancy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-us-content__vacancy:hover .about-us-content__vacancy_img:before {
  background-color: rgba(240, 200, 78, 0.55);
}

.about-us-content__vacancy:hover .about-us-content__vacancy_text {
  color: #0e7677;
}

.about-us-content__vacancy:hover .about-us-content__vacancy_text:before {
  color: #0e7677;
}

.about-us-content__vacancy_img {
  position: relative;
  pointer-events: none;
}

.about-us-content__vacancy_img:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.about-us-content__vacancy_text {
  -webkit-transition: 300ms;
  transition: 300ms;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 100%;
  font-size: 24px;
  color: #ffffff;
}

.about-us-content__vacancy_text:before {
  font-family: 'icomoon';
  font-size: 75px;
  margin-bottom: 25px;
}

.about-us-content__vacancy_text:before {
  content: "\e90b";
}

.about-us-content__certificates {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-us-content__certificates:hover .about-us-content__certificates_img:before {
  background-color: rgba(240, 200, 78, 0.55);
}

.about-us-content__certificates:hover .about-us-content__certificates_text {
  color: #0e7677;
}

.about-us-content__certificates:hover .about-us-content__certificates_text:before {
  color: #0e7677;
}

.about-us-content__certificates_img {
  position: relative;
  pointer-events: none;
}

.about-us-content__certificates_img:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.about-us-content__certificates_text {
  -webkit-transition: 300ms;
  transition: 300ms;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 100%;
  font-size: 24px;
  color: #ffffff;
}

.about-us-content__certificates_text:before {
  font-family: 'icomoon';
  font-size: 75px;
  margin-bottom: 25px;
}

.about-us-content__certificates_text:before {
  content: "\e900";
}

.about-us-content__provider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-us-content__provider:hover .about-us-content__provider_img:before {
  background-color: rgba(240, 200, 78, 0.55);
}

.about-us-content__provider:hover .about-us-content__provider_text {
  color: #0e7677;
}

.about-us-content__provider:hover .about-us-content__provider_text:before {
  color: #0e7677;
}

.about-us-content__provider_img {
  position: relative;
  pointer-events: none;
}

.about-us-content__provider_img:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.about-us-content__provider_text {
  -webkit-transition: 300ms;
  transition: 300ms;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 100%;
  font-size: 24px;
  color: #ffffff;
}

.about-us-content__provider_text:before {
  font-family: 'icomoon';
  font-size: 75px;
  margin-bottom: 25px;
}

.about-us-content__provider_text:before {
  content: "\e909";
}

.breadcrumb {
  padding: 60px 0;
}

.breadcrumbs__list {
  margin-left: -50px;
  display: flex;
  flex-direction: row;
}

.breadcrumb a {
  color: #000000;
  font-size: 20px;
  margin-right: 25px;
  margin-left: 50px;
  position: relative;
  text-align: justify;
}


.breadcrumb a:nth-last-of-type(1){
  margin-right: 0;
}

.breadcrumb a:not(:last-child):after {
  content: '→';
  pointer-events: none;
  position: absolute;
  top: -2px;
  right: -50px;
}

.timeline-wrap .container {
  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;
}

.timeline {
  width: 100%;
  padding-bottom: 120px;
  white-space: nowrap;
}

.timeline__list {
  padding-top: 230px;
  padding-left: 55px;
  padding-right: 85px;
  padding-bottom: 270px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.timeline .time {
  position: absolute;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 36px;
  line-height: 42px;
  color: #000000;
}

.timeline__item {
  position: relative;
  width: 15px;
  height: 15px;
  background: #09595A;
  border-radius: 50%;
}

.timeline__item .time-info {
  position: absolute;
  background: #09595A;
  border-radius: 20px;
  font-family: 'Rambla', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.timeline__item_1957 {
  margin-right: 305px;
}

.timeline__item_1957::after {
  width: 285px;
}

.timeline__item_1957 .time {
  left: -50px;
  top: -50px;
}

.timeline__item_1957 .time-info {
  width: 165px;
  padding: 20px;
  top: 50px;
  left: -40px;
}

.timeline__item_1957 .time-info::after {
  content: "";
  position: absolute;
  top: -25px;
  left: 46px;
  width: 37px;
  height: 29px;
  background: url("../img/1957.png") no-repeat center top/cover;
}

.timeline__item_1978 {
  margin-right: 310px;
}

.timeline__item_1978::after {
  width: 290px;
}

.timeline__item_1978 .time {
  bottom: -60px;
  left: -51px;
}

.timeline__item_1978 .time-info {
  width: 290px;
  padding: 27px 13px;
  bottom: 70px;
  left: -50px;
}

.timeline__item_1978 .time-info::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 65px;
  width: 53px;
  height: 40px;
  background: url("../img/1978.png") no-repeat center top/cover;
}

.timeline__item_1993 {
  margin-right: 230px;
}

.timeline__item_1993::after {
  width: 212px;
}

.timeline__item_1993 .time {
  left: -10px;
  top: -50px;
}

.timeline__item_1993 .time-info {
  width: 320px;
  padding: 20px;
  top: 90px;
  left: -75px;
}

.timeline__item_1993 .time-info::after {
  content: "";
  position: absolute;
  top: -45px;
  left: 85px;
  width: 59px;
  height: 49px;
  background: url("../img/1993.png") no-repeat center top/cover;
}

.timeline__item_2009 {
  margin-right: 70px;
}

.timeline__item_2009::after {
  width: 70px;
}

.timeline__item_2009::before {
  content: "";
  position: absolute;
  right: -85px;
  top: -3px;
  width: 14px;
  height: 23px;
  background: url("../img/timline-arrow.png") no-repeat center top/cover;
}

.timeline__item_2009 .time {
  left: 0px;
  bottom: -60px;
}

.timeline__item_2009 .time-info {
  width: 230px;
  padding: 20px;
  bottom: 70px;
  left: -50px;
}

.timeline__item_2009 .time-info::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 55px;
  width: 44px;
  height: 32px;
  background: url("../img/2009.png") no-repeat center top/cover;
}

.timeline__item::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 25px;
  border: 2px dashed #000;
}

.company-content {
  background-color: #0e7677;
  padding: 45px 0;
}

.company-content p {
  font-size: 18px;
  line-height: 22px;
  margin: 0 auto;
  color: #ffffff;
}

.vacancy {
  padding-top: 0px;
  margin: 0 auto;
}

.vacancy__title {
  text-align: center;
  color: #0e7677;
  font-size: 54px;
  text-transform: uppercase;
  margin-bottom: 70px;
}

.vacancy-list {
  margin: 0 auto;
  padding: 0 30px;
  margin-bottom: 65px;
  max-width: 800px;
}

.vacancy-list li {
  left: 30px;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  color: #212121;
  margin: 7px 0;
}

.vacancy-list li:before {
  content: '';
  width: 20px;
  height: 25px;
  background-image: url("../img/tick.svg");
  background-size: contain;
  position: absolute;
  left: -30px;
}

.vacancy__note {
  color: #0e7677;
  font-weight: bold;
  font-size: 26px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.vacancy__note a{
  color: #0e7677;
}

.vacancy__note div:not(.phone) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

.vacancy__note div:not(.phone) .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 15px;
}

.certificates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 100px;
}

.certificates .container {
  position: relative;
}

.certificates .swiper-container {
  width: 90%;
  margin: 0 auto;
}

.certificates .swiper-slide {
  padding: 0 20px !important;
}

.certificates .swiper-slide a {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.certificates__arrow_left,
.certificates__arrow_right {
  font-size: 30px;
  color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  outline: none;
}

.certificates__arrow_right {
  right: 15px;
}

.certificates__arrow_left {
  left: 15px;
}

.certificates-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.certificates img {
  padding: 46px;
  width: 100%;
}

.provider__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: -15px;
}

.provider__download {
  width: calc(100% / 3 - 15px);
  margin-bottom: 15px;
  background-color: #F0C84E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 37px 45px;
  margin-right: 15px;
}

.provider__icon {
  margin-right: 25px;
  width: 44px;
  height: 56px;
  background-image: url("../img/download.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.provider p {
  color: #000000;
  font-size: 20px;
  text-decoration: underline;
  width: 220px;
}

.gallery {
  margin-bottom: 100px;
  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;
}

.gallery .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery__video {
  width: 100%;
  height: 470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  color: #ffffff;
  margin: 0 auto 60px auto;
}

.gallery__video .row {
  width: 100%;
}

.gallery__video .container {
  width: 100%;
}

.gallery__video_1,
.gallery__video_2,
.gallery__video_3,
.gallery__video_4,
.gallery__video_5 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery__video_2 {
  background-color: #33205B;
}

.gallery__video_3 {
  background-color: #09595A;
}

.gallery__video_4 {
  background-color: #E5C154;
}

.gallery__video_5 {
  background-color: #000000;
}

.gallery__photo-container {
  width: calc(100% + 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 100px;
}

.gallery__photo {
  width: calc(100% / 2 - 50px);
  height: 280px;
  background-color: #c4c4c4;
  margin: 15px 25px;
}

.gallery__photo img{
  height: 100%;
  width: 100%;object-fit: cover;
}

.gallery__btn {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  padding: 18px 50px;
  background-color: #09595A;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.gallery__btn:after {
  content: "\e90a";
  font-family: 'icomoon';
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
}

.gallery__btn:hover {
  background-color: #F0C84E;
  color: #ffffff;
}

.news {
  margin-bottom: 100px;
  text-align: center;
}

.news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -20px;
  margin-bottom: 40px;
}

.news__item {
  background-color: rgba(196, 196, 196, 0.3);
  width: calc(100% / 2 - 40px);
  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;
  margin: 20px;
}

.news__img {
  width: 100%;
  position: relative;
}

.news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.6);
}

.news__title {
  width: 100%;
  padding: 0 10px;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #ffffff;
  font-weight: normal;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news__date {
  font-size: 20px;
  color: #ffffff;
  background-color: #F0C84E;
  display: inline;
  padding: 15px 35px;
  margin: 20px 0;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.news__btn-item {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  padding: 18px 50px;
  background-color: #09595A;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  -webkit-transition: 300ms;
  transition: 300ms;
  margin-bottom: 30px;
}

.news__btn-item:after {
  content: "\e90a";
  font-family: 'icomoon';
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
}

.news__btn-item:hover {
  background-color: #F0C84E;
  color: #ffffff;
}

.news__btn {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  padding: 18px 50px;
  background-color: #09595A;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  -webkit-transition: 300ms;
  transition: 300ms;
  display: inline;
}

.news__btn:after {
  content: "\e90a";
  font-family: 'icomoon';
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
}

.news__btn:hover {
  background-color: #F0C84E;
  color: #ffffff;
}

.news-item {
  padding-top: 20px;
  padding-bottom: 100px;
  font-size: 18px;
  line-height: 20px;
  font-weight: normal;
}

.news-item h3 {
  font-weight: normal;
  margin-top: 130px;
}

.news-item__back {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  padding: 18px 50px;
  background-color: #09595A;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  -webkit-transition: 300ms;
  transition: 300ms;
  padding: 18px 80px;
}

.news-item__back:before {
  content: "\e90a";
  font-family: 'icomoon';
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.news-item__back:hover {
  background-color: #F0C84E;
  color: #ffffff;
}

.news-item .center {
  text-align: center;
}

.news-item ol {
  padding-left: 20px;
}

.news-item__content {
  width: 1050px;
  margin: 0 auto;
  line-height: 25px;
}

.unnamed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.unnamed__img {
  margin-right: 50px;
  width: 700px;
  height: 668px;
  background: url("../img/404.svg") no-repeat center top/contain;
  /* background-position: center center;
  background-size: contain; */
}

.unnamed__title {
  color: #09595A;
  text-decoration: underline;
  font-size: 288px;
}

.unnamed__text {
  font-size: 36px;
  text-align: center;
}

.pop-up {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.pop-up__close {
  font-size: 40px;
  color: #ffffff;
  top: 20px;
  right: 20px;
  position: absolute;
  z-index: 99;
  cursor: pointer;
}

.pop-up h3 {
  width: 100%;
  z-index: 999;
  position: relative;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  color: #FFFFFF;
  margin-bottom: 50px;
}

.pop-up__content {
  background: #09595A;
  width: 900px;
  padding: 45px 150px;
  max-height: 95vh;
  overflow: auto;
  text-align: center;
  margin: 0 auto;
  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;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 89;
}


.pop-up__content .contacts-form__container {
  margin-bottom: 20px;
}

.pop-up .contacts-form {
  z-index: 999;
  position: relative;
}

.pop-up__bg {
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 88;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


.technology-item {
  position: relative;
  width: 298px;
  height: 318px;
  -webkit-perspective: 500px;
          perspective: 500px;
}

.technology-item.v:hover .front,
.technology-item.v.flip .front {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.technology-item.v:hover .back,
.technology-item.v.flip .back {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}

.technology-item.v .back {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.technology-item.h:hover .front,
.technology-item.h.flip .front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
          z-index: 2;
}

.technology-item.h:hover .back,
.technology-item.h.flip .back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
          z-index: 3;
}

.technology-item.h .back {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.technology-item .front{
  z-index: 3;
}

.technology-item .back {
  z-index: 2;
}

.technology-item .front,
.technology-item .back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  /* transition: all 0.5s ease-in;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; */
}

.technology-item .back .technology-item__text {
  width: 99%;
  padding: 30px 0px;
  background: rgba(0, 0, 0, 0.7);
}

.technology-item .back .technology-item__text a {
  color: #fff;
}

.Search {
  cursor: pointer;
  margin-right: 5px;
}

/* .Search {
  position: relative;
  margin-right: 10px;
}
.Search.is-Search-open .Search-input {
  width: 200px;
  color: #fff;
  padding-right: 30px;
}
.Search.is-Search-open .Search-input ~ .Search-control {
  z-index: 0;
  cursor: pointer;
}
.Search.is-Search-open .Search-input ~ .Search-control::before {
  transform: rotate(45deg) translate(4px, 0);
}
.Search.is-Search-open .Search-input ~ .Search-control::after {
  transform: rotate(-45deg) translateY(4px);
}
.Search-label {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.Search-input {
  padding: 0 10px;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 99px;
  background: transparent;
  color: transparent;
  font-size: 16px;
  transition: 0.4s width ease, 0.4s color ease;
}
.Search-input:focus {
  outline: none;
}
.Search-control {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 15px;
  height: 25px;
  width: 25px;
  padding: 0;
  border: none;
  background: transparent;
  transform: translateY(-50%);
}
.Search-control::before, .Search-control::after {
  position: absolute;
  display: block;
  top: 0;
  left: 80%;
  width: 2px;
  height: 17px;
  border-radius: 99px;
  background: #fff;
  transition: 0.4s transform cubic-bezier(0.17, 0.67, 0.48, 1.34);
  content: "";
}

.Search .Search-control::after{
  top:-5px;
}
.Search.is-Search-open .Search-control::after{
  top:0;
}

.Search-control::before {
  transform: rotate(45deg) translateY(-25px) scaleY(0.01);
}
.Search-control::after {
  transform: rotate(-45deg) translateY(30px);
} */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  padding-top: 70px;
}

.hidden {
  display: none;
}

.btn {
  font-family: 'Rambla', sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  width: 307px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #09595A;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

/* .search {
  height: 23px;
  width: 23px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 0.5s
}

.search::after {
  countent;
}

.search.open {
  width: 255px;
  transition: all 0.5s
} */

.secveces {
  padding-bottom: 117px;
  font-family: 'Rambla', sans-serif;
}

.services-single {
  font-family: 'Rambla', sans-serif;
  padding-bottom: 100px;
}

.services-single__list {
  max-width: 906px;
  padding-left: 30px;
  margin: 0 auto;
}

.services-single__item {
  position: relative;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 48px;
}

.services-single__item:nth-last-of-type(1) {
  margin-bottom: 0;
}

.services-single__item::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 10px;
  height: 100%;
  background: #09595A;
}

.products {
  font-family: 'Rambla', sans-serif;
  padding-bottom: 100px;
}

.products .container {
  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;
}

.card {
  width: 100%;
  font-family: 'Rambla', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -18px;
  margin-bottom: 42px;
}

.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.card .technology-item.h {
  width: 364px;
  height: 364px;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: 5px;
}

.card .technology-item__text {
  width: 100%;
  color: #ffffff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-size: 22px;
  line-height: 29px;
  padding: 0 5px;
}


.card .technology-item__text a{
  width: 100%;
  text-align: center;
}

.card__link {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.card__link:hover .card__img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.card__img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.card__text {
  position: relative;
  z-index: 2;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
}

.card__more {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 103px;
  height: 68px;
  background: #F0C84E;
  border-radius: 5px 5px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card__more .circle {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 6px;
}

.card__more .circle:nth-last-of-type(1) {
  margin-right: 0;
}

.products-cat {
  padding-bottom: 100px;
}

.products-single {
  font-family: 'Rambla', sans-serif;
  padding-bottom: 70px;
}

.products-single .info h1 {
  /* margin-top: 140px; */
  margin-bottom: 25px;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  color: #09595A;
}

.products-single .info h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #09595A;
  margin-bottom: 20px;
}

.products-single .info strong {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  display: inline-block;
  margin-bottom: 25px;
}

.products-single .info b {
  display: inline-block;
}

.products-single .info p {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.products-single .info table {
  border-collapse: collapse;
}

.products-single .info th {
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  border: 1px solid #000;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.products-single .info td {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  border: 1px solid #000;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.products-single .info img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 70px;
  max-width: 100%;
}

.products-single .info .table-container {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 45px;
}

.container {
  width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mob-menu {
  display: none;
}

.search-form {
  display: none;
  padding: 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background-color: #0e7677;
  z-index: 30;
}

.search-form form {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 2px solid #fff;
  padding-bottom: 20px;
}

.search-form input {
  width: 100%;
  border: none;
  background-color: transparent;
  font-size: 25px;
  color: #fff;
  margin-right: 10px;
}

.search-form button {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: none;
  background: url("../img/lupa.svg") no-repeat center top/cover;
}

.search-form input::placeholder {
  color: #fff;
}

.search-form__close {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.search-form__close::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.search-form__close::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%) rotate(-45deg);
}


.contacts-form input,
.contacts-form textarea {
  width: 100%;
}

.client-name {
  margin-right: 30px;
}

.client-phone {
  margin-right: 30px;
}

textarea {
  resize: none;
}

.tab__item.active{
  display: block;
}

.tab__item{
  cursor: pointer;
}

.tab__content{
  display: none;
}

.tab__content.active{
  display: block;
}

.lang{
  position: relative;
}

.lang select{
  border: none;
  background-color: transparent;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  position: relative;
  outline: none;
}

.gallery-wrapper{
  display: flex;
  flex-direction: row;
}

.grid-img{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-right: 30px;
}

.products-single .grid-img img{
  margin: 0;
  margin-right: 30px;
  margin-bottom: 30px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}


@media (max-width: 1400px) {
  .pop-up h3 {
    font-size: 29px;
    line-height: 35px;
  }
}

@media (max-width: 1200px) {
  .container {
    width: 970px;
  }

  .breadcrumbs__list {
    flex-wrap: wrap;
  }

  .header.big .lang{
    margin: 0 10px;
  }

  .unnamed__img {
    margin-right: 50px;
    width: 700px;
    height: 498px;
  }

  .unnamed__title {
    margin-right: 10px;
  }

  .lang {
    margin-bottom: 10px;
  }

  .header.index .lang {
    margin-bottom: 0;
  }

  .card__item {
    height: 300px;
    width: 300px;
  }

  .contacts-form_1 .contacts-form__name {
    margin-right: 20px;
  }

  .contacts-form_2 .contacts-form__phone {
    margin-right: 20px;
  }

  .contacts-phone-text {
    margin-right: 50px;
  }

  .contacts .contacts-form {
    width: 400px;
  }

  .main .technology {
    width: 100%;
  }

  .header.big .menu {
    display: flex;
    height: 100vh;
  }

  .header .menu__item.active {
    background-color: #0e7677;
    color: #F0C84E;
    font-weight: bold;
  }

  .header.big .mob-menu {
    display: block;
    height: 30px;
    width: 40px;
    margin-left: auto;
    margin-right: 0;
    z-index: 3;
  }

  .header.big .mob-menu-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-bottom: 7px;
  }


  .header.big .mob-menu-line:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  .header.big {
    height: 70px;
  }

  .header.big nav {
    height: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    order: 3;
  }

  .header.big .menu__item {
    padding: 0 40px;
  }

  .header.big .Search {
    margin-left: auto;
  }

  .header.big .Search {
    height: 20px;
    width: 20px;
  }

  .header.big .Search img {
    height: 100%;
    width: 100%;
  }

  .header.big .menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0e7677;
    display: none;
  }

  .header.big .menu.open {
    display: flex;
  }

  .header.big .menu li {
    margin-bottom: 15px;
  }

  .about-us-content__item {
    width: calc(100% / 2 - 18px);
  }

  .about-us-content__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-us-content__gallery_img {
    width: 100%;
    height: 100%;
  }

  .about-us-content__vacancy_img {
    width: 100%;
    height: 100%;
  }

  .about-us-content__certificates_img {
    width: 100%;
    height: 100%;
  }

  .about-us-content__provider_img {
    width: 100%;
    height: 100%;
  }

  .timeline__item {
    flex-shrink: 0;
  }


  .timeline__item_1957 {
    margin-right: 175px;
  }

  .timeline__item_1957::after {
    width: 156px;
  }

  .timeline__item_1957 .time {
    left: -50px;
    top: -40px;
  }

  .timeline__item_1957 .time-info {
    width: 140px;
    padding: 15px;
    top: 50px;
    left: -40px;
  }

  .timeline__item_1957 .time-info::after {
    content: "";
    position: absolute;
    top: -25px;
    left: 46px;
    width: 37px;
    height: 29px;
    background: url("../img/1957.png") no-repeat center top/cover;
  }

  .timeline__item_1978 {
    margin-right: 160px;
  }

  .timeline__item_1978::after {
    width: 144px;
  }

  .timeline__item_1978 .time {
    bottom: -50px;
    left: -51px;
  }

  .timeline__item_1978 .time-info {
    width: 260px;
    padding: 15px 13px;
    bottom: 70px;
    left: -50px;
  }

  .timeline__item_1978 .time-info::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 65px;
    width: 53px;
    height: 40px;
    background: url("../img/1978.png") no-repeat center top/cover;
  }

  .timeline__item_1993 {
    margin-right: 100px;
  }

  .timeline__item_1993::after {
    width: 80px;
  }

  .timeline__item_1993 .time {
    left: -10px;
    top: -40px;
  }

  .timeline__item_1993 .time-info {
    width: 280px;
    padding: 15px;
    top: 90px;
    left: -75px;
  }

  .timeline__item_1993 .time-info::after {
    content: "";
    position: absolute;
    top: -45px;
    left: 85px;
    width: 59px;
    height: 49px;
    background: url("../img/1993.png") no-repeat center top/cover;
  }

  .timeline__item_2009 {
    margin-right: 70px;
  }

  .timeline__item_2009::after {
    width: 70px;
  }

  .timeline__item_2009::before {
    content: "";
    position: absolute;
    right: -85px;
    top: -3px;
    width: 14px;
    height: 23px;
    background: url("../img/timline-arrow.png") no-repeat center top/cover;
  }

  .timeline__item_2009 .time {
    left: 0px;
    bottom: -50px;
  }

  .timeline__item_2009 .time-info {
    width: 200px;
    padding: 15px;
    bottom: 70px;
    left: -50px;
  }

  .timeline__item_2009 .time-info::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 55px;
    width: 44px;
    height: 32px;
    background: url("../img/2009.png") no-repeat center top/cover;
  }

  .timeline__item .time-info {
    font-size: 14px;
  }

  .timeline .time {
    font-size: 25px;
  }

  .news-item__content {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .container {
    width: 750px;
  }

  .breadcrumb a {
    text-align: left;
  }

  .contacts-form {
    width: 100%;
  }

  .pop-up__content {
    max-width: 95%;
    width: 100%;
    padding: 45px 10px;
  }

  .pop-up h3 {
    font-size: 21px;
    line-height: 30px;
    padding: 0 50px;
  }

  .contacts-form input,
  .contacts-form textarea {
    width: 100%;
  }

  .pop-up__content .client-name {
    margin-right: 30px;
  }

  .pop-up__content .client-phone {
    margin-right: 30px;
  }

  .advantages__title,
  .partners__title,
  .contacts__title {
    font-size: 40px;
  }

  .contacts-content {
    flex-direction: column;
  }

  .contacts-phone-text {
    margin-right: 0;
  }

  .contacts .contacts-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .map {
    height: 540px;
  }

  .contacts-text {
    padding-left: 16%;
  }

  .header .menu__item {
    padding: 25px 20px;
  }

  .partners-list {
    width: 100%;
  }

  .advantages__item .number {
    font-size: 85px;
    line-height: 65px;
  }

  .advantages__item {
    width: calc(100% / 2);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .advantages__item .number {
    margin-bottom: 20px;
  }

  .advantages__item:nth-last-of-type(1) {
    margin-left: 0;
  }

  .main__search {
    width: 100%;
  }

  .gallery__video {
    height: auto;
  }

  body .desktop-wrapper .options {
    height: 220px !important;
  }

  .provider__list {
    flex-wrap: wrap;
  }

  .provider__download {
    width: calc(100% / 2 - 15px);
    margin-bottom: 15px;
  }

  .news__item {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
  }

  .gallery-wrapper{
    flex-direction: column;
    align-items: center;
  }

  .products-single .grid-img {
    margin-right: -30px;
  }

  .products-single .grid-img img {
    margin: 0 !important;
    margin-bottom: 30px !important;
    width: 100%;
  }

  .about-us-content__icon{
    top: 25%;
  }

  .about-us-content__company_text{
    top: 60%;
  }
  
  body .desktop-wrapper .options{
    flex-direction: column !important;
    height: 700px !important;
    min-width: 100% !important;
  }

  body .desktop-wrapper .options .option.active {
    flex-grow: 7 !important;
  }

  body .desktop-wrapper .options .option:not(.active) {
    flex-grow: 1;
  }
  

  .timeline {
    white-space: normal;
  }

  .vacancy {
    width: 100%;
  }

  .advantages__title,
  .partners__title,
  .contacts__title {
    font-size: 25px;
  }

  .secveces {
    padding-bottom: 70px;
  }

  .services-single {
    padding-bottom: 70px;
  }

  .products {
    padding-bottom: 60px;
  }

  .products-cat {
    padding-bottom: 70px;
  }

  .services-single__item {
    position: relative;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 25px;
  }

  .table-container {
    overflow-x: auto;
  }

  .table-container table {
    width: 768px;
  }

  .products-single .info h1 {
    /* margin-top: 50px; */
    font-size: 30px;
    line-height: 30px;
  }

  .products-single .info strong {
    font-size: 18px;
    line-height: 22px;
  }

  .products-single .info p {
    font-size: 18px;
    line-height: 22px;
  }

  .products-single .info th {
    padding: 3px;
    font-size: 16px;
  }

  .products-single .info td {
    padding: 3px;
    font-size: 16px;
  }

  .products-single .info .table-container {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .products-single .info img {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .contacts-text {
    padding-left: 0;
  }

  .contacts .contacts-form {
    max-width: 100%;
  }

  .contacts-form input {
    flex-grow: 1;
  }

  .header.index .mob-menu {
    display: block;
    height: 24px;
    width: 40px;
    margin-left: auto;
    margin-right: 0;
    z-index: 3;
  }

  .mob-menu-line {
    transition: all 0.5s;
  }

  .mob-menu.open .mob-menu-line:nth-of-type(1) {
    transition: all 0.5s;
    transform-origin: 0 0;
    transform: rotate(45deg);
    width: 74%;
  }

  .mob-menu.open .mob-menu-line:nth-of-type(2) {
    opacity: 0;
    transition: all 0.5s;
  }

  .mob-menu.open .mob-menu-line:nth-of-type(3) {
    transition: all 0.5s;
    transform-origin: 0 100%;
    transform: rotate(-45deg);
    width: 74%;
  }

  .header.index .mob-menu-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-bottom: 7px;
  }


  .header.index .mob-menu-line:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  .header.index {
    height: 70px;
  }

  .header.index nav {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
  }

  .header.index .menu {
    position: absolute;
    top: 40px;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0e7677;
    display: none;
  }

  .header.index .menu.open {
    display: flex;
  }

  .header.index .menu li {
    margin-bottom: 30px;
  }

  .timeline__list {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .timeline__item::after {
    left: 5px;
    top: 20px;
  }

  .timeline__item_1957 {
    margin-right: 0px;
    margin-bottom: 175px;
  }

  .timeline__item_1957::after {
    height: 156px;
    width: 1px;
  }

  .timeline__item_1957 .time {
    left: 30px;
    top: -15px;
  }

  .timeline__item_1957 .time-info {
    width: 140px;
    padding: 15px;
    top: -10px;
    left: -180px;
  }

  .timeline__item_1957 .time-info::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 135px;
    transform: rotate(90deg);
    width: 37px;
    height: 29px;
    background: url("../img/1957.png") no-repeat center top/cover;
  }

  .timeline__item_1978 {
    margin-right: 0px;
    margin-bottom: 160px;
  }

  .timeline__item_1978::after {
    height: 144px;
    width: 1px;
  }

  .timeline__item_1978 .time {
    bottom: -15px;
    left: -80px;
  }

  .timeline__item_1978 .time-info {
    width: 225px;
    padding: 15px 13px;
    bottom: -80px;
    left: 60px;
  }

  .timeline__item_1978 .time-info::after {
    content: "";
    position: absolute;
    transform: rotate(90deg);
    bottom: 40px;
    left: -45px;
    width: 53px;
    height: 40px;
    background: url("../img/1978.png") no-repeat center top/cover;
  }

  .timeline__item_1993 {
    margin-right: 0px;
    margin-bottom: 100px;
  }

  .timeline__item_1993::after {
    height: 80px;
    width: 1px;
  }

  .timeline__item_1993 .time {
    left: 30px;
    top: -15px;
  }

  .timeline__item_1993 .time-info {
    width: 215px;
    padding: 15px;
    top: -120px;
    height: 200px;
    left: -270px;
  }

  .timeline__item_1993 .time-info::after {
    content: "";
    position: absolute;
    transform: rotate(90deg);
    top: 130px;
    left: auto;
    right: -50px;
    width: 59px;
    height: 49px;
    background: url("../img/1993.png") no-repeat center top/cover;
  }

  .timeline__item_2009 {
    margin-right: 0px;
    margin-bottom: 70px;
  }

  .timeline__item_2009::after {
    height: 70px;
    width: 1px;
  }

  .timeline__item_2009::before {
    content: "";
    position: absolute;
    right: 1px;
    transform: rotate(90deg);
    top: 75px;
    width: 14px;
    height: 23px;
    background: url("../img/timline-arrow.png") no-repeat center top/cover;
  }

  .timeline__item_2009 .time {
    left: -84px;
    bottom: -25px;
  }

  .timeline__item_2009 .time-info {
    width: 200px;
    padding: 15px;
    bottom: -60px;
    left: 55px;
  }

  .timeline__item_2009 .time-info::after {
    content: "";
    position: absolute;
    transform: rotate(90deg);
    bottom: 30px;
    left: -35px;
    width: 44px;
    height: 32px;
    background: url("../img/2009.png") no-repeat center top/cover;
  }

  .gallery__photo-container {
    width: calc(100% + 20px);
  }

  .gallery__photo {
    width: calc(100% / 2 - 20px);
    height: 200px;
    background-color: #c4c4c4;
    margin: 15px 10px;
  }

  .vacancy__title {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .vacancy-list li {
    left: 0;
    font-size: 14px;
  }

  .vacancy-list {
    padding: 0;
    padding-left: 30px;
  }

  .vacancy-list li:before {
    width: 15px;
    height: 20px;
  }

  .vacancy__note {
    padding: 0px;
    font-size: 16px;
  }

  .vacancy__note div {
    display: flex;
    flex-direction: column;
  }

  .vacancy-list {
    margin-bottom: 40px;
  }

  .vacancy__note div:not(.phone) .phone {
    margin-left: 0;
  }

  .certificates__arrow_right {
    right: 0;
  }

  .certificates__arrow_left {
    left: 0;
  }

  .certificates .swiper-container {
    width: 100%;
  }

  .provider__download {
    width: 100%;
    margin-bottom: 15px;
  }

  .unnamed__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .unnamed__title {
    font-size: 100px;
  }

  .unnamed__text {
    font-size: 22px;
  }

  .unnamed__img {
    display: none;
  }

  .pop-up h3 {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
  }

  .products-single .grid-img img{
    width: 100%;
    height: 100%;
    margin-right: 0 !important;
  }

  .products-single .grid-img{
    margin-right: 0;
  }

  body .desktop-wrapper .options {
    flex-direction: column !important;
    height: 600px !important;
  }

  .timeline__list {
    align-items: flex-start;
    padding-left: 70px;
  }

  .timeline__item_1957{
    margin-bottom: 230px;
  }

  .timeline__item_1957::after{
    height: 220px;
  }

  .timeline__item_1957 .time {
    left: -70px;
  }

  .timeline__item_2009 .time {
    left: -70px;
  }

  .timeline__item_1978 .time {
    left: -70px;
  }

  .timeline__item_1957 .time-info {
    left: 60px;
    width: 225px;
  }

  .timeline__item_1978 {
    margin-bottom: 245px;
  }

  .timeline__item_1978::after {
    height: 235px;
  }

  .timeline__item_1957 .time-info::after {
    left: -30px;
    transform: scale(1, -1) rotate(-90deg);
  }

  .timeline__item_1993 .time-info::after {
    transform: scale(1, -1) rotate(-90deg);
    top: 130px;
    left: -45px;
  }

  .timeline__item_1993{
    margin-bottom: 140px;
  }

  .timeline__item_1993::after{
    height: 130px;
  }
  
  .timeline__item_1993 .time {
    left: -70px;
  }

  .timeline__item_1993 .time-info {
    left: 60px;
    width: 220px;
  }

  .lang-active {
    font-size: 16px;
  }

  .search-form {
    height: 90px;
    padding: 20px;
    padding-top: 35px;
  }

  .search-form__close {
    top: 5px;
    right: 5px;
  }

  .search-form input {
    font-size: 18px;
  }

  .search-form form {
    padding-bottom: 10px;
  }

  .certificates {
    margin-bottom: 70px;
  }

  .contacts-phone__icon,
  .contacts-email__icon,
  .contacts-location__icon {
    margin-right: 10px;
  }

  .contacts-email__icon {
    margin-right: 10px;
  }

  .contacts-location__icon {
    margin-right: 10px;
  }

  .contacts-phone-text {
    width: 100%;
  }

  .contacts-phone-text__item {
    width: 100%;
  }

  .advantages__item {
    width: 100%;
  }

  .technology img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .main__email {
    left: -50px;
    bottom: 20%;
    top: auto;
    min-width: 100px;
    min-height: 30px;
  }

  .main__email:after {
    font-size: 20px;
  }

  .main {
    padding-top: 0;
  }

  .advantages__item:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  .advantages,
  .partners {
    padding: 50px 0 70px;
  }

  .advantages__title,
  .partners__title,
  .contacts__title {
    margin-bottom: 30px;
  }

  .advantages__item .number {
    font-size: 50px;
    line-height: 30px;
  }

  .advantages__item {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 40px;
  }

  .partners__item {
    margin-top: 0;
  }

  .contacts-phone {
    margin-bottom: 10px;
  }

  .contacts-email {
    margin-bottom: 20px;
  }

  .map {
    height: 400px;
  }

  .contacts__up {
    width: 50px;
    height: 40px;
  }

  .header.index,
  .header.index nav {
    height: 50px;
  }

  body {
    padding-top: 50px;
  }

  .main .technology {
    margin-bottom: 30px;
  }

  .about-us-content__item {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .about-us-content__item:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  .about-us-content__list {
    margin-right: 0;
  }

  .breadcrumb {
    padding: 20px 0;
  }

  .breadcrumbs__list {
    margin-left: -30px;
  }

  .breadcrumb a {
    font-size: 14px;
    margin-right: 0px;
    margin-left: 30px;
  }
  

  .breadcrumb a:not(:last-child):after {
    right: -23px;
  }

  .header.big,
  .header.big .container {
    height: 50px;
  }

  .menu__logo,
  .menu__logo img {
    height: 50px;
  }

  .lang-active {
    padding: 10px 20px;
    margin: 0 5px;
  }

  .header .lang-active:before {
    left: 5px;
    top: 14px;
    width: 12px;
    height: 12px;
  }

  .menu__item_lang {
    font-size: 16px;
  }

  .lang-drop {
    top: 18px;
  }

  .header .lang-active:after {
    top: 48%;
    right: 10px;
  }

  .about-us-content__list {
    padding-bottom: 70px;
  }

  .timeline {
    padding-top: 20px;
  }

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

  .header.big .menu {
    top: 50px;
  }

  .gallery__photo-container {
    width: 100%;
    margin-bottom: 30px;
  }

  .gallery__photo {
    width: 100%;
    height: 200px;
    background-color: #c4c4c4;
    margin: 0;
    margin-bottom: 10px;
  }

  .gallery__video {
    margin-bottom: 30px;
  }

  .gallery {
    padding-bottom: 70px;
    margin-bottom: 0;
  }

  .provider__download {
    padding: 15px 20px;
  }

  .provider p {
    width: 100%;
  }

  .provider p {
    font-size: 16px;
  }

  .news__title {
    font-size: 16px;
    line-height: 24px;
  }

  .news__date {
    font-size: 18px;
    color: #ffffff;
    background-color: #F0C84E;
    display: inline;
    padding: 10px 35px;
  }

  .news__btn-item {
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    padding: 10px 40px;
  }

  .news-item h3 {
    margin-top: 50px;
  }

  .news-item p {
    font-size: 18px;
  }

  .time-info{
    width: 280px !important;
  }

  .timeline__item_1993 .time-info{
    height: 230px;
  }
}


@media (max-width: 470px) {
  body .desktop-wrapper .options {
    flex-direction: column !important;
    height: 400px !important;
  }

  .card .technology-item.h{
    width: 100%;
    margin: 0;
    margin-bottom: 16px;
  }
  
  .card{
    margin-right: 0;
    width: 100%;
  }
}

@media (max-width: 440px) {
  .timeline .time{
    font-size: 18px;
    left: -45px !important;
  }

  .timeline__list{
    padding-left: 40px;
  }

  .time-info {
    width: 215px !important;
    left: 40px !important;
  }

  .time-info::after {

  }

  .timeline__item .time-info {
    font-size: 11px;
    line-height: 16px;
  }

  .timeline__item_1978 .time-info::after {
    content: "";
    position: absolute;
    transform: rotate(90deg);
    bottom: 60px;
    left: -20px;
    width: 25px;
    height: 20px;
  }

  .timeline__item_1993 .time-info::after {
    content: "";
    position: absolute;
    top: 130px;
    left: -20px;
    right: -48px;
    width: 25px;
    height: 20px;
  }

  .timeline__item_2009 .time-info::after {
    content: "";
    position: absolute;
    bottom: 40px;
    left: -20px;
    width: 25px;
    height: 20px;
  }

  .timeline__item_1957{
    margin-bottom: 170px;
  }

  .timeline__item_1957::after{
    height: 160px;
  }

  body .desktop-wrapper .options .option:not(.active) {
    flex-grow: 2 !important;
  }
}

@media (max-width: 425px) {
  .container {
    width: 100%;
  }

  .pop-up__content .client-name{
    margin-right: 0;
  }

  .pop-up__content .client-phone{
    margin-right: 0;
  }

  .pop-up__close{
    font-size: 25px;
    top: 10px;
    right: 10px;
  }

  .pop-up h3{
    padding: 0;
    margin-bottom: 20px;
  }

  .client-name {
    margin-right: 0px;
  }

  .client-phone {
    margin-right: 0px;
  }

  .contacts-form br {
    display: none;
  }

  .file-label {
    margin-top: -25px;
  }

  .contacts-email-text {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .contacts-form_1,
  .contacts-form_2 {
    flex-direction: column;
    margin-bottom: 14px;
  }

  .contacts-form input {
    width: 100%;
  }

  .contacts-form_1 .contacts-form__name {
    margin-right: 0;
    margin-bottom: 14px;
  }

  .contacts-form_2 .contacts-form__phone {
    margin-right: 0;
    margin-bottom: 14px;
  }

  .contacts-phone-text__item {
    flex-direction: column;
    height: auto;
  }

  .main__img {
    width: 100%;
    height: auto;
  }

  .main__btn {
    font-size: 16px;
  }

  .menu__logo img {
    width: 120px;
  }

  .Search {
    margin-right: 0;
  }
}