:root {
  --vm-red: #eb0738;
  --vm-red-dark: #c90531;
  --vm-blue: #001F3D;
  --vm-blue-soft: #174d7d;
  --vm-ink: #10253c;
  --vm-text: #314257;
  --vm-muted: #6d7b8a;
  --vm-surface: #ffffff;
  --vm-surface-alt: #f5f8fc;
  --vm-border: rgba(7, 52, 89, 0.1);
  --vm-shadow: 0 24px 60px rgba(7, 52, 89, 0.12);
  --vm-radius-xl: 32px;
  --vm-radius-lg: 24px;
  --vm-radius-md: 18px;
  --vm-radius-sm: 12px;
  --vm-container: min(1280px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "UTM ViceroyJF";
  src: url("../fonts/UTM-ViceroyJF.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--vm-text);
  background: radial-gradient(circle at top left, rgba(235, 7, 56, 0.08), transparent 30%), radial-gradient(circle at top right, rgba(7, 52, 89, 0.08), transparent 24%), #ffffff;
}

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

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

.vm-site {
  overflow: clip;
}

.vm-container,
.vm-topbar__inner,
.vm-header__inner,
.vm-news__grid {
  width: var(--vm-container);
  margin: 0 auto;
}

.vm-topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vm-topbar__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.vm-topbar__accent {
  color: #ffb056;
}

.vm-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px rgba(7, 52, 89, 0.08);
}

.vm-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vm-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.vm-brand__logo {
  width: 124px;
  height: auto;
}

.vm-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--vm-blue);
}

.vm-nav a {
  position: relative;
  padding: 8px 0;
}
.vm-nav a:hover {
  color: var(--vm-red);
}

.vm-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--vm-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.vm-nav a:hover::after,
.vm-nav a:focus-visible::after {
  transform: scaleX(1);
}

.vm-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vm-lang span + span {
  color: var(--vm-red);
}

.vm-hero {
  position: relative;
  min-height: 830px;
  background: linear-gradient(90deg, rgba(7, 52, 89, 0.82) 0%, rgba(7, 52, 89, 0.58) 26%, rgba(7, 52, 89, 0.08) 55%, rgba(7, 52, 89, 0.1) 100%), url("https://www.figma.com/api/mcp/asset/371af181-bc6c-48ef-a498-42bc92d69a2b") center/cover no-repeat;
  color: #fff;
}

.vm-hero__inner {
  width: var(--vm-container);
  min-height: 830px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.vm-social-sticky {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm-social-sticky a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 52, 89, 0.18);
  color: var(--vm-blue);
  font-size: 13px;
  font-weight: 800;
}

.vm-section {
  padding: 72px 0;
}

.vm-section--alt {
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.92), rgba(255, 255, 255, 0.98)), radial-gradient(circle at left center, rgba(235, 7, 56, 0.05), transparent 28%);
}

.vm-section--numbers {
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.7), rgb(255, 255, 255)), url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  background-blend-mode: screen;
}

.vm-section__heading {
  width: var(--vm-container);
  margin: 0 auto 34px;
  text-align: center;
}

.vm-grid-activities,
.vm-grid-jobs,
.vm-grid-campus,
.vm-grid-programs,
.vm-grid-numbers,
.vm-news__grid {
  display: grid;
  gap: 24px;
}

.vm-grid-activities {
  grid-template-columns: 2fr 1fr 1fr;
}

.vm-card,
.vm-news-card,
.vm-number-card,
.vm-campus-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--vm-shadow);
}

.vm-card__media,
.vm-job-card__media,
.vm-campus-card__media,
.vm-news-card__media {
  background-size: cover;
  background-position: center;
}

.vm-card__media {
  min-height: 300px;
}

.vm-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 52, 89, 0.04), rgba(7, 52, 89, 0.78));
}

.vm-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  color: #fff;
}

.vm-card__content h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.vm-card__content p,
.vm-campus-card p,
.vm-program-copy p,
.vm-news-card p,
.vm-number-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--vm-muted);
}

.vm-card__content p {
  color: rgba(255, 255, 255, 0.84);
}

.vm-grid-activities .vm-card:first-child {
  grid-row: span 2;
}

.vm-grid-jobs {
  grid-template-columns: repeat(3, 1fr);
}

.vm-job-card__media,
.vm-news-card__media {
  aspect-ratio: 16/9;
}

.vm-job-card__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 52, 89, 0.08);
  color: var(--vm-blue);
  font-size: 12px;
  font-weight: 800;
}

.vm-job-card h3,
.vm-campus-card h3,
.vm-program-copy h3,
.vm-news-card h3 {
  margin: 14px 0 10px;
  color: var(--vm-ink);
  font-size: 22px;
  line-height: 1.35;
}

.vm-grid-campus {
  grid-template-columns: 1fr 1fr;
}

.vm-campus-card__media {
  min-height: 300px;
}

.vm-program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
  margin-bottom: 42px;
}

.vm-program-row:last-child {
  margin-bottom: 0;
}

.vm-program-row:nth-child(even) .vm-program-visual {
  order: 2;
}

.vm-program-visual {
  position: relative;
  min-height: 580px;
}

.vm-program-visual::before,
.vm-program-visual::after {
  content: "";
  position: absolute;
  border-radius: 42px;
}

.vm-program-visual::before {
  inset: 24px auto auto 0;
  width: 82%;
  height: 88%;
  background: linear-gradient(180deg, #083a63 0%, #0f5d9b 100%);
}

.vm-program-visual::after {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 62%;
  background: linear-gradient(180deg, #f0f5fb 0%, #d5e4f3 100%);
}

.vm-program-visual img {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: 72%;
  height: 90%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 24px 55px rgba(7, 52, 89, 0.18);
}

.vm-program-copy {
  padding: 18px 0;
}

.vm-program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 30px;
  padding: 0;
}

.vm-program-list li {
  list-style: none;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--vm-border);
  box-shadow: 0 12px 26px rgba(7, 52, 89, 0.06);
  font-weight: 700;
  color: var(--vm-blue);
}

.vm-grid-numbers {
  grid-template-columns: repeat(4, 1fr);
}

.vm-number-card {
  padding: 32px 24px;
  text-align: center;
}

.vm-number-card__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(235, 7, 56, 0.12), rgba(7, 52, 89, 0.12));
  display: grid;
  place-items: center;
  color: var(--vm-red);
  font-size: 30px;
  font-weight: 800;
}

.vm-number-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--vm-red);
  font-size: 40px;
  line-height: 1;
}

.vm-cta {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(90deg, rgba(7, 52, 89, 0.92) 0%, rgba(7, 52, 89, 0.74) 100%), url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
}

.vm-cta::before {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--vm-red), transparent);
  transform: rotate(25deg);
}

.vm-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
}

.vm-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 42px);
}

.vm-cta p {
  margin: 0 0 24px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.vm-form {
  display: grid;
  gap: 14px;
}

.vm-form input,
.vm-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
}

.vm-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.vm-news__grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.vm-news-list {
  display: grid;
  gap: 18px;
}

.vm-news-list .vm-news-card {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.vm-news-list .vm-news-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.vm-news-card__meta {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vm-muted);
  font-size: 13px;
  font-weight: 700;
}

@keyframes vm-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .vm-nav {
    display: none;
  }
  .vm-grid-jobs,
  .vm-grid-numbers,
  .vm-news__grid,
  .vm-cta__inner,
  .vm-program-row {
    grid-template-columns: 1fr 1fr;
  }
  .vm-grid-campus,
  .vm-program-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .vm-topbar {
    display: none;
  }
  .vm-header__inner {
    min-height: 74px;
  }
  .vm-header__actions {
    display: none;
  }
  .vm-hero,
  .vm-hero__inner {
    min-height: 680px;
  }
  .vm-grid-activities,
  .vm-grid-jobs,
  .vm-grid-campus,
  .vm-grid-numbers,
  .vm-news__grid,
  .vm-cta__inner,
  .vm-program-row {
    grid-template-columns: 1fr;
  }
  .vm-news-list .vm-news-card {
    grid-template-columns: 1fr;
  }
  .vm-program-row:nth-child(even) .vm-program-visual {
    order: 0;
  }
  .vm-social-sticky {
    display: none;
  }
}
@media (max-width: 640px) {
  .vm-hero {
    background-position: 68% center;
  }
  .vm-hero__inner {
    align-items: flex-end;
    padding: 50px 0;
  }
  .vm-hero__content {
    max-width: none;
  }
  .vm-section {
    padding: 56px 0;
  }
  .vm-section__heading h2,
  .vm-cta h2 {
    font-size: 28px;
  }
  .vm-program-list {
    grid-template-columns: 1fr;
  }
}
.vm-hero {
  position: relative;
  min-height: 830px;
  color: #fff;
}

.vm-hero-slider {
  position: relative;
  min-height: 830px;
  overflow: hidden;
}

.vm-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  background-position: center;
  background-size: cover;
}

.vm-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.vm-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 72px;
  height: 72px;
  margin-top: -36px;
  border-radius: 50%;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.vm-hero__arrow:hover {
  backdrop-filter: blur(4px);
}

.vm-hero__arrow--prev {
  left: 24px;
}

.vm-hero__arrow--next {
  right: 24px;
}

.vm-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.vm-hero__dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.vm-hero__dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

.vm-form__notice {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.vm-form__notice--success {
  background: rgba(85, 210, 124, 0.14);
  color: #d7ffe2;
}

.vm-form__notice--error {
  background: rgba(255, 112, 112, 0.14);
  color: #ffd5d5;
}

@media (max-width: 900px) {
  .vm-hero__arrow {
    display: none;
  }
}
.vm-about-page {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 246, 255, 0.98) 100%), radial-gradient(circle at top left, rgba(235, 7, 56, 0.08), transparent 32%), #ffffff;
}

.vm-about-hero {
  position: relative;
  min-height: 430px;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.vm-about-hero__inner,
.vm-about-shell__inner,
.vm-about-partners__inner,
.vm-about-contact__inner {
  width: var(--vm-container);
  margin: 0 auto;
}

.vm-about-hero__inner {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 0 40px;
}

.vm-about-hero__copy {
  max-width: 680px;
}

.vm-about-hero__copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  text-transform: uppercase;
}

.vm-about-hero__copy p {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.vm-about-breadcrumb {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.vm-about-shell {
  position: relative;
  padding: 42px 0 80px;
}

.vm-about-shell__inner {
  display: grid;
  grid-template-columns: 328px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.vm-about-sidebar {
  position: sticky;
  top: 116px;
  overflow: hidden;
  padding: 60px 16px;
  background: linear-gradient(180deg, rgba(243, 246, 255, 0.96) 0%, rgba(243, 246, 255, 0.98) 100%), radial-gradient(circle at 22% 28%, rgba(7, 52, 89, 0.07), transparent 38%);
  min-height: 960px;
}

.vm-about-sidebar::before {
  content: "";
  position: absolute;
  inset: 58px 14px auto auto;
  width: 286px;
  height: 360px;
  opacity: 0.06;
  background: linear-gradient(135deg, transparent 0 44%, rgba(7, 52, 89, 0.4) 44% 47%, transparent 47% 100%), linear-gradient(45deg, transparent 0 36%, rgba(7, 52, 89, 0.4) 36% 39%, transparent 39% 100%);
  transform: rotate(8deg);
  pointer-events: none;
}

.vm-about-sidebar__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.vm-about-sidebar h2 {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 800;
}

.vm-about-sidebar__toggle {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #fff;
  color: var(--vm-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 26px;
  line-height: 1;
  cursor: default;
}

.vm-about-sidebar nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vm-about-sidebar a {
  display: block;
  padding: 16px 26px 16px 24px;
  border-left: 2px solid #f5f5f5;
  color: var(--vm-blue);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vm-about-sidebar a:hover,
.vm-about-sidebar a:focus-visible {
  color: var(--vm-red);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(235, 7, 56, 0.5);
}

.vm-about-sidebar a.is-active {
  background: #fff;
  color: var(--vm-red);
  border-color: var(--vm-red);
}

.vm-about-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.vm-about-panel,
.vm-about-story,
.vm-about-video,
.vm-about-highlights {
  background: #fff;
  border: 1px solid rgba(7, 52, 89, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 52, 89, 0.08);
}

.vm-about-panel {
  padding: 26px;
}

.vm-about-panel__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.vm-about-panel__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(235, 7, 56, 0.08);
  color: var(--vm-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-about-panel__head h2,
.vm-about-story__content h2,
.vm-about-video__copy h2,
.vm-about-contact__inner h2 {
  margin: 0;
  color: var(--vm-blue);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.vm-about-intro-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.vm-about-intro-card__year {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #08385f 0%, #0f2243 100%);
  color: #fff;
  text-align: center;
}

.vm-about-intro-card__year strong {
  font-size: 56px;
  line-height: 1;
}

.vm-about-intro-card__year span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.vm-about-intro-card__copy {
  display: grid;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7faff 0%, #edf3ff 100%);
}

.vm-about-intro-card__copy p,
.vm-about-story__content p,
.vm-about-video__copy p,
.vm-about-contact__inner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--vm-text);
}

.vm-about-story {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
}

.vm-about-story__tabs {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #082e4d 0%, #eb0738 100%);
}

.vm-about-story__tab {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 8px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vm-about-story__tab.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.vm-about-story__tab-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 18px;
  font-weight: 800;
}

.vm-about-story__tab span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.vm-about-story__content {
  padding: 30px 34px;
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #f3f6ff 0%, #ffffff 100%);
}

.vm-about-video {
  padding: 30px;
  display: grid;
  gap: 24px;
}

.vm-about-video__frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(7, 52, 89, 0.18);
}

.vm-about-video__frame img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.vm-about-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  color: var(--vm-red);
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(7, 52, 89, 0.22);
}

.vm-about-highlights {
  padding: 28px;
}

.vm-about-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.vm-about-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.15fr;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(7, 52, 89, 0.08);
}

.vm-about-highlight__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.vm-about-highlight__body {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.vm-about-highlight__body h3 {
  margin: 0;
  font-size: 22px;
  color: var(--vm-blue);
}

.vm-about-highlight__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.vm-about-highlight--red .vm-about-highlight__body {
  background: linear-gradient(180deg, rgba(235, 7, 56, 0.06) 0%, rgb(255, 255, 255) 100%);
}

.vm-about-highlight--blue .vm-about-highlight__body {
  background: linear-gradient(180deg, rgba(7, 52, 89, 0.05) 0%, rgb(255, 255, 255) 100%);
}

.vm-about-partners {
  padding: 12px 0 80px;
}

.vm-section__heading--compact {
  max-width: 760px;
  margin-bottom: 28px;
}

.vm-about-partners__logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.vm-about-partners__logo {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 52, 89, 0.08);
  box-shadow: 0 12px 34px rgba(7, 52, 89, 0.08);
}

.vm-about-partners__logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.vm-about-contact {
  padding: 0 0 80px;
}

.vm-about-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 28px;
  background: linear-gradient(120deg, #073459 0%, #0f4f83 100%);
  color: #fff;
  box-shadow: 0 30px 70px rgba(7, 52, 89, 0.22);
}

.vm-about-contact__inner p {
  color: rgba(255, 255, 255, 0.82);
}

.vm-about-contact__meta {
  display: grid;
  gap: 10px;
  text-align: right;
}

.vm-about-contact__meta a {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .vm-about-shell__inner {
    grid-template-columns: 1fr;
  }
  .vm-about-sidebar {
    position: static;
  }
  .vm-about-partners__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .vm-about-hero {
    min-height: 360px;
  }
  .vm-about-hero__inner {
    min-height: 360px;
  }
  .vm-about-intro-card,
  .vm-about-story,
  .vm-about-highlight,
  .vm-about-contact__inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .vm-about-story__tabs {
    flex-direction: row;
  }
  .vm-about-story__tab {
    min-height: 120px;
    flex: 1;
  }
  .vm-about-highlights__grid,
  .vm-about-partners__logos {
    grid-template-columns: 1fr;
  }
  .vm-about-contact__meta {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .vm-about-shell {
    padding-top: 28px;
  }
  .vm-about-panel,
  .vm-about-video,
  .vm-about-highlights,
  .vm-about-story__content {
    padding: 22px;
  }
  .vm-about-hero__copy p,
  .vm-about-intro-card__copy p,
  .vm-about-story__content p,
  .vm-about-video__copy p {
    font-size: 15px;
  }
  .vm-about-video__play {
    width: 68px;
    height: 68px;
    font-size: 24px;
  }
}
.vm-teachers-page {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 247, 255, 0.98) 100%), #ffffff;
}

.vm-teachers-hero {
  position: relative;
  min-height: 600px;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.vm-teachers-hero__inner {
  width: var(--vm-container);
  min-height: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 0 40px;
}

.vm-teachers-hero__copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  text-transform: uppercase;
}

.vm-teachers-directory {
  padding: 60px 0 80px;
}

.vm-teachers-directory__inner {
  width: var(--vm-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 40px;
}

.vm-teachers-directory__back {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(7, 52, 89, 0.12);
  background: #fff;
  color: var(--vm-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 15px;
}

.vm-teachers-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.vm-teachers-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: #ededed;
  color: var(--vm-blue);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vm-teachers-tabs__item.is-active,
.vm-teachers-tabs__item:hover,
.vm-teachers-tabs__item:focus-visible {
  background: var(--vm-red);
  color: #fff;
  transform: translateY(-1px);
}

.vm-teachers-pane {
  display: grid;
  gap: 48px;
}

.vm-teachers-group {
  display: grid;
  gap: 24px;
}

.vm-teachers-group__head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.vm-teachers-group__head h2 {
  margin: 0;
  padding: 18px 24px;
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, #f4f7ff 0%, #edf3ff 100%);
  color: var(--vm-blue);
  font-size: 24px;
  line-height: 1.2;
}

.vm-teachers-group__icon {
  color: var(--vm-red);
  font-size: 28px;
  line-height: 1;
}

.vm-teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 24px;
}

.vm-teacher-card {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.vm-teacher-card__media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(7, 52, 89, 0.08);
}

.vm-teacher-card__media img {
  width: 100%;
  aspect-ratio: 270/320;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vm-teacher-card:hover .vm-teacher-card__media img,
.vm-teacher-card:focus-visible .vm-teacher-card__media img {
  transform: scale(1.04);
}

.vm-teacher-card__body {
  padding-top: 14px;
  display: grid;
  gap: 6px;
}

.vm-teacher-card__body h3 {
  margin: 0;
  color: var(--vm-blue);
  font-size: 18px;
  line-height: 1.4;
}

.vm-teacher-card__body p {
  margin: 0;
  color: var(--vm-text);
  font-size: 14px;
  line-height: 1.5;
}

.vm-teachers-empty {
  padding: 28px 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(7, 52, 89, 0.08);
  color: var(--vm-text);
}

.vm-teachers-partners__heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.vm-teacher-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.vm-teacher-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 39, 0.66);
}

.vm-teacher-modal__dialog {
  position: relative;
  width: min(1040px, 100vw - 32px);
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(7, 52, 89, 0.28);
}

.vm-teacher-modal__close {
  position: sticky;
  top: 18px;
  left: calc(100% - 66px);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 52, 89, 0.08);
  color: var(--vm-blue);
  font-size: 28px;
  cursor: pointer;
}

.vm-teacher-modal__panel {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 32px;
  padding: 0 32px 32px;
}

.vm-teacher-modal__media img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.vm-teacher-modal__content {
  display: grid;
  align-content: start;
  gap: 16px;
}

.vm-teacher-modal__eyebrow {
  margin: 0;
  color: var(--vm-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.vm-teacher-modal__content h2 {
  margin: 0;
  color: var(--vm-blue);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.vm-teacher-modal__intro {
  margin: 0;
  color: var(--vm-text);
  font-size: 18px;
  line-height: 1.8;
}

.vm-teacher-modal__body {
  color: var(--vm-text);
  line-height: 1.8;
}

body.vm-modal-open {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .vm-teachers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .vm-teachers-hero,
  .vm-teachers-hero__inner {
    min-height: 420px;
  }
  .vm-teachers-directory__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm-teachers-directory__rail {
    display: none;
  }
  .vm-teachers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vm-teacher-modal__panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .vm-teachers-directory {
    padding: 40px 0 60px;
  }
  .vm-teachers-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }
  .vm-teachers-tabs__item {
    width: 100%;
  }
  .vm-teachers-group__head h2 {
    padding: 14px 18px;
    font-size: 20px;
  }
  .vm-teachers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vm-teacher-modal__dialog {
    width: min(1040px, 100vw - 16px);
    margin: 8px auto;
    border-radius: 22px;
  }
  .vm-teacher-modal__panel {
    padding: 0 18px 24px;
  }
}
/* Homepage refresh */
.home {
  overflow-x: hidden;
}

.vm-home {
  display: block;
}

.vm-home .vm-section {
  position: relative;
  padding: 96px 0;
}

.vm-home .vm-section__anchor {
  position: relative;
  top: -120px;
  visibility: hidden;
}

.home .vm-header {
  border-bottom: 1px solid rgba(7, 52, 89, 0.06);
}

.home .vm-header__inner {
  width: var(--vm-container);
  margin: 0 auto;
}

.vm-home .vm-hero {
  min-height: calc(100vh - 128px);
  background: linear-gradient(180deg, #082f51 0%, #0a416f 100%);
}

.vm-home .vm-hero-slider,
.vm-home .vm-hero__inner,
.vm-home .vm-hero-slide {
  min-height: inherit;
}

.vm-home .vm-hero-slide {
  isolation: isolate;
}

.vm-home .vm-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 28%, rgba(235, 7, 56, 0.22), transparent 22%), linear-gradient(105deg, rgba(7, 33, 56, 0.92) 0%, rgba(7, 52, 89, 0.78) 34%, rgba(7, 52, 89, 0.18) 68%, rgba(7, 52, 89, 0.06) 100%);
  z-index: -1;
}

.vm-home .vm-button {
  min-height: 54px;
  padding: 16px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.vm-home .vm-button:hover,
.vm-home .vm-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(235, 7, 56, 0.22);
}

.vm-home .vm-hero__dots {
  bottom: 34px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(4, 24, 41, 0.26);
  backdrop-filter: blur(8px);
}

.vm-home .vm-social-sticky {
  right: 20px;
  gap: 10px;
}

.vm-home .vm-social-sticky a {
  width: auto;
  min-width: 54px;
  height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.vm-home .vm-section__heading {
  margin-bottom: 42px;
}

.vm-home .vm-section__heading h2 {
  margin-top: 20px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.03em;
}

.vm-home .vm-grid-activities {
  grid-template-columns: minmax(0, 1.55fr) repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.vm-home .vm-card,
.vm-home .vm-news-card,
.vm-home .vm-number-card,
.vm-home .vm-campus-card {
  border: 1px solid rgba(7, 52, 89, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.vm-home .vm-card:hover,
.vm-home .vm-card:focus-within,
.vm-home .vm-news-card:hover,
.vm-home .vm-news-card:focus-within,
.vm-home .vm-campus-card:hover,
.vm-home .vm-campus-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(7, 52, 89, 0.14);
  border-color: rgba(7, 52, 89, 0.16);
}

.vm-home .vm-card a,
.vm-home .vm-campus-card > a,
.vm-home .vm-news-card > a {
  display: block;
}

.vm-home .vm-card__overlay {
  background: linear-gradient(180deg, rgba(7, 52, 89, 0) 22%, rgba(7, 52, 89, 0.86) 100%);
}

.vm-home .vm-card__content {
  left: 28px;
  right: 28px;
  bottom: 26px;
}

.vm-home .vm-card__content h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.3;
}

.vm-home .vm-card__content p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vm-home .vm-grid-jobs,
.vm-home .vm-grid-campus {
  gap: 28px;
}

.vm-home .vm-campus-card__media {
  position: relative;
  min-height: 360px;
}

.vm-home .vm-campus-card__media .vm-job-card__badge {
  position: absolute;
  left: 22px;
  top: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.vm-home .vm-campus-card h3,
.vm-home .vm-news-card h3,
.vm-home .vm-program-copy h3 {
  font-size: 24px;
}

.vm-home .vm-program-row {
  gap: 52px;
  margin-bottom: 56px;
  padding: 36px;
  border: 1px solid rgba(7, 52, 89, 0.08);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.96));
  box-shadow: 0 26px 70px rgba(7, 52, 89, 0.08);
}

.vm-home .vm-program-visual {
  min-height: 540px;
}

.vm-home .vm-program-visual::before {
  inset: 0 auto auto 0;
  width: 84%;
  height: 100%;
}

.vm-home .vm-program-visual::after {
  width: 48%;
  height: 58%;
}

.vm-home .vm-program-visual img {
  right: 3%;
  bottom: 4%;
  width: 74%;
  height: 88%;
}

.vm-home .vm-program-copy {
  padding: 0;
}

.vm-home .vm-program-list {
  gap: 16px;
}

.vm-home .vm-program-list li {
  min-height: 100%;
}

.vm-home .vm-grid-numbers {
  gap: 22px;
}

.vm-home .vm-number-card {
  padding: 34px 24px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.94));
}

.vm-home .vm-number-card strong {
  font-size: clamp(34px, 4vw, 44px);
}

.vm-home .vm-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(7, 52, 89, 0.18);
}

.vm-home .vm-cta__inner {
  gap: 44px;
  padding: 52px;
}

.vm-home .vm-form {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.vm-home .vm-form input,
.vm-home .vm-form select {
  min-height: 54px;
}

.vm-home .vm-form select option {
  color: var(--vm-ink);
}

.vm-home .vm-news__grid {
  gap: 28px;
}

.vm-home .vm-news__grid > .vm-news-card .vm-news-card__media {
  aspect-ratio: 16/10;
}

.vm-home .vm-news-list {
  gap: 22px;
}

.vm-home .vm-news-list .vm-news-card {
  overflow: hidden;
  grid-template-columns: 220px minmax(0, 1fr);
}

@media (max-width: 1200px) {
  .home .vm-header__inner {
    min-height: auto;
    padding: 18px 0 14px;
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .home .vm-nav {
    display: flex;
    order: 3;
    width: 100%;
    gap: 22px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }
  .home .vm-nav::-webkit-scrollbar {
    height: 4px;
  }
  .home .vm-nav::-webkit-scrollbar-thumb {
    background: rgba(7, 52, 89, 0.18);
    border-radius: 999px;
  }
  .vm-home .vm-grid-activities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vm-home .vm-grid-activities .vm-card:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
  .vm-home .vm-grid-activities .vm-card:first-child .vm-card__media {
    min-height: 420px;
  }
  .vm-home .vm-grid-jobs,
  .vm-home .vm-grid-numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vm-home .vm-news__grid,
  .vm-home .vm-cta__inner,
  .vm-home .vm-program-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .home .vm-topbar {
    display: none;
  }
  .home .vm-header {
    position: sticky;
  }
  .home .vm-header__actions {
    display: none;
  }
  .vm-home .vm-section {
    padding: 72px 0;
  }
  .vm-home .vm-hero {
    min-height: auto;
  }
  .vm-home .vm-hero-slider,
  .vm-home .vm-hero__inner,
  .vm-home .vm-hero-slide {
    min-height: 720px;
  }
  .vm-home .vm-hero__content {
    padding: 28px 24px;
    border-radius: 26px;
  }
  .vm-home .vm-grid-activities .vm-card:first-child {
    grid-column: auto;
  }
  .vm-home .vm-grid-activities .vm-card:first-child .vm-card__media,
  .vm-home .vm-card__media,
  .vm-home .vm-campus-card__media {
    min-height: 300px;
  }
  .vm-home .vm-program-row,
  .vm-home .vm-cta__inner {
    padding: 28px;
  }
  .vm-home .vm-program-visual {
    min-height: 420px;
  }
  .vm-home .vm-program-visual::before {
    width: 86%;
  }
  .vm-home .vm-program-visual img {
    width: 76%;
    height: 84%;
  }
  .vm-home .vm-program-list,
  .vm-home .vm-news-list .vm-news-card {
    grid-template-columns: 1fr;
  }
  .vm-home .vm-news-list .vm-news-card__media {
    min-height: 220px;
  }
  .vm-home .vm-social-sticky {
    display: none;
  }
}
@media (max-width: 640px) {
  .home .vm-header__inner {
    padding-top: 14px;
  }
  .home .vm-brand__logo {
    width: 104px;
  }
  .vm-home .vm-section {
    padding: 56px 0;
  }
  .vm-home .vm-hero-slider,
  .vm-home .vm-hero__inner,
  .vm-home .vm-hero-slide {
    min-height: 620px;
  }
  .vm-home .vm-hero p,
  .vm-home .vm-section__heading p {
    font-size: 15px;
  }
  .vm-home .vm-section__heading h2,
  .vm-home .vm-cta h2 {
    font-size: 30px;
  }
  .vm-home .vm-program-row,
  .vm-home .vm-cta__inner,
  .vm-home .vm-form {
    padding: 22px;
  }
  .vm-home .vm-campus-card h3,
  .vm-home .vm-news-card h3,
  .vm-home .vm-program-copy h3 {
    font-size: 21px;
  }
  .vm-home .vm-number-card strong {
    font-size: 32px;
  }
}
/* Responsive Partners Carousel */
@media (max-width: 1200px) {
  .vm-partners-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .vm-partners-carousel {
    gap: 15px;
    padding: 15px 0;
  }
  .vm-partner-item {
    width: 120px;
    height: 120px;
    padding: 12px;
  }
}
@media (max-width: 900px) {
  .vm-partners-section {
    padding: 30px 0;
  }
  .vm-partners-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .vm-partners-carousel {
    gap: 12px;
    padding: 12px 0;
  }
  .vm-partner-item {
    width: 110px;
    height: 110px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .vm-partners-section {
    padding: 25px 0;
  }
  .vm-partners-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .vm-partners-carousel {
    gap: 10px;
    padding: 10px 0;
  }
  .vm-partner-item {
    width: 100px;
    height: 100px;
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .vm-partners-section {
    padding: 20px 0;
  }
  .vm-partners-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .vm-partners-carousel {
    gap: 8px;
    padding: 8px 0;
  }
  .vm-partner-item {
    width: 85px;
    height: 85px;
    padding: 6px;
  }
  .vm-partner-logo {
    max-width: 90%;
    max-height: 90%;
  }
}
.vm-topbar {
  display: flex;
  width: 100%;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, var(--vm-red) 0 45%, var(--vm-blue) 45% 100%);
}

.vm-topbar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.vm-topbar__message {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.vm-topbar__message::after {
  content: "";
  position: absolute;
  top: 0;
  right: 56px;
  width: 56px;
  height: 100%;
  background: #001f3d;
  transform: skewX(20deg);
}

.vm-topbar__meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.vm-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.94);
}

.vm-topbar__icon svg {
  width: 100%;
  height: 100%;
}

.vm-topbar__label {
  color: rgba(255, 255, 255, 0.94);
}

.vm-topbar__accent {
  color: #ff9d3d;
  font-weight: 800;
}

.vm-topbar__accent:hover,
.vm-topbar__accent:focus-visible {
  color: #ffbe52;
}

.vm-topbar__divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.32);
}

.vm-header {
  border-bottom: 1px solid rgba(7, 52, 89, 0.08);
}

.vm-brand {
  flex: 0 0 auto;
}

.vm-brand__logo {
  width: 124px;
}

.vm-header__navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.vm-nav {
  gap: 24px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.vm-nav a {
  padding: 12px 0;
}

.vm-header__actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.vm-header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.vm-header__action:hover, .vm-header__action:focus-visible, .vm-header__action:focus {
  outline: none;
  border: none;
  box-shadow: none;
  transform: none !important;
}

.vm-header__action:hover,
.vm-header__action:focus-visible,
.vm-header__cta:hover,
.vm-header__cta:focus-visible {
  transform: translateY(-2px);
}

.vm-header__action:hover,
.vm-header__action:focus-visible {
  border-color: rgba(7, 52, 89, 0.24);
  box-shadow: 0 12px 28px rgba(7, 52, 89, 0.08);
}

.vm-header__cta:hover,
.vm-header__cta:focus-visible {
  box-shadow: 0 22px 40px rgba(235, 7, 56, 0.24);
}

.vm-lang span {
  color: #b0b0b0;
}
.vm-lang .active {
  color: #EB0738;
  font-weight: 500;
}

.vm-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(7, 52, 89, 0.14);
  border-radius: 16px;
  background: #fff;
  color: #001F3D;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 52, 89, 0.08);
}

.vm-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vm-nav-toggle .screen-reader-text {
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

body.vm-nav-open {
  overflow: hidden;
}

@media (max-width: 1200px) {
  .vm-topbar {
    display: none;
  }
  .vm-header__inner {
    min-height: 80px;
  }
  .vm-header__navwrap {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 28px;
    border: 1px solid rgba(7, 52, 89, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 80px rgba(7, 52, 89, 0.18);
    backdrop-filter: blur(12px);
  }
  .vm-header__navwrap.is-open {
    display: flex;
  }
  .vm-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .vm-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(7, 52, 89, 0.08);
  }
  .vm-header__action,
  .vm-lang,
  .vm-header__cta {
    width: 100%;
    justify-content: center;
  }
  .vm-nav-toggle {
    display: inline-flex;
  }
}
@media (max-width: 640px) {
  .vm-header__inner {
    width: min(1280px, 100vw - 24px);
    gap: 16px;
  }
  .vm-brand__logo {
    width: 104px;
  }
  .vm-header__navwrap {
    left: 12px;
    right: 12px;
    top: 76px;
    padding: 18px;
    border-radius: 22px;
  }
}
.vm-brand__logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 68px;
  object-fit: contain;
}

.vm-nav {
  position: relative;
}

.vm-menu,
.vm-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vm-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vm-menu > .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 88px;
}

.vm-menu > .menu-item > a {
  display: inline-flex;
  align-items: center;
}

.vm-menu .menu-item-has-children > a {
  flex: 1 1 auto;
}

.vm-menu__toggle {
  padding: 0;
  border: 0;
  background: transparent;
  transition: color 0.2s ease, transform 0.2s ease;
}

.vm-menu__toggle:hover,
.vm-menu__toggle:focus-visible {
  color: var(--vm-red);
}

.vm-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: #d9d9d9;
  box-shadow: 0 18px 36px rgba(0, 31, 61, 0.16);
  display: none;
  z-index: 20;
}
.vm-menu .sub-menu .menu-item:hover {
  background: #fff;
}
.vm-menu .sub-menu .menu-item:hover a {
  color: var(--vm-red);
}
.vm-menu .sub-menu a::after {
  display: none;
}
.vm-menu .sub-menu a:hover::after {
  display: block;
  width: 2px;
  left: -2px;
  height: 100%;
}

.vm-menu .sub-menu .menu-item {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid #fff;
  border-left: 2px solid #fff;
}

.vm-menu .sub-menu .menu-item:last-child {
  border-bottom: 0;
}

.vm-menu .sub-menu a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 22px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  color: #001F3D;
  width: 100%;
}

.vm-menu .sub-menu .vm-menu__toggle {
  width: 54px;
  height: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.vm-menu .sub-menu .sub-menu {
  top: 0px;
  left: calc(100% + 0px);
}

.vm-menu > .menu-item:hover > .sub-menu,
.vm-menu > .menu-item:focus-within > .sub-menu,
.vm-menu .menu-item.is-open > .sub-menu {
  display: block;
}

.vm-menu .sub-menu .menu-item:hover > .sub-menu,
.vm-menu .sub-menu .menu-item:focus-within > .sub-menu,
.vm-menu .sub-menu .menu-item.is-open > .sub-menu {
  display: block;
}

.vm-menu .current-menu-item > a,
.vm-menu .current-menu-ancestor > a,
.vm-menu .sub-menu .current-menu-item > a,
.vm-menu .sub-menu .current-menu-ancestor > a {
  color: var(--vm-red);
}

.vm-search-panel {
  display: flex;
  align-items: center;
  position: absolute;
  right: -90px;
}

.vm-search-panel[hidden] {
  display: none;
}

.vm-search-panel__input {
  width: 300px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(7, 52, 89, 0.14);
  border-radius: 999px;
  color: #001F3D;
  background: #fff;
}
.vm-search-panel__input:focus, .vm-search-panel__input:focus-visible {
  outline: none;
  border-color: rgba(7, 52, 89, 0.24);
  box-shadow: 0 12px 28px rgba(7, 52, 89, 0.08);
}

.vm-search-panel__submit {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  right: 0;
}

@media (max-width: 1200px) {
  .vm-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .vm-menu > .menu-item,
  .vm-menu .sub-menu .menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(7, 52, 89, 0.08);
  }
  .vm-menu > .menu-item > a,
  .vm-menu .sub-menu a {
    min-height: 52px;
    padding: 0 14px;
  }
  .vm-menu .sub-menu,
  .vm-menu .sub-menu .sub-menu {
    position: static;
    min-width: 100%;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: #ececec;
  }
  .vm-menu .sub-menu {
    display: none;
  }
  .vm-menu > .menu-item:hover > .sub-menu,
  .vm-menu > .menu-item:focus-within > .sub-menu {
    display: none;
  }
  .vm-menu .menu-item.is-open > .sub-menu {
    display: block;
  }
  .vm-search-panel {
    width: 100%;
    margin-left: 0;
    padding-top: 12px;
  }
  .vm-search-panel__input {
    width: 100%;
  }
}
.block-partners {
  position: relative;
  padding: 40px 0 0;
  overflow: hidden;
}
@media (max-width: 900px) {
  .block-partners {
    padding: 40px 0;
  }
}
@media (max-width: 640px) {
  .block-partners {
    padding: 24px 0;
  }
}

.block-partners .bgr-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
}
.block-partners .bgr-img img {
  height: 100%;
  object-fit: fill;
}

.vm-partners-section {
  position: relative;
}

.vm-partners-title {
  font-size: 32px;
  font-weight: 700;
  color: #001f3d;
  margin: 24px 0;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 16px;
  position: relative;
}
.vm-partners-title span {
  color: #eb0738;
}
.vm-partners-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #eb0738;
}
@media (max-width: 900px) {
  .vm-partners-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 640px) {
  .vm-partners-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

@media (max-width: 1200px) {
  .vm-carousel__wrapper {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .vm-carousel__wrapper {
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .vm-carousel__wrapper {
    gap: 12px;
  }
}
.vm-carousel__wrapper .owl-stage-outer {
  flex: 1;
  overflow: hidden;
}
.vm-carousel__wrapper .owl-stage {
  display: flex;
  transition: all 0.3s ease-out;
}
.vm-carousel__wrapper .owl-item {
  flex-shrink: 0;
}

.vm-partners-carousel .owl-nav button {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(7, 52, 89, 0.12);
  transition: all 0.24s ease;
  z-index: 10;
  background: #fff;
  padding: 14px;
}
.vm-partners-carousel .owl-nav button:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(7, 52, 89, 0.2);
}
.vm-partners-carousel .owl-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.vm-partners-carousel .owl-nav button.owl-prev {
  left: -98px;
}
.vm-partners-carousel .owl-nav button.owl-next {
  right: -98px;
}
.vm-partners-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.vm-partners-carousel .owl-dots .owl-dot {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.24s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-partners-carousel .owl-dots .owl-dot::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: background 0.24s;
}
.vm-partners-carousel .owl-dots .owl-dot.active {
  border: 1px solid #eb0738;
  background: #f2f5f9;
}
.vm-partners-carousel .owl-dots .owl-dot.active::before {
  background: #eb0738;
}
.vm-partners-carousel .owl-dots .owl-dot:hover::before {
  background: #bdbdbd;
}

.vm-partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 160px;
  background: white;
  border-radius: var(--vm-radius-md);
  border: 1px solid var(--vm-border);
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .vm-partner-item {
    min-height: 110px;
  }
}
@media (max-width: 900px) {
  .vm-partner-item {
    min-height: 100px;
  }
}
@media (max-width: 640px) {
  .vm-partner-item {
    min-height: 90px;
    padding: 12px;
  }
}
.vm-partner-item:hover {
  border-color: var(--vm-red);
  box-shadow: 0 8px 24px rgba(235, 7, 56, 0.12);
  transform: translateY(-4px);
}
.vm-partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.vm-partner-item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.vm-partner-logo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.vm-partner-item:hover .vm-partner-logo {
  transform: scale(1.05);
}

.vm-footer__inner {
  position: relative;
  background: #f2f5f9;
}
.vm-footer__inner .bgr-img {
  padding: 60px;
}
.vm-footer__inner .inner-wrapper {
  display: grid;
  grid-template-columns: 2.5fr 2fr 1fr;
  gap: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.vm-footer__inner .inner-wrapper .info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vm-footer__inner .inner-wrapper .info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #073459;
  margin: 0;
}
.vm-footer__inner .inner-wrapper .info .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vm-footer__inner .inner-wrapper .info .info-item .img-item {
  width: 20px;
  height: 20px;
}
.vm-footer__inner .inner-wrapper .info .info-item span {
  color: #141414;
  font-size: 14px;
  line-height: 1.4;
}
.vm-footer__inner .inner-wrapper .info a {
  font-weight: 600;
  transition: color 0.3s ease;
  color: var(--vm-red);
}
.vm-footer__inner .inner-wrapper .info a:hover {
  text-decoration: underline;
}
.vm-footer__inner .inner-wrapper .info a:hover span {
  color: var(--vm-red);
}
.vm-footer__inner .inner-wrapper #menu-menu-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.vm-footer__inner .inner-wrapper #menu-menu-footer li.menu-item a {
  font-size: 18px;
  font-weight: 600;
  color: #073459;
  margin: 0;
}
.vm-footer__inner .inner-wrapper #menu-menu-footer li.menu-item .sub-menu {
  margin-top: 16px;
}
.vm-footer__inner .inner-wrapper #menu-menu-footer li.menu-item .sub-menu li a {
  background: url(../images/arrow-right-black.svg) no-repeat left center;
  padding-left: 20px;
  color: #141414;
  font-size: 14px;
  font-weight: 400;
}
.vm-footer__inner .inner-wrapper .social ul {
  display: flex;
  gap: 16px;
}
.vm-footer__inner .inner-wrapper .social ul li {
  margin-bottom: 0;
}
.vm-footer__inner .inner-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vm-footer__inner .inner-wrapper ul li {
  font-size: 14px;
  color: var(--vm-text);
  margin-bottom: 8px;
  line-height: 1.6;
}
.vm-footer__inner .inner-wrapper ul li:last-child {
  margin-bottom: 0;
}
.vm-footer__inner .inner-wrapper ul li a {
  color: var(--vm-text);
  transition: color 0.3s ease;
}
.vm-footer__inner .inner-wrapper ul li a:hover {
  color: var(--vm-red);
}

.vm-footer__logo {
  max-width: 140px;
  margin-bottom: 16px;
}

.footer_bottom {
  background: #073459;
}

.vm-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 !important;
  font-size: 15px;
  color: #fff;
}

.vm-footer__policies #menu-footer-bottom {
  display: flex;
  gap: 16px;
  margin: 0;
}
.vm-footer__policies #menu-footer-bottom li.menu-item {
  list-style: none;
}
.vm-footer__policies #menu-footer-bottom li.menu-item:first-child {
  padding-right: 16px;
  border-right: solid 1px #fff;
}
.vm-footer__policies a {
  color: #fff;
  transition: color 0.3s ease;
}
.vm-footer__policies a:hover {
  color: var(--vm-red);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/*# sourceMappingURL=style.css.map */
