@import url(./blocks/global.css);

@font-face {
  font-family: "Modulord";
  src: url("../fonts/Modulord.eot");
  src: url("../fonts/Modulord.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Modulord.woff") format("woff"),
    url("../fonts/Modulord.woff2") format("woff2"),
    url("../fonts/Modulord.ttf") format("truetype"),
    url("../fonts/Modulord.svg#Modulord") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OffBit";
  src: url("../fonts/OffBit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: Bold;
}
@font-face {
  font-family: "OffBit-dot";
  src: url("../fonts/OffBit-DotBold.ttf") format("truetype");
  font-weight: 700;
  font-style: Dot Bold;
}
@font-face {
  font-family: "OffBit";
  src: url("../fonts/OffBit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "OffBit";
  src: url("../fonts/OffBit-Dot.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Regular.eot");
  src: url("../fonts/SF-Pro-Display-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/SF-Pro-Display-Regular.woff") format("woff"),
    url("../fonts/SF-Pro-Display-Regular.woff2") format("woff2"),
    url("../fonts/SF-Pro-Display-Regular.ttf") format("truetype"),
    url("../fonts/SF-Pro-Display-Regular.svg#SF Pro Display Regular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-accent: #1cdb66;
  --color-accent-dark: #17b152;
  --color-text-grey: #4c4c4c;
  --color-chart: #191919;
  --color-file-btn: #6d6d6d;
  --color-file-btn-hover: #5c5c5c;

  --color-white: #ffffff;
  --color-black: #000000;

  --transition: 0.3s ease-in;

  --font-family-logo: "Modulord";
  --font-family-body: "OffBit";
  --font-family-card: "SF Pro Display";
}
body {
  color: var(--color-white);
  background-color: var(--color-black);
}
body,
a,
.footer__file {
  font-family: var(--font-family-body);
  font-size: clamp(14px, 1.3vw, 200px);
}
.vacancy__content .error-not p,
.footer__item-wrapper .error-not p {
  opacity: 0;
  font-size: 0.8em;
  margin-top: 0.4em;
  margin-bottom: 0.7em;
  transition: opacity var(--transition);
}
.vacancy__content .error p,
.footer__form-block .error p,
.footer__item-wrapper .error p {
  color: red;
  opacity: 1;
}
.title {
  font-family: var(--font-family-logo);
  font-size: 3.789em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.btn {
  position: relative;
  font-weight: 700;
  padding: 0.8em 0.6em;
  font-family: var(--font-family-body);
  background-color: transparent;
  transition: background-color var(--transition);
}
.btn--accent:hover {
  background-color: #1cdb664d;
}
.btn--accent,
.title span,
.info__text p span {
  color: var(--color-accent);
}
.btn__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.btn__bg::before,
.btn__bg::after {
  content: "";
  position: absolute;
  width: 0.55em;
  aspect-ratio: 1 / 1;
  background-image: url("../svg/design/icon-btn-bg-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.btn--accent .btn__bg::before,
.btn--accent .btn__bg::after {
  background-image: url("../svg/design/icon-btn-bg.svg");
}
.btn--dark .btn__bg::before,
.btn--dark .btn__bg::after {
  background-image: url("../svg/design/icon-btn-bg-black.svg");
}
.btn__bg.error:not(.btn__bg--color) .btn__bg--2::before,
.btn__bg.error:not(.btn__bg--color) .btn__bg--2::after,
.btn__bg.error:not(.btn__bg--color)::before,
.btn__bg.error:not(.btn__bg--color)::after {
  background-image: url("../svg/design/icon-btn-bg-error.svg");
}
/* top-left */
.btn__bg::before {
  top: 0;
  left: 0;
  transform: rotate(180deg);
}
/* bottom-right */
.btn__bg::after {
  bottom: 0;
  right: 0;
}
/* top-right */
.btn__bg--2::before {
  top: 0;
  right: 0;
  left: unset;
  transform: rotate(270deg);
}
/* bottom-left */
.btn__bg--2::after {
  bottom: 0;
  right: unset;
  left: 0;
  transform: rotate(90deg);
}
.main-hero {
  height: 100vh;
  position: relative;
  z-index: 7;
}
.header {
  padding: 2.4em 0 0.9em;
  width: 100%;
  background-color: var(--color-black);
}
.header__wrapper,
.header__decor,
.header__list,
.hero__wrapper,
.hero__content-text,
.info__chart-top,
.info__left-bg-block--top,
.info__chart-bottom,
.info__bottom-line,
.statistics__blocks,
.statistics__item,
.vacancy__preview-img,
.vacancy__btn,
.vacancy__btn-block,
.vacancy__form button,
.vacancy__list,
.footer__file,
.footer__decor-wrapper,
.footer__mail,
.vacancy__mobil-btn,
.vacancy__form-submit-block,
.footer__form-submit-block {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__logo,
.vacancy__hidden-mobil-btn,
.vacancy__mibil-btn-block {
  display: none;
}
.header__inner,
.header__wrapper,
.header__decor {
  display: grid;
  justify-content: space-between;
  align-items: center;
}
.header__inner,
.header__wrapper {
  grid-template-columns: 1fr auto;
}
.header__inner {
  gap: 1.45em;
}
.header__decor {
  grid-template-columns: auto 1fr;
}
.header__decor {
  gap: 1em;
}
.header__wrapper {
  width: 100%;
  gap: 1.4em;
}
.header__list {
  gap: 0.8em;
}
.header__item a {
  color: var(--color-white);
  padding: 0.6em;
  display: flex;
  transition: color var(--transition);
}
.header__item a:hover {
  color: var(--color-accent);
}
.header__decor-border {
  position: relative;
  max-width: 89.6%;
  width: 100%;
  height: 0.4em;
  overflow: hidden;
}
.header__decor-border::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../svg/design/icon-planet-bg.svg");
  background-repeat: repeat-x;
  background-size: 0.8em 0.4em;
}
.header__decor-icon {
  width: 2.5em;
  aspect-ratio: 1 / 1;
}
.hero {
  height: 78%;
}
.hero__wrapper {
  position: relative;
  padding: 1.5em 0;
  width: 100%;
  justify-content: center;
  max-height: 100%;
  height: 100%;
}
.hero__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10.2em;
  height: 4.7em;
}
.hero__content {
  position: absolute;
  bottom: 1.2em;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 2.55em;
}
.hero__title-wrapper {
  position: relative;
  padding: 6.45em 2.3em 1.3em;
}
.hero__title-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__title-bg img {
  position: absolute;
  z-index: -1;
}
.hero__title-bg img:nth-child(1) {
  top: 2.7em;
  left: 5.1em;
  width: 7.2em;
  height: 1.2em;
}
.hero__title-bg img:nth-child(2) {
  top: 0;
  right: 6.05em;
  width: 2.4em;
  height: 6em;
}
.hero__title-bg img:nth-child(3) {
  bottom: 1.45em;
  right: 0;
  width: 6em;
  height: 2.4em;
}
.hero__title-bg img:nth-child(4) {
  bottom: 0;
  left: 0;
  width: 2.4em;
  height: 6em;
}
.hero__title {
  font-size: clamp(3.33em, 11.99vw, 20.33em);
  font-weight: 700;
  -webkit-text-stroke-width: 0.03em;
  -webkit-text-stroke-color: var(--color-black);
  text-align: center;
}
.hero__img {
  width: 40%;
  position: absolute;
  top: 6%;
}
.hero__title-wrapper p {
  font-size: clamp(0.7em, 1.7vw, 1.41em);
  position: absolute;
  bottom: 1.39em;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
}
.hero__title-wrapper p span {
  opacity: 0.5;
}
.hero__content-text {
  width: 100%;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero__content-text p {
  font-size: clamp(1.2em, 1.5vw, 2.3em);
  text-align: center;
  font-weight: 700;
  max-width: 19em;
}
.hero__bg {
  position: absolute;
  z-index: -1;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
}
.info {
  position: relative;
  padding: 0.212em 2.45em 0.525em 1.35em;
  margin-top: -5em;
}
.info__wrapper-bg * {
  font-family: monospace !important;
}
.decoder-text {
  font-family: monospace;
  white-space: pre;
}
.info__wrapper-bg {
  display: grid;
  grid-template-columns: auto 1fr auto;
  font-weight: 700;
  opacity: 0.2;
  text-transform: uppercase;
  justify-items: end;
  align-items: center;
  gap: 1.25em;
  height: 39em;
  letter-spacing: 0.2em;
}
.info__rigth-bg,
.info__right-bg-block,
.info__left-bg,
.info__chart-block,
.info__chart-text-block,
.info__top-line,
.info__line-block,
.info__wrapper,
.info__block-top,
.info__block-bottom,
.info__text,
.statistics__wrapper,
.statistics__list,
.card__preview,
.card__content,
.vacancy__preview,
.vacancy__preview-text,
.vacancy__content,
.vacancy__top-text-block,
.vacancy__top-title-block,
.vacancy__form,
.vacancy__bottom,
.vacancy__list-wrapper,
.vacancy__text-list,
.vacancy__input-wrapper,
.footer__wrapper,
.footer__inner,
.footer__content,
.footer__top-content,
.footer__form,
.footer__form-block,
.card__wrapper {
  display: flex;
  flex-direction: column;
}
.info__rigth-bg {
  padding-right: 1.6em;
  border-right: 0.05em solid var(--color-white);
  line-height: 1.4;
}
.info__rigth-bg p {
  font-size: 0.625em;
}
.info__right-bg-block {
  gap: 0.95em;
  width: 5.95em;
}
.info__right-bg-block:nth-child(1) {
  padding-bottom: 0.7255em;
  border-bottom: 0.05em solid var(--color-white);
  margin-bottom: 0.95em;
}
.info__right-bg-block:nth-child(2) {
  padding-bottom: 0.65em;
  border-bottom: 0.05em dashed var(--color-white);
  margin-bottom: 0.85em;
}
.info__right-bg-block span {
  display: block;
  text-align: center;
}
p.info__right-text-min {
  font-size: 0.502em;
}
p.info__right-text-big {
  font-size: 0.952em;
}
.info__left-bg {
  border-left: 0.05em solid var(--color-white);
  padding-left: 1.6em;
  line-height: 1.4;
  width: 9.05em;
  height: 26.8em;
}
.info__left-bg p {
  font-size: 0.625em;
}
.info__left-bg-block--top .info__text-block:nth-child(1) p {
  font-size: 1.252em;
}
.info__left-bg-block--top .info__text-block:nth-child(2) p {
  font-size: 0.502em;
}
.info__text-block--min p {
  font-size: 0.552em;
}
.info__left-bg-block:not(:last-child) {
  padding-bottom: 0.5em;
  border-bottom: 0.05em dashed var(--color-white);
}
.info__left-bg-block:nth-child(2) {
  border-bottom: 0.05em solid var(--color-white);
}
.info__left-bg-block:not(:first-child) {
  padding-top: 0.6em;
}
.info__text-block--min {
  padding-bottom: 0.3em;
  padding-top: 0.4em;
}
.info__left-bg-block--top {
  gap: 0.5em;
  padding-bottom: 0.7em;
}
.info__center-bg {
  width: 52.56vw;
  height: 100%;
  position: relative;
}
.info__center-text-block {
  border: 0.05em solid var(--color-white);
  position: absolute;
  background-color: var(--color-black);
  z-index: 2;
}
.info__center-inner--1 .info__center-text-block {
  padding: 1.05em 1.1265em;
  top: 0;
  right: 0;
  width: 9.9em;
  height: 7em;
}
.info__center-inner--2 .info__center-text-block {
  padding: 0.9em 0.5975em;
  bottom: 0;
  left: 0;
  width: 9em;
  height: 6.9em;
}
.info__center-inner--3 .info__center-text-block {
  padding: 0.4695em 0.925em 0.4695em 0.725em;
  bottom: 0;
  right: 0;
}
.info__center-inner,
.info__disk {
  position: absolute;
}
.info__center-inner--1 {
  width: 19.45em;
  height: 15.975em;
  top: 0.05em;
  right: 4.65em;
}
.info__center-inner--1 p {
  font-size: 0.6875em;
}
.info__center-inner--1::after {
  content: "";
  position: absolute;
  right: 0;
  top: 93%;
  width: 0.05em;
  height: 100%;
  background: var(--color-white);
  transform-origin: top right;
  transform: translateY(-50%) rotate(20deg);
}
.info__center-inner--2 {
  width: 17.325em;
  height: 13.6em;
  bottom: 3.512em;
  left: 14em;
}
.info__center-inner--2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.05em;
  height: 80%;
  background: var(--color-white);
}
.info__center-inner--2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 80%; /* height from ::before */
  width: 0.05em;
  height: 104%;
  background: var(--color-white);
  transform-origin: bottom right;
  transform: rotate(78deg);
}
.info__center-inner--2 p {
  font-size: 0.7285em;
}
.info__center-inner--3 {
  width: 10.125em;
  height: 12.65em;
  bottom: 0.8em;
  right: 0;
}
.info__center-inner--3::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.05em;
  height: 85%;
  background: var(--color-white);
}
.info__center-inner--3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 85%; /* height from ::before */
  width: 0.05em;
  height: 30%;
  background: var(--color-white);
  transform-origin: bottom left;
  transform: rotate(300deg);
}
.info__center-inner--3 p {
  font-size: 0.625em;
}
.info__disk-wrapper {
  position: absolute;
  right: 1.35em;
  bottom: 9.8em;
  width: 14.42em;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.info__disk {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 14.42em;
  aspect-ratio: 1 / 1;
  overflow: hidden;

  animation: spin 20s linear infinite;
  transform-origin: center center;

  /* border */
  background: repeating-conic-gradient(
    var(--color-white) 0deg 5deg,
    transparent 5deg 15deg
  );
  background-size: cover;
  -webkit-mask-image: radial-gradient(
    circle,
    transparent 70%,
    var(--color-white) 5%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle,
    transparent 70%,
    var(--color-white) 5%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 2;
}
.info__disk-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  z-index: -2;
}
.info__disk-wrapper img {
  position: relative;
  z-index: 2;
  width: 7.5em;
  height: 8.7em;
}
.info__center-inner p span {
  display: block;
  text-align: right;
}
.info__chart-block {
  gap: 0.6855em;
}
.info__chart-block p {
  font-size: 0.652em;
}
.info__chart-top {
  gap: 0.9855em;
}
.info__top-line {
  position: relative;
  width: 2.6075em;
  height: 2.7705em;
  border-left: 0.0815em solid var(--color-white);
  gap: 0.5705em;
  justify-content: center;
}
.info__top-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: repeating-linear-gradient(
      to bottom,
      white 0,
      white 0.25em,
      transparent 0.25em,
      transparent 0.45em
    ),
    repeating-linear-gradient(
      to bottom,
      white 0,
      white 0.25em,
      transparent 0.25em,
      transparent 0.45em
    ),
    repeating-linear-gradient(
      to bottom,
      white 0,
      white 0.25em,
      transparent 0.25em,
      transparent 0.45em
    );
  background-size: 0.05em 100%, 0.05em 100%, 0.05em 100%;
  background-position: 25% 0, 50% 0, 75% 0;
  background-repeat: no-repeat;
  pointer-events: none;
}
.info__top-line span {
  height: 0.326em;
  display: block;
  background-color: var(--color-white);
  animation: pulseWidth 3s ease-in-out infinite alternate;
}
.info__top-line span:nth-child(1) {
  max-width: 1.8745em;
  animation-delay: 0s;
}
.info__top-line span:nth-child(2) {
  max-width: 0.978em;
  animation-delay: 0.3s;
}
.info__top-line span:nth-child(3) {
  max-width: 1.8745em;
  animation-delay: 0.6s;
}
.info__chart-bottom {
  gap: 0.3em;
}
.info__bottom-line {
  position: relative;
  border: 0.0815em solid var(--color-white);
  width: 5.623em;
  height: 1.6295em;
}
.info__bottom-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: repeating-linear-gradient(
    to right,
    white,
    white 0.05em,
    transparent 0.05em,
    transparent calc(100% / 12)
  );
  pointer-events: none;
  z-index: -1;
}
.info__line-block {
  background-color: var(--color-black);
  padding: 0.163em 0;
  width: 100%;
}
.info__line-block span {
  max-width: 4.156em;
  height: 0.8149em;
  background-color: var(--color-white);
  animation: pulseWidth 3s ease-in-out infinite alternate;
  animation-delay: 0.45s;
}
@keyframes pulseWidth {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.info__wrapper {
  position: absolute;
  width: 100%;
  top: 30%;
  left: 54.4%;
  transform: translateX(-50%);
  gap: 2.6em;
  z-index: 4;
}
.info__wrapper p {
  font-weight: 700;
}
.info__block-top {
  gap: 0.8em;
}
.info__block-bottom {
  gap: 1.4em;
  line-height: 1.4;
  transform: scaleY(1.2);
  letter-spacing: 0.05em;
}
.info__block-top p {
  font-size: 1.6em;
}
.info__block-bottom p {
  font-size: 1em;
}
.statistics {
  padding: 0.7em 0 4.1em;
}
.statistics__wrapper {
  gap: 2.7em;
}
.statistics__marker {
  opacity: 0.2;
  line-height: 1;
  font-size: 2em;
  font-weight: 700;
  width: 100%;
  overflow: hidden;
}
.statistics__list {
  gap: 2.35em;
}
.statistics__item {
  gap: 1.3em;
  width: 100%;
  line-height: 0.7;
  justify-content: flex-start;
}
.statistics__content {
  gap: 1.16em;
  align-items: flex-end;
  display: grid;
  grid-template-columns: 1fr auto auto;
  width: 69.2%;
}
.statistics__item--2 .statistics__content {
  grid-template-columns: auto auto 1fr;
}
.statistics__blocks {
  position: relative;
  gap: 0.9em;
}
.statistics__item--1 .statistics__blocks:nth-child(1) {
  display: none;
}
.statistics__blocks::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.25em;
  background-color: var(--color-chart);
}
.statistics__block {
  background-color: var(--color-chart);
  height: 3.55em;
  width: 4.28em;
}
.statistics__item--2 .statistics__blocks {
  display: grid;
  grid-template-columns: 1fr auto auto;
}
.statistics__item--2 .statistics__blocks .statistics__block:nth-child(1) {
  width: 100%;
}
.statistics__block--accent {
  background-color: var(--color-white);
  width: 100%;
}
.statistics__item--2 .statistics__block--accent {
  width: 6.25em;
}
.statistics__item p {
  font-size: 3.627em;
  white-space: nowrap;
}
.statistics__item--3 p {
  font-size: 3.05em;
}
.statistics__content span {
  color: var(--color-accent);
  font-size: 4.578em;
  font-weight: 700;
  align-items: flex-end;
}
.card {
  padding: 0 0 1em;
}
.card__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: var(--color-black);
}
.card__preview {
  border: 0.05em solid #0f0f0f;
  padding: 1em;
  z-index: 2;
  justify-content: space-between;
}
.card__preview h3 {
  color: #4c4c4c;
  font-size: 2em;
}
.card__item {
  min-height: 9.85em;
  perspective: 50em;
  cursor: pointer;
}
.card__item h3 {
  font-weight: 700;
}
.card__preview img {
  width: 3em;
  aspect-ratio: 1 / 1;
  margin-left: auto;
}
.card__content {
  position: relative;
  border: 0.05em solid var(--color-white);
  padding: 1em;
  transform: rotateY(180deg);
  z-index: 3;
  gap: 0.6em;
}
.card__content-top img {
  display: none;
}
.card__content h3 {
  color: var(--color-accent);
  font-size: 1.6em;
}
.card__content p {
  font-family: var(--font-family-card);
  font-size: 0.7em;
}
.card__wrapper {
  gap: 3em;
}
.card__wrapper h2 {
  font-size: 2em;
}
.card__content::after,
.card__content::before,
.card__marker::after,
.card__marker::before {
  content: "";
  position: absolute;
  width: 0.55em;
  aspect-ratio: 1 / 1;
  background-color: #d9d9d9;
}
.card__content::after {
  right: 0;
  top: 0;
  transform: translate(+50%, -50%);
}
.card__content::before {
  right: 0;
  bottom: 0;
  transform: translate(+50%, +50%);
}
.card__marker {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.card__marker::after {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}
.card__marker::before {
  left: 0;
  bottom: 0;
  transform: translate(-50%, +50%);
}
.card__item-inner {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  position: relative;
}
.card__preview,
.card__content {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 9.5em;
  pointer-events: none;
}
.card__item.flip .card__item-inner {
  transform: rotateY(180deg);
}
.vacancy {
  position: relative;
}
.vacancy__bg-block {
  position: absolute;
  top: -8%;
  right: 4.5em;
  width: 58.6%;
  height: 39.8em;
  z-index: -1;
}
.vacancy__img {
  width: 100%;
  height: 100%;
  object-position: top;
}
.vacancy__radar-wrapper {
  position: absolute;
  top: 25.2%;
  right: 29.5%;
  height: 12.7em;
  width: 14em;
  overflow: visible;
}
.vacancy__radar-wrapper::before {
  position: absolute;
  top: 40%;
  left: 71%;
  content: "";
  border-radius: 50%;
  width: 0.4em;
  aspect-ratio: 1 / 1;
  background-color: var(--color-accent);
  animation: pulse 1.8s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
.vacancy__radar {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: 6.145em 11.31em;
  animation: spin 13s linear infinite, blink 2s ease-in-out infinite;
  transform: translateY(0%) rotate(0deg);
}
@keyframes spin {
  0% {
    transform: translateY(0%) rotate(0deg);
  }
  100% {
    transform: translateY(0%) rotate(360deg);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.vacancy__title-block {
  padding: 2.8em 0 6.2em;
}
.vacancy__title {
  font-size: 7em;
  width: 50%;
  line-height: 0.9;
}
.vacancy__preview {
  gap: 1.6em;
  width: 13.37em;
  cursor: pointer;
}
.vacancy__preview-img {
  position: relative;
  padding: 1.4em 2.1em;
}
.vacancy__border {
  position: absolute;
  top: 0;
  height: 100%;
}
.vacancy__border--left {
  left: 0;
}
.vacancy__border--right {
  right: 0;
}
.vacancy__preview-text {
  gap: 0.2em;
  font-weight: 700;
}
.vacancy__preview-text h3 {
  font-size: 1.6em;
}
.vacancy__preview-text p {
  color: var(--color-accent);
  font-size: 0.8em;
}
.vacancy__btn {
  color: var(--color-white);
}
.vacancy__btn:hover svg {
  color: var(--color-accent);
  background-color: #ffffff1a;
}
.vacancy__btn span {
  font-size: 1.2em;
  opacity: 0.5;
  font-weight: 700;
}
.vacancy__btn-block,
.vacancy__btn {
  gap: 0.8em;
}
.vacancy__btn-block {
  justify-content: space-between;
}
.vacancy__btn svg {
  width: 2.3em;
  aspect-ratio: 1 / 1;
  transition: color var(--transition), background-color var(--transition);
}
.vacancy__content {
  gap: 1.4em;
  font-weight: 700;
  width: 43.3em;
}
.vacancy__content p {
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.5;
}
.vacancy__top-text-block {
  gap: 1em;
}
.vacancy__top-title-block {
  gap: 0.6em;
  color: var(--color-accent);
}
.vacancy__top-title-block span {
  font-size: 0.8em;
}
.vacancy__top-title-block h3 {
  font-size: 2.3em;
}
.vacancy__list-wrapper {
  gap: 1.6em;
}
.vacancy__text-list {
  gap: 1.4em;
}
.vacancy__form {
  justify-content: space-between;
  height: 100%;
}
.vacancy__description {
  position: relative;
  background-color: #161616cc;
  backdrop-filter: blur(1.8em);
  padding: 2em 2em 0;
  display: grid;
  grid-template-columns: 57.71% auto;
  gap: 2em 1.6em;
}
.vacancy__top-form {
  width: 100%;
}
.vacancy__form-submit-block,
.footer__form-submit-block {
  width: 100%;
  height: 100%;
  color: var(--color-accent);
  justify-content: center;
}
.footer__form-submit-block {
  min-height: 20em;
}
.footer__form-submit-block h3 {
  font-size: 1.5em;
}
.vacancy__form-item {
  padding: 0 !important;
}
.vacancy__form-item input {
  padding: 0.8em 0.6em;
  background-color: var(--color-white);
  opacity: 0.5;
  border: transparent;
  width: 100%;
  transition: opacity var(--transition);
}
.vacancy__form-item input:hover {
  opacity: 0.7;
}
.vacancy__form-item input:active,
.vacancy__form-item input:focus {
  opacity: 1;
}
.vacancy__form button {
  padding: 0.8em;
  color: var(--color-white);
  justify-content: center;
  width: 100%;
  background-color: transparent;
  transition: background-color var(--transition);
}
.vacancy__form button:hover {
  background-color: #ffffff4d;
}
.vacancy__bottom {
  padding: 1.5em 0 1.6em;
  border-top: 0.1em solid #ffffff20;
  gap: 1.4em;
  grid-column: span 2;
}
.vacancy__bottom span {
  opacity: 0.5;
  font-size: 0.7em;
  font-weight: 400;
}
span.vacancy__bottom-text {
  text-align: right;
  font-size: 0.8em;
}
.vacancy__text-item {
  position: relative;
  padding-left: 0.85em;
}
.vacancy__text-item::before {
  position: absolute;
  content: "";
  background-color: var(--color-accent);
  width: 0.25em;
  aspect-ratio: 1 / 1;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
}
.vacancy__inner {
  padding: 0 1.9em 1.9em;
}
.vacancy__list {
  justify-content: center;
  align-items: flex-start;
  gap: 1.6em;
}
.vacancy__preview-figure {
  width: 9.8em;
  height: 11.2em;
}
.vacancy__item {
  transition: opacity var(--transition);
  opacity: 1;
}
.vacancy--fading {
  opacity: 0;
}
.vacancy__mobil-btn {
  color: var(--color-white);
  justify-content: center;
  width: 100%;
}
.vacancy__hidden-mobil-btn {
  opacity: 0.5;
  color: var(--color-white);
  font-size: 0.8em;
  border-bottom: 0.07em dashed var(--color-white);
  width: max-content;
  margin: 0 auto;
}
.footer__file {
  padding: 0.8em;
  background-color: var(--color-file-btn);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  gap: 0.5em;
  text-decoration: none;
  font-weight: 700;
  transition: background-color var(--transition);
  justify-content: center;
  margin-top: 1.1em;
}
.footer__file:hover {
  background-color: var(--color-file-btn-hover);
}
input[type="file"] {
  display: none;
}
.footer {
  position: relative;
  padding: 7.1em 0 2.6em;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../svg/footer/icon-footer-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__wrapper {
  position: relative;
  z-index: 3;
  gap: 3.44em;
}
.footer__inner {
  gap: 1.6em;
  align-items: center;
}
.footer__top-content {
  gap: 1.5em;
  align-items: center;
  max-width: 31.25em;
  line-height: 1;
}
.footer__top-content img {
  width: 10.25em;
  height: 4.6em;
}
.footer__top-content h3 {
  font-weight: 700;
  font-size: 3em;
  text-align: center;
}
.footer__form-wrapper {
  position: relative;
  padding: 0 7.37em 0 6.45em;
}
.footer__bg-form {
  position: absolute;
  top: 3.05em;
}
.footer__bg-form--left {
  left: 0;
}
.footer__bg-form--right {
  right: 0;
}
.footer__bg-form--left {
  width: 3.78em;
  height: 14em;
}
.footer__bg-form--right {
  width: 4.85em;
  height: 14em;
}
.footer__form-block {
  gap: 1.2em;
  width: 20.02em;
}
.footer__decor-wrapper {
  justify-content: space-between;
}
.footer__decor-block {
  position: relative;
  width: 4.7em;
}
.footer__decor-block::after {
  position: absolute;
  content: "";
  height: 0.5em;
  width: 0.075em;
  background-color: var(--color-file-btn);
  opacity: 0.4;
}
.footer__decor-block--1::after {
  bottom: 0;
  left: 0;
}
.footer__decor-block--2::after {
  bottom: 0;
  right: 0;
}
.footer__decor-block--3::after {
  top: 0;
  left: 0;
}
.footer__decor-block--4::after {
  top: 0;
  right: 0;
}
.footer__decor-block--1,
.footer__decor-block--2 {
  padding-bottom: 0.41em;
}
.footer__decor-block--3,
.footer__decor-block--4 {
  padding-top: 0.41em;
}
.footer__decor-block::after {
  position: absolute;
}
.footer__decor-block span {
  font-weight: 700;
  font-size: 0.59em;
  opacity: 0.4;
  padding-bottom: 0.305em;
  position: relative;
  display: flex;
  width: 100%;
}
.footer__decor-block span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.075em;
  background-image: repeating-linear-gradient(
    to right,
    var(--color-file-btn) 0,
    var(--color-file-btn) 0.5em,
    transparent 0.5em,
    transparent 0.7em
  );
}
.footer__decor-block--2 span,
.footer__decor-block--4 span {
  justify-content: flex-end;
}
.footer__decor-block--3 span,
.footer__decor-block--4 span {
  padding-top: 0.305em;
  padding-bottom: 0;
}
.footer__decor-block--3 span::after,
.footer__decor-block--4 span::after {
  bottom: unset;
  top: 0;
}
.footer__decor-wrapper img {
  width: 5.43em;
  height: 2.19em;
}
.footer__form-item {
  padding: 0 !important;
}
.footer__input {
  background-color: #2b2b2b;
  padding: 0.7em 0.6em;
  width: 100%;
  color: var(--color-white);
  border: transparent;
  transition: background-color var(--transition), color var(--transition);
}
.footer__input::placeholder {
  color: var(--color-white);
  opacity: 0.2;
  transition: opacity var(--transition);
}
.footer__input:hover {
  background-color: #333333;
}
.footer__input:active,
.footer__input:focus {
  background-color: #333333;
}
.footer__input:active::placeholder,
.footer__input:focus::placeholder {
  opacity: 1;
}
.footer__form-item--textarea .footer__input {
  height: 5.6em;
}
.footer__sumbit {
  background-color: var(--color-accent);
  font-weight: 700;
  padding: 0.8em;
  color: var(--color-white);
  transition: background-color var(--transition);
  margin-top: 1.1em;
}
.footer__sumbit:hover {
  background-color: var(--color-accent-dark);
}
.footer__form-item--textarea .btn__bg {
  height: 5.6em;
}
.footer__mail {
  justify-content: center;
}
.footer__mail p {
  font-size: 2.4em;
}
.footer__bg-bottom {
  position: absolute;
  right: 2.85em;
  bottom: 2.1em;
  z-index: 1;
}
.footer__bg-bottom img {
  width: 12.7em;
  height: 8.75em;
}
@media (max-height: 900px) {
  .hero__img {
    top: 0;
    width: 30%;
  }
}
@media (max-width: 1100px) {
  .vacancy__description {
    grid-template-columns: 1fr;
    gap: 1.4em;
    padding: 2em;
  }
  .vacancy__bottom {
    grid-column: unset;
    padding: 1.4em 0 0;
  }
  .vacancy__top-form {
    grid-row: 3 / 4;
  }
  .vacancy__content {
    max-width: 43.3em;
    width: unset;
  }
  .statistics__item--1 .statistics__block {
    display: block;
  }
  .statistics__item--2 .statistics__blocks .statistics__block:nth-child(1),
  .statistics__item--3 .statistics__blocks .statistics__block:nth-child(2) {
    display: none;
  }
  .statistics__item--2 .statistics__blocks {
    grid-template-columns: repeat(2, auto);
  }
  .statistics__item--2 .statistics__content {
    grid-template-columns: 1fr auto auto;
  }
  .statistics__item--2 .statistics__blocks,
  .statistics__item--3 .statistics__blocks {
    justify-items: end;
    padding-left: 0.7em;
  }
  .statistics__item--2 .statistics__block--accent,
  .statistics__block--accent {
    width: 100%;
    min-width: 1.2em;
  }
  .statistics__item p {
    font-size: 1.6em;
  }
  .vacancy__title {
    width: 100%;
    font-size: 3.1em;
  }
  .vacancy__title-block {
    padding: 7em 0 6.64em;
  }
  .vacancy__bg-block {
    right: 0;
    width: 45.2em;
    height: unset;
  }
  .vacancy__radar {
    transform-origin: 6.05em 10.9em;
  }
  .info__center-inner--1::after {
    transform: translateY(-50%) rotate(330deg);
  }
  .card__preview h3 {
    font-size: 1.5em;
  }
  .card__preview,
  .card__content,
  .card__item {
    min-height: 14em;
  }
  .footer {
    padding: 7.1em 0 8.5em;
  }
  .footer__mail p {
    font-size: 2em;
  }
  .footer__bg-bottom {
    right: 50%;
    transform: translateX(+50%);
    bottom: 1em;
  }
  .footer__bg-bottom img {
    width: 9.4em;
    height: 6.5em;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 1.4em 0;
    position: fixed;
    z-index: 9999;
  }
  .btn {
    font-size: 1.4em;
  }
  .container {
    padding-left: 1.1em !important;
    padding-right: 1.1em !important;
  }
  .hero__logo {
  width: 9.2em;
        height: 3.9em;
    top: 6.4em;
  }
  .hero__img {
        width: 19em;
        top: 20%;
  }
  .hero__bg {
    width: 30.17em;
    height: 19.1em;
  }
  .hero__wrapper {
    padding: 12.5em 0 1.5em;
  }
  .statistics__item {
    gap: 1em;
  }
  .statistics__block {
    width: 100%;
    max-width: 100%;
    min-width: 1.2em;
  }
  .statistics__content span {
    font-size: 3.43em;
  }
  .container {
    max-width: 100%;
  }
  .header__list,
  .header__decor-icon,
  .info__rigth-bg,
  .info__left-bg,
  .info__center-inner--2::before,
  .card__preview,
  .vacancy__preview,
  .vacancy__btn-block {
    display: none;
  }
  .header__logo {
    display: block;
  }
  .header__logo img {
    width: 5.5em;
    height: 2.4em;
  }
  .header__inner {
    gap: 0;
  }
  .hero {
    height: 100%;
  }
  .hero__bg {
    top: 15em;
  }
  .hero__title {
    -webkit-text-stroke-width: 0.04em;
    font-size: 6.8em;
  }
  .hero__title-wrapper p {
    font-size: clamp(0.9em, 2vw, 1.41em);
    bottom: 2.8em;
  }
  .hero__title-bg img:nth-child(1),
  .hero__title-bg img:nth-child(3) {
    width: 3.15em;
    height: 0.6em;
  }
  .hero__title-bg img:nth-child(2),
  .hero__title-bg img:nth-child(4) {
    width: 0.6em;
    height: 3.15em;
  }
  .hero__title-bg img:nth-child(1) {
    left: 1.07em;
  }
  .hero__title-bg img:nth-child(2) {
    right: 3.38em;
  }
  .hero__title-bg img:nth-child(3) {
    right: 1.07em;
  }
  .hero__title-bg img:nth-child(4) {
    left: 3.1em;
  }
  .hero__title-wrapper {
    padding: 5.05em 1.07em 2.8em;
  }
  .hero__content {
    width: 100%;
    bottom: 0.9em;
    padding-bottom: 0.55em;
  }
  .hero__content-text p {
    max-width: 80%;
  }
  .vacancy__img {
    object-position: 0em 0em;
  }
  .info__wrapper-bg {
    grid-template-columns: 1fr;
    height: 51.2em;
  }
  .info__center-bg {
    width: 100%;
  }
  .info__center-inner--1 .info__center-text-block,
  .info__center-inner--1,
  .info__center-inner--1::after {
    right: 0;
    left: unset;
  }
  .info__center-inner--1::after {
    top: 91%;
    transform: translateY(-50%) rotate(23deg);
  }
  .info__center-inner--2 .info__center-text-block {
    bottom: unset;
    top: 0;
  }
  .info__center-inner--2::after {
    bottom: 69%;
    left: 30%;
    transform: rotate(98deg);
    height: 69%;
  }
  .info__disk-wrapper {
    bottom: 31.8em;
  }
  .info__center-inner--2 {
    bottom: 34%;
    left: unset;
    right: 20%;
  }
  .info__center-inner--3 {
    height: 35.65em;
  }
  .info__disk-wrapper,
  .info__disk {
    width: 10.9em;
  }
  .info__disk-wrapper img {
    width: 5.6em;
    height: 6.5em;
  }
  .info__wrapper {
    gap: 6.5em;
    top: 12.8em;
    left: 50.4%;
  }
  .info__block-top p {
    font-size: 2em;
  }
  .info__block-top {
    gap: 1.6em;
  }
  .title {
    font-size: 3.1em;
  }
  .info__block-bottom p {
    font-size: 1.4em;
  }
  .info__block-bottom {
    gap: 1.6em;
  }
  .statistics {
    padding: 3.5em 0 4.1em;
  }
  .statistics__list {
    gap: 2.55em;
  }
  .card__content h3 {
    font-size: 2.28em;
  }
  .statistics__wrapper {
    gap: 1.9em;
  }
  .statistics__marker {
    font-size: 1.4em;
  }
  .card__content,
  .card__item.flip .card__item-inner {
    backface-visibility: unset;
    transform: unset;
  }
  .card__item {
    height: 100%;
    width: 100%;
  }
  .card__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4em;
  }
  .card__preview,
  .card__content {
    position: static;
  }
  .card__content {
    padding: 1.4em 1.1em;
    gap: 1.4em;
  }
  .card__content-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.57em;
  }
  .card__content-top img {
    display: block;
  }
  .card__content p {
    font-size: 1.1em;
    line-height: 1.4;
  }
  .vacancy__list {
    flex-direction: column;
    gap: 2.8em;
  }
  .vacancy__content {
    display: flex !important;
  }
  .vacancy__bottom {
    padding: 0;
  }
  .vacancy__content.active .vacancy__bottom {
    padding: 3.4em 0 0;
  }
  .vacancy__content {
    max-width: 100%;
  }
  .vacancy__bottom span {
    font-size: 1em;
  }
  .vacancy__content p {
    font-size: 1.28em;
  }
  .vacancy__item:not(:last-child) {
    padding-bottom: 2.8em;
    border-bottom: 0.14em solid #ffffff20;
  }
  .vacancy__top-form {
    padding-top: 1.5em;
  }
  .vacancy__radar-wrapper {
    height: 12.7em;
    width: 13em;
    top: 26%;
    right: 31.6%;
  }
  .vacancy__form {
    gap: 1.4em;
  }

  /* for animate card mobil */
  .vacancy__preview {
    display: none !important;
  }
  .vacancy__content {
    overflow: hidden;
  }
  .vacancy__description {
    background-color: transparent;
  }
  .vacancy__top-title-block h3 {
    color: var(--color-white);
    font-size: 2em;
  }
  .vacancy__top-title-block {
    flex-direction: column-reverse;
    gap: 0.3em;
  }
  .vacancy__top-text-block {
    gap: 1.6em;
  }
  .vacancy__hidden-mobil-btn {
    display: flex;
  }
  .vacancy__content .vacancy__top-text-block p,
  .vacancy__content .vacancy__top-form,
  .vacancy__content .vacancy__bottom,
  .vacancy__content .vacancy__hidden-mobil-btn {
    opacity: 0;
    transform: translateY(-0.7em);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .vacancy__content.active .vacancy__top-text-block p,
  .vacancy__content.active .vacancy__top-form,
  .vacancy__content.active .vacancy__bottom,
  .vacancy__content.active .vacancy__hidden-mobil-btn {
    opacity: 1;
    transform: translateY(0);
    max-height: 150em;
    overflow: visible;
  }
  .vacancy__content .vacancy__top-text-block p {
    font-size: 1.1em;
  }
  .vacancy__content.active .vacancy__hidden-mobil-btn {
    opacity: 0.5;
  }
  .vacancy__description {
    gap: 0;
    padding: 0 0 0;
  }
  .vacancy__content .vacancy__mibil-btn-block.btn {
    display: block;
  }
  .vacancy__content.active .vacancy__mibil-btn-block.btn,
  .vacancy__border {
    display: none;
  }
  .vacancy__content.active .vacancy__description {
    padding: 2.8em 1.8em;
    gap: 2em;
    background-color: #161616cc;
  }
  .vacancy__top-title-block span {
    font-size: 1.1em;
  }
  .vacancy__content.active .vacancy__border {
    display: block;
  }
  .vacancy__content.active .vacancy__top-title-block h3 {
    color: var(--color-accent);
  }
  .vacancy__bg-block {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
  .vacancy__inner {
    padding: 1.5em 1.1em 0;
  }
  .footer__form-wrapper {
    padding: 0 0 0;
    width: 100%;
  }
  .footer__decor-block span {
    font-size: 0.8em;
  }
  .footer__form-block {
    width: 100%;
    gap: 5em;
  }
  .footer__input {
    padding: 0.9em 0.6em;
  }
  .footer__form {
    gap: 0.5em;
  }
  .footer__file,
  .footer__sumbit {
    font-size: 1.4em;
  }
  .footer__decor-wrapper img {
    width: 8em;
    height: 3.1em;
  }
  .footer__decor-wrapper {
    align-items: start;
  }
  .card__preview,
  .card__content,
  .card__item {
    min-height: unset;
  }
  .footer {
    padding: 9.1em 0 8.5em;
  }
  .footer__top-content img {
    width: 15em;
    height: 6.7em;
  }
  .footer__top-content {
    gap: 3.7em;
  }
  .footer__top-content h3 {
    font-size: 2.8em;
  }
  .footer__bg-form {
    display: none;
  }
  #form {
    padding-top: 2.5em;
    margin-top: -2.5em;
  }
}
@media (max-width: 500px) {
  .info__center-inner--2 {
    right: unset;
    left: 0;
  }
  .info__center-inner--2::after {
    height: 57%;
  }
  .info__wrapper {
    top: 8.8em;
  }
}
@media (max-width: 500px) and (min-height: 660px) {
  .hero__content {
    padding-bottom: 12.55em;
  }
  .hero__content-text {
    bottom: 26%;
  }
}