:root {
  --vr-blue: #062d78;
  --vr-blue-2: #0b3a8e;
  --vr-red: #e3062f;
  --vr-green: #46745f;
  --vr-ink: #202634;
  --vr-muted: #5f6876;
  --vr-line: #d9e0e7;
  --vr-bg: #f3f7ff;
  --vr-white: #ffffff;
  --vr-max: 1512px;
  --vr-radius: 8px;
  --vr-shadow: 0 18px 50px rgba(10, 38, 64, .12);
  --vr-font-body: "Barlow", Arial, Helvetica, sans-serif;
  --vr-font-condensed: "Barlow Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-family: var(--vr-font-body);
  color: var(--vr-ink);
  background: var(--vr-white);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--vr-ink);
  background: var(--vr-white);
  font-family: var(--vr-font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.is-menu-open {
  overflow: hidden;
}

img,
picture,
video {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: inherit;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--vr-font-condensed);
  font-weight: 800;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.vr-sr-only,
.vrm-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vrm-shell {
  min-height: 100vh;
  background: var(--vr-white);
}

.vrm-container,
.vr-section,
.vr-simple-hero,
.vr-detail-hero,
.vr-detail-layout {
  width: min(var(--vr-max), calc(100% - 40px));
  margin-inline: auto;
}

.vrm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #062d78;
  border-bottom: 0;
}

.vrm-header__inner {
  min-height: 88px;
  width: min(var(--vr-max), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 58px;
}

.vrm-brand,
.vrm-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--vr-white);
}

.vrm-brand img,
.vrm-footer__brand img {
  width: auto;
  max-width: 184px;
  height: auto;
}

.vrm-brand img {
  display: block;
  max-width: 178px;
}

.vrm-brand__mark {
  width: 28px;
  height: 28px;
  background: var(--vr-red);
  transform: skewX(-18deg);
}

.vrm-nav__list,
.vrm-nav__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vrm-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.vrm-nav__item {
  position: relative;
}

.vrm-nav__item > a {
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  padding: 0;
  color: var(--vr-white);
  font-family: var(--vr-font-condensed);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.vrm-nav__item.is-active > a,
.vrm-nav__item > a:hover {
  color: var(--vr-white);
  opacity: .78;
}

.vrm-nav__sublist {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--vr-white);
  border: 1px solid var(--vr-line);
  box-shadow: var(--vr-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
}

.vrm-nav__item:hover > .vrm-nav__sublist,
.vrm-nav__item:focus-within > .vrm-nav__sublist {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vrm-nav__sublist .vrm-nav__item > a {
  width: 100%;
  justify-content: flex-start;
}

.vrm-header__tools {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
}

.vrm-lang {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--vr-line);
}

.vrm-lang a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 30px;
  color: var(--vr-muted);
  font-size: 12px;
  font-weight: 800;
}

.vrm-lang a[aria-current="true"] {
  background: var(--vr-blue);
  color: var(--vr-white);
}

.vrm-header__cta,
.vr-btn,
.vrm-arrow-link,
.vrm-arrow-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--vr-red);
  border-radius: 4px;
  background: var(--vr-red);
  color: var(--vr-white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.vrm-header__cta:hover,
.vr-btn:hover,
.vrm-arrow-link:hover,
.vrm-arrow-link--button:hover {
  background: var(--vr-blue);
  border-color: var(--vr-blue);
  color: var(--vr-white);
}

.vrm-header__cta {
  min-width: 116px;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 0;
  font-family: var(--vr-font-condensed);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.vrm-header__cta span {
  display: none;
}

.vrm-header__cta:hover {
  background: var(--vr-red);
  border-color: var(--vr-red);
  opacity: .9;
}

.vr-btn--primary {
  border-color: var(--vr-red);
  background: var(--vr-red);
  color: var(--vr-white);
}

.vrm-arrow-link {
  width: fit-content;
}

.vrm-card__link {
  margin-top: auto;
}

.vrm-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  border-radius: 4px;
}

.vrm-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--vr-white);
}

.vrm-agency-nav {
  min-height: 40px;
  background: #eef4ff;
  border-top: 2px solid #08a9ff;
  border-bottom: 1px solid #d5e1f3;
}

.vrm-agency-nav__inner {
  width: min(var(--vr-max), calc(100% - 48px));
  min-height: 40px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 0;
  overflow-x: auto;
}

.vrm-agency-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 22px;
  color: var(--vr-blue);
  font-family: var(--vr-font-condensed);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border-left: 1px solid #d8e2f0;
  border-bottom: 0;
}

.vrm-agency-nav a:hover {
  color: var(--vr-blue);
  background: #e4eefc;
}

.vrm-agency-nav a:last-child {
  border-right: 1px solid #d8e2f0;
}

.vrm-agency-nav a::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 8px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 7px solid var(--vr-red);
}

.vrm-mobile-menu {
  position: fixed;
  inset: 128px 0 auto;
  max-height: calc(100vh - 128px);
  overflow: auto;
  padding: 18px 20px 28px;
  background: var(--vr-white);
  border-top: 1px solid var(--vr-line);
  box-shadow: var(--vr-shadow);
}

.vrm-mobile-menu .vrm-nav__list {
  display: grid;
  gap: 4px;
}

.vrm-mobile-menu .vrm-nav__item > a {
  width: 100%;
  border-bottom: 1px solid var(--vr-line);
}

.vrm-mobile-menu .vrm-nav__sublist {
  position: static;
  min-width: 0;
  padding: 0 0 0 14px;
  border: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.vrm-mobile-menu__agencies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.vrm-mobile-menu__agencies a {
  padding: 8px 10px;
  background: var(--vr-bg);
  color: var(--vr-blue);
  font-size: 13px;
  font-weight: 700;
}

.vrm-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--vr-blue);
  color: var(--vr-white);
}

.vrm-hero__media {
  position: absolute;
  inset: 0;
}

.vrm-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 48, .58);
}

.vrm-hero__media img,
.vrm-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vrm-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--vr-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 88px;
}

.vrm-kicker,
.vr-kicker {
  margin: 0 0 14px;
  color: var(--vr-red);
  font-family: var(--vr-font-condensed);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.vrm-hero .vrm-kicker {
  color: var(--vr-white);
}

.vrm-hero h1,
.vrm-page-hero h1,
.vr-simple-hero h1,
.vr-detail-hero h1 {
  max-width: 900px;
  margin: 0;
  color: inherit;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.vrm-hero p,
.vrm-page-hero p,
.vr-simple-hero > p,
.vr-detail-hero__copy > p {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.vrm-hero .vrm-arrow-link {
  margin-top: 30px;
}

.vrm-page-hero,
.vr-simple-hero {
  padding: 84px 0 54px;
}

.vrm-page-hero {
  background: var(--vr-bg);
}

.vrm-page-hero .vrm-container {
  width: min(var(--vr-max), calc(100% - 40px));
}

.vr-simple-hero--centered {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
}

.vr-section,
.vrm-section {
  padding: 72px 0;
}

.vr-section--light,
.vrm-section:nth-of-type(even) {
  background: var(--vr-bg);
}

.vrm-section__head,
.vr-section__head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.vrm-section__head--inline {
  max-width: none;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.vrm-section__head h2,
.vr-section__head h2,
.vr-content-section h2,
.vr-job-apply h2,
.vrm-gallery h2 {
  margin: 0;
  color: var(--vr-blue);
  font-size: 34px;
  line-height: 1.12;
}

.vrm-section__head p,
.vr-section__head p {
  margin: 0;
  color: var(--vr-muted);
  font-size: 17px;
}

.vrm-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--vr-line);
  border: 1px solid var(--vr-line);
}

.vrm-stats__grid article {
  min-height: 160px;
  padding: 26px;
  background: var(--vr-white);
}

.vrm-stats__grid strong {
  display: block;
  color: var(--vr-red);
  font-size: 42px;
  line-height: 1;
}

.vrm-stats__grid span {
  display: block;
  margin-top: 12px;
  color: var(--vr-blue);
  font-weight: 700;
}

.vrm-timeline__list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.vrm-timeline__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--vr-line);
}

.vrm-timeline__list time {
  color: var(--vr-red);
  font-size: 24px;
  font-weight: 900;
}

.vrm-timeline__list h3,
.vrm-card h3,
.vr-card h3,
.vrm-project-card h3,
.vr-news-card h2,
.vr-search-result h2 {
  margin: 0;
  color: var(--vr-blue);
  font-size: 22px;
  line-height: 1.25;
}

.vrm-timeline__list p,
.vrm-card p,
.vr-card p,
.vrm-project-card p,
.vr-news-card p,
.vr-search-result p {
  margin: 10px 0 0;
  color: var(--vr-muted);
}

.vrm-card-grid,
.vr-card-grid,
.vrm-project-grid,
.vr-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vr-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vrm-card,
.vr-card,
.vrm-project-card,
.vr-news-card,
.vr-search-result,
.vr-empty-state,
.vr-content-section,
.vr-job-apply {
  border: 1px solid var(--vr-line);
  background: var(--vr-white);
  border-radius: var(--vr-radius);
}

.vrm-card,
.vr-card,
.vrm-project-card,
.vr-news-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vrm-card__media,
.vrm-project-card__media,
.vr-news-card__media {
  aspect-ratio: 16 / 10;
  background: var(--vr-bg);
  overflow: hidden;
}

.vrm-card__media img,
.vrm-project-card__media img,
.vr-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vrm-card,
.vrm-project-card,
.vr-news-card {
  padding: 0;
}

.vrm-card > :not(.vrm-card__media),
.vrm-project-card > :not(.vrm-project-card__media),
.vr-news-card__body,
.vr-card__body {
  padding-inline: 22px;
}

.vrm-card > .vrm-card__media + *,
.vrm-project-card > .vrm-project-card__media + * {
  padding-top: 22px;
}

.vrm-card > :last-child,
.vrm-project-card > :last-child,
.vr-news-card__body {
  padding-bottom: 22px;
}

.vrm-card__meta,
.vr-card__meta {
  margin: 0 0 8px;
  color: var(--vr-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vrm-text-media .vrm-container {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.vrm-text-media__media,
.vrm-gallery__grid figure {
  overflow: hidden;
  border-radius: var(--vr-radius);
}

.vrm-text-media__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vrm-richtext,
.vr-richtext {
  color: var(--vr-ink);
}

.vrm-richtext > :first-child,
.vr-richtext > :first-child {
  margin-top: 0;
}

.vrm-richtext > :last-child,
.vr-richtext > :last-child {
  margin-bottom: 0;
}

.vrm-richtext a,
.vr-richtext a {
  color: var(--vr-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vrm-richtext img,
.vr-richtext img,
.vrm-richtext iframe,
.vr-richtext iframe,
.vrm-richtext video,
.vr-richtext video {
  max-width: 100%;
  border-radius: var(--vr-radius);
}

.vrm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vrm-gallery__grid figure {
  margin: 0;
  background: var(--vr-bg);
}

.vrm-gallery__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vrm-gallery__grid figcaption {
  padding: 10px 12px;
  color: var(--vr-muted);
  font-size: 14px;
}

.vrm-filter-bar,
.vr-jobs-filter,
.vr-search-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid var(--vr-line);
  background: var(--vr-white);
  border-radius: var(--vr-radius);
}

.vrm-filter-bar label,
.vr-jobs-filter label,
.vr-form__field,
.vrm-form__field {
  display: grid;
  gap: 7px;
}

.vrm-filter-bar span,
.vr-jobs-filter span,
.vr-form__field label,
.vrm-form__field label {
  color: var(--vr-blue);
  font-size: 13px;
  font-weight: 800;
}

.vrm-filter-bar input,
.vrm-filter-bar select,
.vr-jobs-filter input,
.vr-jobs-filter select,
.vr-search-form input,
.vr-form input:not([type="checkbox"]),
.vr-form select,
.vr-form textarea,
.vrm-form input:not([type="checkbox"]),
.vrm-form select,
.vrm-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--vr-line);
  border-radius: 4px;
  background: var(--vr-white);
  color: var(--vr-ink);
}

.vr-form textarea,
.vrm-form textarea {
  min-height: 130px;
  resize: vertical;
}

.vrm-project-card dl,
.vr-job-list dl {
  display: grid;
  gap: 8px;
  margin: 18px 22px;
  padding: 0;
}

.vrm-project-card dl div,
.vr-job-list dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--vr-line);
}

.vrm-project-card dt,
.vr-job-list dt {
  color: var(--vr-muted);
  font-size: 13px;
}

.vrm-project-card dd,
.vr-job-list dd {
  margin: 0;
  color: var(--vr-blue);
  font-weight: 800;
  text-align: right;
}

.vr-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 38px;
  align-items: center;
  padding: 76px 0 46px;
}

.vr-detail-hero__copy {
  display: grid;
  gap: 16px;
}

.vr-detail-hero__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--vr-radius);
  background: var(--vr-bg);
}

.vr-detail-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vr-back-link {
  width: fit-content;
  color: var(--vr-red);
  font-size: 14px;
  font-weight: 800;
}

.vr-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vr-chip-list span,
.vr-chip-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--vr-line);
  background: var(--vr-white);
  color: var(--vr-blue);
  font-size: 13px;
  font-weight: 800;
  border-radius: 4px;
}

.vr-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: start;
  padding-bottom: 72px;
}

.vr-detail-layout--form-only {
  grid-template-columns: minmax(0, .8fr) minmax(340px, 460px);
}

.vr-detail-layout--single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.vr-send-cv .vr-job-apply {
  position: static;
}

.vr-detail-content {
  display: grid;
  gap: 18px;
}

.vr-content-section,
.vr-job-apply {
  padding: 26px;
}

.vr-content-section--compact {
  padding: 22px;
}

.vr-job-apply {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
}

.vr-job-apply__heading {
  display: grid;
  gap: 10px;
}

.vr-form,
.vrm-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vr-form__field--full,
.vrm-form__field--full,
.vrm-form__actions {
  grid-column: 1 / -1;
}

.vr-form__hint,
.vrm-form__field small {
  color: var(--vr-muted);
  font-size: 13px;
}

.vr-form__error {
  display: none;
  color: #aa1723;
  font-size: 13px;
  font-weight: 700;
}

.vr-form__error.is-visible {
  display: block;
}

.vr-choice,
.vrm-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--vr-ink);
}

.vr-choice input,
.vrm-check input {
  margin-top: 5px;
}

.vr-form__actions,
.vrm-form__actions {
  display: grid;
  gap: 12px;
  align-items: start;
}

.vr-form__message,
.vrm-form__message,
.vr-alert {
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.vr-alert--success,
.vr-form__message.is-success,
.vrm-form__message.is-success {
  background: #e9f6ef;
  color: #1d5f42;
}

.vr-alert--error,
.vr-form__message.is-error,
.vrm-form__message.is-error {
  background: #fdecef;
  color: #9b1623;
}

.vr-job-list,
.vrm-job-list {
  display: grid;
  gap: 18px;
}

.vr-job-card,
.vrm-job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--vr-line);
  background: var(--vr-white);
  border-radius: var(--vr-radius);
}

.vr-job-card h2,
.vrm-job-card h3 {
  margin: 0;
  color: var(--vr-blue);
  font-size: 24px;
}

.vr-job-card p,
.vrm-job-card p {
  margin: 10px 0 0;
  color: var(--vr-muted);
}

.vr-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vr-news-card__body {
  display: grid;
  gap: 10px;
  padding-top: 20px;
}

.vr-news-detail__body {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.vr-list-stack {
  display: grid;
  gap: 16px;
}

.vr-search-result,
.vr-empty-state {
  padding: 22px;
}

.vr-search-result h2 a:hover {
  color: var(--vr-red);
}

.vr-search-form {
  grid-template-columns: 1fr auto;
  max-width: 760px;
  margin-top: 28px;
  margin-bottom: 0;
}

.vr-pagination,
.vrm-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.vr-pagination a,
.vr-pagination span,
.vrm-pagination a,
.vrm-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--vr-line);
  background: var(--vr-white);
  color: var(--vr-blue);
  font-weight: 800;
  border-radius: 4px;
}

.vr-pagination .is-active,
.vr-pagination a:hover,
.vrm-pagination a[aria-current="page"],
.vrm-pagination a:hover {
  background: var(--vr-blue);
  border-color: var(--vr-blue);
  color: var(--vr-white);
}

.vrm-footer {
  color: var(--vr-white);
  background: #052966;
}

.vrm-footer__top,
.vrm-footer__grid,
.vrm-footer__bottom {
  width: min(var(--vr-max), calc(100% - 40px));
  margin-inline: auto;
}

.vrm-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 38px 0 8px;
  border-bottom: 0;
}

.vrm-footer__brand {
  color: var(--vr-white);
}

.vrm-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vrm-social a {
  min-width: 23px;
  min-height: 23px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 3px;
  color: var(--vr-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.vrm-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 0 0 46px 42%;
}

.vrm-footer__col h2 {
  margin: 0 0 14px;
  color: var(--vr-white);
  font-size: 16px;
}

.vrm-footer__col ul,
.vrm-footer__col .vrm-richtext ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.vrm-footer__col a,
.vrm-footer__col .vrm-richtext {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.vrm-footer__col a:hover {
  color: var(--vr-white);
}

.vrm-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 0 0 36px;
  border-top: 0;
}

.vrm-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.vrm-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vrm-footer__bottom a,
.vrm-footer__bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.vrm-footer__bottom a:hover,
.vrm-footer__bottom button:hover {
  color: var(--vr-white);
}

.vrm-popup,
.vrm-cookie {
  position: fixed;
  z-index: 80;
}

.vrm-popup {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.vrm-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 31, .58);
}

.vrm-popup__dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 24px;
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  box-shadow: var(--vr-shadow);
}

.vrm-popup__dialog > button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--vr-bg);
  color: var(--vr-blue);
  font-size: 24px;
}

.vrm-popup__media {
  margin: -24px -24px 20px;
  max-height: 260px;
  overflow: hidden;
}

.vrm-popup__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.vrm-cookie {
  right: 18px;
  bottom: 18px;
  width: min(440px, calc(100% - 36px));
  padding: 18px;
  background: var(--vr-white);
  border: 1px solid var(--vr-line);
  border-radius: var(--vr-radius);
  box-shadow: var(--vr-shadow);
}

.vrm-cookie h2 {
  margin: 0 0 8px;
  color: var(--vr-blue);
  font-size: 20px;
}

.vrm-cookie p {
  margin: 0 0 14px;
  color: var(--vr-muted);
  font-size: 14px;
}

.vrm-cookie__options {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.vrm-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vrm-cookie button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--vr-line);
  background: var(--vr-white);
  color: var(--vr-blue);
  font-weight: 800;
  border-radius: 4px;
}

.vrm-cookie button[data-cookie-accept] {
  background: var(--vr-red);
  border-color: var(--vr-red);
  color: var(--vr-white);
}

.vrm-home-container {
  width: min(var(--vr-max), calc(100% - 48px));
  margin-inline: auto;
}

.vrm-home-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  background: var(--vr-white);
}

.vrm-home-section__head {
  max-width: 650px;
  margin: 0 0 82px;
}

.vrm-home-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--vr-red);
  font-family: var(--vr-font-condensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.vrm-home-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.vrm-home-title {
  margin: 0;
  color: var(--vr-ink);
  font-family: var(--vr-font-condensed);
  font-size: 62px;
  font-weight: 800;
  line-height: .96;
  text-transform: uppercase;
}

.vrm-home-section__head .vrm-home-title span {
  color: var(--vr-red);
}

.vrm-home-intro {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--vr-ink);
  font-size: 18px;
  line-height: 1.55;
}

.vrm-home-btn {
  min-width: 192px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: var(--vr-font-condensed);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.vrm-home-btn--arrow span::after {
  content: " ->";
}

.vrm-home-btn--ghost {
  color: var(--vr-white);
}

.vrm-home-btn--ghost:hover {
  background: var(--vr-white);
  border-color: var(--vr-white);
  color: var(--vr-blue);
}

.vrm-home-btn--light {
  min-width: 188px;
  min-height: 54px;
  background: var(--vr-white);
  border-color: var(--vr-white);
  color: var(--vr-red);
}

.vrm-home-btn--light:hover {
  background: var(--vr-blue);
  border-color: var(--vr-blue);
  color: var(--vr-white);
}

.vrm-home-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #061b3d;
  color: var(--vr-white);
}

.vrm-home-hero__media,
.vrm-home-hero__media::after {
  position: absolute;
  inset: 0;
}

.vrm-home-hero__media::after {
  content: "";
  background: rgba(4, 18, 45, .74);
}

.vrm-home-hero__media img,
.vrm-home-hero__media picture,
.vrm-home-hero__media video {
  width: 100%;
  height: 100%;
}

.vrm-home-hero__media img,
.vrm-home-hero__media video {
  object-fit: cover;
  object-position: center;
}

.vrm-home-hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 0 130px;
}

.vrm-home-hero .vrm-home-eyebrow {
  color: rgba(255, 255, 255, .9);
}

.vrm-home-hero .vrm-home-eyebrow::before {
  background: var(--vr-red);
}

.vrm-home-hero__title {
  max-width: 590px;
  margin: 0;
  font-family: var(--vr-font-condensed);
  font-size: 96px;
  font-weight: 800;
  line-height: .9;
  text-transform: uppercase;
}

.vrm-home-hero__title span {
  display: block;
}

.vrm-home-hero__title .is-accent {
  color: var(--vr-red);
}

.vrm-home-hero__title .is-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .92);
  text-stroke: 1px rgba(255, 255, 255, .92);
}

.vrm-home-hero__intro {
  max-width: 560px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, .95);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.vrm-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 46px;
}

.vrm-home-stats {
  padding: 122px 0 110px;
}

.vrm-home-stats::after {
  content: "";
  position: absolute;
  top: 0;
  right: -160px;
  width: 560px;
  height: 320px;
  border: 1px solid rgba(6, 45, 120, .85);
  transform: skewX(-38deg) rotate(26deg);
  transform-origin: top right;
}

.vrm-home-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 96px;
  row-gap: 76px;
}

.vrm-home-stats__grid article {
  min-width: 0;
}

.vrm-home-stats__grid strong {
  display: block;
  color: var(--vr-blue);
  font-family: var(--vr-font-condensed);
  font-size: 58px;
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.vrm-home-stats__grid strong span {
  color: var(--vr-red);
  font-size: .48em;
}

.vrm-home-stats__grid p {
  margin: 18px 0 0;
  color: var(--vr-ink);
  font-size: 17px;
  line-height: 1.35;
}

.vrm-home-history {
  padding: 116px 0 120px;
  background: var(--vr-bg);
}

.vrm-home-history::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 0;
  width: 62%;
  height: 72%;
  background: #dfe8fb;
  clip-path: polygon(48% 0, 100% 0, 100% 100%, 18% 100%, 0 72%);
  opacity: .82;
}

.vrm-home-history .vrm-home-container {
  position: relative;
  z-index: 1;
}

.vrm-home-timeline {
  display: grid;
  gap: 22px;
  max-width: 1060px;
  margin: 0 0 82px 120px;
  padding: 0;
  list-style: none;
}

.vrm-home-timeline li {
  display: grid;
  grid-template-columns: 88px 34px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.vrm-home-timeline time,
.vrm-home-timeline h3 {
  color: var(--vr-blue);
  font-family: var(--vr-font-condensed);
  font-weight: 800;
  line-height: 1.05;
}

.vrm-home-timeline time {
  font-size: 30px;
}

.vrm-home-timeline__dot {
  width: 14px;
  height: 14px;
  margin-top: 8px;
  border: 1px solid var(--vr-ink);
  border-radius: 999px;
  background: transparent;
}

.vrm-home-timeline h3 {
  margin: 0;
  font-size: 31px;
}

.vrm-home-timeline p {
  margin: 12px 0 0;
  color: var(--vr-ink);
  font-size: 17px;
  line-height: 1.45;
}

.vrm-home-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 210px);
  gap: 4px;
}

.vrm-home-gallery__item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #dce5f2;
}

.vrm-home-gallery__item--1,
.vrm-home-gallery__item--4 {
  grid-row: span 2;
}

.vrm-home-gallery__item img,
.vrm-home-gallery__item picture {
  width: 100%;
  height: 100%;
}

.vrm-home-gallery__item img {
  object-fit: cover;
}

.vrm-home-gallery__item figcaption {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 1;
  color: var(--vr-white);
  font-family: var(--vr-font-condensed);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.vrm-home-gallery__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(4, 18, 45, .7), rgba(4, 18, 45, 0));
}

.vrm-home-values {
  padding: 122px 0 130px;
}

.vrm-home-values__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
  align-items: end;
  margin-top: 110px;
}

.vrm-home-values__grid article {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.vrm-home-values__icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
}

.vrm-home-values__icon svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: var(--vr-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.vrm-home-values__icon img {
  max-width: 74px;
  max-height: 74px;
  object-fit: contain;
}

.vrm-home-values__grid h3 {
  margin: 0;
  color: var(--vr-blue);
  font-family: var(--vr-font-condensed);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.vrm-home-expertise {
  padding: 120px 0 124px;
  box-shadow: inset 0 18px 34px rgba(6, 45, 120, .08), inset 0 -18px 34px rgba(6, 45, 120, .08);
}

.vrm-home-expertise__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 10px;
}

.vrm-home-expertise__card {
  min-width: 0;
}

.vrm-home-expertise__media {
  aspect-ratio: 1.52 / 1;
  overflow: hidden;
  background: var(--vr-bg);
}

.vrm-home-expertise__media img,
.vrm-home-expertise__media picture {
  width: 100%;
  height: 100%;
}

.vrm-home-expertise__media img {
  object-fit: cover;
}

.vrm-home-expertise__body {
  padding: 28px 14px 36px;
}

.vrm-home-expertise__body span,
.vrm-home-expertise__body h3 {
  font-family: var(--vr-font-condensed);
  text-transform: uppercase;
}

.vrm-home-expertise__body span {
  display: block;
  margin-bottom: 10px;
  color: #6b7e9f;
  font-size: 17px;
  font-weight: 500;
}

.vrm-home-expertise__body h3 {
  margin: 0;
  color: var(--vr-blue);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
}

.vrm-home-testimonials {
  padding: 116px 0 124px;
}

.vrm-home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 96px;
}

.vrm-home-testimonials figure {
  min-width: 0;
  margin: 0;
}

.vrm-home-testimonials blockquote {
  margin: 0 0 30px;
  color: var(--vr-ink);
  font-size: 18px;
  line-height: 1.55;
}

.vrm-home-testimonials figcaption {
  position: relative;
  display: grid;
  gap: 5px;
  padding-left: 52px;
}

.vrm-home-testimonials figcaption > span {
  position: absolute;
  left: 0;
  top: -9px;
  color: #e2eaf9;
  font-family: var(--vr-font-condensed);
  font-size: 82px;
  font-weight: 800;
  line-height: 1;
}

.vrm-home-testimonials strong,
.vrm-home-testimonials em {
  color: var(--vr-blue);
  font-style: normal;
}

.vrm-home-testimonials strong {
  font-family: var(--vr-font-condensed);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.vrm-home-testimonials em {
  font-size: 16px;
}

.vrm-home-recent {
  padding: 120px 0 110px;
  background: var(--vr-bg);
}

.vrm-home-recent__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.vrm-home-recent__card {
  min-width: 0;
  overflow: hidden;
  background: var(--vr-white);
}

.vrm-home-recent__media {
  position: relative;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  background: #dce5f2;
}

.vrm-home-recent__media img,
.vrm-home-recent__media picture {
  width: 100%;
  height: 100%;
}

.vrm-home-recent__media img {
  object-fit: cover;
}

.vrm-home-recent__media span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 12px;
  background: var(--vr-red);
  color: var(--vr-white);
  font-family: var(--vr-font-condensed);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.vrm-home-recent__body {
  padding: 24px 24px 30px;
}

.vrm-home-recent__date {
  margin: 0 0 12px;
  color: var(--vr-ink);
  font-size: 15px;
  line-height: 1;
}

.vrm-home-recent__body h3 {
  margin: 0;
  color: var(--vr-blue);
  font-family: var(--vr-font-condensed);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.vrm-home-recent__body h3 a:hover {
  color: var(--vr-red);
}

.vrm-home-recent__body p:not(.vrm-home-recent__date) {
  display: -webkit-box;
  margin: 22px 0 0;
  overflow: hidden;
  color: var(--vr-ink);
  font-size: 17px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.vrm-home-career {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: #9f0829;
  color: var(--vr-white);
}

.vrm-home-career::before,
.vrm-home-career::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vrm-home-career::before {
  left: 42%;
  background:
    linear-gradient(60deg, transparent 0 32%, rgba(255, 255, 255, .2) 32% 45%, transparent 45%),
    linear-gradient(25deg, transparent 0 26%, rgba(255, 255, 255, .2) 26% 50%, transparent 50%);
}

.vrm-home-career::after {
  left: 62%;
  background: rgba(255, 255, 255, .2);
  clip-path: polygon(12% 6%, 100% 31%, 100% 100%, 0 100%, 34% 50%);
  opacity: .75;
}

.vrm-home-career__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 650px) auto;
  gap: 70px;
  align-items: center;
}

.vrm-home-career .vrm-home-eyebrow {
  color: rgba(255, 255, 255, .9);
}

.vrm-home-career .vrm-home-eyebrow::before {
  background: var(--vr-red);
}

.vrm-home-career .vrm-home-title {
  color: var(--vr-white);
  font-size: 64px;
}

.vrm-home-career .vrm-home-title span {
  display: block;
}

.vrm-home-career__text {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.55;
}

.vrm-home-career__text p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .vrm-nav {
    display: none;
  }

  .vrm-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .vrm-header__inner {
    grid-template-columns: auto 1fr;
  }

  .vrm-header__tools {
    justify-self: end;
  }

  .vrm-header__cta {
    display: none;
  }

  .vr-detail-layout {
    grid-template-columns: 1fr;
  }

  .vr-job-apply {
    position: static;
  }

  .vrm-home-expertise__grid,
  .vrm-home-recent__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vrm-home-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .vrm-container,
  .vrm-home-container,
  .vr-section,
  .vr-simple-hero,
  .vr-detail-hero,
  .vr-detail-layout,
  .vrm-footer__top,
  .vrm-footer__grid,
  .vrm-footer__bottom {
    width: min(100% - 28px, var(--vr-max));
  }

  .vrm-home-section {
    padding: 72px 0;
  }

  .vrm-home-section__head {
    margin-bottom: 42px;
  }

  .vrm-home-title {
    font-size: 40px;
  }

  .vrm-home-hero {
    min-height: 600px;
  }

  .vrm-home-hero__content {
    padding: 68px 0 78px;
  }

  .vrm-home-hero__title {
    font-size: 58px;
  }

  .vrm-home-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .vrm-home-timeline {
    margin-left: 0;
  }

  .vrm-home-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .vrm-home-gallery__item,
  .vrm-home-gallery__item--1,
  .vrm-home-gallery__item--4 {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .vrm-home-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .vrm-home-career__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .vrm-hero {
    min-height: 560px;
  }

  .vrm-hero__content {
    width: min(100% - 28px, var(--vr-max));
    padding: 120px 0 60px;
  }

  .vrm-hero h1,
  .vrm-page-hero h1,
  .vr-simple-hero h1,
  .vr-detail-hero h1 {
    font-size: 42px;
  }

  .vrm-card-grid,
  .vr-card-grid,
  .vrm-project-grid,
  .vr-news-grid,
  .vrm-gallery__grid,
  .vrm-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vrm-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vrm-text-media .vrm-container,
  .vr-detail-hero,
  .vr-detail-layout--form-only {
    grid-template-columns: 1fr;
  }

  .vrm-filter-bar,
  .vr-jobs-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vrm-footer__top,
  .vrm-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .vrm-footer__grid {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .vrm-header__inner {
    width: min(100% - 24px, var(--vr-max));
    min-height: 54px;
    gap: 12px;
  }

  .vrm-brand img {
    max-width: 118px;
  }

  .vrm-mobile-menu {
    inset: 94px 0 auto;
    max-height: calc(100vh - 94px);
  }

  .vrm-lang {
    display: none;
  }

  .vrm-agency-nav {
    justify-content: flex-start;
  }

  .vrm-agency-nav__inner {
    width: min(100% - 28px, var(--vr-max));
  }

  .vrm-home-container {
    width: min(100% - 28px, var(--vr-max));
  }

  .vrm-home-hero {
    min-height: 560px;
  }

  .vrm-home-hero__title {
    font-size: 48px;
  }

  .vrm-home-hero__intro {
    max-width: 100%;
    font-size: 15px;
  }

  .vrm-home-hero__actions {
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .vrm-home-btn {
    width: 100%;
  }

  .vrm-home-title,
  .vrm-home-career .vrm-home-title {
    font-size: 34px;
  }

  .vrm-home-stats::after {
    display: none;
  }

  .vrm-home-stats__grid,
  .vrm-home-values__grid,
  .vrm-home-expertise__grid,
  .vrm-home-recent__grid,
  .vrm-home-gallery {
    grid-template-columns: 1fr;
  }

  .vrm-home-values__grid {
    margin-top: 48px;
  }

  .vrm-home-timeline li {
    grid-template-columns: 64px 22px minmax(0, 1fr);
    gap: 12px;
  }

  .vrm-hero {
    min-height: 520px;
  }

  .vrm-hero h1,
  .vrm-page-hero h1,
  .vr-simple-hero h1,
  .vr-detail-hero h1 {
    font-size: 34px;
  }

  .vrm-page-hero,
  .vr-simple-hero,
  .vr-detail-hero {
    padding-top: 52px;
  }

  .vrm-card-grid,
  .vr-card-grid,
  .vrm-project-grid,
  .vr-news-grid,
  .vrm-gallery__grid,
  .vrm-footer__grid,
  .vrm-stats__grid,
  .vrm-filter-bar,
  .vr-jobs-filter,
  .vr-search-form,
  .vr-form,
  .vrm-form__grid {
    grid-template-columns: 1fr;
  }

  .vrm-section__head--inline,
  .vr-job-card,
  .vrm-job-card {
    grid-template-columns: 1fr;
  }

  .vrm-timeline__list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vr-content-section,
  .vr-job-apply,
  .vrm-stats__grid article {
    padding: 20px;
  }

  .vrm-footer__bottom nav {
    display: grid;
    gap: 8px;
  }
}
