/* Shared animation system */
:root {
  --vdt-anim-duration: 760ms;
  --vdt-anim-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --vdt-anim-stagger: 76ms;
  --vdt-anim-distance: 24px;
}

body.vdt-page .vdt-reveal,
body.vdt-page .vdt-reveal-up,
body.vdt-page .vdt-reveal-left,
body.vdt-page .vdt-reveal-right,
body.vdt-page .vdt-reveal-zoom {
  --vdt-reveal-x: 0px;
  --vdt-reveal-y: 0px;
  --vdt-reveal-scale: 1;
  --vdt-reveal-delay: 0ms;
  --vdt-hover-y: 0px;
  --vdt-hover-scale: 1;
  opacity: 0;
  transform: translate3d(var(--vdt-reveal-x), var(--vdt-reveal-y), 0) scale(var(--vdt-reveal-scale));
  transition: opacity var(--vdt-anim-duration) var(--vdt-anim-ease), transform var(--vdt-anim-duration) var(--vdt-anim-ease);
  transition-delay: var(--vdt-reveal-delay);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

body.vdt-page .vdt-reveal-up {
  --vdt-reveal-y: var(--vdt-anim-distance);
}

body.vdt-page .vdt-reveal-left {
  --vdt-reveal-x: calc(var(--vdt-anim-distance) * -1.15);
}

body.vdt-page .vdt-reveal-right {
  --vdt-reveal-x: calc(var(--vdt-anim-distance) * 1.15);
}

body.vdt-page .vdt-reveal-zoom {
  --vdt-reveal-y: 12px;
  --vdt-reveal-scale: 0.96;
}

body.vdt-page .vdt-reveal.vdt-is-visible,
body.vdt-page .vdt-reveal-up.vdt-is-visible,
body.vdt-page .vdt-reveal-left.vdt-is-visible,
body.vdt-page .vdt-reveal-right.vdt-is-visible,
body.vdt-page .vdt-reveal-zoom.vdt-is-visible {
  opacity: 1;
  transform: translate3d(0, var(--vdt-hover-y), 0) scale(var(--vdt-hover-scale));
}

body.vdt-page .vdt-stagger > .vdt-reveal,
body.vdt-page .vdt-stagger > .vdt-reveal-up,
body.vdt-page .vdt-stagger > .vdt-reveal-left,
body.vdt-page .vdt-stagger > .vdt-reveal-right,
body.vdt-page .vdt-stagger > .vdt-reveal-zoom {
  --vdt-reveal-delay: calc(var(--vdt-stagger-step, var(--vdt-anim-stagger)) * var(--vdt-reveal-index, 0));
}

body.vdt-page .vdt-delay-1 {
  --vdt-reveal-delay: 90ms;
}

body.vdt-page .vdt-delay-2 {
  --vdt-reveal-delay: 180ms;
}

body.vdt-page .vdt-delay-3 {
  --vdt-reveal-delay: 270ms;
}

body.vdt-page .vdt-delay-4 {
  --vdt-reveal-delay: 360ms;
}

body.vdt-page .vdt-hover-lift {
  --vdt-hover-y: 0px;
  --vdt-hover-scale: 1;
  transition: transform 260ms var(--vdt-anim-ease);
  will-change: transform;
}

body.vdt-page .vdt-hover-lift:not(.vdt-reveal):not(.vdt-reveal-up):not(.vdt-reveal-left):not(.vdt-reveal-right):not(.vdt-reveal-zoom) {
  transform: translate3d(0, var(--vdt-hover-y), 0) scale(var(--vdt-hover-scale));
}

body.vdt-page .vdt-hover-lift:hover,
body.vdt-page .vdt-hover-lift:focus-visible,
body.vdt-page .vdt-hover-lift:focus-within {
  --vdt-hover-y: -6px;
  --vdt-hover-scale: 1.006;
}

body.vdt-page .vdt-glow-hover {
  position: relative;
  isolation: isolate;
}

body.vdt-page .vdt-glow-hover::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(30, 91, 255, 0.22),
    0 18px 42px rgba(30, 91, 255, 0.15),
    0 0 34px rgba(0, 184, 217, 0.12);
  transition: opacity 260ms var(--vdt-anim-ease);
}

body.vdt-page .vdt-glow-hover:hover::after,
body.vdt-page .vdt-glow-hover:focus-visible::after,
body.vdt-page .vdt-glow-hover:focus-within::after {
  opacity: 1;
}

body.vdt-page .vdt-glow-hover > * {
  position: relative;
  z-index: 1;
}

body.vdt-page .vdt-float-soft:not(.vdt-reveal):not(.vdt-reveal-up):not(.vdt-reveal-left):not(.vdt-reveal-right):not(.vdt-reveal-zoom) {
  animation: vdtFloatSoft 8s ease-in-out infinite;
  transform-origin: center;
}

body.vdt-page .vdt-gradient-motion {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

body.vdt-page .vdt-gradient-motion::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 0;
  opacity: 0.56;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 26%, rgba(30, 91, 255, 0.32), transparent 32%),
    radial-gradient(circle at 80% 22%, rgba(0, 184, 217, 0.24), transparent 34%),
    radial-gradient(circle at 68% 78%, rgba(245, 184, 66, 0.22), transparent 36%);
  transform: translate3d(-2%, 1%, 0) scale(1);
  animation: vdtGradientDrift 24s ease-in-out infinite alternate;
}

body.vdt-page .vdt-gradient-motion > * {
  position: relative;
  z-index: 1;
}

@keyframes vdtFloatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes vdtGradientDrift {
  0% {
    transform: translate3d(-2%, 1%, 0) scale(1);
    opacity: 0.46;
  }

  50% {
    transform: translate3d(3%, -2%, 0) scale(1.04);
    opacity: 0.68;
  }

  100% {
    transform: translate3d(1%, 3%, 0) scale(1.02);
    opacity: 0.54;
  }
}

/* Homepage polish */
body.vdt-page.vdt-home-page .vdt-home-portal-hero.vdt-has-ambient {
  position: relative;
  isolation: isolate;
}

body.vdt-page.vdt-home-page .vdt-home-portal-hero.vdt-has-ambient .vdt-home-portal-hero__grid {
  z-index: 2;
}

body.vdt-page.vdt-home-page .vdt-home-portal-ambient {
  position: absolute;
  inset: -14% -8%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
}

body.vdt-page.vdt-home-page .vdt-home-portal-ambient::before {
  opacity: 0.44;
  mix-blend-mode: multiply;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure,
body.vdt-page.vdt-home-page .vdt-home-portal-about-media,
body.vdt-page.vdt-home-page .vdt-home-portal-field-card__media,
body.vdt-page.vdt-home-page .vdt-home-portal-service-media,
body.vdt-page.vdt-home-page .vdt-home-portal-bidding-media,
body.vdt-page.vdt-home-page .vdt-home-portal-news-media,
body.vdt-page.vdt-home-page .vdt-home-portal-activity-gallery figure {
  overflow: hidden;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage img,
body.vdt-page.vdt-home-page .vdt-home-portal-about-media img,
body.vdt-page.vdt-home-page .vdt-home-portal-field-card__media img,
body.vdt-page.vdt-home-page .vdt-home-portal-service-media img,
body.vdt-page.vdt-home-page .vdt-home-portal-bidding-media img,
body.vdt-page.vdt-home-page .vdt-home-portal-news-media img,
body.vdt-page.vdt-home-page .vdt-home-portal-activity-gallery img {
  transition: transform 560ms var(--vdt-anim-ease);
  will-change: transform;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:hover img,
body.vdt-page.vdt-home-page .vdt-home-portal-about-media:hover img,
body.vdt-page.vdt-home-page .vdt-home-portal-field-card:hover .vdt-home-portal-field-card__media img,
body.vdt-page.vdt-home-page .vdt-home-portal-service-media:hover img,
body.vdt-page.vdt-home-page .vdt-home-portal-bidding-media:hover img,
body.vdt-page.vdt-home-page .vdt-home-portal-news-card:hover .vdt-home-portal-news-media img,
body.vdt-page.vdt-home-page .vdt-home-portal-activity-gallery figure:hover img {
  transform: scale(1.045);
}

body.vdt-page.vdt-home-page .vdt-home-portal-filter button,
body.vdt-page.vdt-home-page .vdt-home-portal-btn,
body.vdt-page.vdt-home-page .vdt-home-portal-about-actions a,
body.vdt-page.vdt-home-page .vdt-footer-cta__actions a,
body.vdt-page.vdt-home-page .vdt-home-portal-contact-actions a,
body.vdt-page.vdt-home-page .vdt-footer-cta-button {
  transition: transform 220ms var(--vdt-anim-ease), opacity 220ms var(--vdt-anim-ease);
}

body.vdt-page.vdt-home-page .vdt-home-portal-contact-actions a,
body.vdt-page.vdt-home-page .vdt-footer-cta__actions a,
body.vdt-page.vdt-home-page .vdt-footer-cta-button--gold,
body.vdt-page.vdt-home-page .vdt-home-portal-zalo-card {
  position: relative;
  isolation: isolate;
}

body.vdt-page.vdt-home-page .vdt-home-portal-contact-actions a::after,
body.vdt-page.vdt-home-page .vdt-footer-cta__actions a::after,
body.vdt-page.vdt-home-page .vdt-footer-cta-button--gold::after,
body.vdt-page.vdt-home-page .vdt-home-portal-zalo-card::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.68;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(245, 184, 66, 0.14), 0 0 24px rgba(245, 184, 66, 0.16);
}

body.vdt-page.vdt-home-page .vdt-home-portal-hotline a {
  text-shadow: 0 0 18px rgba(30, 91, 255, 0.2);
}

body.vdt-page.vdt-home-page .vdt-home-portal-service-icon,
body.vdt-page.vdt-home-page .vdt-home-portal-bidding-card svg,
body.vdt-page.vdt-home-page .vdt-home-portal-contact-method svg,
body.vdt-page.vdt-home-page .vdt-home-portal-quick svg,
body.vdt-page.vdt-home-page .vdt-home-portal-about-point svg {
  transition: transform 240ms var(--vdt-anim-ease), opacity 240ms var(--vdt-anim-ease);
}

body.vdt-page.vdt-home-page .vdt-home-portal-service-card:hover .vdt-home-portal-service-icon,
body.vdt-page.vdt-home-page .vdt-home-portal-bidding-card:hover svg,
body.vdt-page.vdt-home-page .vdt-home-portal-contact-method:hover svg,
body.vdt-page.vdt-home-page .vdt-home-portal-quick div:hover svg,
body.vdt-page.vdt-home-page .vdt-home-portal-about-point:hover svg {
  transform: translate3d(0, -2px, 0) scale(1.05);
}

body.vdt-page.vdt-home-page .vdt-home-portal-table td span.is-success {
  position: relative;
  isolation: isolate;
}

body.vdt-page.vdt-home-page .vdt-home-portal-table td span.is-success::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.72;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(18, 183, 106, 0.18), 0 0 22px rgba(18, 183, 106, 0.18);
}

body.vdt-page.vdt-home-page .vdt-home-portal-faq details {
  overflow: clip;
}

body.vdt-page.vdt-home-page .vdt-home-portal-faq details > p {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition: opacity 260ms var(--vdt-anim-ease), transform 260ms var(--vdt-anim-ease);
}

body.vdt-page.vdt-home-page .vdt-home-portal-faq details[open] > p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.vdt-page.vdt-home-page .vdt-footer-cta__inner.vdt-gradient-motion {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
}

body.vdt-page.vdt-home-page .vdt-footer-cta__inner.vdt-gradient-motion::before {
  opacity: 0.34;
  mix-blend-mode: screen;
}

@media (max-width: 767px) {
  body.vdt-page {
    --vdt-anim-distance: 12px;
  }

  body.vdt-page .vdt-reveal-left {
    --vdt-reveal-x: -12px;
  }

  body.vdt-page .vdt-reveal-right {
    --vdt-reveal-x: 12px;
  }

  body.vdt-page .vdt-reveal-zoom {
    --vdt-reveal-y: 8px;
    --vdt-reveal-scale: 0.98;
  }

  body.vdt-page .vdt-float-soft {
    animation: none !important;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-ambient {
    opacity: 0.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.vdt-page .vdt-reveal,
  body.vdt-page .vdt-reveal-up,
  body.vdt-page .vdt-reveal-left,
  body.vdt-page .vdt-reveal-right,
  body.vdt-page .vdt-reveal-zoom,
  body.vdt-page .vdt-hover-lift,
  body.vdt-page .vdt-glow-hover::after,
  body.vdt-page .vdt-float-soft,
  body.vdt-page .vdt-gradient-motion::before,
  body.vdt-page.vdt-home-page .vdt-home-portal-collage img,
  body.vdt-page.vdt-home-page .vdt-home-portal-about-media img,
  body.vdt-page.vdt-home-page .vdt-home-portal-field-card__media img,
  body.vdt-page.vdt-home-page .vdt-home-portal-service-media img,
  body.vdt-page.vdt-home-page .vdt-home-portal-bidding-media img,
  body.vdt-page.vdt-home-page .vdt-home-portal-news-media img,
  body.vdt-page.vdt-home-page .vdt-home-portal-activity-gallery img,
  body.vdt-page.vdt-home-page .vdt-home-portal-service-icon,
  body.vdt-page.vdt-home-page .vdt-home-portal-bidding-card svg,
  body.vdt-page.vdt-home-page .vdt-home-portal-contact-method svg,
  body.vdt-page.vdt-home-page .vdt-home-portal-quick svg,
  body.vdt-page.vdt-home-page .vdt-home-portal-about-point svg,
  body.vdt-page.vdt-home-page .vdt-home-portal-faq details > p {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Homepage hero collage proportion pass */
@keyframes vdtHeroFloatUp {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes vdtHeroFloatDown {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 12px, 0);
  }
}

@keyframes vdtHeroFloatDiagonal {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(12px, -8px, 0);
  }
}

@keyframes vdtHeroFloatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-8px, 8px, 0) rotate(-0.35deg);
  }
}

@keyframes vdtHeroFloatMobileUp {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes vdtHeroFloatMobileDown {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 5px, 0);
  }
}

body.vdt-page.vdt-home-page .vdt-home-portal-hero {
  overflow-x: clip;
}

body.vdt-page.vdt-home-page .vdt-home-portal-hero__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(640px, 1.18fr);
  gap: clamp(38px, 4.2vw, 56px);
  align-items: center;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage {
  position: relative;
  isolation: isolate;
  width: min(780px, 100%);
  min-height: clamp(560px, 40vw, 650px);
  margin-left: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.88fr);
  grid-template-rows: 190px 170px 170px;
  gap: 18px;
  align-self: center;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage::before {
  content: "";
  position: absolute;
  inset: 8% -4% 4% 8%;
  z-index: -1;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 91, 255, 0.22), transparent 42%),
    radial-gradient(circle at 82% 30%, rgba(0, 184, 217, 0.18), transparent 44%),
    radial-gradient(circle at 54% 88%, rgba(245, 184, 66, 0.16), transparent 40%);
  filter: blur(8px);
  pointer-events: none;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(30, 91, 255, 0.12);
  border-radius: 26px;
  background: #eaf3ff;
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.14);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition: none;
  will-change: transform;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:hover {
  filter: none;
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.14);
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure.is-large,
body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:first-child {
  grid-column: auto;
  grid-row: span 2;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:last-child {
  grid-column: auto;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(1) {
  animation-name: vdtHeroFloatUp;
  animation-duration: 9.5s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(2) {
  animation-name: vdtHeroFloatDown;
  animation-duration: 8.2s;
  animation-delay: 0.35s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(3) {
  animation-name: vdtHeroFloatDiagonal;
  animation-duration: 10s;
  animation-delay: 0.7s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(4) {
  animation-name: vdtHeroFloatSoft;
  animation-duration: 11s;
  animation-delay: 0.2s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(5) {
  animation-name: vdtHeroFloatUp;
  animation-duration: 8.8s;
  animation-delay: 1s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure.vdt-float-soft:not(.vdt-reveal):not(.vdt-reveal-up):not(.vdt-reveal-left):not(.vdt-reveal-right):not(.vdt-reveal-zoom):nth-child(1) {
  animation-name: vdtHeroFloatUp;
  animation-duration: 9.5s;
  animation-delay: 0s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure.vdt-float-soft:not(.vdt-reveal):not(.vdt-reveal-up):not(.vdt-reveal-left):not(.vdt-reveal-right):not(.vdt-reveal-zoom):nth-child(2) {
  animation-name: vdtHeroFloatDown;
  animation-duration: 8.2s;
  animation-delay: 0.35s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure.vdt-float-soft:not(.vdt-reveal):not(.vdt-reveal-up):not(.vdt-reveal-left):not(.vdt-reveal-right):not(.vdt-reveal-zoom):nth-child(3) {
  animation-name: vdtHeroFloatDiagonal;
  animation-duration: 10s;
  animation-delay: 0.7s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure.vdt-float-soft:not(.vdt-reveal):not(.vdt-reveal-up):not(.vdt-reveal-left):not(.vdt-reveal-right):not(.vdt-reveal-zoom):nth-child(4) {
  animation-name: vdtHeroFloatSoft;
  animation-duration: 11s;
  animation-delay: 0.2s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure.vdt-float-soft:not(.vdt-reveal):not(.vdt-reveal-up):not(.vdt-reveal-left):not(.vdt-reveal-right):not(.vdt-reveal-zoom):nth-child(5) {
  animation-name: vdtHeroFloatUp;
  animation-duration: 8.8s;
  animation-delay: 1s;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.35s ease;
  will-change: transform;
}

body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:hover img {
  transform: scale(1.07);
  filter: saturate(1.06) contrast(1.04);
}

@media (min-width: 1200px) {
  body.vdt-page.vdt-home-page .vdt-home-portal-collage {
    transform: scale(1.035);
    transform-origin: center right;
  }
}

@media (max-width: 1366px) and (min-width: 1200px) {
  body.vdt-page.vdt-home-page .vdt-home-portal-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1.18fr);
    gap: 42px;
  }
}

@media (max-width: 1199px) {
  body.vdt-page.vdt-home-page .vdt-home-portal-hero__grid {
    grid-template-columns: 1fr;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage {
    width: min(860px, 100%);
    min-height: 520px;
    margin-inline: auto;
    transform: none;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(n) {
    display: block;
  }
}

@media (max-width: 767px) {
  body.vdt-page.vdt-home-page .vdt-home-portal-collage {
    width: 100%;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 180px 150px 150px;
    gap: 12px;
    transform: none;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(n) {
    display: block;
    border-radius: 18px;
    animation-duration: 11s;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:first-child,
  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure.is-large {
    grid-column: span 2;
    grid-row: auto;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(1),
  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(5) {
    animation-name: vdtHeroFloatMobileUp;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(2),
  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(3),
  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(4) {
    animation-name: vdtHeroFloatMobileDown;
  }
}

@media (max-width: 480px) {
  body.vdt-page.vdt-home-page .vdt-home-portal-collage {
    grid-template-rows: 164px 132px 132px;
    gap: 10px;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure:nth-child(5) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.vdt-page.vdt-home-page .vdt-home-portal-collage {
    transform: none !important;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage figure {
    animation: none !important;
    transform: none !important;
  }

  body.vdt-page.vdt-home-page .vdt-home-portal-collage img {
    transform: none !important;
    transition: none !important;
  }
}
