:root {
  --neutral-neutral-100-white: #fff;
  --neutral-neutral-200: #d3d3d3;
  --neutral-neutral-300: #979797;
  --neutral-neutral-400: #575555;
  --neutral-neutral-500: #3c3c3c;
  --neutral-neutral-600-black: #1d1d1d;
  --neutral-neutral-700-background: #090909;
  --neutral-neutral-800: #040404;
  --primary-primary-100: #8fff3d;
  --primary-primary-200: #5ad600;
  --primary-primary-300: #52c300;
  --primary-primary-400: #45a300;
  --primary-primary-500: #577741;
  --primary-primary-600: #3f562f;
  --secondary-secondary-100: #f58300;
  --additional-warning-red: #d60000;
}

:root {
  --font-family: "Raleway", sans-serif;
  --second-family: "Roboto", sans-serif;
  --third-family: "synqlixfont", sans-serif;
  --font3: "Manrope", sans-serif;
  --font4: "SF Pro Text", sans-serif;
}

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

body,
html {
  width: 100%;
  overflow-x: hidden;
  background: var(--neutral-neutral-700-background);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
}

html.modal-active {
  overflow: hidden;
}

button {
  cursor: pointer;
}

svg,
path {
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
div {
  color: var(--neutral-neutral-100-white);
}
p .green,
li .green,
h1 .green,
h2 .green,
h3 .green,
h4 .green,
h5 .green,
h6 .green,
div .green {
  color: var(--primary-primary-200);
}
p .orange,
li .orange,
h1 .orange,
h2 .orange,
h3 .orange,
h4 .orange,
h5 .orange,
h6 .orange,
div .orange {
  color: var(--secondary-secondary-100);
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.to-right {
  transform: translateX(30px);
}

.to-left {
  transform: translateX(-30px);
}

.to-top {
  transform: translateY(-30px);
}

.to-bottom {
  transform: translateY(30px);
}

.animate {
  transition: all 0.7s cubic-bezier(0.39, 0.575, 0.565, 1);
  opacity: 0;
}

.animate.active {
  transform: translate(0);
  opacity: 1;
}

.main-wrapper {
  padding: 0 20px;
  max-width: 1360px;
  width: 100%;
  margin: 16px auto 40px;
  overflow: hidden;
}

.btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--neutral-neutral-700-background);
  border: 1px solid var(--primary-primary-200);
  border-radius: 1000px;
  padding: 16px 48px;
  height: 60px;
  background: var(--primary-primary-200);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover {
  background: var(--primary-primary-300);
}
.btn:hover svg {
  transform: scaleX(1.3) translateX(5px);
}
.btn:active {
  background: var(--primary-primary-400);
  border: 1px solid var(--primary-primary-400);
}
.btn:disabled {
  background: var(--neutral-neutral-400);
  border: 1px solid var(--neutral-neutral-400);
  color: var(--neutral-neutral-300);
}

.btn-secondary {
  border: 1px solid var(--primary-primary-200);
  border-radius: 1000px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  padding: 12px 48px;
  height: 48px;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--neutral-neutral-600-black);
}
.btn-secondary:hover svg {
  transform: scaleX(1.3) translateX(5px);
}
.btn-secondary:active {
  color: var(--neutral-neutral-200);
  border: 1px solid var(--primary-primary-400);
}
.btn-secondary:active svg path {
  stroke: var(--neutral-neutral-200);
}
.btn-secondary:disabled {
  color: var(--neutral-neutral-400);
  border: 1px solid var(--neutral-neutral-400);
  background: var(--neutral-neutral-700-background);
}
.btn-secondary:disabled svg path {
  stroke: var(--neutral-neutral-400);
}

.btn-tertiary {
  border: 1px solid var(--primary-primary-200);
  border-radius: 1000px;
  padding: 16px 48px;
  height: 60px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--primary-primary-200);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--neutral-neutral-700-background);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-tertiary:hover {
  background: var(--neutral-neutral-600-black);
  color: var(--primary-primary-300);
  border: 1px solid var(--primary-primary-300);
}
.btn-tertiary:hover svg:not(.ty__btn svg) {
  transform: scaleX(1.3) translateX(5px);
}
.btn-tertiary:active {
  background: var(--neutral-neutral-700-background);
  color: var(--primary-primary-400);
  border: 1px solid var(--primary-primary-400);
}
.btn-tertiary:active svg path {
  stroke: var(--primary-primary-400);
}
.btn-tertiary:disabled {
  color: var(--neutral-neutral-400);
  border: 1px solid var(--neutral-neutral-400);
  background: transparent;
}
.btn-tertiary:disabled svg path {
  stroke: var(--neutral-neutral-400);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 48px;
}
.header .logo {
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 100%;
  position: relative;
}
.header .logo::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 60%;
  background: var(--neutral-neutral-700-background);
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--primary-primary-500);
  border-right: 1px solid var(--primary-primary-500);
  border-radius: 0 0 24px 0;
  z-index: 1;
}
.header .logo img {
  width: 80%;
  max-width: 163px;
  position: relative;
  z-index: 2;
}
.header .contact-us-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 24px;
  border: 1px solid var(--neutral-neutral-600-black);
  border-radius: 1000px;
  background: var(--neutral-neutral-100-white);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--neutral-neutral-600-black);
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  cursor: pointer;
}
.header .contact-us-btn:hover {
  background: var(--neutral-neutral-600-black);
  color: var(--neutral-neutral-100-white);
  border: 1px solid var(--neutral-neutral-100-white);
}
.header .btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 101;
  display: none;
}
.header .translate-btn {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--neutral-neutral-100-white);
  padding: 8px 16px;
  height: 48px;
  background: var(--neutral-neutral-700-background);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  text-align: left;
  border-bottom: 1px solid var(--neutral-neutral-600-black);
}
.header .translate-btn:last-child {
  border-bottom: none;
}
.header .translate-btn:hover {
  background: var(--primary-primary-200);
}
.header .translate-btn:active {
  background: var(--primary-primary-200);
}
.header .translate-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  position: relative;
  height: 40px;
  cursor: pointer;
  z-index: 2;
}
.header .translate-block::after {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.41 0.294987L6 4.87499L10.59 0.294987L12 1.70499L6 7.70499L0 1.70499L1.41 0.294987Z" fill="%235AD600" /></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}
.header .translate-block.active::after {
  transform: rotate(180deg);
}
.header .translate-lang {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: var(--neutral-neutral-100-white);
}
.header .translate-block.active .translate-item {
  display: flex;
}
.header .translate-item {
  display: none;
  flex-direction: column;
  border-radius: 4px;
  border: 1px solid var(--neutral-neutral-500);
  width: 140px;
  background: var(--neutral-neutral-700-background);
  overflow: hidden;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 1000000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 80px;
  position: relative;
  z-index: 1;
}
.nav__list {
  display: flex;
  align-items: center;
  width: 57.5%;
  justify-content: space-evenly;
  height: 100%;
  border-top: 1px solid var(--primary-primary-500);
  border-radius: 24px 24px 0 0;
  background: var(--neutral-neutral-800);
  position: relative;
}
.nav__list::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 60%;
  background: var(--neutral-neutral-800);
  top: -1px;
  left: 0;
  border-top: 1px solid var(--primary-primary-500);
  border-left: 1px solid var(--primary-primary-500);
  border-radius: 24px 0 0 0;
  z-index: 1;
}
.nav__list::after {
  content: "";
  position: absolute;
  width: 75%;
  height: 60%;
  background: var(--neutral-neutral-800);
  top: -1px;
  right: -1px;
  border-top: 1px solid var(--primary-primary-500);
  border-right: 1px solid var(--primary-primary-500);
  border-radius: 0 24px 0 0;
  z-index: 1;
}
.nav__item {
  position: relative;
  z-index: 2;
}
.nav__link {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav__link:hover {
  color: var(--primary-primary-200);
}
.nav__btns {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 10px;
  width: 22.5%;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.nav__btns::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 60%;
  background: var(--neutral-neutral-800);
  bottom: -1px;
  left: 0;
  border-bottom: 1px solid var(--primary-primary-500);
  border-left: 1px solid var(--primary-primary-500);
  border-radius: 0 0 0 24px;
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: url(../images/bg-mask.webp) no-repeat center/cover;
  min-height: 680px;
  border: 1px solid var(--primary-primary-500);
  border-radius: 24px;
  border-top: 0;
}
.hero::before {
  content: "";
  top: 0;
  right: -1px;
  border-top: 1px solid var(--primary-primary-500);
  border-right: 1px solid var(--primary-primary-500);
  border-radius: 0 24px 0 0;
  position: absolute;
  height: 100px;
  width: 100px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  left: -1px;
  border-top: 1px solid var(--primary-primary-500);
  border-left: 1px solid var(--primary-primary-500);
  border-radius: 24px 0 0 0;
}
.hero__mobile {
  display: none;
}
.hero__title-block {
  padding: 24px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 636px;
  width: 100%;
}
.hero__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 60px;
  text-transform: uppercase;
}
.hero__description {
  padding: 24px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
  font-weight: 500;
  max-width: 426px;
  width: 100%;
  line-height: 150%;
  font-size: 14px;
}
.hero__description span {
  font-weight: 700;
}
.hero__btns {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__bg-mob {
  display: none;
}
.hero__content {
  padding: 68px 36px 82px 60px;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 70px;
  gap: 32px;
  width: 100%;
}
.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 22px;
  padding: 120px 0 100px;
}

.hash {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hash__item {
  border-radius: 1000px;
  overflow: hidden;
  position: relative;
  background: var(--neutral-neutral-700-background);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  width: -moz-fit-content;
  width: fit-content;
}
.hash__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1px;
  border-radius: 1000px;
  background: linear-gradient(16deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.3));
  overflow: hidden;
}
.hash__bg::before {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  border-radius: 1000px;
  background: var(--neutral-neutral-700-background);
}
.hash__bg::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  display: block;
  top: 50%;
  right: 0%;
  transform: translate(50%, -50%);
  background: var(--primary-primary-200);
  border-radius: 50%;
  filter: blur(23px);
}
.hash__tag {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
  padding: 0 24px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  position: relative;
  z-index: 2;
}
.hash__tag span {
  color: var(--secondary-secondary-100);
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.about .left {
  border: 1px solid var(--primary-primary-500);
  border-radius: 24px;
  padding: 36px 48px;
  background: var(--neutral-neutral-800);
  max-width: 872px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.about .left img {
  max-width: 282px;
  width: 100%;
  border-radius: 16px;
}
.about .left h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.about .left p {
  line-height: 150%;
}
.about .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 424px;
}
.about .right div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.why-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 100px;
}
.why-us h2 {
  font-weight: 700;
  font-size: 48px;
  max-width: 671px;
  width: 100%;
}
.why-us__content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.why-us img {
  max-width: 759px;
  max-height: 415px;
  width: 100%;
  flex-shrink: 0;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 -45px;
     object-position: 0 -45px;
}
.why-us .right {
  max-width: 538px;
  width: 100%;
  padding-top: 16px;
}
.why-us .right p {
  border-radius: 16px;
  padding: 36px 36px 52px;
  border: 1px solid var(--primary-primary-500);
  background: var(--neutral-neutral-800);
  margin-bottom: 32px;
  line-height: 150%;
}
.why-us .right a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--primary-primary-200);
  text-decoration: none;
  transition: all 0.3s ease;
}
.why-us .right a:hover {
  color: var(--primary-primary-300);
}
.why-us .right a div {
  position: relative;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us .right a div:nth-child(2) {
  width: 52px;
  height: 52px;
  padding: 0;
}
.why-us .right a div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1px;
  border-radius: 1000px;
  background: linear-gradient(16deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.3));
  overflow: hidden;
}
.why-us .right a div::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1px;
  left: 1px;
  border-radius: 1000px;
  background: var(--neutral-neutral-700-background);
}
.why-us .right a div span,
.why-us .right a div svg {
  position: relative;
  z-index: 2;
  color: var(--primary-primary-200);
}

.advantages {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 100px;
}
.advantages h2 {
  font-weight: 700;
  font-size: 48px;
  max-width: 671px;
  width: 100%;
}
.advantages__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.advantages__item {
  border: 1px solid var(--primary-primary-500);
  border-radius: 24px;
  padding: 36px 36px 143px;
  max-width: 648px;
  width: 100%;
  text-align: right;
  position: relative;
  overflow: hidden;
  background-size: cover;
}
.advantages__item::before {
  content: attr(data-number);
  position: absolute;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 200px;
  line-height: 150%;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.04);
  -webkit-text-stroke: 1px var(--primary-primary-500);
  left: 48px;
  bottom: -104px;
}
.advantages__item.reverse {
  text-align: left;
}
.advantages__item.reverse::before {
  left: auto;
  right: 48px;
  bottom: -87px;
}
.advantages__item:first-child {
  background-image: url("../images/why_us-bg1.webp");
}
.advantages__item:nth-child(2) {
  background-image: url("../images/why_us-bg2.webp");
}
.advantages__item:nth-child(3) {
  background-image: url("../images/why_us-bg3.webp");
}
.advantages__item:nth-child(4) {
  background-image: url("../images/why_us-bg4.webp");
}
.advantages__item h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  color: var(--primary-primary-200);
  margin-bottom: 12px;
}
.advantages__item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--neutral-neutral-300);
}

.vacancies {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 140px;
}
.vacancies h2 {
  font-weight: 700;
  font-size: 48px;
  max-width: 671px;
  width: 100%;
}
.vacancies__content {
  padding: 24px 36px;
  border: 1px solid var(--primary-primary-500);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  background: var(--neutral-neutral-800);
  overflow: hidden;
}
.vacancies__item {
  position: relative;
  padding: 24px;
  border-bottom: 1px solid var(--primary-primary-500);
  cursor: pointer;
}
.vacancies__item:last-child {
  border-bottom: none;
}
.vacancies__item h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
}
.vacancies__item p {
  font-weight: 400;
  font-size: 18px;
  color: var(--neutral-neutral-300);
  margin-bottom: 12px;
  text-transform: none;
}
.vacancies__item span:not(.vacancies__tags span) {
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
}
.vacancies__item button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
  background: transparent;
  padding: 0;
  border: none;
  transition: all 0.3s ease;
}
.vacancies__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 16px;
}
.vacancies__tags div {
  position: relative;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
}
.vacancies__tags div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1px;
  border-radius: 1000px;
  background: linear-gradient(16deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.3));
  overflow: hidden;
}
.vacancies__tags div::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1px;
  left: 1px;
  border-radius: 1000px;
  background: rgb(14, 14, 14);
}
.vacancies__tags div span,
.vacancies__tags div svg {
  position: relative;
  z-index: 2;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 8px;
  text-transform: none;
}
.form button {
  margin-top: 16px;
}
.form__field {
  width: 100%;
  position: relative;
}
.form__field.error .form__input,
.form__field.error .form__selected {
  border: 1px solid var(--additional-warning-red);
}
.form__field.error .error-message {
  display: block;
}
.form__input, .form__selected {
  font-family: var(--font-family);
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.14);
  background: var(--neutral-neutral-700-background);
  border: 1px solid var(--primary-primary-600);
  border-radius: 4px;
  padding: 12px 16px;
  height: 46px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--neutral-neutral-100-white);
  transition: all 0.3s ease;
  outline: none;
  text-transform: none;
}
.form__input.form__textarea, .form__selected.form__textarea {
  height: 100px;
  resize: none;
  font-family: var(--font-family);
}
.form__input::-moz-placeholder, .form__selected::-moz-placeholder {
  color: var(--primary-primary-500);
  font-weight: 400;
}
.form__input::placeholder, .form__selected::placeholder {
  color: var(--primary-primary-500);
  font-weight: 400;
}
.form__input:hover, .form__selected:hover {
  border: 1px solid var(--primary-primary-400);
}
.form__input:focus, .form__selected:focus {
  border: 1px solid var(--primary-primary-200);
  color: var(--neutral-neutral-100-white);
}
.form__input:disabled, .form__selected:disabled {
  border: 1px solid var(--neutral-neutral-400);
}
.form .error-message {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: var(--additional-warning-red);
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  display: none;
  text-transform: none;
}
.form__select-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.form__select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10L12 15L17 10H7Z" fill="%23AEDC21" fill-opacity="0.9"/></svg>');
}
.form__select-wrapper .options {
  position: absolute;
  width: 100%;
  top: calc(100% + 4px);
  left: 0;
  border: 1px solid var(--neutral-neutral-500);
  border-radius: 4px;
  background: var(--neutral-neutral-700-background);
  display: none;
  overflow: auto;
  max-height: 197px;
  z-index: 1000000;
}
.form__select-wrapper .option {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  background: var(--neutral-neutral-700-background);
  border-bottom: 1px solid var(--neutral-neutral-600-black);
  color: var(--neutral-neutral-100-white) #fff;
  padding: 14px 16px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  display: block;
  align-items: center;
  text-transform: capitalize;
}
.form__selected {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--primary-primary-500);
  display: flex;
  align-items: center;
}
.form__selected.active {
  color: var(--neutral-neutral-100-white);
}
.form__input-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.ty {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: none;
}
.ty h3 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: var(--primary-primary-200);
  margin-bottom: 12px;
}
.ty p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 24px;
}

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--primary-primary-500);
  border-bottom: 0;
  border-radius: 24px;
}
.footer::before {
  content: "";
  position: absolute;
  width: 9%;
  height: 60px;
  top: -1px;
  left: -1px;
  border: 1px solid var(--primary-primary-500);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  z-index: 2;
}
.footer::after {
  content: "";
  position: absolute;
  width: calc(46% - 2px);
  height: 60px;
  top: -1px;
  border-radius: 24px 24px 0 0;
  z-index: 2;
  right: -1px;
  border: 1px solid var(--primary-primary-500);
  border-bottom: 0;
}
.footer svg {
  position: absolute;
  top: -1px;
  width: 24px;
  height: 24px;
  z-index: 1;
}
.footer .svg-right {
  right: calc(46% - 24px);
}
.footer .svg-left {
  left: calc(9% - 24px);
}
.footer h2 {
  font-weight: 700;
  font-size: 48px;
  position: absolute;
  top: -1px;
  left: 9%;
  width: 45%;
  text-align: center;
  height: 93px;
  padding-top: 3px;
  background: var(--neutral-neutral-700-background);
  border-radius: 0 0 24px 24px;
  z-index: 1;
}
.footer h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: -1px;
  left: 0;
  border: 1px solid var(--primary-primary-500);
  border-top: 0;
  border-radius: 0 0 24px 24px;
}
.footer__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  border-radius: 24px;
  overflow: hidden;
  background: url("../images/footer-bg.webp") no-repeat bottom/100% 100%;
}
.footer__top {
  padding: 36px 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 346px;
  width: 100%;
}
.footer__logo img {
  max-width: 251px;
  width: 100%;
}
.footer__logo p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__menu a {
  display: inline-block;
  padding: 8px 24px;
  font-weight: 400;
  font-size: 16px;
  color: var(--neutral-neutral-100-white);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer__menu a:hover {
  color: var(--primary-primary-200);
  font-weight: 700;
}
.footer__form-wrapper {
  max-width: 466px;
  width: 100%;
}
.footer__copyright {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  color: var(--neutral-neutral-700-background);
  background: var(--primary-primary-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 120px;
  text-transform: none;
}
.footer__copyright a {
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: var(--neutral-neutral-700-background);
}

.mobile-copyright {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(4, 4, 4, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000000000;
  padding: 20px;
  display: none;
}
.modal-overlay.active {
  display: flex;
}
.modal-overlay.active .modal {
  opacity: 1;
}

.modal {
  padding: 36px 48px;
  max-width: 1015px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--primary-primary-500);
  background: var(--neutral-neutral-800);
  border-radius: 24px;
  gap: 24px;
  max-height: 100%;
  opacity: 0;
}
.modal__header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.modal__header h2 {
  font-size: 28px;
  text-transform: uppercase;
  color: var(--primary-primary-200);
  font-weight: 700;
}
.modal__header button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal__header button:hover svg path {
  fill: var(--primary-primary-200);
}
.modal__content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  overflow-y: auto;
}
.modal__form {
  width: 100%;
  max-width: 500px;
}
.modal__ty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.modal__ty h3 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: var(--primary-primary-200);
  margin-bottom: 12px;
}
.modal__ty p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 24px;
}

.vacancy {
  max-width: 387px;
  width: 100%;
  padding-top: 40px;
}
.vacancy h3 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
  margin-bottom: 8px;
}
.vacancy p {
  font-weight: 400;
  font-size: 18px;
  color: var(--neutral-neutral-300);
  text-transform: none;
  margin-bottom: 20px;
}
.vacancy span:not(.vacancy__tags span) {
  font-weight: 400;
  font-size: 14px;
  color: var(--neutral-neutral-100-white);
  text-transform: none;
  margin-bottom: 12px;
  display: inline-block;
}
.vacancy__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.vacancy__tags div {
  position: relative;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
}
.vacancy__tags div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1px;
  border-radius: 1000px;
  background: linear-gradient(16deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.3));
  overflow: hidden;
}
.vacancy__tags div::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1px;
  left: 1px;
  border-radius: 1000px;
  background: rgb(14, 14, 14);
}
.vacancy__tags div span {
  position: relative;
  z-index: 2;
}

.animate-form {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.animate-form.active {
  opacity: 1;
}

.ua-lang .hero__title-block {
  max-width: 770px;
}
.ua-lang .advantages h2,
.ua-lang .why-us h2,
.ua-lang .vacancies h2 {
  max-width: 780px;
}

@media (max-width: 1280px) {
  .nav__btns {
    padding-right: 0;
    gap: 0;
  }
  .footer__top {
    padding: 36px 20px 0;
  }
  .ua-lang .why-us img {
    max-width: 650px;
  }
  .ua-lang .footer h2 {
    font-size: 40px;
  }
}
@media (max-width: 1140px) {
  .header .contact-us-btn {
    display: none;
  }
  .nav__btns {
    justify-content: center;
  }
  .about .right {
    max-width: 30%;
  }
  .why-us__content {
    flex-direction: column;
    align-items: center;
  }
  .why-us img {
    max-width: none;
    max-height: 600px;
  }
  .why-us .right {
    max-width: none;
    padding: 0;
    margin-top: -100px;
  }
  .why-us .right a {
    justify-content: center;
  }
  .footer::before {
    top: 92px;
    border-right: none;
    border-radius: 24px 0 0 0;
  }
  .footer::after {
    width: 55%;
  }
  .footer .svg-left {
    left: -1px;
    top: 92px;
    transform: rotate(-90deg);
    z-index: 10;
  }
  .footer .svg-right {
    right: calc(55% - 23px);
  }
  .footer h2 {
    left: -1px;
    border-radius: 0 0 24px 0;
  }
  .footer h2::before {
    border-radius: 0 0 24px 0;
    border-left: none;
    width: 80%;
    left: auto;
    right: -1px;
  }
  .ua-lang .footer h2 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: 659px;
    background-size: 130%;
  }
  .hero__content {
    padding: 40px 20px;
  }
  .hero__right {
    padding: 40px 20px;
  }
  .nav__link {
    font-size: 16px;
  }
  .about {
    flex-direction: column;
    gap: 60px;
  }
  .vacancies {
    margin-bottom: 100px;
  }
  .footer {
    gap: 60px;
  }
  .footer::after {
    width: calc(40% + 40px);
  }
  .footer .svg-right {
    right: calc(40% - 23px + 40px);
  }
  .footer h2 {
    width: calc(60% - 40px);
  }
  .footer h2::before {
    width: 90%;
  }
  .footer__top {
    position: relative;
    z-index: 1;
    padding: 36px 40px 0;
    gap: 40px;
  }
  .footer__form-wrapper {
    max-width: 40%;
    width: 100%;
  }
  .footer__menu {
    display: none;
  }
  .footer__copyright {
    position: relative;
    z-index: 1;
    padding: 8px 40px;
  }
  .ua-lang .hero__title {
    font-size: 48px;
  }
  .ua-lang .advantages h2,
  .ua-lang .why-us h2,
  .ua-lang .vacancies h2 {
    font-size: 40px;
  }
  .ua-lang .form button {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  html.active {
    overflow: hidden;
    width: 100%;
  }
  .main-wrapper {
    margin-bottom: 0;
    padding-bottom: 52px;
    position: relative;
  }
  .btn,
  .btn-secondary,
  .btn-tertiary {
    font-size: 21px;
    height: 56px;
  }
  .header {
    z-index: 111;
    position: relative;
  }
  .header .logo {
    width: 50%;
  }
  .header .logo img {
    width: 100%;
  }
  .header .btn-menu {
    display: flex;
    z-index: 10000;
  }
  .hero {
    border-radius: 24px 0 24px 24px;
    background-position: center 60%;
    background-size: 1000px;
  }
  .hero::before {
    content: none;
  }
  .hero__right {
    display: none;
  }
  .hero__left {
    padding: 0;
    justify-content: space-between;
    align-items: center;
  }
  .hero__title-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__mobile {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;
    width: 100%;
  }
  .hero__description {
    font-size: 15px;
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    border: none;
    max-width: none;
  }
  .hero__btns {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .hero__btns a {
    width: 100%;
  }
  .nav__btns {
    background: var(--neutral-neutral-800);
    width: 50%;
  }
  .nav__btns::before {
    bottom: auto;
    top: 0;
    border-radius: 24px 0 0 0;
    border-left: 1px solid var(--primary-primary-500);
    border-top: 1px solid var(--primary-primary-500);
    border-right: none;
    border-bottom: none;
  }
  .nav__btns::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    z-index: 1;
    border: 1px solid var(--primary-primary-500);
    border-left: none;
    border-bottom: none;
    border-radius: 24px 24px 0 0;
  }
  .nav__list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    border: none;
    -webkit-backdrop-filter: blur(75px);
            backdrop-filter: blur(75px);
    background: rgba(0, 0, 0, 0.8);
  }
  .nav__list::before, .nav__list::after {
    content: none;
  }
  .nav__item {
    padding: 30px;
    width: 100%;
    text-align: center;
  }
  @keyframes puff-out-center {
    0% {
      transform: scale(1);
      filter: blur(0);
      opacity: 1;
    }
    100% {
      transform: scale(2);
      filter: blur(4px);
      opacity: 0;
      pointer-events: none;
    }
  }
  .puff-out-center {
    animation: puff-out-center 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  }
  @keyframes puff-in-center {
    0% {
      transform: scale(2);
      filter: blur(4px);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      filter: blur(0);
      opacity: 1;
    }
  }
  .puff-in-center {
    animation: puff-in-center 0.3s cubic-bezier(0.47, 0, 0.745, 0.715) both;
  }
  .about .left {
    flex-direction: column;
  }
  .why-us {
    gap: 32px;
    margin-bottom: 80px;
  }
  .why-us h2 {
    font-size: 32px;
  }
  .advantages {
    gap: 32px;
    margin-bottom: 80px;
  }
  .advantages h2 {
    font-size: 32px;
  }
  .advantages__item {
    padding: 24px 24px 143px;
    text-align: left;
  }
  .advantages__item::before {
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
  }
  .advantages__item.reverse::before {
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
  }
  .advantages__item h3 {
    font-size: 21px;
  }
  .vacancies {
    gap: 32px;
    margin-bottom: 80px;
  }
  .vacancies h2 {
    font-size: 32px;
  }
  .vacancies__item h3 {
    font-size: 20px;
  }
  .vacancies__item p {
    font-size: 16px;
  }
  .vacancies__tags {
    font-size: 14px;
    flex-wrap: wrap;
  }
  .footer {
    border: none;
    margin-bottom: 64px;
  }
  .footer::before {
    top: 58px;
    left: 0;
    z-index: 11;
  }
  .footer::after {
    width: 60px;
    border-right: none;
    height: 37px;
    right: calc(26% - 60px);
    border-radius: 24px 0 0 0;
    top: 0;
  }
  .footer .svg-left {
    left: 0px;
    top: 57px;
  }
  .footer .svg-right {
    right: calc(26% - 23px);
    top: 0;
    z-index: 10;
  }
  .footer h2 {
    font-size: 32px;
    height: 59px;
    z-index: 10;
    width: 74%;
  }
  .footer__content {
    background: none;
  }
  .footer__top {
    flex-direction: column-reverse;
    padding: 0;
    gap: 80px;
  }
  .footer__form-wrapper {
    background: url(../images/footer-bg.webp) no-repeat bottom/cover;
    max-width: none;
    width: 100%;
    padding: 84px 24px 24px;
    border: 1px solid var(--primary-primary-500);
    border-radius: 24px;
  }
  .footer__copyright {
    display: none;
  }
  .mobile-copyright {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    color: var(--neutral-neutral-700-background);
    background: var(--primary-primary-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 20px;
    text-transform: none;
    flex-wrap: wrap;
    gap: 4px;
  }
  .mobile-copyright a {
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: var(--neutral-neutral-700-background);
    font-weight: 700;
  }
  .modal h2 {
    font-size: 24px;
  }
  .modal__content {
    flex-direction: column;
  }
  .modal__form {
    max-width: none;
  }
  .vacancy {
    max-width: none;
    padding: 0;
  }
  .vacancy h3 {
    font-size: 20px;
  }
  .vacancy p {
    font-size: 16px;
  }
  .vacancy__tags {
    font-size: 14px;
  }
  .ua-lang .hero__title {
    font-size: 32px;
  }
  .ua-lang .advantages h2,
  .ua-lang .why-us h2,
  .ua-lang .vacancies h2 {
    font-size: 32px;
  }
  .ua-lang .about .right {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .btn,
  .btn-secondary,
  .btn-tertiary {
    font-size: 18px;
    height: 53px;
  }
  .header .logo {
    padding: 0 10px;
    width: 58%;
  }
  .header .logo:before {
    border-color: #3d3d3d;
  }
  .hero {
    border-color: #3d3d3d;
    background-size: 735px;
    background-position: center -160px;
  }
  .hero::after {
    border-color: #3d3d3d;
  }
  .hero__content {
    padding: 35px 0 0;
  }
  .hero__title-block {
    background: rgba(9, 9, 9, 0.04);
    width: calc(100% + 2px);
    margin-bottom: -1px;
    border-color: var(--primary-primary-500);
    padding: 32px 24px;
    align-items: flex-start;
    gap: 24px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .hero__title {
    font-size: 24px;
  }
  .hero__mobile {
    text-align: left;
  }
  .hero__description {
    font-size: 14px;
  }
  .nav {
    height: 70px;
  }
  .nav__btns {
    width: 42%;
  }
  .nav__btns::before, .nav__btns::after {
    border-color: #3d3d3d;
  }
  .hash__item:nth-child(2) {
    display: none;
  }
  .hash__bg::after {
    content: none;
  }
  .hash__tag {
    font-size: 12px;
    height: 30px;
    padding: 8px 16px;
  }
  .about .left {
    padding: 24px;
  }
  .about .right {
    max-width: none;
  }
  .why-us h2 {
    font-size: 24px;
  }
  .why-us .right p {
    padding: 24px;
    margin-bottom: 16px;
  }
  .why-us img {
    -o-object-position: top;
       object-position: top;
  }
  .advantages h2 {
    font-size: 24px;
  }
  .advantages__content {
    grid-template-columns: 1fr;
  }
  .advantages__item h3 {
    font-size: 20px;
  }
  .vacancies h2 {
    font-size: 24px;
  }
  .vacancies__content {
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
  }
  .vacancies__item {
    border: 1px solid var(--primary-primary-500);
    border-radius: 16px;
    background: var(--neutral-neutral-800);
  }
  .vacancies__item:last-child {
    border-bottom: 1px solid var(--primary-primary-500);
  }
  .vacancies__item h3 {
    font-size: 16px;
    max-width: calc(100% - 42px);
  }
  .vacancies__item p {
    font-size: 14px;
    max-width: calc(100% - 42px);
  }
  .vacancies__item button {
    width: 24px;
    height: 24px;
  }
  .vacancies__item button svg {
    width: 16px;
    height: 16px;
  }
  .vacancies__tags {
    font-size: 12px;
  }
  .vacancies__tags div {
    height: 30px;
  }
  .footer h2 {
    font-size: 24px;
  }
  .modal {
    padding: 20px 24px 27px;
  }
  .modal h2 {
    font-size: 20px;
  }
  .vacancy h3 {
    font-size: 16px;
  }
  .vacancy p {
    font-size: 14px;
  }
  .vacancy__tags {
    font-size: 12px;
  }
  .vacancy__tags div {
    height: 30px;
  }
  .ua-lang .footer h2 {
    font-size: 22px;
  }
  .ua-lang .advantages h2,
  .ua-lang .why-us h2,
  .ua-lang .vacancies h2 {
    font-size: 24px;
  }
  .ua-lang .hero__title {
    font-size: 24px;
  }
}
@media (max-width: 425px) {
  .why-us .right div {
    width: 100%;
  }
  .why-us .right div:nth-child(2) {
    display: none;
  }
  .advantages__item {
    min-height: 371px;
  }
  .footer h2 {
    text-align: left;
  }
  .ua-lang .hero__title {
    font-size: 23px;
  }
}