/*
Theme Name: Vibbix
Theme URI: https://vibbix.com/
Author: Codex
Description: ACF-powered Gutenberg-ready recruitment theme for Vibbix.
Version: 1.0.0
Text Domain: vibbix
*/

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

:root {
  --navy:    #0f1881;
  --black:   #010209;
  --pink:    #e32d7c;
  --lav:     #d8dbff;
  --lav-lt:  #e8e9fc;
  --glass:   rgba(255,255,255,0.4);
  --glass-nv:rgba(15,24,129,0.4);
  --fh: 'Lexend Exa', sans-serif;
  --fb: 'Roboto', sans-serif;
  --pad: 340px;       /* side padding 1920 */
  --h2: 80px;
  --h2-lh: 120px;
  --h3: 42px;
  --h3-lh: 56px;
  --card-w: 520px;
  --col-w: 600px;
}

@media (max-width: 1919px) { :root { --pad: 100px; } }
@media (max-width: 1439px) { :root { --pad: 60px;  --h2: 60px; --h2-lh: 80px; --h3: 36px; --h3-lh: 46px; --card-w: 420px; --col-w: 500px; } }
@media (max-width: 1100px) { :root { --pad: 40px;  --h2: 48px; --h2-lh: 64px; --h3: 30px; --h3-lh: 40px; --card-w: 340px; --col-w: 400px; } }
@media (max-width: 767px)  { :root { --pad: 50px;  --h2: 36px; --h2-lh: 48px; --h3: 26px; --h3-lh: 34px; --card-w: 100%; --col-w: 100%; } }
@media (max-width: 479px)  { :root { --pad: 20px;  --h2: 28px; --h2-lh: 38px; --h3: 22px; --h3-lh: 30px; } }

html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--black);
  font-family: var(--fb);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

.title-reveal {
  --title-reveal-delay: 0s;
  --title-reveal-duration: 1.55s;
  --title-reveal-ease: cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

html.has-title-reveal .title-reveal {
  color: var(--title-reveal-muted-color, currentColor);
  -webkit-text-stroke: 1px var(--title-reveal-stroke-color, transparent);
  transition: color .6s ease-out var(--title-reveal-delay), -webkit-text-stroke-color .6s ease-out var(--title-reveal-delay);
}

html.has-title-reveal .title-reveal::after {
  content: attr(data-title-reveal-text);
  position: absolute;
  inset: 0;
  color: var(--title-reveal-solid-color, currentColor);
  white-space: pre-wrap;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
  transition: clip-path var(--title-reveal-duration) var(--title-reveal-ease) var(--title-reveal-delay);
}

html.has-title-reveal .title-reveal.is-revealed {
  color: var(--title-reveal-solid-color, currentColor);
  -webkit-text-stroke-color: transparent;
}

html.has-title-reveal .title-reveal.is-revealed::after {
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  html.has-title-reveal .title-reveal {
    color: var(--title-reveal-solid-color, currentColor);
    -webkit-text-stroke-color: transparent;
    transition: none;
  }

  html.has-title-reveal .title-reveal::after {
    clip-path: none;
    transition: none;
  }
}

.image-reveal {
  --image-reveal-delay: 0s;
  --image-reveal-duration: 1.15s;
  --image-reveal-ease: cubic-bezier(.16, 1, .3, 1);
  --image-reveal-offset: -88px;
}

html.has-image-reveal .image-reveal {
  opacity: 0.01;
  transform: translate3d(var(--image-reveal-offset), 0, 0);
  clip-path: inset(0 100% 0 0 round inherit);
  will-change: transform, clip-path, opacity;
  transition:
    transform var(--image-reveal-duration) var(--image-reveal-ease) var(--image-reveal-delay),
    clip-path var(--image-reveal-duration) var(--image-reveal-ease) var(--image-reveal-delay),
    opacity .45s ease-out var(--image-reveal-delay);
}

html.has-image-reveal .image-reveal[data-reveal-side="right"] {
  clip-path: inset(0 0 0 100% round inherit);
}

html.has-image-reveal .image-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0 0 round inherit);
}

@media (prefers-reduced-motion: reduce) {
  html.has-image-reveal .image-reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

.repetition-stack {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --repetition-origin: 50% 50%;
  --repetition-duration: 680ms;
  --repetition-ease: cubic-bezier(.2, .8, .2, 1);
}

.repetition-stack .repetition-stack__source {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.repetition-stack .repetition-stack__layer,
.repetition-stack .repetition-stack__image {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.repetition-stack .repetition-stack__layer {
  overflow: hidden;
  pointer-events: none;
  transform: scale(1);
  transform-origin: var(--repetition-origin);
  transition: transform var(--repetition-duration) var(--repetition-ease);
  transition-delay: var(--repetition-delay, 0ms);
  will-change: transform;
  backface-visibility: hidden;
}

.repetition-stack .repetition-stack__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--repetition-image-rest-scale, 1.02));
  transform-origin: inherit;
  transition: transform var(--repetition-duration) var(--repetition-ease);
  transition-delay: var(--repetition-delay, 0ms);
  will-change: transform;
  backface-visibility: hidden;
}

.repetition-stack.is-active .repetition-stack__layer {
  transform: scale(var(--repetition-scale, 1));
}

.repetition-stack.is-active .repetition-stack__image {
  transform: scale(var(--repetition-image-active-scale, 1.08));
}

@media (prefers-reduced-motion: reduce) {
  .repetition-stack .repetition-stack__source {
    opacity: 1;
  }

  .repetition-stack .repetition-stack__layer {
    display: none;
  }
}

.site-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  mix-blend-mode: difference;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  will-change: transform, opacity;
  transition: opacity .2s ease;
}

.site-cursor.is-visible {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: none !important;
  }
}

/* в”Ђв”Ђв”Ђ TYPOGRAPHY в”Ђв”Ђв”Ђ */
.h1 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1.2;
  letter-spacing: -4px;
}
@media (max-width: 767px) { .h1 { letter-spacing: -2px; } }

.h2 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: var(--h2);
  line-height: var(--h2-lh);
  letter-spacing: clamp(-2px, -0.05em, -4px);
  white-space: nowrap;
}
@media (max-width: 767px) { .h2 { white-space: normal; } }

.h3 {
  font-family: var(--fh);
  font-weight: 600;
  font-size: var(--h3);
  line-height: var(--h3-lh);
  letter-spacing: -2.2px;
}

.body-text {
  font-family: var(--fb);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.6;
}
.body-text p + p { margin-top: 0; }
.body-text ul { padding-left: 22px; }

/* в”Ђв”Ђв”Ђ CONTAINER в”Ђв”Ђв”Ђ */
.container {
  max-width: calc(1920px - var(--pad)*2);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container-full { padding: 0 var(--pad); }

/* в”Ђв”Ђв”Ђ BUTTONS в”Ђв”Ђв”Ђ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
  border: 1px solid currentColor;
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  font-family: var(--fh);
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.6;
  letter-spacing: -1px;
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  position: relative;
  overflow: visible;
}

.btn-more-about-us{
  padding: 30px 20px !important;
  max-width: 316px;
  max-height: 92px;
}

.btn-more-about-us img{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-lg {
  padding: 28px 60px;
  border-color: var(--navy);
  font-size: clamp(14px, 1.2vw, 20px);
}
.btn-lg .glow {
  position: absolute;
  bottom: -69px;
  left: 50%;
  transform: translateX(-50%);
  width: 326px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(15,24,129,.2) 0%, transparent 70%);
  pointer-events: none;
}
.btn img { width: 24px; height: 24px; flex-shrink: 0; }
.btn__label {
  position: relative;
  z-index: 2;
}
.btn--black-fill,
.btn--outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: filter .2s ease, transform .2s ease, color .28s ease;
}
.btn--black-fill img,
.btn--outline img {
  transition: filter .28s ease, opacity .28s ease;
}
.btn--black-fill > *,
.btn--outline > * {
  position: relative;
  z-index: 2;
}
.btn--black-fill::before,
.btn--outline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200%;
  background: #010209;
  border-radius: 50% 50% 0 0;
  transform: translateY(100%);
  transition: transform .6s ease-in-out, border-radius .6s ease-in-out;
  z-index: 0;
  pointer-events: none;
}
.btn--black-fill .glow,
.btn--outline .glow {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn--black-fill:hover,
  .btn--black-fill:focus-visible,
  .btn--outline:hover,
  .btn--outline:focus-visible {
    color: #fff;
    filter: brightness(1.03);
  }

  .btn--black-fill:hover::before,
  .btn--black-fill:focus-visible::before,
  .btn--outline:hover::before,
  .btn--outline:focus-visible::before {
    transform: translateY(0%);
    border-radius: 8px 8px 0 0;
  }

  .btn--black-fill:hover img,
  .btn--black-fill:focus-visible img,
  .btn--outline:hover img,
  .btn--outline:focus-visible img {
    filter: brightness(0) invert(1);
  }

  .btn--black-fill:hover .menu-scramble__value,
  .btn--black-fill:focus-visible .menu-scramble__value,
  .btn--outline:hover .menu-scramble__value,
  .btn--outline:focus-visible .menu-scramble__value {
    color: #fff;
  }
}

/* в”Ђв”Ђв”Ђ HEADER в”Ђв”Ђв”Ђ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 100px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lav-lt);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.header__logo { height: 40px; }
.header__logo img { height: 100%; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 40px);
}
.header__nav a {
  font-family: var(--fh);
  font-size: clamp(13px, 1.1vw, 20px);
  line-height: 1.6;
  letter-spacing: -1px;
  color: var(--black);
  text-decoration: none;
  transition: opacity .2s;
}
.header__nav a:hover { opacity: .6; }

[data-menu-scramble] .menu-scramble__text {
  position: relative;
  display: inline-block;
}

[data-menu-scramble] .menu-scramble__text::after {
  content: attr(data-label);
  visibility: hidden;
}

[data-menu-scramble] .menu-scramble__value {
  position: absolute;
  inset: 0;
  white-space: pre;
}

.header__nav [data-menu-scramble]:hover,
.header__nav [data-menu-scramble]:focus-visible {
  opacity: 1;
}

/* hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.burger span:nth-child(1) {
  height: 6px;
  align-self: stretch;
  border-radius: 10px;
  background: #010209;
}

.burger span:nth-child(2) {
  height: 4px;
  align-self: stretch;
  border-radius: 10px;
  background: #010209;
}

.burger span:nth-child(3) {
  height: 2px;
  align-self: stretch;
  border-radius: 10px;
  background: #010209;
}

.burger.open span:nth-child(1) { transform: rotate(-20deg); }
.burger.open span:nth-child(2) { transform: rotate(-20deg); }
.burger.open {
  gap: 5px;
}

.mobile-menu{
  display: none;
  box-sizing: border-box;
  padding: 50px;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  margin: 0;
  z-index: 199;
  border-bottom: 1px solid #E8E9FC;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(10px);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mobile-menu.open { display: flex; justify-content: space-between; }
.mobile-menu a {
  font-family: var(--fh);
  font-size: 28px;
  color: var(--black);
  text-decoration: none;
}

.mobile-menu [data-menu-scramble] {
  width: fit-content;
}

.mobile-menu__logo {
  width: 196px;
  display: flex;
  justify-content: center;
}

.mobile-menu__logo img{
  width: 97.667px;
  height: 100px;
  display: block;
}

.mobile-menu__socials{
  display: flex;
  gap: 50px;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 767px) {
  .burger { display: flex; }
}

/* в”Ђв”Ђв”Ђ HERO в”Ђв”Ђв”Ђ */
.hero {
  padding-top: 105px;
  min-height: 1216px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1100px) { .hero { min-height: auto; padding-bottom: 60px; } }

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 100px auto 0;
  width: min(880px, 100% - var(--pad)*2);
  text-align: center;
}

.hero__frame {
  margin: 100px var(--pad) 0;
  width: calc(100% - var(--pad)*2);
  max-width: 1240px;
  aspect-ratio: 1240/600;
  background: var(--navy);
  border: 1px solid var(--lav-lt);
  border-radius: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.hero__frame-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__frame-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__frame-inner {
  position: relative;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid var(--lav-lt);
  border-radius: clamp(10px, 1.3vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__frame-logo {
  width: min(1000px, calc(100% - 96px));
  aspect-ratio: 1000 / 257.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__frame-logo svg,
.hero__frame-logo-raster {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  mix-blend-mode: difference;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.hero__frame-logo svg {
  --fill-0: #0188F6;
}

.hero__frame-logo svg [fill]:not([fill="none"]) {
  fill: var(--fill-0) !important;
}

.hero__frame-logo-raster {
  background: #0188F6;
  -webkit-mask-image: var(--hero-logo-image);
  mask-image: var(--hero-logo-image);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (max-width: 767px) {
  .hero__frame { aspect-ratio: 4/3; }
}

/* в”Ђв”Ђв”Ђ WHO WE ARE в”Ђв”Ђв”Ђ */
.who {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: clamp(30px, 5vw, 80px);
  padding: 140px var(--pad);
}
@media (max-width: 1100px) { .who { gap: 40px; } }
@media (max-width: 767px) { .who { flex-direction: column; padding: 60px var(--pad); } }

.who__img { width: 440px; height: 440px; flex-shrink: 0; }
.who__img img,
.who__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.who__model {
  width: 100%;
  height: 100%;
  display: block;
  background: radial-gradient(circle at 50% 45%, rgba(168,95,251,.18), rgba(15,24,129,0) 62%);
  --poster-color: transparent;
  pointer-events: none;
}
@media (max-width: 767px) { .who__img { width: 400px; height: 400px; max-width: 100%; } }

.who__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  max-width: 600px;
}
.who__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  padding-left: 15px;
}

/* в”Ђв”Ђв”Ђ DARK SECTION BASE в”Ђв”Ђв”Ђ */
.dark-section {
  background: var(--navy);
  border-radius: clamp(20px, 2vw, 40px);
  overflow: hidden;
  position: relative;
}
.dark-section__bg {
  position: absolute;
  pointer-events: none;
  opacity: 1.3;
  padding: 100px;
}
.dark-section__bg img { width: 100%; height: 100%; object-fit: cover; }

/* в”Ђв”Ђв”Ђ SERVICES в”Ђв”Ђв”Ђ */
.services { padding-bottom: 80px; }

.services__top {
  padding: 105px var(--pad) 40px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 195px;
  padding: 0 var(--pad) 80px;
}
@media (max-width: 767px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__grid .svc-card:nth-child(even) { margin-top: 0 !important; }
}

.svc-card { display: flex; flex-direction: column; gap: 45px; z-index: 2; }
.svc-card:nth-child(even) { margin-top: clamp(80px, 12vw, 200px); }

.svc-img {
  width: 100%;
  aspect-ratio: 520/693;
  border-radius: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  background: #1a2590;
}
.svc-img img { width: 100%; height: 100%; object-fit: cover; }

.svc-title {
  font-family: var(--fh);
  font-weight: 600;
  font-size: clamp(26px, 2.5vw, 44px);
  line-height: 1.3;
  letter-spacing: -2px;
  color: #fff;
}
.svc-desc { font-size: clamp(13px, 1.1vw, 18px); line-height: 1.6; color: rgba(255,255,255,.85); }
.svc-desc p + p { margin-top: 4px; }

/* в”Ђв”Ђв”Ђ BENEFITS в”Ђв”Ђв”Ђ */
.benefits { padding-top: 195px; }

.benefits__row {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 60px);
  padding: 0 var(--pad);
}
.benefits__row + .benefits__row { margin-top: 90px; }
.benefits__row--reverse { flex-direction: row-reverse; }
@media (max-width: 767px) {
  .benefits__row,
  .benefits__row--reverse { flex-direction: column; }
}

.benefits__imgs {
  flex-shrink: 0;
  width: clamp(280px, 40vw, 600px);
  height: clamp(200px, 28vw, 400px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) { .benefits__imgs { width: 100%; height: 260px; } }

.img-tl, .img-br {
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--black);
}
.img-tl { top: 0; left: 0; transform: rotate(180deg) scaleY(-1); }
.img-br { bottom: 0; right: 0; }
.img-tl img, .img-br img { width: 100%; height: 100%; object-fit: cover; }

.img-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50%;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.img-center img { width: 100%; height: 100%; object-fit: contain; }

.benefits__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits__list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.6;
}
.benefits__list b { letter-spacing: 1px; }

.bimg-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60%;
  aspect-ratio: 400/244;
  border: 1px solid var(--black);
  border-radius: 14px;
  overflow: hidden;
}
.bimg-center img { width: 100%; height: 100%; object-fit: cover; }

/* в”Ђв”Ђв”Ђ CTA SECTION в”Ђв”Ђв”Ђ */
.cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 105px var(--pad);
  gap: 50px;
}

.cta2 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px var(--pad);
  gap: 50px;
}

.cta__text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--fh);
  font-weight: 600;
}
.cta__text .line-blue  { font-size: clamp(22px, 3vw, 44px); line-height: 1.27; color: var(--navy); letter-spacing: -2px; }
.cta__text .line-black { font-size: clamp(18px, 2.3vw, 32px); line-height: 1.37; letter-spacing: -1.5px; color: var(--black); }

.cta__btn { position: relative; z-index: 2; }

.marquee-wrap {
  position: absolute;
  left: 0; right: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}
.marquee-wrap--top { top: 55%; }
.marquee-wrap--bot { top: calc(55% + 120px); }

.marquee {
  display: inline-block;
  font-family: var(--fh);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.5;
  letter-spacing: -3px;
  white-space: nowrap;
}
.marquee--fwd  { color: var(--lav); animation: mq-fwd 30s linear infinite; }
.marquee--rev  { color: var(--lav-lt); animation: mq-rev 30s linear infinite; }

@keyframes mq-fwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mq-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   TEAM вЂ” redesigned to match Figma 294-1250
   Layout: 6 photo cards + SVG connector + center text
   Scales cleanly from 1440 в†’ 1920
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
.team {
  position: relative;
  overflow: hidden;
  padding: 0 110px;
  padding-top: 110px;
}

/* Stage keeps Figma's 1440Г—865 aspect ratio and fills up to 1920px */
.team__stage {
  position: relative;
  max-width: 1450px;
  aspect-ratio: 1440 / 865;
  margin: 0 auto;
}

/* SVG connector lines (Vector) вЂ” percentage coords from stage */
.team__vector {
  position: absolute;
  left: 10.28%;   /* 148/1440 */
  top:  18.84%;   /* 163/865  */
  width:  79.44%; /* 1144/1440 */
  height: 69.83%; /* 604/865   */
  pointer-events: none;
}
.team__vector img { width: 100%; height: 100%; display: block; }

/* Photo card base */
.team-card {
  position: absolute;
  width: 20.83%;    /* 300/1440 */
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

/* Photo inside card */
.team-card__photo {
  position: absolute;
  inset: 0;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Colored decoration overlay */
.team-card__union {
  position: absolute;
  mix-blend-mode: difference;
  pointer-events: none;
}
.team-card__union img {
  display: block;
  width: 100%;
  height: 100%;
}

/* в”Ђв”Ђ Card positions (% of stage) в”Ђв”Ђ */
.team-card--01 { left: 12.5%;  top: 7.51%;  }   /* 180/1440, 65/865  */
.team-card--02 { left: 66.67%; top: 7.51%;  }   /* 960/1440, 65/865  */
.team-card--03 { left: 0;      top: 42.20%; }   /* 0,        365/865 */
.team-card--04 { right: 0;     top: 42.20%; }   /* right:0,  365/865 */
.team-card--05 { left: 6.94%;  top: 76.88%; }   /* 100/1440, 665/865 */
.team-card--06 { right: 6.94%; top: 76.88%; }   /* right:100, 665/865 */

/* в”Ђв”Ђ Union overlay positions (% of card dimensions) в”Ђв”Ђ */
/* Card 01: Union5 (bd5bf221) вЂ” left:160, top:56, w:139, h:143 in 300Г—200 */
.team-card--01 .team-card__union { left: 53.3%; top: 28%;   width: 46.4%; height: 71.5%; }

/* Card 02: Union4 (c53f528d) вЂ” left:15, top:44, w:40, h:155 in 300Г—200 */
.team-card--02 .team-card__union { left: 5%;    top: 22%;   width: 13.3%; height: 77.5%; }

/* Card 03: Union3 (81f1a826) вЂ” left:205, top:79, w:94, h:120 in 300Г—200 */
.team-card--03 .team-card__union { left: 68.3%; top: 39.5%; width: 31.3%; height: 60%;   }

/* Card 04: Union2 (d633215d) вЂ” left:-1, top:79, w:94, h:120 in 300Г—200 */
.team-card--04 .team-card__union { left: -0.3%; top: 39.5%; width: 31.3%; height: 60%;   }

/* Card 05: Union1 (32d5b99c) вЂ” left:246, top:44, w:37, h:155 in 300Г—200 */
.team-card--05 .team-card__union { left: 82%;   top: 22%;   width: 12.3%; height: 77.5%; }

/* Card 06: Union0 (21da0150) вЂ” left:-1, top:69, w:149, h:130 in 300Г—200 */
.team-card--06 .team-card__union { left: -0.3%; top: 34.5%; width: 49.7%; height: 65%;   }

/* Center text block */
.team__text {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 670px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

/* Mobile: hide cards, show text only */
@media (max-width: 767px) {
  .team { overflow: visible; }
  .team__stage {
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px var(--pad);
  }
  .team__vector,
  .team__text {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
  }
}

/* в”Ђв”Ђв”Ђ ABOUT в”Ђв”Ђв”Ђ */
.about { padding: 80px 0; }

.about__title {
  padding: 0 var(--pad) 60px;
  padding-top: 110px;
}

.about__grid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(20px, 3vw, 60px);
  align-items: start;
}
@media (max-width: 767px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-card:nth-child(n) { margin-top: 0 !important; }
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-card:nth-child(2) { margin-top: clamp(60px, 12vw, 200px); }
.about-card:nth-child(3) { margin-top: 110px; }
.about-card:nth-child(4) { margin-top: 305px; }

.about-img {
  width: 90%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: -50px;
  position: relative;
  z-index: 1;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-box {
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--lav);
  border-radius: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 50px);
  padding-top: 40px;
  position: relative;
  z-index: 2;
}
.about-box-title {
  font-family: var(--fh);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.27;
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.about-box-body { font-size: clamp(13px, 1vw, 18px); line-height: 1.6; }
.about-box-body ul { padding-left: 20px; }
.about-box-body p + p { margin-top: 0; }

/* в”Ђв”Ђв”Ђ JOBS в”Ђв”Ђв”Ђ */
.jobs { padding-bottom: 125px; margin-top: 110px; }

.jobs__top {
  padding: 80px var(--pad) 20px;
  padding-top: 95px;
}

.jobs__desc {
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.6;
  color: #fff;
  max-width: 680px;
  margin-top: 12px;
}

.jobs__filters {
  display: flex;
  align-items: flex-start;
  position: absolute;
  gap: 16px;
  padding: 40px var(--pad) 0;
  padding-top: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.jobs__input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--glass-nv);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 10px;
  flex: 1;
  max-width: 400px;
  width: 100%;
}
.jobs__input img { width: 22px; height: 22px; flex-shrink: 0; }
.jobs__input input {
  background: none; border: none; outline: none;
  font-family: var(--fb); font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,.5); width: 100%;
}
.jobs__input input::placeholder { color: rgba(255,255,255,.5); }

.jobs__drop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 20px;
  background: var(--glass-nv);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 10px;
  flex: 1;
  max-width: 400px;
  width: 100%;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.jobs__drop span {
  font-family: var(--fb); font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,.5);
}
.jobs__drop img { width: 22px; height: 22px; flex-shrink: 0; }

.btn-apply {
  padding: 16px 35px;
  background: var(--glass-nv);
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
  border-radius: 100px;
  font-family: var(--fb); font-weight: 700; font-size: 16px; letter-spacing: 1.5px;
  color: #fff; cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.btn-apply:hover { background: rgba(255,255,255,.15); }

.jobs__cards {
  padding: 40px var(--pad) 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 160px;
}
.jobs__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .jobs__row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .jobs__row { grid-template-columns: 1fr; } }

.job-card {
  background: rgba(1,2,9,.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: clamp(20px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  border: 1px solid rgba(216, 219, 255, 0.08);
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.job-title {
  font-family: var(--fh); font-weight: 600;
  font-size: clamp(22px, 2.5vw, 40px);
  line-height: 1.3; letter-spacing: -2px; color: #fff;
}
.job-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: clamp(12px, 1vw, 16px); line-height: 1.75;
  color: var(--lav); margin-top: 8px;
  padding-bottom: 80px;
}
.job-link {
  display: flex; align-items: center; gap: 8px; margin-top: 10px;
  font-family: var(--fh); font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6; letter-spacing: -1px;
  color: var(--pink); cursor: pointer;
  transition: color .28s ease;
}
.job-link img { width: 19px; height: 19px; transition: filter .28s ease, opacity .28s ease; }

.jobs__more {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: fit-content;
  margin: 50px auto 0;
  font-family: var(--fh); font-size: 18px; letter-spacing: -1px;
  color: var(--pink); text-decoration: underline; cursor: pointer;
  transition: color .28s ease;
}

.jobs__more img {
  transition: filter .28s ease, opacity .28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .jobs__more:hover {
    color: #fff;
  }

  .jobs__more:hover img {
    filter: brightness(0) invert(1);
  }
}

/* в”Ђв”Ђв”Ђ DROPDOWN MENU в”Ђв”Ђв”Ђ */
.drop-menu {
  position: absolute;
  top: calc(100% + 4px); left: 0; right: 0;
  background: rgba(15,24,129,.95);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  overflow: hidden;
  display: none; z-index: 20;
}
.drop-menu.open { display: block; }
.drop-menu li {
  list-style: none; padding: 8px 18px;
  font-family: var(--fb); font-size: 15px; color: #fff; cursor: pointer;
}
.drop-menu li:hover { background: rgba(255,255,255,.1); }

/* footer dropdown */
.fdrop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(15,24,129,.25);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(15,24,129,.12);
  overflow: hidden;
  display: none;
  z-index: 20;
}
.fdrop-menu.open { display: block; }
.fdrop-menu li {
  list-style: none;
  padding: 10px 18px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.fdrop-menu li:hover { background: var(--lav-lt); }
.fdrop-menu li.active {
  background: rgba(15,24,129,.08);
  color: var(--navy);
  font-weight: 600;
}

#themeDrop {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 24px !important;
  grid-template-areas:
    "label arrow"
    "menu menu" !important;
  align-items: start !important;
  gap: 0 16px !important;
  padding: 10px 30px !important;
}

#themeDrop.open {
  row-gap: 10px !important;
}

#themeLbl {
  grid-area: label !important;
  font: 400 18px/28px Roboto, sans-serif !important;
  color: rgba(15, 24, 129, 0.5) !important;
}

#themeDrop.has-value #themeLbl {
  color: #0f1881 !important;
}

#themeDrop > img {
  grid-area: arrow !important;
  width: 24px !important;
  height: 24px !important;
  justify-self: end !important;
  transform: rotate(0deg) !important;
  transition: transform .2s ease !important;
}

#themeDrop.open > img {
  transform: rotate(180deg) !important;
}

#themeDrop .fdrop-menu,
#themeMenu {
  grid-area: menu !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  display: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#themeDrop.open .fdrop-menu,
#themeDrop.open #themeMenu {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

#themeDrop .fdrop-menu li,
#themeMenu li {
  padding: 0 !important;
  font: 400 18px/28px Roboto, sans-serif !important;
  color: #0f1881 !important;
  background: transparent !important;
}

#themeDrop .fdrop-menu li:hover,
#themeMenu li:hover {
  color: #e32d7c !important;
  background: transparent !important;
}

#deptDrop {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 24px !important;
  grid-template-areas:
    "label arrow"
    "menu menu" !important;
  align-items: start !important;
  gap: 0 16px !important;
  padding: 10px 30px !important;
}

#deptDrop.open {
  row-gap: 10px !important;
}

#deptLbl {
  grid-area: label !important;
  font: 400 18px/28px Roboto, sans-serif !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

#deptDrop > img {
  grid-area: arrow !important;
  width: 24px !important;
  height: 24px !important;
  justify-self: end !important;
  transform: rotate(0deg) !important;
  transition: transform .2s ease !important;
}

#deptDrop.open > img {
  transform: rotate(180deg) !important;
}

#deptDrop .drop-menu,
#deptMenu {
  grid-area: menu !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  display: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#deptDrop.open .drop-menu,
#deptDrop.open #deptMenu {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

#deptDrop .drop-menu li,
#deptMenu li {
  padding: 0 !important;
  font: 400 18px/28px Roboto, sans-serif !important;
  color: #fff !important;
  background: transparent !important;
}

#deptDrop .drop-menu li:hover,
#deptMenu li:hover {
  color: #e32d7c !important;
  background: transparent !important;
}

/* в”Ђв”Ђв”Ђ FOOTER в”Ђв”Ђв”Ђ */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom,
    rgba(251,251,251,.75) 0%,
    rgba(251,251,251,.75) 49.6%,
    #d8dbff 100%);
  padding-bottom: 70px;
}

.footer--has-video {
  background: #d8dbff;
}

.footer__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer__background-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.footer__background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(251,251,251,.9) 0%,
    rgba(251,251,251,.84) 49.6%,
    rgba(216,219,255,.92) 100%);
}

.footer__top,
.footer__bottom,
.footer__copy {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px var(--pad) 80px;
  padding-top: 100px;
  align-items: start;
}
@media (max-width: 767px) { .footer__top { grid-template-columns: 1fr; gap: 40px; } }

.footer__heading .blue {
  font-family: var(--fh); font-weight: 600;
  font-size: clamp(22px, 3vw, 44px);
  line-height: 1.27; letter-spacing: -2px; color: var(--navy);
}
.footer__heading .dark {
  font-family: var(--fh); font-weight: 600;
  font-size: clamp(16px, 2vw, 32px);
  line-height: 1.37; letter-spacing: -1.5px;
  color: var(--black); margin-top: 4px;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 135px;
  isolation: isolate;
}

.f-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 30px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--navy);
  border-radius: 10px;
}
.f-field img { width: 24px; height: 24px; flex-shrink: 0; }
.f-field input,
.f-field textarea,
.f-field select {
  background: none; border: none; outline: none;
  font-family: var(--fb); font-size: 18px; line-height: 28px;
  color: var(--navy); width: 100%; resize: none;
}
.f-field input::placeholder,
.f-field textarea::placeholder { color: rgba(15,24,129,.5); }
.f-field input::-webkit-input-placeholder,
.f-field textarea::-webkit-input-placeholder { color: rgba(15,24,129,.5); }
.f-field input::-moz-placeholder,
.f-field textarea::-moz-placeholder { color: rgba(15,24,129,.5); opacity: 1; }
.f-field input:-ms-input-placeholder,
.f-field textarea:-ms-input-placeholder { color: rgba(15,24,129,.5); }
.f-field input::-ms-input-placeholder,
.f-field textarea::-ms-input-placeholder { color: rgba(15,24,129,.5); }
.f-field--textarea { align-items: flex-start; min-height: 120px; position: relative; z-index: 1; }
.f-field--drop { justify-content: space-between; cursor: pointer; position: relative; z-index: 3; }
.f-field--drop.open { z-index: 5; }
.f-field--drop span { font-family: var(--fb); font-size: 18px; line-height: 28px; color: rgba(15,24,129,.5); }
.footer__send {
  align-self: center;
  margin-top: 35px;
}

.footer__bottom {
  padding: 40px 100px;
  padding-left: 100px;
  padding-top: 125px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__logo-sym { width: 100%; padding-bottom: 40px;}
.footer__logo-sym img { width: 100%; max-height: 100px; }

.footer__vibbix{
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 232px;
}

.footer__emails{
  display: flex;
  flex-direction: row;
  gap: 35px;
}

.logo-desktop{
  display: block;
}

.logo-mobile{
  display: none;
}

.footer__col {
  display: flex; flex-direction: column; gap: 8px; max-width: 300px;
}
.footer__col-title {
  font-family: var(--fb); font-weight: 700; font-size: 16px;
  line-height: 1.75; letter-spacing: 1.5px; text-align: center;
}
.footer__col-body {
  font-family: var(--fb); font-size: 13px; line-height: 1.55;
  text-align: center; color: var(--black);
}
.footer__email {
  display: inline-flex; align-items: center; justify-content: center; 
  padding: 15px 20px;
  border: 1px solid var(--black); border-radius: 100px;
  background: var(--glass); backdrop-filter: blur(10px);
  font-family: var(--fb); font-weight: 700; font-size: 18px;
  letter-spacing: 1.5px; color: var(--black); text-decoration: underline;
  transition: background-color .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease;
}

.footer__email__hello {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 10px; padding: 15px 16px;
  border: 1px solid var(--black); border-radius: 100px;
  background: var(--glass); backdrop-filter: blur(10px);
  font-family: var(--fb); font-weight: 700; font-size: 18px;
  letter-spacing: 1.5px; color: var(--black); text-decoration: underline;
  transition: background-color .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease;
}

.footer__socials {
  display: flex; align-items: center; gap: 45px;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .24s ease;
}

.footer__socials .social-icon {
  transition: filter .28s ease, opacity .28s ease, transform .28s ease;
}

.footer__socials .social-icon--svg,
.footer__socials .social-icon--svg svg {
  display: block;
  width: 32px;
  height: 32px;
}

.footer__socials .social-icon--svg path {
  transition: fill .28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer__socials a:hover {
    transform: translateY(-1px);
  }

  .footer__socials a:hover .social-icon--svg path {
    fill: #0188F6;
  }

  .footer__socials a:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(39%) sepia(95%) saturate(3593%) hue-rotate(191deg) brightness(100%) contrast(103%);
  }

  .footer__email:hover,
  .footer__email__hello:hover {
    background: rgba(1, 2, 9, 0.8);
    border-color: #0f1881;
    color: #fff;
    box-shadow: 0 12px 32px rgba(1, 2, 9, 0.18);
  }
}

.footer__copy {
  text-align: center;
  font-family: var(--fb); font-size: 13px; color: var(--black);
  margin-top: 40px;
  padding: 0 var(--pad);
}

/* в”Ђв”Ђв”Ђ UTILS в”Ђв”Ђв”Ђ */
.text-white { color: #fff; }
.text-navy  { color: var(--navy); }
.text-pink  { color: var(--pink); }
.underline  { text-decoration: underline; }
.bold       { font-weight: 700; letter-spacing: 1.5px; }

.position-container{
  padding: 100px;
  padding-right: 340px;
  margin-top: 93px;
      position: relative;
    z-index: 5;
}

.position-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #010209;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(10px);
  width: 115px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.position-arrow svg{
  width: 24px;
height: 24px;
aspect-ratio: 1/1;
}

.position__header{
  display: flex;
  justify-content: flex-start;
}

.position__header h2{
  color: #010209;
font-family: "Lexend Exa";
font-size: 80px;
font-style: normal;
font-weight: 700;
line-height: 120px; 
letter-spacing: -4px;
margin-left: 156px;
}

.department__container{
  padding: 50px;
  border-radius: 40px;
border: 1px solid #D8DBFF;
background: rgba(255, 255, 255, 0.40);
backdrop-filter: blur(10px);
max-width: 400px;
}

.position__body{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.depatment, .country{
  color: #010209;

/* Paragraph Bold */
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 28px; /* 155.556% */
letter-spacing: 1.8px;
}

.position-about{
  color: #010209;

/* Paragraph */
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
}

.position__info{
  padding: 50px;
  border-radius: 40px;
border: 1px solid #D8DBFF;
background: rgba(255, 255, 255, 0.40);
backdrop-filter: blur(10px);
max-width: 620px;
margin-bottom: 50px;
}

.position__info h3{
  color: #010209;

/* H3 */
font-family: "Lexend Exa";
font-size: 44px;
font-style: normal;
font-weight: 600;
line-height: 56px; /* 127.273% */
letter-spacing: -2.2px;
}

.position__info p{
  color: #010209;

/* Paragraph */
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
}

.position__content {
  display: flex;
  flex-direction: column;
}

.position__content > *:last-child,
.position__info > *:last-child {
  margin-bottom: 0;
}

.position__info .wp-block-heading,
.position__info h3 {
  margin-bottom: 24px;
}

.position__info p + p {
  margin-top: 16px;
}

.position__info ul,
.position__info ol {
  margin-top: 24px;
  padding-left: 24px;
}

.position__info li {
  color: #010209;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.position__info li + li {
  margin-top: 12px;
}

.position__bg {
  position: absolute;
  pointer-events: none;
  opacity: 1.3;
  padding: 100px;
}
.position__bg svg { width: 100%; height: 100%; object-fit: cover; }

.share {
  border-radius: 100px;
border: 1px solid #0F1881;
background: rgba(255, 255, 255, 0.40);
backdrop-filter: blur(10px);
width: 84px;
    height: 92px;
    margin-left: 20px;
}

.position__buttons{
  margin-bottom: 50px;
}

.apply__header h2{
  color: #FFF;

/* H2 */
font-family: "Lexend Exa";
font-size: 80px;
font-style: normal;
font-weight: 700;
line-height: 120px; /* 150% */
letter-spacing: -4px;
}

.apply__header p {
  color: #FFF;
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}

.apply__header{
  padding: 100px 340px;
}

.apply__body{
  padding-left: 340px;
}

.apply .dark-section__bg{
  inset: 100px -220px 0;
  padding: 0;
  opacity: .28;
}

.apply .dark-section__bg img{
  object-fit: contain;
  object-position: center top;
}

.apply__header span{
  color: #E32D7C;
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
}

.form{
  display:flex;
  flex-direction:column;
  gap:24px;
  max-width:700px;
}

.field{
  position:relative;
  margin-bottom: 20px;
  max-width: 800px;
}

.field label{
  position:absolute;
  top: 5px;
  left:16px;
  padding:0 6px;
  font-size:12px;
  color:#cbd0ff;
}

.field label span{
  color:#ff5a7a;
}

.field input,
select{
  width:100%;
  padding:22px 20px 12px;
  font-size:16px;
  color:white;
  background:transparent;
  border:1px solid rgba(255,255,255,0.4);
  border-radius:10px;
  outline:none;
}

.select-wrap{
  position:relative;
}

.field select{
  appearance:none;
  padding-right:50px;
  cursor:pointer;
}

.arrow{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  pointer-events:none;
}

.select-wrap svg{
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.separator {
  max-width: 800px;
  height: 1px;
  background: #D8DBFF;
  margin-bottom: 20px;
}
/* APPLY FORM (apply-position.html) */
.apply-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.apply-form .field{
  margin-bottom: 0;
  max-width: 800px;
  padding: 10px 30px;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  background: rgba(15, 24, 129, 0.40);
  backdrop-filter: blur(10px);
}

.apply-form .field label{
  position: static;
  display: block;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.50);
}

.apply-form .field input,
.apply-form .field select{
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.apply-form .field input::placeholder{
  color: #fff;
}

.apply-form .field select{
  appearance: none;
  padding-right: 50px;
  cursor: pointer;
}

.apply-row{
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 800px;
}

.apply-row > .field{
  flex: 1;
  overflow: visible;
}

.apply-form .select-wrap{
  position: relative;
  width: 100%;
}

.apply-form .select-wrap .select-arrow{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.apply-row .field label + input {
  margin-top: 4px;
}

.field--country {
  z-index: 6;
}

.field--custom-select {
  z-index: 5;
}

.country-select {
  position: relative;
  width: 100%;
}

.country-select__native {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.country-select__trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  font: inherit;
}

.country-select__trigger:focus-visible {
  outline: none;
}

.country-select__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.country-select__label {
  font-family: var(--fb);
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.50);
}

.country-select__label span {
  color: #E32D7C;
}

.country-select__value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.country-select__value.is-placeholder {
  color: rgba(255, 255, 255, 0.50);
}

.country-select--plain .country-select__trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  grid-template-areas: "value arrow";
  align-items: start;
  gap: 0 16px;
}

.country-select--plain.is-open .country-select__trigger {
  margin-bottom: 10px;
}

.country-select--plain .country-select__value {
  grid-area: value;
  display: block;
  font: 400 18px/28px Roboto, sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

.country-select--plain.has-value .country-select__value {
  color: #fff;
}

.country-select__required {
  color: #E32D7C;
}

.country-select__flag {
  line-height: 1;
}

.country-select__arrow {
  position: static !important;
  grid-area: arrow;
  width: 24px;
  height: 24px;
  justify-self: end;
  transform: rotate(0deg) !important;
  transition: transform .2s ease;
}

.country-select.is-open .country-select__arrow {
  transform: rotate(180deg) !important;
}

.country-select__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -30px;
  right: -30px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: rgba(15, 24, 129, 0.96);
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(1, 2, 9, 0.24);
  display: none;
  max-height: min(420px, calc(100vh - 140px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 20;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.36) rgba(255, 255, 255, 0.08);
}

.country-select__menu::-webkit-scrollbar {
  width: 10px;
}

.country-select__menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.country-select__menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  border: 2px solid rgba(15, 24, 129, 0.96);
}

.country-select.is-open .country-select__menu {
  display: block;
}

.country-select__option {
  width: 100%;
  padding: 12px 30px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--fb);
  font-size: 18px;
  line-height: 28px;
  transition: background .2s ease, color .2s ease;
}

.country-select__option-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-select__option .country-select__dial {
  color: rgba(255, 255, 255, 0.72);
}

.country-select__option:hover,
.country-select__option.is-selected {
  background: rgba(255, 255, 255, 0.08);
}

.country-select--plain .country-select__menu {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  max-height: none;
  overflow: visible;
  scrollbar-width: auto;
  scrollbar-color: initial;
}

.country-select--plain .country-select__menu::-webkit-scrollbar,
.country-select--plain .country-select__menu::-webkit-scrollbar-track,
.country-select--plain .country-select__menu::-webkit-scrollbar-thumb {
  display: none;
}

.country-select--plain.is-open .country-select__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.country-select--plain .country-select__option {
  padding: 0;
  justify-content: flex-start;
  gap: 0;
  font: 400 18px/28px Roboto, sans-serif;
  color: #fff;
  background: transparent;
}

.country-select--plain .country-select__option-main {
  display: block;
}

.country-select--plain .country-select__dial,
.country-select--plain .country-select__flag {
  display: none;
}

.country-select--plain .country-select__option:hover,
.country-select--plain .country-select__option.is-selected {
  background: transparent;
  color: #E32D7C;
}

@media (max-width: 767px) {
  .country-select__menu {
    max-height: min(320px, calc(100vh - 180px));
  }
}

.apply-upload{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
}

.apply-upload__meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.apply-upload__title{
  margin: 0;
  color: #fff;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1.8px;
}

.apply-upload__title span{
  color: #E32D7C;
}

.apply-upload__hint{
  margin: 0;
  color: rgba(255, 255, 255, 0.50);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.apply-upload__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.apply-pill{
  border-radius: 100px;
  border: 1px solid #fff;
  background: rgba(15, 24, 129, 0.40);
  backdrop-filter: blur(10px);
  padding: 10px 30px;
  color: #fff;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1.8px;
  cursor: pointer;
}

.apply-pill--outline{
  background: transparent;
}

.apply-upload__file{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.apply-upload__file-name{
  color: #fff;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.apply-upload__remove{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.apply-submit-wrap{
  display: flex;
  justify-content: center;
  padding: 60px 0 80px;
}

.apply-submit{
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 20px 44px;
  border-radius: 100px;
  border: 1px solid #0F1881;
  background: #FFFFFF;
  backdrop-filter: blur(10px);
  color: #010209;
  font-family: "Lexend Exa";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -1px;
  cursor: pointer;
  overflow: hidden;
  transition: background .28s ease, color .28s ease, box-shadow .28s ease, transform .2s ease;
}

.apply-submit span{
  white-space: nowrap;
}

.apply-submit > *{
  position: relative;
  z-index: 1;
}

.apply-submit svg path{
  transition: fill .28s ease;
}

.apply-submit::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 91px;
  width: 326px;
  height: 160px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(15,24,129,.2) 0%, rgba(15,24,129,0) 72%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .apply-submit:hover,
  .apply-submit:focus-visible{
    background: #E32D7C;
    color: #FFFFFF;
    box-shadow: 0 18px 40px rgba(15,24,129,.14);
  }

  .apply-submit:hover svg path,
  .apply-submit:focus-visible svg path{
    fill: #FFFFFF;
  }

  .apply-submit:hover::after,
  .apply-submit:focus-visible::after{
    opacity: 1;
  }
}

@media (max-width: 1440px) {
  .header__nav a{
    font-size: 22px;
  }

  .header{
    padding: 16px 80px;
  }

  .hero__text{
    margin-top: 90px;
  }

  .who{
    padding-top: 105px;
    padding-right: 175px;
  }

  .services__top{
    padding-left: 175px;
    padding-top: 95px;
  }

  .services__grid{
    padding-left: 180px;
    padding-right: 175px;
  }

  .services{
    padding-bottom: 30px;
  }

  .svc-card{
    max-width: 450px;
  }

  .svc-card:nth-child(2){
    margin-top: 210px;
  }

  .svc-card:nth-child(3){
    margin-top: -20px;
  }

  .svc-card:nth-child(4){
    margin-top: 185px;
  }

  .svc-title{
    font-size: 44px;
  }

  .svc-desc{
    font-size: 18px;
  }

  .team{
    padding: 0;
    padding-top: 110px;
  }

  .about__title{
    padding-top: 130px;
    padding-left: 185px;
  }
   .about-img{
    width: auto;
  }

  .about-img img{
    max-width: 400px;
    max-height: 400px;
  }

 .about-box{
  padding-top: 60px;
 }

 .about-box-body{
  font-size: 18px !important;
 }

 .about-card:nth-child(2){
  margin-top: 180px;
 }

 .about-card:nth-child(3){
  margin-top: 135px;
 }

.about-card:nth-child(4){
  margin-top: 340px;
 }

 .about{
    padding-bottom: 95px;
 }

 .jobs__top{
  padding-left: 180px;
 }

 .jobs__filters{
    padding-top: 50px;
    padding-left: 180px;
 }

 .job-card{
  min-height: 350px;
 }

 .jobs{
  padding-bottom: 95px;
 }

 .footer__form{
    padding-left: 115px;
    padding-right: 65px;
 }

 .position-container{
  padding-right: 100px;
 }

 .position__header h2{
  margin-left: 96px;
 }

 .apply__header {
    padding: 100px 180px;
}

.apply__body {
    padding-left: 180px;
}
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   TABLET (в‰¤767px) вЂ” additional overrides
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
@media (max-width: 767px) {
  .hero__frame {
    margin: 40px 0 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    aspect-ratio: 744/360;
  }
  .svc-img {
    margin: 0 auto;
  }
  .benefits__imgs {
    height: 429px;
  }

  .logo-desktop{
    display: none;
  }

  .logo-mobile{
    display: block;
  }

  .header {
    padding: 16px 50px;
  }

  .header__nav{
    gap: 50px;
  }

  .header__nav a:not(.btn) {
    display: none;
  }

  .hero__text{
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .hero__text .h1{
    font-size: 65px;
  }

  .body-text{
    font-size: 18px;
  }

  .hero__frame{
    border-radius: 12px;
  }

  .hero__frame-inner{
    max-width: 720px;
    max-height: 336px;
  }

  .hero__frame-logo{
    width: min(600px, calc(100% - 72px));
  }

  .who{
    margin: 0 auto;
    max-width: 644px;
    text-align: center;
    padding: 0;
    padding-bottom: 100px;
  }

  .who__content{
    align-items: center;
  }

  .btn-more-about-us{
    padding: 30px 60px !important;
  }

  .btn-more-about-us{
    font-size: 18px;
  }

  .services__grid{
    padding: 0;
  }

  .svc-card{
    width: 100%;
    max-width: none;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 100px;
    gap: 20px;
  }

  .svc-img {
    max-width: 520px;
  }

  .services__top{
    padding: 0;
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
  }

  .svc-title {
    font-size: 36px;
    text-align: center;
    padding-bottom: 10px;
  }

  .svc-desc{
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }

  .cta{
    padding: 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta__text{
    max-width: 644px;
  }

  .cta__text .line-blue{
    font-size: 44px;
  }

  .cta__text .line-black {
    font-size: 32px;
  }

  .marquee-wrap--bot{
    top: 85%;
  }

  .marquee {
    font-size: 80px;
  }

  .benefits__content .h3{
    text-align: center;
    font-size: 36px;
  }

  .benefits__list{
    font-size: 18px;
    list-style: inside;
    text-align: center;
  }

  .team-card{
    display: block;
    max-width: 300px;
    width: 100%;
  }

  .team__vector{
    display: none;
  }

  .team{
    padding-top: 500px;
    padding-bottom: 200px;
  }

  .team-card--01{
    left: 0;
    top: -50%;
  }

  .team-card--02{
    left: 32%;
    top: -68%;
  }

  .team-card--03{
    left: auto;
    right: 0;
    top: -50%;
  }

  .team-card--04{
    right: auto;
    left: 0;
    top: auto;
    bottom: -50%;
  }

  .team-card--05{
    left: auto;
    top: auto;
    bottom: -75%;
  }

  .team-card--06{
    right: 0;
    top: 98%;
  }

  .about__title{
    text-align: center;
    padding: 0;
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .about__title .h2{
    font-size: 44px;
  }

  .about-img{
    max-width: 520px;
    width: 100%;
  }

  .about-img img{
    max-width: 520px;
    max-height: 520px;
  }

  .about-box-title{
    margin: 0 auto;
    max-width: 500px;
    padding-bottom: 10px;
  }

  .about-box-body{
    max-width: 500px;
    margin: 0 auto;
  }

  .cta2 .cta__btn .btn {
    font-size: 20px;
  }

  .cta2{
    padding-bottom: 110px;
  }

  .cta2 .marquee-wrap--bot{
    top: 77%;
  }

  .dark-section{
    border-radius: 40px;
  }

  .jobs__top{
    max-width: 644px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 0;
    position: relative;
  }

  .jobs__top .h2{
    font-size: 44px;
  }

  .jobs__desc{
    font-size: 18px;
  }

  .jobs__filters{
    padding: 0;
    flex-direction: column;
    padding-top: 50px;
    gap: 20px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .jobs__input{
    max-width: 644px;
    width: 100%;
  }

  .jobs__drop{
    max-width: 644px;
    width: 100%;
  }

  .jobs__filters .btn-apply{
    max-width: 644px;
    width: 100%;
  }

  .dark-section__bg{
    width: 100%;
    height: 100%;
    padding: 0;
  }

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

  .job-meta{
    font-size: 18px;
  }

  .job-link{
    font-size: 20px;
  }

  .job-card{
    padding: 40px;
  }

  .jobs__cards{
    padding-top: 300px;
  }

  .footer__heading .blue{
    font-size: 44px;
  }

  .footer__heading{
    text-align: center;
  }

  .footer__heading .dark{
    font-size: 30px;
  }

  .footer__form{
    padding: 0;
  }

  .footer__send .btn {
    font-size: 20px;
  }

  .footer__bottom{
    flex-direction: column-reverse;
    padding: 0;
    padding-right: 50px;
    padding-left: 50px;
  }

  .footer__top{
    padding-bottom: 100px;
  }

  .footer__emails{
    width: 100%;
    justify-content: space-between;
  }

  .footer__vibbix{
    max-width: 297px;
    width: 100%;
  }

  .footer__col{
    max-width: unset;
    width: 100%;
  }

  .footer__socials{
    gap: 100px;
    margin: 0 auto;
  }

  .footer__copy{
    margin-top: 100px;
  }

  .footer{
    padding-bottom: 50px;
  }

  .services__top{
    position: relative;
    z-index: 5;
  }

  .position-arrow {
    display: none;
  }

  .position__header{
    flex-direction: column;
  }

  .position__header h2{
    color: #010209;

/* H2 mobile */
font-family: "Lexend Exa";
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 52.8px */
letter-spacing: -2.2px;
margin: 0 auto;
  }

  .position-container{
    padding: 50px;
  }

  .department__container{
    width: 100%;
    max-width: 644px;
  }

  .department__info{
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
  }

  .position__header h2{
    margin-bottom: 50px;
  }

  .apply__header h2{
    color: #FFF;

/* H2 mobile */
font-family: "Lexend Exa";
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 52.8px */
letter-spacing: -2.2px;
  }
  
  .apply__header{
    padding: 100px 50px 50px 50px;
  }

  .apply__body {
    padding-left: 50px;
    padding-right: 50px;
  }

  .apply .dark-section__bg{
    inset: 60px -140px 0;
    opacity: .2;
  }

  .button-container{
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .apply-submit-wrap{
    padding: 50px 0 80px;
  }

  .apply-upload__hint{
    color: rgba(255, 255, 255, 0.50);

/* Paragraph */
font-family: Roboto;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
  }

  .apply-upload__meta{
    max-width: 240px;
  }

  .position__body{
    margin-top: 0;
    flex-direction: column;
    gap: 50px;
  }
}

.mobile-menu__nav .btn{
  display: none;
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   PHONE (в‰¤479px)
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
@media (max-width: 479px) {
  .hero__frame {
    aspect-ratio: 375/182;
  }
  .who {
    padding: 0;
    gap: 0;
  }
  .who__img {
    width: 400px;
    height: 400px;
    max-width: 100%;
    border-radius: 0;
    margin-bottom: 0;
  }
  .who__content {
    padding: 40px var(--pad) 60px;
  }
  .svc-img {
    width: calc(100% + 2 * var(--pad));
    margin-left: calc(-1 * var(--pad));
    border-radius: 0;
    margin-right: 0;
  }
  .benefits__row,
  .benefits__row--reverse {
    padding: 0;
  }
  .benefits__content {
    padding: 0 var(--pad);
  }
  .benefits__imgs {
    width: 100%;
    height: 250px;
    border-radius: 0;
  }
  .about-img {
    width: 100%;
    border-radius: 0;
    margin-bottom: -30px;
  }
  .about-box {
    border-radius: 20px;
  }

  .header__nav .btn{
    display: none;
  }

  .hero__text{
    margin-top: 50px;
  }

  .hero__text .h1{
    font-size: 68px;
  }

  .hero__frame-logo{
    width: min(302.419px, calc(100% - 40px));
  }

  .hero__frame-inner{
    max-width: 362.903px;
    max-height: 169.355px;
    width: 100%;
    height: 100%;
  }

  .who__text .h3{
    font-size: 44px;
  }

  .services__top .h2{
    font-size: 44px;
  }

  .svc-card{
    padding: 0;
  }

  .svc-desc{
    padding: 0 24px;
    padding-bottom: 50px;
  }

  .cta__text{
    padding: 0 17px;
  }

  .cta__text .line-black{
    font-size: 29px;
  }

  .marquee {
    font-size: 44px;
  }

  .marquee-wrap--top{
    top: 67%;
  }

  .cta__btn .btn{
    font-size: 20px;
    margin-top: 15px;
  }

  .benefits{
    padding-bottom: 100px;
  }

  .benefits__imgs{
    height: 100%;
  }

  .benefits__imgs img{
    width: 100%;
  }

  .team-card--01{
    top: unset;
    bottom: 150%;
    left: unset;
    right: 0;
  }

  .team-card--02{
    left: 0;
    top: -60%;
  }

  .team-card--03{
    left: auto;
    right: 0;
    top: -30%;
  }

  .team__text .h3{
    font-size: 36px;
  }

  .team__text{
    margin-top: 20px;
  }

  .about{
    padding-top: 250px;
  }

  .team{
    padding-bottom: 260px;
  }

  .team-card--04{
    bottom: -30%;
  }

  .team-card--05{
    right: 0;
    bottom: -57%;
  }

  .team-card--06{
    right: unset;
    left: 0;
    top: 147%;
  }

  .about__grid{
    padding: 0;
  }

  .about-img img {
    max-width: 375px;
    max-height: 375px;
  }

  .about-img{
    max-width: 375px;
  }

  .about-box-title{
    font-size: 36px;
    max-width: 320px;
  }

  .about-box-body{
    max-width: 320px;
  }

  .jobs__top{
    padding-left: 24px;
    padding-right: 24px;
  }

  .jobs__filters{
    padding-left: 24px;
    padding-right: 24px;
  }

  .job-card{
    height: 280px;
  }

  .footer__heading .blue{
    font-size: 44px;
  }

  .footer__heading .dark{
    font-size: 29px;
  }

  .footer__emails{
    flex-direction: column;
  }

  .footer__bottom{
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer__vibbix {
    max-width: unset;
    width: 100%;
  }

  .mobile-menu__nav .btn{
    display: block;
    text-align: center;
  }

  .mobile-menu{
    inset: 0;
    top: 0;
    box-sizing: border-box;
    height: 100dvh;
    max-height: 100dvh;
    width: 100%;
    max-width: 100%;
    padding: 122px 24px 49px;
    overflow: hidden;
    overflow-x: clip;
    border-bottom: 0;
  }

  .mobile-menu.open{
    flex-direction: column;
    justify-content: flex-start;
  }

  .mobile-menu__logo{
    position: absolute;
    left: 50%;
    bottom: 132px;
    width: 97.667px;
    margin: 0;
    transform: translateX(-50%);
  }

  .mobile-menu__socials{
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 49px;
    width: 296px;
    max-width: 296px;
    margin: 0;
    gap: 100px;
    justify-content: space-between;
    align-items: center;
    transform: translateX(-50%);
    z-index: 2;
  }

  .mobile-menu__socials a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu__nav {
    gap: 40px;
  }

  .mobile-menu__nav a {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -1.4px;
  }

  .mobile-menu__nav .btn {
    width: 100%;
    max-width: 327px;
    min-height: 52px;
    margin-top: 10px;
    padding: 10px 30px;
    font-size: 20px;
    line-height: 32px;
  }

  .mobile-menu .social-icon--svg {
    display: inline-flex;
    width: 32px;
    height: 32px;
  }

  .mobile-menu .social-icon--svg svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .mobile-menu .social-icon--svg path {
    fill: #010209;
  }

  .position-container {
    padding: 24px;
    padding-bottom: 0;
  }

  .department__container{
    max-width: unset;
    padding: 24px;
    margin-bottom: 100px;
  }

  .department__info{
    flex-direction: column;
    gap: 10px;
  }

  .department__separator{
    display: none;
  }

  .position__body{
    margin-top: 0;
  }

  .apply__header{
    padding: 50px 24px 40px;
  }

  .apply__body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .apply .dark-section__bg{
    inset: 40px -80px 0;
    opacity: .16;
  }

  .apply-row{
    flex-direction: column;
  }

  .apply-form .field{
    width: 100%;
  }

  .apply-upload{
    flex-direction: column;
    align-items: unset;
  }

  .apply-upload__meta{
    max-width: none;
  }

  .apply-upload__actions{
    justify-content: unset;
  }

  .button-container{
    flex-direction: row;
    gap: 10px;
  }

  .apply-submit{
    font-size: 16px;
  }

  .position__col2 h3{
  color: #010209;
  /* H3 mobile */
  font-family: "Lexend Exa";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px; /* 122.222% */
  letter-spacing: -1.8px;
  }
}

.header__logo a {
  display: block;
  height: 100%;
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.text-white {
  color: #fff;
}

.job-card {
  text-decoration: none;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .job-card:hover {
    background: rgba(1,2,9,.8);
    border-color: rgba(216, 219, 255, 0.16);
    box-shadow: 0 18px 40px rgba(1, 2, 9, 0.22);
    transform: none;
  }

  .job-card:hover .job-link {
    color: #fff;
  }

  .job-card:hover .job-link img {
    filter: brightness(0) invert(1);
  }
}

.position__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.position__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.position-apply-btn {
  min-height: 92px;
}

.department__info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.department__separator {
  color: #010209;
  font-family: var(--fb);
  font-size: 18px;
  line-height: 28px;
}

.department__container--apply {
  margin: 0 auto 40px;
  max-width: calc(100% - 200px);
}

.position__header--compact h2 {
  margin-bottom: 24px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-status {
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(10px);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.5;
}

.form-status--success {
  background: rgba(31, 184, 104, 0.18);
  color: #0c4226;
}

.dark-section .form-status--success,
.apply .form-status--success {
  color: #eafff3;
}

.form-status--error {
  background: rgba(227, 45, 124, 0.16);
  color: #7b1745;
}

.dark-section .form-status--error,
.apply .form-status--error {
  color: #ffe8f3;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.form-popup.is-open {
  display: flex;
}

.form-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(229, 231, 240, 0.62);
  backdrop-filter: blur(12px);
}

.form-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 50px;
  border: 1px solid #d8dbff;
  border-radius: 40px;
  background: #f8f8f8;
  box-shadow: 0 24px 60px rgba(15, 24, 129, 0.12);
  color: #010209;
  text-align: center;
}

.form-popup__title {
  margin: 0;
  font-family: var(--fh);
  font-size: 44px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -2.2px;
  color: #010209;
}

.form-popup__text {
  margin: 0;
  max-width: 500px;
  color: #010209;
  font-family: var(--fb);
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

.form-popup__text strong {
  font-weight: 700;
}

.form-popup__button {
  min-width: 182px;
  padding: 30px 60px;
  border-radius: 100px;
  border: 1px solid #0f1881;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  color: #010209;
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -1px;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.form-popup__button:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.form-popup--error .form-popup__panel {
  border-color: rgba(227, 45, 124, 0.22);
}

.container-page {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.jobs--archive {
  margin-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .form-popup {
    padding: 16px;
  }

  .form-popup__panel {
    width: min(100%, 375px);
    gap: 40px;
    padding: 32px 24px 48px;
    border-radius: 40px;
  }

  .form-popup__title {
    font-size: 44px;
    line-height: 56px;
    letter-spacing: -2.2px;
  }

  .form-popup__text {
    max-width: 280px;
    font-size: 18px;
    line-height: 28px;
  }

  .form-popup__button {
    min-width: 212px;
    padding: 28px 58px;
  }

  .department__container--apply {
    max-width: calc(100% - 100px);
    margin-bottom: 24px;
  }

  .position-apply-btn {
    min-height: 74px;
    width: 100%;
  }

  .single-vacancy .header {
    padding: 20px 24px;
  }

  .single-vacancy .position-container {
    margin-top: 118px;
    padding: 24px;
    padding-bottom: 0;
  }

  .single-vacancy .position__header {
    align-items: flex-start;
  }

  .single-vacancy .position__header h2 {
    margin: 0 0 50px;
    max-width: 327px;
    text-align: left;
  }

  .single-vacancy .position__buttons {
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    margin-bottom: 50px;
  }

  .single-vacancy .position__buttons .btn-more-about-us {
    display: none;
  }

  .single-vacancy .position-apply-btn {
    width: 223px;
    min-height: 92px;
    padding: 30px 60px;
    font-size: 20px;
    line-height: 32px;
    flex: 0 0 223px;
  }

  .single-vacancy .share {
    width: 84px;
    height: 92px;
    margin-left: 0;
    flex: 0 0 84px;
  }

  .single-vacancy .department__container,
  .single-vacancy .position__info {
    padding: 50px 24px;
    max-width: 100%;
  }

  .single-vacancy .position__info h3 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -1.8px;
    overflow-wrap: break-word;
  }

  .single-vacancy .footer--vacancy .footer__top {
    gap: 50px;
    padding: 150px 24px 100px;
  }

  .single-vacancy .footer--vacancy .footer__heading .blue {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -1.8px;
  }

  .single-vacancy .footer--vacancy .footer__heading .dark {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -1.4px;
    margin-top: 0;
  }

  .single-vacancy .footer--vacancy .footer__form {
    gap: 20px;
  }

  .single-vacancy .footer--vacancy .footer__send {
    width: 100%;
    margin-top: 30px;
  }

  .single-vacancy .footer--vacancy .footer__send .btn {
    width: 100%;
  }

  .single-vacancy .footer--vacancy .footer__bottom {
    gap: 50px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .single-vacancy .footer--vacancy .footer__emails {
    gap: 50px;
    width: 100%;
  }

  .single-vacancy .footer--vacancy .footer__col-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1.8px;
  }

  .single-vacancy .footer--vacancy .footer__col-body {
    font-size: 14px;
    line-height: 20px;
  }

  .single-vacancy .footer--vacancy .footer__email,
  .single-vacancy .footer--vacancy .footer__email__hello {
    width: 100%;
    padding: 10px 30px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1.8px;
  }

  .single-vacancy .footer--vacancy .footer__col {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
    align-items: center;
  }

  .single-vacancy .footer--vacancy .footer__logo-sym {
    width: 97.667px;
    padding-bottom: 50px;
  }

  .single-vacancy .footer--vacancy .footer__socials {
    gap: 100px;
    justify-content: center;
  }

  .single-vacancy .footer--vacancy .footer__copy {
    margin-top: 50px;
  }
}

@media (max-width: 479px) {
  .department__container--apply {
    width: calc(100% + 48px);
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
  }

  .single-vacancy .position__buttons {
    gap: 20px;
  }

  .single-vacancy .position-apply-btn {
    width: 223px;
    flex-basis: 223px;
  }

  .single-vacancy .share {
    flex-basis: 84px;
  }

  .single-vacancy .footer--vacancy .footer__top {
    padding: 150px 24px 100px;
  }

  .single-vacancy .footer--vacancy .footer__bottom {
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* Vacancy page refresh */
.single-vacancy .position.details {
  position: relative;
  overflow: hidden;
}

.single-vacancy .position-container {
  width: 100%;
  max-width: 1440px;
  margin: 92px auto 0;
  padding: 100px 100px 0;
}

.single-vacancy .position__bg {
  inset: 482px auto auto 50%;
  width: 1880px;
  height: 1733px;
  padding: 0;
  opacity: 0.18;
  transform: translateX(-50%);
}

.single-vacancy .position__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.single-vacancy .position-arrow {
  width: 84px;
  min-width: 84px;
  height: 44px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .28s ease, border-color .28s ease;
}

.single-vacancy .position__header {
  align-items: flex-start;
}

.single-vacancy .position-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #010209;
  clip-path: inset(100% 0 0 0 round 100px);
  transition: clip-path .6s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.single-vacancy .position-arrow svg {
  position: relative;
  z-index: 1;
}

.single-vacancy .position-arrow path {
  transition: fill .28s ease;
}

.single-vacancy .position__header h2 {
  width: 980px;
  max-width: calc(100vw - 460px);
  margin: 0 0 50px 96px;
}

.single-vacancy .position__buttons {
  width: 375px;
  margin: 0 0 50px;
  gap: 20px;
  flex-wrap: nowrap;
}

.single-vacancy .position-apply-btn {
  width: 271px;
  min-height: 92px;
  flex: 0 0 271px;
  justify-content: space-between;
  padding: 28px 40px;
}

.single-vacancy .position-apply-btn .btn__label {
  white-space: nowrap;
}

.single-vacancy .share {
  position: relative;
  width: 84px;
  height: 92px;
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
  transition: color .28s ease, border-color .28s ease;
}

.single-vacancy .share::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #010209;
  clip-path: inset(100% 0 0 0 round 100px);
  transition: clip-path .6s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.single-vacancy .share::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 112px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(24, 136, 246, 0.1) 0%, rgba(227, 45, 124, 0.08) 36%, rgba(15, 24, 129, 0) 72%);
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.single-vacancy .share img {
  position: relative;
  z-index: 1;
  transition: filter .28s ease, opacity .28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .single-vacancy .position-arrow:hover::before,
  .single-vacancy .position-arrow:focus-visible::before {
    clip-path: inset(0 0 0 0 round 100px);
  }

  .single-vacancy .position-arrow:hover path,
  .single-vacancy .position-arrow:focus-visible path {
    fill: #fff;
  }

  .single-vacancy .share:hover,
  .single-vacancy .share:focus-visible {
    color: #fff;
  }

  .single-vacancy .share:hover::before,
  .single-vacancy .share:focus-visible::before {
    clip-path: inset(0 0 0 0 round 100px);
  }

  .single-vacancy .share:hover img,
  .single-vacancy .share:focus-visible img {
    filter: brightness(0) invert(1);
  }
}

.single-vacancy .position__body {
  display: grid;
  grid-template-columns: 400px 620px;
  column-gap: 40px;
  align-items: start;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 180px;
}

.single-vacancy .position__col1 {
  width: 400px;
}

.single-vacancy .position__col2 {
  width: 620px;
  max-width: 620px;
}

.single-vacancy .department__container {
  width: 400px;
  max-width: 400px;
  margin: 0;
}

.single-vacancy .department__info {
  margin-bottom: 10px;
  gap: 0 12px;
}

.single-vacancy .position-about {
  margin: 0;
}

.single-vacancy .position__content {
  gap: 50px;
}

.single-vacancy .position__info {
  width: 620px;
  max-width: 620px;
  margin-bottom: 0;
}

.single-vacancy .position__info--content,
.single-vacancy .position__content--blocks > .position__info:first-child {
  min-height: 530px;
}

.single-vacancy .footer--vacancy {
  margin-top: 120px;
}

.single-vacancy .footer--vacancy .footer__top {
  padding-top: 320px;
}

@media (min-width: 1600px) {
  .single-vacancy .position-container {
    max-width: 1920px;
  }

  .single-vacancy .position__bg {
    top: 362px;
    opacity: 0.2;
  }

  .single-vacancy .position__header h2 {
    width: 1240px;
    max-width: calc(100vw - 680px);
    margin-left: 156px;
  }

  .single-vacancy .position__buttons {
    margin-left: 0;
  }

  .single-vacancy .position__body {
    column-gap: 220px;
    margin-left: 240px;
  }

  .single-vacancy .footer--vacancy {
    margin-top: 140px;
  }

  .single-vacancy .footer--vacancy .footer__top {
    padding-top: 220px;
  }
}

@media (min-width: 480px) and (max-width: 1023px) {
  .single-vacancy .position-container {
    max-width: 744px;
    padding: 100px 50px 0;
  }

  .single-vacancy .position__bg {
    top: 401px;
    opacity: 0.14;
  }

  .single-vacancy .position-arrow {
    display: none;
  }

  .single-vacancy .position__header {
    display: block;
  }

  .single-vacancy .position__header h2 {
    width: 644px;
    max-width: 100%;
    margin: 0 0 50px;
    font-size: 44px;
    line-height: 52.8px;
    letter-spacing: -2.2px;
  }

  .single-vacancy .position__buttons {
    width: 395px;
    margin: 0 0 50px;
    gap: 40px;
  }

  .single-vacancy .position__body {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-left: 0;
  }

  .single-vacancy .position__col1,
  .single-vacancy .department__container {
    width: 644px;
    max-width: 644px;
  }

  .single-vacancy .position__col2,
  .single-vacancy .position__info {
    width: 620px;
    max-width: 620px;
  }

  .single-vacancy .department__container,
  .single-vacancy .position__info {
    min-height: 0;
  }

  .single-vacancy .department__info {
    flex-direction: row;
    gap: 0 20px;
  }

  .single-vacancy .department__separator {
    display: inline;
  }
}

@media (max-width: 479px) {
  .single-vacancy .position-container {
    max-width: unset;
    padding: 50px 24px 0;
    margin: calc(92px + env(safe-area-inset-top)) auto 0;
    padding-left: 0;
    padding-right: 0;
  }

  .single-vacancy .position__info h3{
    font-size: 32px;
  }

  .single-vacancy .position__bg {
    top: 401px;
    opacity: 0.12;
  }

  .single-vacancy .position-arrow {
    display: none;
  }

  .single-vacancy .position__header {
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }

  .single-vacancy .position__header h2 {
    width: 327px;
    max-width: 100%;
    margin: 0 0 50px;
    font-size: 44px;
    line-height: 52.8px;
    letter-spacing: -2.2px;
  }

  .single-vacancy .position__buttons {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
    gap: 20px;
    justify-content: center;
  }

  .single-vacancy .footer--vacancy .footer__top{
    padding-top: 220px;
  }

  .single-vacancy .position-apply-btn {
    width: 223px;
    min-height: 92px;
    flex-basis: 223px;
    padding: 28px 24px;
  }

  .single-vacancy .position__body {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-left: 0;
  }

  .single-vacancy .position__col1,
  .single-vacancy .position__col2,
  .single-vacancy .department__container,
  .single-vacancy .position__info {
    width: 100%;
    max-width: unset;
  }

  .single-vacancy .department__container,
  .single-vacancy .position__info,
  .single-vacancy .position__info--content,
  .single-vacancy .position__content--blocks > .position__info:first-child,
  .single-vacancy .position__content--blocks > .position__info:not(:first-child) {
    min-height: 0;
  }

  .single-vacancy .department__container {
    padding: 50px 24px;
  }
}

/* Apply now page layout refresh */
.position--apply-page {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.position--apply-page .position-container {
  max-width: 1440px;
  margin: 92px auto 0;
  padding: 100px 100px 0;
  display: grid;
  grid-template-columns: 800px 400px;
  column-gap: 40px;
  align-items: start;
}

.position--apply-page .position__bg {
  top: 482px;
  left: -220px;
  width: 1880px;
  height: 1733px;
  padding: 0;
  opacity: 0.14;
}

.position--apply-page .position__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.position--apply-page .position__header--compact {
  display: grid;
  grid-template-columns: 84px minmax(0, 620px);
  column-gap: 96px;
  align-items: start;
  margin: 0;
}

.position--apply-page .position-arrow {
  width: 84px;
  min-width: 84px;
  height: 44px;
}

.position--apply-page .position__header--compact h2 {
  width: 620px;
  max-width: 100%;
  margin: 0;
}

.position--apply-page .department__container--apply {
  width: 400px;
  max-width: 400px;
  margin: 0;
  padding: 50px;
  align-self: start;
}

.position--apply-page .department__info {
  margin-bottom: 30px;
}

.position--apply-page .position-about {
  margin-top: 0;
}

.apply--page {
  position: relative;
  overflow: hidden;
  min-height: 1643px;
}

.apply--page .dark-section__bg {
  top: 100px;
  left: -220px;
  width: 1880px;
  height: 1733px;
  padding: 0;
  opacity: 0.18;
}

.apply--page .dark-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.apply--page .apply__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 100px 180px 0;
}

.apply--page .apply__header h2,
.apply--page .apply__header p {
  margin: 0;
}

.apply--page .apply__body {
  padding: 100px 180px 100px;
}

.apply--page .apply-form,
.apply--page .apply-row,
.apply--page .separator,
.apply--page .apply-submit-wrap {
  width: 800px;
  max-width: 100%;
}

.apply--page .apply-upload {
  width: 800px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 328px max-content minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.apply--page .apply-upload__meta {
  max-width: 328px;
}

.apply--page .apply-upload__actions {
  justify-content: flex-start;
}

.apply--page .apply-upload__file {
  min-width: 0;
  max-width: 100%;
}

.apply--page .apply-upload__file-name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apply--page .apply-submit-wrap {
  padding: 100px 0 0;
}

.apply--page .apply-submit {
  width: auto;
  min-width: 327px;
  min-height: 72px;
}

@media (min-width: 1600px) {
  .position--apply-page .position-container {
    max-width: 1920px;
    grid-template-columns: 1040px 400px;
  }

  .position--apply-page .position__bg {
    top: 362px;
    left: 20px;
  }

  .position--apply-page .position__header--compact {
    grid-template-columns: 84px minmax(0, 800px);
    column-gap: 156px;
  }

  .position--apply-page .position__header--compact h2 {
    width: 800px;
  }

  .apply--page .apply__header {
    padding-left: 340px;
    padding-right: 340px;
  }

  .apply--page .apply__body {
    padding-left: 340px;
    padding-right: 340px;
  }

  .apply--page .dark-section__bg {
    left: 97px;
  }
}

@media (min-width: 480px) and (max-width: 1023px) {
  .position--apply-page {
    padding-bottom: 100px;
  }

  .position--apply-page .position__bg {
    display: none;
  }

  .position--apply-page .position-container {
    max-width: 744px;
    margin-top: 92px;
    padding: 100px 50px 0;
    display: block;
  }

  .position--apply-page .position-arrow {
    display: none;
  }

  .position--apply-page .position__header--compact {
    display: block;
  }

  .position--apply-page .position__header--compact h2 {
    width: 644px;
    max-width: 100%;
    margin: 0 0 50px;
    font-size: 44px;
    line-height: 52.8px;
    letter-spacing: -2.2px;
  }

  .position--apply-page .department__container--apply {
    width: 644px;
    max-width: 100%;
    margin: 0;
  }

  .apply--page {
    min-height: 1596px;
  }

  .apply--page .dark-section__bg {
    top: 100px;
    left: -568px;
    width: 1880px;
    height: 1733px;
    opacity: 0.16;
  }

  .apply--page .apply__header {
    gap: 10px;
    padding: 100px 50px 0;
  }

  .apply--page .apply__header h2 {
    font-size: 44px;
    line-height: 52.8px;
    letter-spacing: -2.2px;
  }

  .apply--page .apply__body {
    padding: 50px 50px 100px;
  }

  .apply--page .apply-form,
  .apply--page .apply-row,
  .apply--page .separator,
  .apply--page .apply-submit-wrap {
    width: 644px;
  }

  .apply--page .apply-upload {
    width: 644px;
    grid-template-columns: 328px 123px minmax(0, 1fr);
    align-items: start;
  }

  .apply--page .apply-upload__file {
    align-self: center;
  }

  .apply--page .apply-submit-wrap {
    padding-top: 50px;
  }
}

@media (max-width: 479px) {
  .position--apply-page {
    padding-bottom: 50px;
  }

  .position--apply-page .position__bg {
    display: none;
  }

  .position--apply-page .position-container {
    max-width: unset;
    width: 100%;
    margin-top: 92px;
    padding: 0;
    display: block;
  }

  .position--apply-page .position-arrow {
    display: none;
  }

  .position--apply-page .position__header--compact {
    display: block;
  }

  .position--apply-page .position__header--compact h2 {
    width: 70%;
    max-width: 100%;
    margin: 0 0 50px;
    font-size: 44px;
    line-height: 52.8px;
    letter-spacing: -2.2px;
    margin-left:24px;
  }

  .position--apply-page .department__container--apply {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 50px 24px;
  }

  .apply--page {
    min-height: 2001px;
  }

  .apply--page .dark-section__bg {
    top: 100px;
    left: -568px;
    width: 1880px;
    height: 3565px;
    opacity: 0.16;
  }

  .apply--page .apply__header {
    gap: 14px;
    padding: 100px 24px 0;
  }

  .apply--page .apply__header h2 {
    font-size: 44px;
    line-height: 52.8px;
    letter-spacing: -2.2px;
  }

  .apply--page .apply__body {
    padding: 50px 24px 100px;
  }

  .apply--page .apply-form,
  .apply--page .apply-row,
  .apply--page .separator,
  .apply--page .apply-submit-wrap {
    width: 100%;
  }

  .apply--page .apply-row {
    flex-direction: column;
  }

  .apply--page .apply-upload {
    width: 327px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .apply--page .apply-upload__meta,
  .apply--page .apply-upload__actions,
  .apply--page .apply-upload__file {
    width: 100%;
    max-width: none;
  }

  .apply--page .apply-upload__file-name {
    white-space: normal;
    word-break: break-word;
  }

  .apply--page .apply-submit-wrap {
    padding-top: 50px;
  }

  .apply--page .apply-submit {
    width: 327px;
    min-width: 0;
  }
}

/* Header spacing sync */
.header {
  min-height: 92px;
  padding: 20px 100px;
}

.header__logo {
  width: 155px;
  height: 40px;
}

.header__logo .logo-desktop,
.header__logo .logo-mobile {
  width: auto;
  height: 100%;
}

.header__nav {
  gap: 40px;
}

.header__nav > a:not(.btn) {
  font-size: 20px;
  line-height: 32px;
}

.header .btn {
  min-height: 52px;
  padding: 10px 30px;
  font-size: 20px;
  line-height: 32px;
}

.burger {
  width: 52px;
  height: 52px;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 480px) and (max-width: 1023px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .header {
    padding: 20px 50px;
  }

  .header__logo {
    width: 39px;
  }

  .header__nav {
    gap: 50px;
  }

  .header__nav a:not(.btn) {
    display: none;
  }

  .header__nav .btn {
    display: inline-flex;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 479px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .header {
    padding: 20px 24px;
  }

  .header__logo {
    width: 39px;
  }

  .header__nav {
    gap: 0;
  }

  .header__nav a:not(.btn) {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header__nav .btn {
    display: none;
  }

  .single-vacancy .footer--vacancy .footer__col{
    max-width: unset;
    width: 100%;
  }
}
