:root {
  --neutral-neutral-100-white: #fff;
  --neutral-neutral-200: #bebebe;
  --neutral-neutral-300: #7d7d7d;
  --neutral-neutral-400: #575555;
  --neutral-neutral-500: #4c4c4c;
  --neutral-neutral-600-black: #1d1d1d;
  --neutral-neutral-700-background: #101010;
  --primary-primary-100: #cfeb7a;
  --primary-primary-200: #aedc21;
  --primary-primary-300: #8cb11b;
  --primary-primary-400: #698514;
  --primary-primary-500: #858868;
  --primary-primary-600: #686a51;
  --secondary-secondary-100: #ff6b07;
  --additional-red: #d60000;
}

:root {
  --font-family: 'synqlixfont', sans-serif;
  --second-family: 'Manrope', sans-serif;
}

@font-face {
  font-family: 'synqlixfont';
  src: url('../fonts/synqlixfont-Regular.woff2') format('woff2'), url('../fonts/synqlixfont-Regular.woff') format('woff'), url('../fonts/synqlixfont-Regular.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'synqlixfont';
  src: url('../fonts/synqlixfont-Medium.woff2') format('woff2'), url('../fonts/synqlixfont-Medium.woff') format('woff'), url('../fonts/synqlixfont-Medium.ttf') format('ttf');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'synqlixfont';
  src: url('../fonts/synqlixfont-Bold.woff2') format('woff2'), url('../fonts/synqlixfont-Bold.woff') format('woff'), url('../fonts/synqlixfont-Bold.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'synqlixfont';
  src: url('../fonts/synqlixfont-ExtraBold.woff2') format('woff2'), url('../fonts/synqlixfont-ExtraBold.woff') format('woff'), url('../fonts/synqlixfont-ExtraBold.ttf') format('ttf');
  font-weight: 800;
  font-style: normal;
}

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

body,
html {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--neutral-neutral-700-background);
}

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

.animate-form.active {
  opacity: 1;
}

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.animate.fade-up {
  transform: translateY(-50px);
}

.animate.fade-left {
  transform: translateX(-50px);
}

.animate.fade-right {
  transform: translateX(50px);
}

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

button {
  cursor: pointer;
}

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

ul {
  list-style: none;
}

p,
.main-list li {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 16px;
  color: var(--neutral-neutral-100-white);
}

.main-list li {
  line-height: 150%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.main-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/li.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.main-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.main-wrapper.fade-in {
  opacity: 1;
}

.btn-menu {
  display: none;
}

.btn {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-600-black);
  border: 1px solid var(--primary-primary-200);
  border-radius: 1000px;
  padding: 12px 48px;
  height: 48px;
  background: var(--primary-primary-200);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
}

.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;
}

.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-tetriary {
  border: 1px solid var(--primary-primary-200);
  border-radius: 1000px;
  padding: 12px 48px;
  height: 48px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  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: transparent;
  text-decoration: none;
}

.btn-tetriary:hover {
  background: var(--neutral-neutral-600-black);
  color: var(--primary-primary-300);
  border: 1px solid var(--primary-primary-300);
}

.btn-tetriary:hover svg {
  transform: scaleX(1.3) translateX(5px);
}

.btn-tetriary:active {
  background: var(--neutral-neutral-700-background);
  color: var(--primary-primary-400);
  border: 1px solid var(--primary-primary-400);
}

.btn-tetriary:active svg path {
  stroke: var(--primary-primary-400);
}

.btn-tetriary:disabled {
  color: var(--neutral-neutral-400);
  border: 1px solid var(--neutral-neutral-400);
  background: transparent;
}

.btn-tetriary:disabled svg path {
  stroke: var(--neutral-neutral-400);
}

.form-field {
  width: 100%;
  position: relative;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999999999;
  transition: opacity 0.5s ease-in-out;
  backdrop-filter: blur(100px);
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader img {
  width: 16%;
  min-width: 157px;
  max-width: 400px;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--primary-primary-200);
  transition: width 0.3s ease-in-out;
}

.error-message {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: var(--additional-red);
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
}

.error-message {
  display: none;
}

.form-field.error .error-message {
  display: block;
}

.form-field.error .input,
.form-field.error .selected {
  border: 1px solid var(--additional-red);
}

.select-wrapper.checked-option .selected {
  color: var(--neutral-neutral-100-white);
}

.input,
.selected {
  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: 48px;
  width: 100%;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--neutral-neutral-100-white);
  transition: all 0.3s ease;
  outline: none;
}

.selected {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--primary-primary-500);
  display: flex;
  align-items: center;
}

.selected.active {
  color: var(--neutral-neutral-100-white);
}

.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;
  z-index: 10;
  overflow: auto;
  max-height: 197px;
  z-index: 1000000;
}

.select-wrapper .option {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--neutral-neutral-100-white);
  background: var(--neutral-neutral-700-background);
  border-bottom: 1px solid var(--neutral-neutral-600-black);
  color: var(--neutral-neutral-100-white);
  padding: 14px 16px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
}

.select-wrapper .option:last-child {
  border-bottom: none;
}

.select-wrapper .option:hover {
  background: var(--primary-primary-200);
}

.select-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.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>');
}
.input::placeholder,
.selected::placeholder {
  color: var(--primary-primary-500);
}

.input:hover,
.selected:hover {
  border: 1px solid var(--primary-primary-400);
}

.input:focus,
.select-wrapper.active .selected {
  border: 1px solid var(--primary-primary-200);
}

.input:disabled,
.selected:disabled {
  border: 1px solid var(--neutral-neutral-400);
  color: var(--neutral-neutral-400);
}

.search-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.decor {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.decor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -84px;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(50% 50% at 50% 50%, rgb(174, 220, 33) 0%, rgb(16, 16, 16) 100%);
  z-index: -1;
  animation: move-circles 60s linear infinite;
}

.decor::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -94px;
  transform: translateY(-40%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(50% 50% at 50% 50%, rgb(174, 220, 33) 0%, rgb(16, 16, 16) 100%);
  z-index: -1;
  animation: move-circles-2 60s linear infinite;
}

.subtitle {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-200);
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.subtitle span {
  color: var(--primary-primary-200);
}

.subtitle .orange {
  color: var(--secondary-secondary-100);
}

.subtitle::before {
  content: '';
  display: block;
  height: 1px;
  width: 220px;
  background: var(--primary-primary-600);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 120px;
}

.logo img {
  height: 22px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  color: var(--neutral-neutral-100-white);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px 16px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-primary-200);
}

.nav-link:active {
  color: var(--primary-primary-200);
}

.nav-link:disabled {
  color: var(--neutral-neutral-400);
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.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);
}

.translate-btn:last-child {
  border-bottom: none;
}

.translate-btn:hover {
  background: var(--primary-primary-200);
}

.translate-btn:active {
  background: var(--primary-primary-200);
}

.translate-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  position: relative;
  height: 40px;
  cursor: pointer;
}

.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="%23AEDC21" /></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
}

.translate-block.active::after {
  transform: rotate(180deg);
}

.translate-lang {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: var(--neutral-neutral-100-white);
}

.translate-block.active .translate-item {
  display: flex;
}

.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;
}

.hero {
  padding: 52px 0 57px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
}

.hero-image {
  max-width: 690px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  object-position: -5px -85px;
}

.hero-mobile {
  display: none;
}

.hero-form {
  border: 1px solid var(--neutral-neutral-500);
  border-radius: 16px;
  padding: 24px 36px;
  max-width: 486px;
  width: 100%;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.04);
}

.hero-form-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
  margin-bottom: 36px;
}

.hero-form-block {
  max-height: 524px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-ty-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  position: relative;
  width: 100%;
  display: none;
}

.hero-ty-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary-primary-200);
}

.hero-ty-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: var(--neutral-neutral-200);
}

.hero-ty-btn {
  position: absolute;
  top: 0;
  right: -12px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ty-btn svg {
  width: 24px;
  height: 24px;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.form button {
  margin-top: 12px;
}

.label {
  width: 100%;
  height: 140px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/label.webp) no-repeat center center;
  background-size: contain;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  text-transform: uppercase;
  color: rgba(174, 220, 33, 0.9);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--neutral-neutral-100-white);
}

.hero-subtitle {
  margin-left: -120px;
}

.join-us {
  width: 216px;
  height: 216px;
  position: absolute;
  bottom: 0;
  right: 110px;
  transform: translateY(30%);
  z-index: 3;
}

.join-us img {
  width: 100%;
}

.metrics {
  background-image: url('../images/metrics.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
}

.metrics-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.metrics-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(60px);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  max-width: 368px;
  width: 100%;
  padding: 60px 10px 0;
  gap: 16px;
  min-height: 217px;
}

.metrics-separator {
  min-height: 174px;
  height: 100%;
  width: 1px;
  background: var(--primary-primary-600);
}

.metrics-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary-primary-200);
}

.metrics-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: var(--neutral-neutral-100-white);
}

.join-item-content .btn-mobile {
  display: none;
}

.about {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.about-titles {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.about-title {
  max-width: 432px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.about-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 282px;
  width: 100%;
}

.about-item img {
  width: 100%;
  max-height: 193px;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.about-item:nth-child(2) {
  max-width: 588px;
}

.about-item:nth-child(2) img {
  max-height: 281px;
}

.about-item p {
  font-weight: 300;
  color: var(--neutral-neutral-100-white);
  font-size: 16px;
  font-family: var(--second-family);
}

.about-item p span {
  font-weight: 700;
  color: rgba(174, 220, 33, 0.9);
  text-transform: uppercase;
}

.offers-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
  width: fit-content;
  position: relative;
  padding-left: 324px;
  margin-bottom: 48px;
}

.offers-title svg {
  position: absolute;
  top: -110px;
  right: -140px;
}

.offers-content {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 24px;
}

.offers-item {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--primary-primary-600);
  display: flex;
  align-items: center;
  gap: 24px;
}

.offers-item .number {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary-primary-200);
  border: 1px solid var(--primary-primary-600);
  border-radius: 50%;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offers-item-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: var(--neutral-neutral-100-white);
}

.offers-item-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offers-item-content span {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 18px;
  color: var(--neutral-neutral-200);
}
.offers-steps {
  grid-row: 1 / 6;
  grid-column: 1 / 9;
  border-radius: 16px;
  overflow: hidden;
}

.offers-steps img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.offers-item-1 {
  grid-column: 6 / 15;
  grid-row: 1 / 1;
}

.offers-item-2 {
  grid-column: 7 / 15;
  grid-row: 2 / 2;
}

.offers-item-3 {
  grid-column: 8 / 15;
  grid-row: 3 / 3;
}

.offers-item-4 {
  grid-column: 9 / 15;
  grid-row: 4 / 4;
}

.offers-item-5 {
  grid-column: 10 / 15;
  grid-row: 5 / 5;
}

.map {
  padding: 140px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.map-content {
  max-width: 1200px;
  width: 100%;
}

.map-title-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.map-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
}

.map-content img {
  width: 100%;
  margin-bottom: 48px;
}

.map-content h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--neutral-neutral-200);
  text-align: center;
}

.mobile-buttons {
  display: none;
}

.cta {
  padding: 60px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  min-height: 264px;
  margin-bottom: 100px;
  max-width: 1205px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.cta-left,
.cta-right {
  width: 48%;
  white-space: nowrap;
}

.cta-item {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--neutral-neutral-100-white);
}

.cta-item span {
  color: var(--secondary-secondary-100);
}

.cta-item:nth-child(2) {
  align-self: center;
}

.cta-left {
  display: flex;
  justify-content: space-between;
}

.cta-right {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--neutral-neutral-100-white);
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
}

.cta-right span span {
  color: var(--secondary-secondary-100);
}

.join-us-svg {
  animation: rotate 60s linear infinite;
}

.arrow-down {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

text {
  fill: var(--neutral-neutral-200);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.markee {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  animation: scroll 360s linear infinite;
  padding: 16px 0;
}

.markee div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  white-space: nowrap;
}

.markee div::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--neutral-neutral-200);
}

.markee-container {
  overflow: hidden;
  border-top: 1px solid var(--primary-primary-200);
  border-bottom: 1px solid var(--primary-primary-200);
  margin: 0 -100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.join {
  padding: 140px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-content {
  display: flex;
  flex-direction: column;
  gap: 79px;
  max-width: 1200px;
  width: 100%;
}

.join-title-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.join-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
}

.join-item-content-text h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
}

.join-item-content-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 552px;
  padding-right: 36px;
}

.join-item-content-text p span {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-primary-200);
}

.join-item-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
}

.join-item-content img {
  width: 100%;
  max-width: 486px;
  max-height: 345px;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.reverse .join-title {
  color: transparent;
}

.reverse .join-item-content {
  justify-content: flex-start;
}

.reverse .join-item-content-text {
  padding-left: 36px;
}

.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--neutral-neutral-100-white);
  text-align: center;
  margin-bottom: 60px;
}

.footer-logo {
  max-width: 281px;
  position: relative;
}

.footer-logo img {
  max-width: 260px;
  width: 100%;
  margin-bottom: 20px;
}

.footer-logo p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--neutral-neutral-100-white);
}

.footer-logo p span {
  color: var(--primary-primary-200);
}

.footer-decor {
  position: absolute;
  display: flex;
  align-items: center;
  right: -10px;
  bottom: -70px;
}

.footer-decor::before {
  content: '';
  height: 1px;
  width: 100vw;
  background: var(--neutral-neutral-100-white);
}

.footer-decor svg {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50%;
  border: 1px solid var(--neutral-neutral-100-white);
  background: transparent;
  flex-shrink: 0;
}

.footer-content {
  padding: 0 0 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu-item {
  padding: 12px 16px;
}

.footer-menu-item a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--neutral-neutral-100-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-menu-item a:hover {
  color: var(--primary-primary-200);
}

.footer-menu-item a:active {
  color: var(--primary-primary-200);
}

.footer-menu-item a:disabled {
  color: var(--neutral-neutral-400);
}

.footer-form-block {
  max-width: 384px;
  width: 100%;
}

.footer-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-ty-block {
  min-height: 388px;
  display: flex;
  flex-direction: column;
  display: none;
}

.footer-ty-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary-primary-200);
  margin-bottom: 12px;
}

.footer-ty-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: var(--neutral-neutral-200);
  margin-bottom: 24px;
}

.footer-ty-block .btn-tetriary {
  border: none;
}

.footer-ty-block .btn-tetriary:hover {
  background: none;
}

.footer-ty-block .btn-tetriary:hover svg {
  transform: rotate(180deg);
}

.copyright-container {
  margin: 0 -100%;
  width: 100vw;
  background: var(--primary-primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  padding: 8px 0;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--neutral-neutral-600-black);
  background: var(--primary-primary-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  max-width: 1200px;
  width: 100vw;
}

.copyright a {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--neutral-neutral-600-black);
  text-decoration: none;
}

.footer-text-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .nav {
    padding: 36px 20px;
  }

  .hero-form-block {
    flex-direction: column;
    max-height: none;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }

  .hero-image {
    max-width: none;
    position: absolute;
    height: 100%;
    border-radius: 0;
  }

  .hero-image img {
    object-position: center;
    transform: none;
  }

  .label {
    background-size: cover;
    background-position: top;
  }

  .hero-title-block {
    padding: 0 20px;
  }

  .metrics-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .metrics-separator {
    display: none;
  }

  .metrics-item {
    max-width: none;
  }
  .metrics-item:nth-child(3) {
    grid-column: 1 / 3;
  }

  .metrics-item:last-child {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .about {
    padding: 120px 20px;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-titles {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 20px;
  }

  .about-titles .subtitle {
    align-self: flex-end;
    white-space: nowrap;
  }

  .about-item {
    max-width: 600px;
  }
  .about-item:nth-child(2),
  .about-item:nth-child(3) {
    max-width: 600px;
    flex-direction: column-reverse;
  }

  .offers-content {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }

  .map-title-block {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .map-title-block .subtitle {
    align-self: flex-end;
  }

  .cta {
    padding: 60px 20px 0;
  }

  .cta-content {
    flex-direction: column;
    gap: 50px;
    min-height: auto;
  }

  .cta-left {
    width: 100%;
    flex-direction: column;
    gap: 50px;
  }

  .cta-item {
    align-self: flex-start;
  }

  /* .cta-item:nth-child(2) {
    transform: translateX(-70px);
  } */

  .cta-right {
    width: 100%;
  }

  .join {
    padding: 120px 20px;
  }

  .footer-content {
    padding: 0 20px 120px;
  }
  .copyright {
    padding: 8px 20px;
  }

  .footer-menu {
    display: none;
  }

  .nav-list {
    gap: 0;
  }

  .hero-form {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 463px;
    backdrop-filter: blur(10px);
  }

  .hero-ty-block {
    min-height: 421px;
  }

  .form {
    gap: 16px;
  }

  .hero-form-title {
    margin-bottom: 24px;
  }

  .form button {
    margin-top: 8px;
  }

  .error-message {
    bottom: -15px;
  }
}

@media (max-width: 890px) {
  .join-us {
    display: none;
  }

  .hero-subtitle {
    margin-left: 0;
  }

  .offers-title {
    padding: 20px;
    text-align: center;
    width: 100%;
  }

  .offers-title svg {
    display: none;
  }

  .join-content {
    gap: 0;
  }

  .join-item-content img {
    max-width: 100%;
  }

  .join-title-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .join-title-block .btn-tetriary {
    display: none;
  }

  .join-title-block .subtitle {
    align-self: flex-end;
  }

  .join-item-content {
    flex-direction: column;
  }

  .join-item-content-text {
    padding: 0;
  }

  .reverse .join-item-content-text {
    padding: 0;
  }

  .reverse .join-item-content {
    flex-direction: column-reverse;
  }

  .nav-btns {
    display: none;
  }

  .nav-list {
    flex-direction: column;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    backdrop-filter: blur(60px);
    background: rgba(255, 255, 255, 0.04);
    z-index: 100;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    gap: 20px;
  }

  html.active {
    overflow: hidden;
    width: 100%;
  }

  html.active body {
    width: 100%;
  }

  html.active .nav-list {
    transform: translateY(0);
  }

  .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;
  }

  .hero {
    padding: 0;
    z-index: 9;
    margin-top: -116px;
  }

  .hero-form-block {
    padding-top: 116px;
  }

  .hero-image {
    top: 0;
    left: 0;
  }

  .hero-image img {
    transform: scale(1.3);
    object-position: top;
  }

  .nav {
    position: relative;
    z-index: 20;
  }

  .footer-content {
    flex-direction: column-reverse;
    gap: 100px;
    align-items: center;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    padding: 20px 16px;
    width: 100%;
    display: block;
  }

  .footer-ty-block {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .metrics-item {
    padding: 25px;
    justify-content: center;
    gap: 8px;
    min-height: auto;
    height: 100%;
    backdrop-filter: blur(15px);
  }

  .metrics-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 18px;
  }

  .nav {
    padding: 20px;
  }

  .hero {
    margin-top: -100px;
  }

  .hero-form {
    margin-top: 60px;
    padding: 24px 16px;
    border-radius: 8px;
  }

  .hero-form-title {
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
  }

  .hero-form-block {
    padding: 116px 20px 150px;
  }

  /* .form {
    gap: 16px;
  } */

  .form button {
    margin-top: 8px;
    width: 100%;
  }

  .label {
    background-image: url(../images/label-mob.webp);
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-mobile {
    display: block;
  }

  .hero-desktop {
    display: none;
  }

  .subtitle {
    font-size: 16px;
  }

  .hero-subtitle {
    max-width: 250px;
    white-space: break-spaces;
  }

  .hero-subtitle:before {
    content: none;
  }

  .hero-image img {
    transform: none;
    object-position: center;
  }

  .metrics {
    margin-top: 36px;
    padding: 36px 20px;
  }

  .metrics-title {
    font-size: 20px;
  }

  .metrics-text {
    font-size: 14px;
  }

  .metrics-item {
    border-radius: 6px;
    padding: 16px 0;
  }

  .about {
    padding: 80px 20px;
  }

  .about-title {
    font-size: 24px;
  }

  .offers-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .offers-item .number {
    font-size: 14px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .offers-item-title {
    font-size: 16px;
  }

  .offers-item-content span {
    font-size: 16px;
  }

  .offers-item-content {
    gap: 8px;
  }

  .offers-item {
    padding-bottom: 12px;
    gap: 16px;
  }

  .offers-content {
    gap: 20px;
  }

  .map {
    padding: 80px 20px;
  }

  .map-title {
    font-size: 24px;
  }

  .map-content h4 {
    font-size: 14px;
  }

  .cta-item {
    font-size: 24px;
  }

  /* .cta-item:nth-child(2) {
    transform: translateX(-30px);
  } */

  .cta-right {
    font-size: 24px;
  }

  .markee {
    padding: 8px 0;
    gap: 12px;
  }

  .markee div {
    gap: 12px;
  }

  .join {
    padding: 80px 20px;
  }

  .join-title {
    font-size: 24px;
  }

  .join-item-content {
    gap: 24px;
  }
  .join-title-block {
    margin-bottom: 32px;
  }

  .footer {
    padding: 0 20px;
  }

  .footer-title {
    font-size: 24px;
    border-top: 1px solid var(--primary-primary-600);
    border-bottom: 1px solid var(--primary-primary-600);
    padding: 12px 0;
    width: 100%;
    margin-bottom: 36px;
    text-align: left;
  }

  .footer-content {
    flex-direction: column;
    gap: 36px;
    padding: 0 0 80px;
  }

  .footer-decor {
    display: none;
  }

  .footer-logo img {
    height: 12px;
    margin-bottom: 8px;
    max-width: fit-content;
  }

  .footer-logo p {
    font-size: 12px;
  }

  .footer-logo {
    align-self: flex-start;
    max-width: fit-content;
  }

  .copyright {
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 -20px;
  }

  .cta .decor:after {
    display: none;
  }

  .cta .decor:before {
    width: 193px;
    height: 193px;
    filter: blur(70px);
    left: 0;
  }

  /* .footer-form {
    gap: 16px;
  } */

  .footer .decor:after {
    display: none;
  }

  .footer .decor:before {
    width: 193px;
    height: 193px;
    filter: blur(70px);
    left: auto;
    right: 20px;
    top: 20%;
  }

  .footer-form .btn {
    margin-top: 8px;
  }

  .footer-text-mobile {
    font-family: var(--second-family);
    font-weight: 300;
    color: var(--neutral-neutral-100-white);
    font-size: 16px;
    display: block;
  }

  .footer-text-mobile span {
    font-weight: 700;
    color: rgba(174, 220, 33, 0.9);
    text-transform: uppercase;
  }

  .join-item-content .btn-mobile {
    display: flex;
    align-self: center;
  }

  .about-item img,
  .about-item:nth-child(2) img {
    max-height: 220px;
  }

  .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px 0;
  }

  .hero-ty-block {
    min-height: 417px;
  }

  .hero-ty-title {
    font-size: 18px;
  }

  .hero-ty-text {
    font-size: 14px;
  }

  .footer-ty-title {
    font-size: 18px;
  }

  .footer-ty-text {
    font-size: 14px;
  }

  .footer-ty-block {
    min-height: 396px;
  }
}

@media (max-width: 371px) {
  .hero-ty-block {
    min-height: 433px;
  }
}

@keyframes move-circles {
  0% {
    filter: blur(70px);
  }
  15% {
    filter: blur(100px);
  }
  35% {
    filter: blur(50px);
  }
  50% {
    filter: blur(90px);
  }
  65% {
    filter: blur(50px);
  }
  85% {
    filter: blur(100px);
  }
  100% {
    filter: blur(70px);
  }
}

@keyframes move-circles-2 {
  0% {
    filter: blur(100px);
  }
  15% {
    filter: blur(50px);
  }
  35% {
    filter: blur(100px);
  }
  50% {
    filter: blur(50px);
  }
  65% {
    filter: blur(100px);
  }
  85% {
    filter: blur(50px);
  }
  100% {
    filter: blur(100px);
  }
}
