* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-transform: uppercase;
  min-height: 100vh;
}

body.fixed {
  overflow: hidden;
}

input,
select,
textarea,
button {
  font-family: 'Unbounded', sans-serif;
}

img,
svg {
  max-width: 100%;
  border: 0;
}

.clearfix {
  display: table;
  clear: both;
}

ul {
  margin: 0;
  list-style-type: none;
}

input,
input:focus,
input:hover,
input:visited,
input:active,
textarea:focus,
textarea:hover,
textarea:visited,
textarea:active,
textarea,
select:focus,
select:hover,
select:visited,
select:active,
select,
button,
button:active,
button:focus {
  outline: none;
}

button {
  border: 0;
}

input::-webkit-input-placeholder {
  color: #fff;
}

input::-moz-placeholder {
  color: #fff;
}

input:-moz-placeholder {
  color: #fff;
}

input:-ms-input-placeholder {
  color: #fff;
}

textarea::-webkit-input-placeholder {
  color: #fff;
}

textarea::-moz-placeholder {
  color: #fff;
}

textarea:-moz-placeholder {
  color: #fff;
}

textarea:-ms-input-placeholder {
  color: #fff;
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

[placeholder]:focus::-moz-placeholder {
  color: transparent;
}

[placeholder]:focus:-ms-input-placeholder {
  color: transparent;
}

[placeholder]:focus::placeholder {
  color: transparent;
}

.overflow {
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  /* max-width: 320px; */
  margin: auto;
  padding: 0 20px;
}

section {
  position: relative;
}

.header {
  margin: auto;
  background-color: #1f1f1f;
  font-size: 12px;
  padding: 12px 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  z-index: 10;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.header::before {
  content: '';
  background: url(../img/header-corner.svg) no-repeat;
  position: absolute;
  top: 0;
  left: -29px;
  height: 100%;
  width: 30px;
  background-size: 100% 100%;
}

.header::after {
  content: '';
  background: url(../img/header-corner.svg) no-repeat;
  position: absolute;
  top: 0;
  right: -29px;
  height: 100%;
  width: 30px;
  transform: scaleX(-1);
  background-size: 100% 100%;
}

.menu,
.logo,
.lang {
  position: relative;
  z-index: 10;
}

/* .menu, */
.lang__list {
  display: none;
}

.lang {
  z-index: 11;
  position: relative;
  cursor: pointer;
}

.lang__current::after {
  content: '';
  vertical-align: middle;
  background: url(../img/triangle-arrow.svg) no-repeat;
  transform: rotate(180deg);
  width: 6px;
  height: 5px;
  background-size: contain;
  margin-left: 4px;
  display: inline-block;
}

.lang__current {
  font-weight: 800;
}

.lang__current:hover {
  background: linear-gradient(91deg, #ffe14d 0%, #dc5414 100.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.lang__current:hover::after {
  background: url(../img/triangle-arrow-hover.svg) no-repeat;
  background-size: contain;
}

.lang--desktop {
  display: none;
}

.sandwich {
  width: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
  z-index: 11;
  position: relative;
}

.sandwich__line {
  background-color: #fff;
  width: 26px;
  height: 3px;
  margin-bottom: 5px;
  transform: skew(-30deg);
}

.sandwich__line:last-of-type {
  width: 18px;
  margin-bottom: 0;
}

.logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  cursor: pointer;
  width: 99px;
}

.logo--desktop {
  display: none;
}

.menu {
  display: block;
  position: fixed;
  text-align: center;
  right: 0;
  left: 0;
  top: 0;
  z-index: 10;
  padding-top: 80px;
  background-color: #1f1f1f;
  height: 100vh;
  transform: translateX(-100%);
  transition: 0.3s;
  padding-bottom: 80px;
}

.menu.active {
  transform: translateX(0);
  overflow: scroll;
}

.menu__link {
  padding: 20px 0;
  display: block;
  font-weight: 800;
}

.menu__link:hover {
  background: linear-gradient(91deg, #ffe14d 0%, #dc5414 100.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.menu__item--last {
  margin-top: 40px;
}

.main {
  text-align: center;
  padding-bottom: 60px;
  padding-top: 90px;
  position: relative;
}

.main__logo {
  margin-bottom: 15px;
}

.accent {
  background: linear-gradient(91deg, #ffe14d 0%, #dc5414 100.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  line-height: normal;
  font-size: 24px;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-weight: 900;
  letter-spacing: -0.96px;
}

.main__title {
  font-size: 18px;

  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.72px;

  line-height: 1;
}

.main__subtitle {
  color: #fff;

  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.96px;

  margin-bottom: 30px;
  line-height: 1;
}

.main__subtitle span {
  display: block;
}

.btn {
  color: #000;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: table;
  transform: skewX(-20deg);
  background: linear-gradient(to right, #ffdf4c, #dd5716);
  margin: auto;
  padding: 8px 52px 8px 22px;
  line-height: 1;
  max-width: 200px;
  text-align: left;
  text-transform: uppercase;
}

.btn span {
  transform: skewX(20deg);
  display: block;
  position: relative;
  z-index: 1;
}

.btn span::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  background: url(../img/btn__logo.svg) no-repeat;
  width: 28px;
  height: 28px;
}

.btn:hover {
  color: #000;
  background: linear-gradient(to left, #ffdf4c, #dd5716);
}

.about {
  background-color: #1f1f1f;
  padding: 40px 0;
}

.main::after {
  content: '';
  background: url(../img/grey-angle.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
}

.about::before {
  content: '';
  background: url(../img/grey-angle.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
  transform: scaleY(-1);
  z-index: 1;
}

.about::after {
  content: '';
  background: url(../img/orange-triangle.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
}

.about__desc {
  margin-bottom: 40px;
}

.about p {
  margin-bottom: 20px;
  font-size: 12px;

  opacity: 0.6;
}

h4 {
  font-size: 18px;

  font-weight: 900;
  line-height: normal;
  margin-bottom: 23px;
}

.advantages__list {
  font-size: 12px;
}

.advantages__item {
  padding-left: 30px;
  position: relative;
}

.advantages__item::before {
  content: '';
  background: url(../img/list-decor.svg) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  opacity: 1;
  background-size: contain;
}

.facts {
  padding: 65px 0 40px;
  font-weight: 900;
  font-size: 16px; 
  position: relative;
}

.facts::before {
  content: '';
  background: url(../img/grey-angle.svg);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
  transform: scaleX(-1);
  z-index: 1;
}

.facts::after {
  content: '';
  background: url(../img/orange-triangle.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
  transform: scale(-1);
}

.facts__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1;
  margin-bottom: 20px;
  gap: 10px;
}

.facts__point,
.facts__value {
  width: 100%;
}

.facts__value span {
  display: table;
}

.facts__item:nth-child(1) .facts__value,
.facts__item:nth-child(2) .facts__value,
.facts__item:nth-child(3) .facts__value,
.facts__item:nth-child(4) .facts__value,
.facts__item:nth-child(5) .facts__value {
  font-size: 24px;
}

.partners {
  background: #1f1f1f;
  padding: 40px 0;
  position: relative;
}

.partners::before {
  content: '';
  background: url(../img/grey-angle.svg);
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
  transform: scale(-1);
  z-index: 1;
}

.partners::after {
  content: '';
  background: url(../img/orange-triangle.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
  transform: scaleX(-1);
}

.partners__title {
  text-align: center;
  border: 0;
  padding-bottom: 0;
}
.partners__slider {
  max-width: 220px;
  margin: auto;
}
.slider {
  margin-bottom: 25px;
}

.slider__comment {
  border: 2px solid #626262;
  position: relative;
  font-size: 12px;
  padding: 15px 10px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.slider__comment::before {
  content: '';
  background: url(../img/corner.svg) no-repeat;
  width: 20px;
  height: 24px;
  position: absolute;
  left: -2px;
  bottom: -23px;
}

.slider__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.slider__ava {
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}

.slider__info-about {
  padding-left: 15px;
  width: 100%;
}

.slider__name {
  font-size: 12px;
  font-style: normal;
}

.slider__company {
  font-size: 10px;
  font-style: normal;
  opacity: 0.6;
}

.partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 38px;
  width: 220px;
  margin: auto;
}

.partners__logo {
  cursor: pointer;
  width: 48px;
  opacity: 0.3;
}

.partners__logo:hover {
  opacity: 1;
}

.vacancy {
  padding: 65px 0;
  font-size: 12px;
  font-style: normal;
  position: relative;
}

.vacancy::before {
  content: '';
  background: url(../img/grey-angle.svg);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;

  z-index: 1;
}

.vacancy::after {
  content: '';
  background: url(../img/orange-triangle.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
  transform: scaleY(-1);
}

.vacancy__name {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1;
}

.vacancy__desc {
  margin-bottom: 15px;
}

.vacancy__item {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.vacancy__btn {
  margin-left: 10px;
  padding: 11px 41px 11px 12px;
}

.contact {
  padding: 40px 0;
  background-color: #1f1f1f;
  position: relative;
}

.contact::before {
  content: '';
  background: url(../img/grey-angle.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
  transform: scaleY(-1);
  z-index: 1;
}

.contact::after {
  content: '';
  background: url(../img/orange-triangle.svg) no-repeat;
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 25px;
  background-size: 100% 100%;
}

.contact__btn {
  font-size: 18px;
  cursor: pointer;
  font-weight: 900;
  line-height: normal;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.72px;
  padding-right: 40px;
}

.contact__btn:hover {
  color: #fff;
}

.contact__item {
  position: relative;
}

.contact__item::before {
  content: '';
  background: url(../img/form-arrow.svg) no-repeat;
  position: absolute;
  top: 3px;
  right: 0;
  width: 26px;
  height: 16px;
  pointer-events: none;
}

.contact__item.active::before {
  transform: scaleY(-1);
}

.contact__item.active .contact__btn span {
  background: linear-gradient(91deg, #ffe14d 0%, #dc5414 100.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.contact__item {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.contact__item:last-child.active {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact__form {
  height: 0;
  overflow: hidden;
  transition: 0.3s;
  font-size: 10px;
  transform: translateY(-30px);
}

.contact__item.active .contact__form {
  height: auto;
  margin-top: 20px;
  transform: translateY(0);
}

label,
input,
textarea {
  width: 100%;
  display: block;
}

label {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

input,
textarea {
  border: 1px solid #fff;
  padding: 15px 10px;
  margin-bottom: 15px;

  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  background: transparent;
  text-transform: uppercase;
  color: #fff;
}

textarea {
  margin-bottom: 20px;
}

.contact__form-btn {
  padding: 15px 46px 14px 16px;
  font-size: 16px;
  text-transform: uppercase;
}

.socials {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 100%;

  letter-spacing: -0.96px;
  padding: 65px 0 60px;
}

.socials__item:not(:last-child) {
  margin-bottom: 20px;
}

.socials__link:hover {
  -webkit-text-fill-color: #fff;
}

.socials__link span {
  background: url(../img/social-arrow.svg) no-repeat;
  display: inline-block;

  width: 18px;
  height: 18px;
}

.socials__link:hover span {
  background-image: url(../img/social-arrow-hover.svg);
}

.footer {
  text-align: center;
  font-size: 12px;
  padding-bottom: 20px;
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
}

.footer .wrapper {
  font-size: 12px;
}

.footer__copy {
  margin-bottom: 10px;
  opacity: 0.6;
}

.footer__links span {
  cursor: pointer;
  margin: 0 10px;
  opacity: 0.6;
}

.footer__links span:hover {
  opacity: 1;
}

.success {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 13;
  line-height: normal;
}

.success.active {
  display: flex;
}

.success__content {
  border: 2px solid #fff;
  background: #1f1f1f;
  padding: 40px 20px;
  font-size: 12px;
  width: 280px;
}

.success__title {
  font-size: 24px;
  line-height: 1;

  font-weight: 900;
  margin-bottom: 10px;
}

.success__text {
  margin-bottom: 15px;
}

.success__btn {
  font-size: 16px;
  padding: 12px 42px 12px 15px;
}

.modal {
  position: fixed;
  left: -100%;
  top: 50%;
  width: 80%;
  height: 80%;
  max-height: 800px;
  max-width: 800px;
  overflow: auto;
  overscroll-behavior: contain;
  transition: left 0.5s;
  background-color: #000;
  border: 1px solid #fff;
  padding: 10px;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.modal--active {
  left: 50%;
}

.modal__wrapper {
  position: relative;
  padding: 30px 15px;
}

.modal__close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  background-color: #000;
  cursor: pointer;
}

.modal__close-button::before,
.modal__close-button::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #fff;
}

.modal__close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__title {
  line-height: normal;
  text-align: center;
}

.modal__paragraph {
  margin-top: 15px;
  font-size: 12px;
  color: #878787;
}

.modal__subtitle {
  color: #fff;
  margin-top: 20px;
}

.modal__subtitle + .modal__paragraph {
  margin-top: 10px;
}

.modal__ordered-list {
  padding-left: 25px;
  margin-top: 10px;
  color: #878787;
  list-style: decimal;
}

.modal__ordered-item:not(:first-of-type) {
  margin-top: 10px;
}

.modal__unordered-list {
  margin-top: 10px;
  padding-left: 15px;
  color: #878787;
  font-size: 14px;
}

.modal__unordered-item:not(:first-of-type) {
  margin-top: 10px;
}

.modal__unordered-list--inner {
  padding-left: 20px;
  list-style-type: circle;
}

.overlay-bg {
  position: fixed;
  z-index: -5;
  opacity: 0;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s;
}

.overlay-bg--active {
  z-index: 15;
  opacity: 1;
  left: 0;
}

.footer-links {
  font-size: 0;
  text-align: center;
}

.footer-link {
  display: inline-block;
}

.footer-link:hover {
  text-decoration: none;
}

.lang {
  position: relative;

  cursor: pointer;

  overflow: visible;
  z-index: 11;
}

.lang__list {
  position: absolute;
  top: calc(100% + 10px);
  display: none;
  line-height: 1;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 10px 0;
  overflow: hidden;
  background: #1f1f1f;
  right: 0;
}

.lang.opened .lang__list {
  display: block;
  padding: 0;
}

.lang__item {
  cursor: pointer;
  display: block;
  padding: 5px 7px;
}
.person {
  padding-top: 90px;
  font-size: 12px;
}
.person__ava {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  margin-bottom: 20px;
}
.person__name {
  margin: auto;
  margin-bottom: 15px;
  text-align: center;
  display: table;
  border: 0;
  padding-bottom: 0;
  line-height: 0.9;
}
.person__job {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -0.72px;
  text-transform: uppercase;
}
.person__cite {
  text-align: center;
}
.person__about {
  border-bottom: 2px solid #fff;
  padding-bottom: 15px;
}
.person__info-row {
  padding: 15px 0;

  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.person__info {
  margin-bottom: 100px;
}
.person__info-headers {
  opacity: 0.6;
}
.person__info-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.person__btn {
  margin: 0;
  padding: 10px 52px 10px 22px;
  margin-left: 20px;
}
@media (min-width: 992px) {
  .wrapper {
    max-width: 992px;
  }

  .main {
    text-align: left;
    padding-top: 0px;
    padding-bottom: 0;
    background: url(../img/bg.png) repeat-y center top;
  }

  .main .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .main__left {
    width: 40%;
  }

  .main__right {
    width: 60%;
  }

  .main__logo {
    width: 594px;
    height: 519.75px;
  }

  .main__title {
    font-size: 22px;
    margin-bottom: 35px;
    letter-spacing: -1.6px;
    display: table;
  }

  .main__subtitle {
    font-size: 50px;
    letter-spacing: -2px;
    margin-bottom: 55px;
  }

  .btn {
    font-size: 14px;
    padding: 13px 51px 13px 21px;
    max-width: none;
  }

  .main__btn {
    margin: 0;
    max-width: none;
  }
  .about::after,
  .main::after,
  .facts::after,
  .partners::after,
  .vacancy::after,
  .contact::after {
    height: 95px;
  }
  .about::after,
  .partners::after,
  .contact::after {
    bottom: -95px;
  }

  .menu {
    position: static;
    padding: 4px 0;
    height: auto;
    transform: none;
    background-color: transparent;
    width: 100%;
  }

  .menu.active {
    overflow: visible;
  }

  .menu__list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }

  .menu__left,
  .menu__right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
  }

  .menu__left {
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
  }

  .menu__right {
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
  }

  .menu__left .menu__item:not(:first-child) {
    margin-left: 15px;
  }

  .menu__right .menu__item:not(:last-child) {
    margin-right: 15px;
  }

  .menu__item {
    white-space: nowrap;
  }

  .menu__item--last {
    margin-top: 0;
  }

  .menu__link {
    padding: 0;
  }

  .menu__btn {
    font-size: 12px;
    padding: 9px 28px 9px 7px;
  }

  .menu__btn span::after {
    top: 59%;
    right: -21px;

    width: 16px;
    height: 23px;
    background-size: contain;
  }

  .sandwich,
  .lang--mobile {
    display: none;
  }

  .lang--desktop {
    display: block;
  }

  .header {
    padding-top: 0;
    font-size: 12px;
    padding-bottom: 0;
    max-width: 992px;
  }

  .logo {
    position: static;

    transform: none;
    width: 111px;
    margin-bottom: -32px;
    margin-top: -4px;
  }
  .logo img {
    width: 100%;
  }

  .logo--mobile {
    display: none;
  }

  .logo--desktop {
    align-self: flex-start;
    margin: 0 20px;
    display: block;
  }

  h3 {
    font-size: 50px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .about p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .about__desc {
    margin-bottom: 70px;
  }

  .advantages__lists {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .advantages__list {
    width: 50%;
  }

  .advantages__item::before {
    width: 17px;
    height: 32px;
  }

  .advantages__item {
    padding-left: 30px;
  }
  .about {
    padding-bottom: 10px;
  }
  .about::before,
  .facts::before,
  .partners::before,
  .vacancy::before,
  .contact::before {
    height: 120px;
    background-image: url(../img/grey-angle-desktop.svg);
  }
  .about::before,
  .partners::before,
  .contact::before {
    bottom: -120px;
  }

  .facts {
    padding: 150px 0 170px;
    font-size: 22px;
    background: url(../img/bg.png) repeat-y center top;
  }

  .facts__item:nth-child(1) .facts__value,
  .facts__item:nth-child(2) .facts__value,
  .facts__item:nth-child(3) .facts__value,
  .facts__item:nth-child(4) .facts__value,
  .facts__item:nth-child(5) .facts__value {
    font-size: 50px;
  }

  .facts__item {
    margin-bottom: 15px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
  .facts__item:last-child {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .facts__item {
    gap: 0 90px;
  }

  .partners__logos {
    width: 100%;
    gap: 30px 158px;
  }

  .partners__logo {
    width: 60px;
    /* margin: 0 52px; */
  }

  .partners__slider {
    max-width: 990px;
    margin: auto;
  }
  .slider {
    padding: 0 30px;
    margin-bottom: 60px;
  }

  .slider__item {
    margin: 0 20px;
  }

  .slider__comment {
    padding: 16px 12px;
  }

  .slider__comment,
  .slider__name {
    font-size: 14px;

    font-weight: 600;
    line-height: normal;
  }

  .slider__company {
    font-size: 12px;
  }

  .slider__ava {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .vacancy {
    padding: 170px 0;
    font-size: 14px;
  }

  .vacancy__item {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 30px;
    margin-bottom: 20px;
    gap: 0 90px;
  }

  .vacancy__name {
    width: 50%;
    font-size: 22px;
  }

  .vacancy__about {
    width: 50%;
  }

  .vacancy__btn {
    font-size: 12px;
    padding: 9px 35px 8px 11px;
  }

  .vacancy__btn span::after {
    top: 59%;
    right: -25px;
    width: 16px;
    height: 23px;
    background-size: contain;
  }
  .form__container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0 30px;
    margin-bottom: 20px;
  }

  .form__firstly {
    width: 35%;
  }

  .form__firstly input:last-of-type {
    margin-bottom: 0;
  }

  .form__secondary {
    width: 65%;
  }

  .contact__form-btn {
    float: right;
    margin-right: 15px;
  } /*высота первого лейбла+ первого инпута в правом столбец, их марджинов, лейбла для текстареа и их марджина   */
  textarea {
    margin-bottom: 0;
    height: calc(100% - 59px - 23px - 6px - 15px - 23px - 6px);
  }
  .contact__btn {
    font-size: 22px;
  }

  .contact__item {
    padding-bottom: 30px;
    margin-bottom: 20px;
  }

  .contact__item::after {
    content: '';
    display: table;
    clear: both;
  }

  .contact__item::before {
    width: 30px;
    height: 18px;
    background-size: contain;
    top: 5px;
  }

  input,
  textarea,
  label {
    font-size: 14px;
  }

  input,
  textarea {
    margin-bottom: 15px;
    padding: 20px;
  }
  .vacancy {
    background: url(../img/bg.png) repeat-y center top;
  }

  .socials {
    font-size: 50px;
    padding: 170px 0 100px;
    background: url(../img/bg.png) repeat-y center top;
  }

  .socials__link span {
    height: 38px;
    width: 38px;
    background-size: contain;
  }

  .footer {
    background-color: #1f1f1f;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 40px !important;
    font-size: 14px;
  }

  .footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 30px;
    height: 100%;
    background: url(../img/header-corner.svg) no-repeat;
    transform: scaleY(-1);
  }

  .footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 30px;
    height: 100%;
    background: url(../img/header-corner.svg) no-repeat;
    transform: scale(-1);
  }

  .footer__copy {
    margin-bottom: 0;
  }

  .success__content {
    padding: 25px 40px;
    font-size: 14px;
    width: 515px;
  }

  .success__title {
    font-size: 50px;

    margin-bottom: 15px;
  }

  .success__text {
    margin-bottom: 20px;
  }

  .success__btn {
    font-size: 14px;
    padding: 10px 19px;
  }
  .success__btn span::after {
    display: none;
  }
  .modal__title {
    font-size: 35px;
  }
  .modal__paragraph {
    font-size: 14px;
  }

  .modal__subtitle {
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .person {
    font-size: 14px;
    padding-top: 150px;
  }
  .person__ava {
    width: 198px;
    height: 198px;
    min-width: 198px;
  }
  .person__name,
  .person__job,
  .person__cite {
    text-align: left;
    margin: 0;
  }
  .person__name {
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-size: 50px;
  }
  .person__job {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: -1.6px;
  }
  .person__about {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .person__about-text {
    padding-left: 60px;
  }
  .person__info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .person__info-headers,
  .person__info-text {
    width: 50%;
  }
  .person__info-row {
    padding: 20px 0;
  }
  .person__about {
    padding-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .wrapper {
    max-width: 1200px;
    padding: 0 10px;
  }
  .header {
    font-size: 14px;
    max-width: 1200px;
  }

  .menu {
    padding: 7px 0;
  }
  .menu__right .menu__item:not(:last-child) {
    margin-right: 25px;
  }
  .menu__left .menu__item:not(:first-child) {
    margin-left: 25px;
  }
  .logo {
    width: 148px;
    margin-top: -7px;
  }
  .main {
    padding: 80px 0;
  }
  .main__title {
    font-size: 30px;
  }
  .main__subtitle {
    font-size: 60px;
  }
  .btn {
    font-size: 13px;
  }
  .menu__btn {
    font-size: 14px;
  }
  .about::before,
  .facts::before,
  .partners::before,
  .vacancy::before,
  .contact::before {
    height: 150px;
  }
  .about::before,
  .partners::before,
  .contact::before {
    bottom: -150px;
  }
  .about::after,
  .main::after,
  .facts::after,
  .partners::after,
  .vacancy::after,
  .contact::after {
    height: 120px;
  }
  .about::after,
  .partners::after,
  .contact::after {
    bottom: -120px;
  }
  h3 {
    font-size: 60px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    letter-spacing: -3.2px;
  }
  .about {
    padding-top: 50px;
  }
  .about p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  h4 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .about__desc {
    margin-bottom: 50px;
  }
  .advantages__item::before {
    width: 24px;
    height: 29px;
  }
  .advantages__item {
    padding-left: 45px;
  }
  .facts {
    padding: 200px 0;
    font-size: 30px;
  }
  .facts__item:nth-child(1) .facts__value,
  .facts__item:nth-child(2) .facts__value,
  .facts__item:nth-child(3) .facts__value,
  .facts__item:nth-child(4) .facts__value,
  .facts__item:nth-child(5) .facts__value {
    font-size: 60px;
  }
  .facts__item {
    margin-bottom: 30px;
    padding-bottom: 40px;
  }
  .partners {
    padding: 60px 0;
  }
  .slider__comment,
  .slider__name {
    font-size: 16px;
  }
  .partners__slider {
    max-width: 1200px;
  }
  .slider__comment {
    padding: 20px 15px;
  }
  .partners__logo {
    width: 72px;
  }
  .partners__logos {
    gap: 40px 200px;
  }
  .vacancy {
    font-size: 16px;
    padding: 200px 0;
  }
  .vacancy__name {
    font-size: 30px;
  }
  .vacancy__btn {
    font-size: 14px;
  }
  .vacancy__item {
    margin-bottom: 30px;
    padding-bottom: 40px;
  }
  .contact__btn {
    font-size: 30px;
  }
  input,
  textarea,
  label {
    font-size: 16px;
  }
  input,
  textarea {
    margin-bottom: 30px;
  }
  label {
    margin-bottom: 15px;
  }
  /*высота первого лейбла+ первого инпута в правом столбец, их марджинов, лейбла для текстареа и их марджина   */
  textarea {
    height: calc(100% - 25px - 15px - 62px - 30px - 25px - 15px);
  }
  contact {
    padding: 70px 0;
  }
  .contact__item::before {
    width: 38px;
    height: 24px;
  }
  .contact__title {
    margin-bottom: 30px;
  }
  .socials {
    font-size: 60px;
    padding: 200px 0 130px;
  }
  .socials__link span {
    height: 45px;
    width: 45px;
  }
  .footer {
    font-size: 16px;
  }
  .modal__paragraph {
    font-size: 16px;
  }
  .modal__subtitle {
    font-size: 30px;
    letter-spacing: -0;
  }
  .modal__title {
    font-size: 40px;
    letter-spacing: -0;
  }
  .success__title {
    font-size: 60px;
  }
  .success__content {
    font-size: 16px;
    padding: 40px;
    width: 575px;
  }
  .person {
    font-size: 16px;
  }
  .person__name {
    font-size: 60px;
  }
  .person__job {
    font-size: 30px;
  }
  .person__info-row {
    padding: 30px 0;
  }
  .person__about {
    padding-bottom: 30px;
  }
}

@media (min-width: 1520px) {
  .wrapper {
    max-width: 1520px;
    padding: 0 20px;
  }
  .header {
    font-size: 16px;
    max-width: 1520px;
  }

  .menu {
    padding: 12px 0;
  }
  .menu__right .menu__item:not(:last-child) {
    margin-right: 40px;
  }
  .menu__left .menu__item:not(:first-child) {
    margin-left: 40px;
  }
  .logo {
    width: 198px;
    margin-top: -12px;
    margin-bottom: -60px;
  }
  .main {
    padding: 150px 0 120px;
  }
  .main .wrapper {
    gap: 80px;
  }
  .main__right {
    width: 63%;
  }
  .main__left {
    width: 37%;
  }
  .main__title {
    font-size: 40px;
  }
  .main__subtitle {
    font-size: 80px;
    letter-spacing: -3.2px;
  }
  .btn {
    font-size: 20px;
    padding: 16px 51px 16px 21px;
  }
  .menu__btn {
    font-size: 16px;
  }
  .about::before,
  .facts::before,
  .partners::before,
  .vacancy::before,
  .contact::before {
    height: 190px;
  }
  .about::before,
  .partners::before,
  .contact::before {
    bottom: -190px;
  }
  .about::after,
  .main::after,
  .facts::after,
  .partners::after,
  .vacancy::after,
  .contact::after {
    height: 150px;
  }
  .about::after,
  .partners::after,
  .contact::after {
    bottom: -150px;
  }
  h3 {
    font-size: 80px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .about {
    padding: 100px 0 50px;
  }
  .about p {
    font-size: 20px;
    margin-bottom: 40px;
  }
  h4 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .about__desc {
    margin-bottom: 50px;
  }
  .advantages__item::before {
    width: 37px;
    height: 33px;
  }
  .advantages__item {
    padding-left: 60px;
  }
  .facts {
    padding: 300px 0;
    font-size: 40px;
  }
  .facts__item:nth-child(1) .facts__value,
  .facts__item:nth-child(2) .facts__value,
  .facts__item:nth-child(3) .facts__value,
  .facts__item:nth-child(4) .facts__value,
  .facts__item:nth-child(5) .facts__value {
    font-size: 80px;
  }
  .facts__item {
    margin-bottom: 40px;
    padding-bottom: 60px;
  }
  .partners {
    padding: 100px 0 50px;
  }
  .slider__comment,
  .slider__name {
    font-size: 20px;
  }
  .partners__slider {
    max-width: 1500px;
  }
  .slider__comment {
    padding: 30px 20px;
  }
  .slider__company {
    font-size: 16px;
  }
  .slider__ava {
    width: 63px;
    height: 63px;
    min-width: 63px;
  }
  .partners__logo {
    width: 96px;
  }
  .partners__logos {
    gap: 50px 245px;
  }
  .vacancy {
    font-size: 20px;
    padding: 300px 0;
  }
  .vacancy__name {
    font-size: 40px;
  }
  .vacancy__btn {
    font-size: 16px;
  }
  .vacancy__item {
    margin-bottom: 40px;
    padding-bottom: 60px;
  }
  .contact__btn {
    font-size: 30px;
  }
  input,
  textarea,
  label {
    font-size: 20px;
  }
  input {
    height: 75px;
  }
  input,
  textarea {
    margin-bottom: 30px;
    padding: 30px;
  }
  label {
    margin-bottom: 15px;
  }
  /*высота первого лейбла+ первого инпута в правом столбец, их марджинов, лейбла для текстареа и их марджина   */
  textarea {
    height: calc(100% - 32px - 15px - 75px - 30px - 32px - 15px);
  }
  .contact {
    padding: 70px 0;
  }
  .contact__item::before {
    width: 38px;
    height: 24px;
  }
  .contact__title {
    margin-bottom: 30px;
  }
  .contact__item {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .socials {
    font-size: 80px;
    padding: 270px 0 170px;
  }
  .socials__link span {
    height: 60px;
    width: 60px;
  }
  .socials__item:not(:last-child) {
    margin-bottom: 60px;
  }
  .footer {
    font-size: 20px;
  }
  .modal__paragraph {
    font-size: 16px;
  }
  .modal__subtitle {
    font-size: 30px;
  }
  .modal__title {
    font-size: 40px;
  }
  .success__title {
    font-size: 80px;
  }
  .success__content {
    font-size: 20px;
    padding: 60px;
    width: 760px;
  }
  .success__btn {
    padding: 16px 21px;
  }
  .person {
    font-size: 20px;
    padding-top: 190px;
  }
  .person__name {
    font-size: 80px;
  }
  .person__job {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
  .person__info-row {
    padding: 40px 0;
  }
  .person__about {
    padding-bottom: 40px;
  }
}
