@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --centerWidth: 100%;
  --bodyBg: #000;
  --textColor: #fff;
  --textColorMuted: #7F7F7F;
  --fontFamily: "Inter Tight", serif;
  --textFont: 400 16px/24px var(--fontFamily);
  --textBtn: 500 46px/1 var(--fontFamily);
  --titleFontH1: 600 72px/normal var(--fontFamily);
  --inputFont: 500 20px/normal var(--fontFamily);
  --placeholderColor: #2D2E2F;
  --border: 1px solid #282727;
  --colorAccent: #43FF33;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2D2E2F;
  padding: 10px 0;
  font: var(--inputFont);
  transition: all 0.3s ease;
}

textarea {
  height: 108px;
  max-width: 100%;
  resize: none;
}

/*main styles*/
body {
  font: var(--textFont);
  color: var(--textColor);
  background: var(--bodyBg);
  position: relative;
  overflow-x: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

::-webkit-input-placeholder {
  color: var(--placeholderColor);
}

:-ms-input-placeholder {
  color: var(--placeholderColor);
}

::-ms-input-placeholder {
  color: var(--placeholderColor);
}

::placeholder {
  color: var(--placeholderColor);
}

.center {
  width: 100%;
  height: inherit;
}

.title__h1 {
  font: var(--titleFontH1);
}

.title__h2 {
  font: var(--titleFontH1);
}

.btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  padding: 0 48px;
  text-align: center;
  cursor: pointer;
  border: none;
  background: var(--colorAccent);
  color: #000;
  border-radius: 0;
  font: var(--textBtn);
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
  z-index: 10;
  transition: all 0.6s ease;
  white-space: nowrap;
}

.btn:hover {
  background: #000;
  color: #fff;
}

.back-action {
  margin: 90px 0;
}

.back-action_link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.back-action_link .icon__back {
  width: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.back-action_link .icon__back svg {
  width: 100%;
  height: auto;
}

/*header*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 48px 40px 0;
}

.header_wrap {
  width: 100%;
  min-width: 65%;
  max-width: 998px;
  margin: 0 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.header_logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 15px;
}

.header_menu-toggle {
  position: relative;
  z-index: 100;
  width: 50px;
  height: 50px;
  color: #fff;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.header_menu-toggle .icon::before,
.header_menu-toggle .icon::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: currentColor;
  left: 0;
  transition: all 0.3s ease;
  -webkit-transform: rotate(0) translate(0, 0);
  transform: rotate(0) translate(0, 0);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.header_menu-toggle .icon::before {
  top: calc(50% - 5px);
}

.header_menu-toggle .icon::after {
  top: calc(50% + 5px);
}

.header_menu {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.3s linear;
  z-index: -1;
}

.header_menu.is-visible {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}

.header_menu-inner {
  width: 46%;
  background: #000;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  padding: 110px 60px 60px 80px;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.header_menu.is-visible .header_menu-inner {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.header_menu-overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.60);
}

.header_menu-logo {
  position: absolute;
  bottom: 60px;
  left: 80px;
}

.header_menu-item {
  min-height: 108px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 40px;
  position: relative;
  font: var(--titleFontH1);
  text-align: left;
  transition: all 0.3s ease;
}

.header_menu-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header_menu-item-icon {
  --iconWidth: 30px;
  width: var(--iconWidth);
  height: var(--iconWidth);
  background: currentColor;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 160px;
  position: relative;
  transition: all 0.3s ease;
}

.header_menu-item-icon:before,
.header_menu-item-icon:after {
  content: '';
  width: calc(var(--iconWidth)/3);
  height: calc(var(--iconWidth)/3);
  background: #000;
  position: absolute;
}

.header_menu-item:hover {
  color: var(--colorAccent);
}

.header_menu-item-icon__1:before {
  right: 0;
  top: 0;
}

.header_menu-item-icon__1:after {
  left: 0;
  bottom: 0;
}

.header_menu-item-icon__2:before {
  display: none;
}

.header_menu-item-icon__2:after {
  right: 0;
  bottom: 0;
}

.header_menu-item-icon__3:before {
  right: 0;
  bottom: 0;
}

.header_menu-item-icon__3:after {
  left: 0;
  top: 0;
}

.header_menu-item-icon__4:before {
  left: 0;
  top: 0;
  height: calc((var(--iconWidth)/3) * 2);
}

.header_menu-item-icon__4:after {
  top: calc(var(--iconWidth)/3);
  right: 0;
}

/*main section*/
.section__main {
  background: #fff;
  overflow: hidden;
  min-height: 100vh;
}

.main {
  min-height: inherit;
  height: 100%;
  position: relative;
  color: #000;
  font: var(--titleFontH1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main_col {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  padding-top: 140px;
}

.main_col__1 {
  width: 54%;
  padding-left: 10%;
  display: -ms-flexbox;
  display: flex;
}

.main_col__2 {
  width: 46%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #000 url(../i/main-bg.png) no-repeat 0 0/cover;
}

.main_title {
  margin: 60px 0 0;
}

.main_title-line__1 {
  display: block;
  margin-left: 120px;
}

.main_text {
  position: relative;
  width: 100vw;
  -webkit-transform: translate(-54%, 0);
  transform: translate(-54%, 0);
  margin-top: auto;
  padding-bottom: 85px;
  z-index: 100;
}

.main_description {
  padding-right: 20%;
  z-index: 10;
  position: relative;
  text-align: right;
  background: linear-gradient(to right, #000 54%, #fff 54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-mask: linear-gradient(to right, white 54%, black 54%);
  mask: linear-gradient(to right, white 54%, black 54%);
}

.main_description::before {
  position: absolute;
  content: '';
  right: 0;
  width: 46%;
  top: 5px;
  height: 98%;
  border-top: 1px solid #7F7F7F;
  border-bottom: 1px solid #7F7F7F;
  z-index: -1;
}

.main_description span {
  white-space: nowrap;
}

.main_description .line__2,
.main_description .line__3 {
  padding-right: 10%;
  display: block;
}

.main_action {
  padding: 0 85px 0 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50%;
  margin-top: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.main_action .btn {
  padding: 0 5px;
}

.main_pic {
  height: 40vh;
  max-height: 650px;
  position: relative;
  padding: 0 104px;
}

.main_pic::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 100%;
  border-top: 1px solid #7F7F7F;
  border-bottom: 1px solid #7F7F7F;
}

.main_img {
  max-width: none;
  height: 100%;
  width: auto;
}

.main_pic-inner {
  height: 100%;
  position: relative;
  border: 1px solid #7F7F7F;
  z-index: 10;
}

.main_badge {
  position: absolute;
  bottom: 40px;
}

.main_badge-img {
  max-width: none;
  -webkit-animation: hithere 6s ease infinite;
  animation: hithere 6s ease infinite;
}

@-webkit-keyframes hithere {
  5% {
    -webkit-transform: rotate(0deg) scale(0.6);
    transform: rotate(0deg) scale(0.6);
  }

  7%,
  11%,
  16% {
    -webkit-transform: rotate(5deg) scale(1);
    transform: rotate(5deg) scale(1);
  }

  9%,
  13% {
    -webkit-transform: rotate(-5deg) scale(1);
    transform: rotate(-5deg) scale(1);
  }

  18%,
  100% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}

@keyframes hithere {
  5% {
    -webkit-transform: rotate(0deg) scale(0.6);
    transform: rotate(0deg) scale(0.6);
  }

  7%,
  11%,
  16% {
    -webkit-transform: rotate(5deg) scale(1);
    transform: rotate(5deg) scale(1);
  }

  9%,
  13% {
    -webkit-transform: rotate(-5deg) scale(1);
    transform: rotate(-5deg) scale(1);
  }

  18%,
  100% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}

/*section divider*/
.section__divider {
  border-bottom: 1px solid #FFF;
  text-align: center;
  padding: 20px 0;
}

.section__divider-2 {
  border-right: 5px solid #fff;
  border-left: 5px solid #fff;
}

/*about us*/
.section__about-us {
  border-right: 5px solid #fff;
  border-left: 5px solid #fff;
  padding: 75px 0 85px;
}

.about-us {
  max-width: 648px;
  margin-left: 40%;
}

.about-us_title {
  margin-bottom: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about-us_title span {
  font: var(--textFont);
  margin: 9px 14px 0 0;
}

.about-us_description p {
  margin-bottom: 10px;
}

.about-us_description p:last-child {
  margin-bottom: 0;
}

/*section services*/
.section__services {
  padding: 14px 0 0;
  border-right: 5px solid #fff;
  border-left: 5px solid #fff;
}

.services_subtitle {
  margin-bottom: 40px;
}

.services_title {
  margin-bottom: 45px;
}

.services_item {
  padding: 45px 0;
  border-top: 1px solid #7F7F7F;
  position: relative;
}

.services_item-text {
  max-width: 648px;
  margin-left: 40%;
  font-size: 20px;
  line-height: 28px;
  color: var(--textColorMuted);
  font-weight: 500;
}

.services_item-text .is-highlighted {
  color: var(--textColor);
}

.services_item-icon {
  --iconWidth: 30px;
  width: var(--iconWidth);
  height: var(--iconWidth);
  background: currentColor;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 160px;
  position: relative;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 0;
}

.services_item-icon:before,
.services_item-icon:after {
  content: '';
  width: calc(var(--iconWidth) / 3);
  height: calc(var(--iconWidth) / 3);
  background: #000;
  position: absolute;
}

.services_item-icon__1:before,
.services_item-icon__6:before {
  display: none;
}

.services_item-icon__1:after,
.services_item-icon__6:after {
  right: 0;
  bottom: 0;
}

.services_item-icon__2:before {
  right: 0;
  top: 0;
}

.services_item-icon__2:after {
  left: 0;
  bottom: 0;
}

.services_item-icon__3:before {
  display: none;
}

.services_item-icon__3:after {
  right: 0;
  bottom: 0;
  height: calc((var(--iconWidth) / 3) * 2);
}

.services_item-icon__4:before {
  right: 0;
  bottom: 0;
}

.services_item-icon__4:after {
  left: 0;
  top: 0;
}

.services_item-icon__5:before {
  left: 0;
  top: 0;
  height: calc((var(--iconWidth) / 3) * 2);
}

.services_item-icon__5:after {
  top: calc(var(--iconWidth) / 3);
  right: 0;
}

.services_item-icon__7:before {
  left: calc(var(--iconWidth) / 3);
  top: calc(var(--iconWidth) / 3);
}

.services_item-icon__7:after {
  bottom: 0;
  right: 0;
}

/*section career*/
.section__career {
  border-right: 5px solid #fff;
  border-left: 5px solid #fff;
}

.career_title {
  padding: 6px 0;
  background: #fff;
  color: #000;
  text-align: center;
  overflow: hidden;
}

.career_title-inner {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100vw;
}

.career_description {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.career_title-inner span {
  margin-right: 40px;
  -webkit-animation: 42s line infinite linear;
  animation: 42s line infinite linear;
}

.career_title-inner:hover span {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes line {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes line {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.career_info {
  background: #D9D9D9;
  padding: 90px 0;
  font-weight: 500;
  color: #000;
}

.career_info-inner {
  max-width: 648px;
  margin-left: 40%;
  position: relative;
}

.career_action {
  position: absolute;
  right: 100%;
  top: 0;
  z-index: 10;
  margin-right: 264px;
}

/*section news*/
.section__news {
  position: relative;
  padding: 70px 0;
  border-right: 5px solid #fff;
  border-left: 5px solid #fff;
}

.news {
  max-width: 648px;
  margin-left: 40%;
}

.news_logo {
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 10;
}

.news_title {
  margin-bottom: 45px;
}

.news_details {
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news_description {
  max-width: 360px;
  line-height: 28px;
  font-size: 20px;
}

/*contact us*/
.contact-us {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-us.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 2000;
}

.contact-us_window {
  background: #fff;
  color: #000;
  width: 100%;
  max-width: 480px;
  padding: 100px;
  position: relative;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.contact-us.is-visible .contact-us_window {
  -webkit-transform: scale(1);
  transform: scale(1);
}

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

.contact-us_close::before,
.contact-us_close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 20px;
  background: currentColor;
}

.contact-us_close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contact-us_close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.contact-us_title {
  font-size: 46px;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact-us-custom-field {
  margin-bottom: 30px;
}

.contact-us-custom-field label {
  color: #2D2E2F;
}

.contact-us-custom_success {
  display: none;
  font-size: 46px;
  line-height: normal;
  font-weight: 500;
}

.is-success .contact-us-custom_success {
  display: block;
}

.contact-us-custom-field_error {
  color: red;
  margin-top: 2px;
  font-size: 12px;
}

.contact-us-custom_button {
  width: 100%;
}

.contact-us_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.60);
}

/*static page*/
.body__static-page {
  background: #fff;
}

.section__static-page {
  background: #fff;
  color: #000;
  padding-bottom: 40px;
}

.section__static-page .center {
  max-width: 1730px;
  width: calc(100% - 160px);
  margin: 0 auto;
}

.static-page p {
  margin-bottom: 20px;
}

.static-page h1 {
  margin-bottom: 40px;
  font: var(--titleFontH1)
}

.static-page h2 {
  margin: 40px 0 20px;
  font-size: 32px;
  font-weight: 600;
}

.static-page ul {
  margin-bottom: 20px;
}

.static-page li {
  margin-bottom: 10px;
  list-style: disc;
  list-style-position: inside;
}

.static-page a {
  text-decoration: underline;
}

.body__static-page .footer {
  background: #000;
}

.body__static-page .footer_pic {
  -webkit-transform: translate(0, 0) scale(0.8);
  transform: translate(0, 0) scale(0.8);
}

/*error page*/
.body__error {
  background: url(../i/error-bg.png) no-repeat 0 0/cover;
}

.body__error .header {
  position: relative;
  padding: 42px 24px 24px;
  border-bottom: 1px solid #7F7F7F;
}

.body__error .header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 120px);
  background: #7F7F7F;
  height: 1px;
}

.body__error .header_wrap {
  margin: 0 auto;
}

.body__error .header_logo {
  position: static;
}

.error-block_title {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid #7F7F7F;
  border-bottom: 1px solid #7F7F7F;
}

.error-block_action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 64px 24px;
  border-bottom: 1px solid #7F7F7F;
  background: #000;
}

.error-block_action .btn {
  padding: 0 5px;
}

.section__error {
  padding: 240px 0;
  min-height: 100vh;
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/*footer*/
.footer {
  background: #000;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  margin-top: auto;
  padding: 90px 0 220px;
  position: relative;
  z-index: 10;
  background: #000 url(../i/footer-bg.svg) no-repeat center bottom/100% auto;
}

.footer_pic {
  position: absolute;
  right: 65%;
  top: 0;
  z-index: -1;
  width: 675px;
  -webkit-transform: translate(0, -32%);
  transform: translate(0, -32%);
}

@-webkit-keyframes bounceInDown {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  10% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

  12% {
    -webkit-transform: translateY(-7%);
    transform: translateY(-7%);
  }

  14%,
  18% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  16%,
  20% {
    -webkit-transform: translateY(-3%);
    transform: translateY(-3%);
  }

  22%,
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes bounceInDown {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  10% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }

  12% {
    -webkit-transform: translateY(-7%);
    transform: translateY(-7%);
  }

  14%,
  18% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  16%,
  20% {
    -webkit-transform: translateY(-3%);
    transform: translateY(-3%);
  }

  22%,
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.footer_pic-inner {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  -webkit-animation: bounceInDown 10s linear infinite;
  animation: bounceInDown 10s linear infinite;
}

.footer_img {
  width: auto;
  height: auto;
  max-width: none;
}

.footer_pic-text {
  position: absolute;
  top: 248px;
  left: 100%;
  -webkit-transform: translate(-28px, 0);
  transform: translate(-28px, 0);
  white-space: nowrap;
  font-size: 16px;
}

.footer_wrap {
  max-width: 648px;
  margin-left: 40%;
}

.footer_menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_menu-item {
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer_menu-item:hover {
  opacity: 0.8;
}

.footer_menu-items__secondary {
  color: var(--textColorMuted);
  width: 62%;
}

.social_link-type {
  color: var(--textColorMuted);
}

.social_link-name {
  font-size: 46px;
  font-weight: 500;
  display: block;
  margin-top: 10px;
  line-height: normal;
}

.copyright_block {
  margin-top: 90px;
}

.copyright {
  margin-top: 90px;
  font-weight: 500;
}