/* ================================
   All4Wall Interactive Landing Page
   V2 desktop layout
   ================================ */

:root {
  --a4w-black: #191919;
  --a4w-navy: #00364D;
  --a4w-blue: #006b99;
  --a4w-yellow: #F5F749;
  --a4w-menu-bg: #dcddde;
  --a4w-panel-bg: #f1f2f2;
  --a4w-border-gray: #b7b7b7;

  --a4w-menu-width: 33.333vw;
  --a4w-panel-width: 33.333vw;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'PT Sans', Arial, sans-serif;
  color: var(--a4w-black);
  background: #ffffff;
}

/* ================================
   Selection Flow Screens
   ================================ */

   /* NEW LANDING PAGE LAYOUT */

.a4w-industry-screen {
  display: grid;
  grid-template-columns: minmax(300px, 24vw) 1fr;

  top: 9% !important;
  left: 7% !important;
  right: 7% !important;
  bottom: 9% !important;

  min-height: 0;
  background: #ffffff;
}

.a4w-landing-intro {
  background: var(--a4w-menu-bg);
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}

.a4w-landing-logo {
  width: min(320px, 100%);
  height: auto;
  margin-bottom: 34px;
}

.a4w-landing-intro h1 {
  margin: 0 0 18px;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--a4w-blue);
}

.a4w-landing-intro p {
  margin: 0 0 14px;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.25;
  color: var(--a4w-black);
}

.a4w-landing-intro .a4w-landing-instruction {
  margin-bottom: 0;
  font-weight: 700;
}

.a4w-industry-accordion {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  overflow: hidden;
 }

.a4w-industry-card {
  position: relative;
  flex: 0 0 28%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: var(--a4w-navy);
  transition:
    flex-basis 780ms cubic-bezier(0.76, 0, 0.24, 1);
}

.a4w-industry-card.is-active {
  flex-basis: 72%;
}

.a4w-industry-card + .a4w-industry-card {
  border-left: 4px solid #ffffff;
}

.a4w-industry-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 450ms ease;
}

.a4w-industry-img-blue {
  opacity: 1;
}

.a4w-industry-img-color {
  display: none;
}

.a4w-industry-label {
  position: absolute;
  top: 24px;
  left: 18px;
  z-index: 4;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.a4w-industry-content {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 11%;
  z-index: 4;
  max-width: 600px;
  opacity: 0;
transform: translateY(8px);
pointer-events: none;

transition:
  opacity 450ms ease-in-out 675ms,
  transform 450ms ease-out 675ms;
}

.a4w-industry-card.is-active .a4w-industry-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.a4w-industry-card.is-fading-out .a4w-industry-content {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;

  transition:
    opacity 320ms ease-in-out,
    transform 320ms ease-in-out;
}

.a4w-industry-content h2 {
  margin: 0 0 18px;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1;
  font-weight: 700;
  color: #00aeef;
}

.a4w-industry-content h2 sup {
  font-size: 40%;
  vertical-align: super;
}

.a4w-industry-content p {
  max-width: 560px;
  margin: 0 0 32px;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  color: #ffffff;
}

.a4w-industry-content .a4w-selection-btn {
  position: static;
  transform: none;
  min-width: 190px;
  background: var(--a4w-yellow);
  color: var(--a4w-navy);
}

.a4w-app {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.a4w-industry-screen,
.a4w-application-screen {
  min-height: 100vh;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.a4w-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: calc(100vh - 150px);
}

.a4w-industry-card {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--a4w-navy);
}

.a4w-application-options {
  width: 100%;
  padding: 0 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.a4w-application-options .a4w-application-card {
  width: min(640px, 42vw);
}

.a4w-application-options.is-single .a4w-application-card {
  width: min(800px, 58vw);
}

.a4w-application-card[hidden] {
  display: none;
}

.a4w-industry-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease;
}

.a4w-industry-img-color {
  opacity: 0;
}

.a4w-selection-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  min-width: 116px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 10px 24px;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00364d;
  background: #f5f749;
  cursor: pointer;
}

.a4w-selection-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  height: 150px;
  background: var(--a4w-menu-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms ease, transform 500ms ease;
  display: none !important;
}

.a4w-selection-footer.is-exiting {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.a4w-selection-logo {
  width: 360px;
  max-width: 70vw;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.a4w-selection-footer p {
  margin: 0;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--a4w-black);
}

.a4w-application-screen {
  display: grid;
  place-items: center;
  padding-bottom: 150px;
}

.a4w-industry-screen[hidden],
.a4w-application-screen[hidden],
.a4w-viewer-screen[hidden] {
  display: none !important;
}

.a4w-application-card {
  position: relative;
  width: min(800px, 58vw);
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  background: var(--a4w-navy);
  cursor: pointer;
}

.a4w-application-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.a4w-application-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.a4w-flow-back {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--a4w-navy);
  cursor: pointer;
}

.a4w-flow-back:hover {
  color: var(--a4w-navy);
  background: var(--a4w-yellow);
}

@media (max-width: 800px) {
  .a4w-industry-grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100vh - 130px);
  }

  .a4w-industry-card {
    min-height: calc((100vh - 130px) / 2);
  }

  .a4w-selection-footer {
    height: 130px;
  }

  .a4w-selection-logo {
    width: 280px;
  }

  .a4w-application-screen {
    padding: 72px 24px 130px;
  }

  .a4w-application-card {
    width: 100%;
  }
}

.a4w-page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-right: var(--a4w-menu-width);
}

/* LEFT MODEL AREA */

.a4w-model-stage {
  width: calc(100vw - var(--a4w-menu-width));
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  background: #ffffff;
  transition: width 360ms ease;
  position: relative;
  overflow: visible;
}

/* Keep the model canvas wider even when the product panel opens.
   The product panel will sit above it visually, but the model will no longer be forced into a narrow box. */
.a4w-page:has(.a4w-product-panel.is-open) .a4w-model-stage {
  width: calc(100vw - var(--a4w-menu-width));
}

.a4w-page:has(.a4w-product-panel.is-open) .a4w-model-box {
  transform: translateX(0);
}

/* MODEL LOADER */

.a4w-model-box {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  position: relative;
  overflow: visible;
  transition: transform 360ms ease;
}

.a4w-model-box canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.a4w-model-loader {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.a4w-model-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.a4w-loader-text {
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #00364D;
  margin-bottom: 18px;
}

.a4w-loader-bar {
  width: 260px;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #dcddde;
}

.a4w-loader-progress {
  width: 0%;
  height: 100%;
  background: #006b99;
  transition: width 200ms ease;
}

/* ROTATE ICON */

.a4w-rotate-icon-wrap {
  position: absolute;
  right: 120px;
  bottom: 70px;
  z-index: 8;
  width: 92px;
  height: 92px;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.a4w-rotate-icon-img {
  width: 200%;
  height: 200%;
  display: block;
  object-fit: contain;
}

/* Hide rotate icon once a product panel is open */
.a4w-page:has(.a4w-product-panel.is-open) .a4w-rotate-icon-wrap {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.a4w-rotate-icon-wrap.is-hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

@media (max-width: 800px) {
  .a4w-rotate-icon-wrap {
    right: 18px;
    bottom: 18px;
    width: 72px;
    height: 72px;
  }
}

/* FIXED RIGHT MENU */

.a4w-side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--a4w-menu-width);
  height: 100vh;
  z-index: 20;
  background: var(--a4w-menu-bg);
}

.a4w-menu-inner {
  height: 100%;
  padding: 68px 58px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.a4w-logo {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 26px;
}

.a4w-menu-tagline {
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--a4w-blue);
  margin: 0 0 16px;
}

.a4w-menu-tagline a,
.a4w-find-line a {
  color: var(--a4w-blue);
  font-weight: 700;
}

.a4w-menu-copy {
  font-size: 17px;
  line-height: 1.28;
  margin: 0 0 28px;
}

.a4w-menu-instruction {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 20px;
}

.a4w-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 18px;
}

.a4w-menu-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--a4w-navy);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.a4w-menu-btn:hover,
.a4w-menu-btn.is-active {
  color: var(--a4w-navy);
  background: var(--a4w-yellow);
}

.a4w-reset-btn {
  background: #006b99;
}
.a4w-reset-btn:hover {
  color: #00364D;
  background: #f5f749;
}

.a4w-find-line {
  font-size: 16px;
  font-weight: 700;
  margin: 30px 0 0;
 text-align: center;
}

.a4w-menu-inner p:last-child {
  text-align: center;
}

/* PRODUCT SLIDE PANEL */

.a4w-product-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--a4w-panel-width);
  height: 100vh;
  z-index: 25;
  background: var(--a4w-panel-bg);
  padding: 90px 58px 48px;
  overflow-y: auto;

  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 360ms ease, opacity 260ms ease;
}

.a4w-panel-close {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--a4w-navy);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.a4w-panel-close:hover {
  color: var(--a4w-navy);
  background: var(--a4w-yellow);
}

.a4w-panel-close:hover {
  opacity: 0.7;
}

.a4w-product-panel.is-open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/*
.a4w-page:has(.a4w-product-panel.is-open) .a4w-side-menu {
  opacity: 0;
  pointer-events: none;
}
*/

.a4w-product-panel.is-changing {
  opacity: 0;
  transform: translateX(28px);
}

/* CAROUSEL */

.a4w-carousel {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 14px;
  background: #ffffff;
  overflow: visible;
}

.a4w-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrow style matches mockup: simple chevron, no circle */
.a4w-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 44px;
  border: 0;
  padding: 0;
  color: var(--a4w-navy);
  background: transparent;
  font-size: 46px;
  font-family: Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
}

.a4w-carousel-prev {
  left: -46px;
}

.a4w-carousel-next {
  right: -46px;
}

.a4w-carousel.is-single .a4w-carousel-btn {
  display: none;
}

.a4w-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 26px;
  min-height: 14px; /* 👈 keeps spacing even when hidden */
}

.a4w-dot {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--a4w-navy);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.a4w-dot.is-active {
  background: var(--a4w-navy);
}

/* PRODUCT CONTENT */

.a4w-product-content {
  max-width: 440px;
  margin: 0 auto;
}

.a4w-product-content h1 {
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  color: #00364d;
  text-align: center;
  margin: 0 0 18px;
}

.a4w-product-content p {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 18px;
}

.a4w-product-content h2 {
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: #006b99;
  margin: 0 0 12px;
}

.a4w-product-content ul {
  margin: 0 0 28px;
  padding-left: 20px;
}

.a4w-product-content li {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 9px;
}

.a4w-product-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.a4w-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--a4w-navy);
  transition: background 180ms ease, color 180ms ease;
}

.a4w-pill-btn:hover {
  color: var(--a4w-navy);
  background: var(--a4w-yellow);
}

/* BASIC RESPONSIVE HOLDING PATTERN */

@media (max-width: 1100px) {
  :root {
    --a4w-menu-width: 360px;
    --a4w-panel-width: 360px;
  }

  .a4w-menu-inner,
  .a4w-product-panel {
    padding-left: 32px;
    padding-right: 32px;
  }

  .a4w-menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .a4w-page {
    padding-right: 0;
  }

  .a4w-model-stage,
.a4w-page:has(.a4w-product-panel.is-open) .a4w-model-stage {
  width: 100%;
  height: 62vh;
  min-height: 62vh;
  padding: 0;
}

.a4w-model-box {
  height: 62vh;
  min-height: 62vh;
}

  .a4w-side-menu {
    position: relative;
    width: 100%;
    height: auto;
  }

  .a4w-menu-inner {
    padding: 34px 24px;
  }

  .a4w-product-panel {
    position: relative;
    right: auto;
    width: 100%;
    height: auto;
    transform: none;
    display: none;
  }

  .a4w-product-panel.is-open {
    display: block;
  }

  .a4w-carousel-prev {
    left: 6px;
  }

  .a4w-carousel-next {
    right: 6px;
  }
}
/* Selection flow animation pass */

.a4w-industry-screen,
.a4w-application-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 150px;
  z-index: 10;
  min-height: auto;
  background: #ffffff;
  transition:
    transform 1000ms cubic-bezier(0.76, 0, 0.24, 1),
opacity 1200ms ease;
}

.a4w-application-screen:not(.is-active) {
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}

.a4w-industry-screen {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.a4w-application-screen.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.a4w-industry-screen.is-exiting {
  opacity: 0;
  transform: none;
  pointer-events: none;
}

.a4w-application-screen.is-exiting {
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
}

.a4w-industry-grid {
  height: 100%;
}

.a4w-application-screen {
  padding: 0;
}

.a4w-viewer-screen {
  opacity: 0;
  transform: none;
  transition: opacity 500ms ease;
}

.a4w-viewer-screen.is-active {
  opacity: 1;
  transform: none;
}

.a4w-viewer-screen.is-exiting {
  opacity: 0;
  transform: none;
}

.a4w-selection-footer.is-exiting {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.a4w-industry-screen.is-returning {
  opacity: 0;
  pointer-events: none;
}

/* ========================================
   PRECAST APPLICATION MENU
   ======================================== */

.a4w-application-screen {
  display: grid;
  grid-template-columns: minmax(300px, 24vw) 1fr;

  top: 9% !important;
  left: 7% !important;
  right: 7% !important;
  bottom: 9% !important;

  padding: 0;
  min-height: 0;
  background: #ffffff;
  overflow: hidden;
}

.a4w-application-intro {
  height: 100%;
}

.a4w-precast-applications {
  width: 100%;
  height: 100%;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 4px;

  background: #ffffff;
  overflow: hidden;
}

.a4w-precast-application-card {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;
  background: var(--a4w-navy);
}

.a4w-precast-application-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}

.a4w-precast-inline-slot {
  position: absolute;
  top: 0;
  left: 60px;
  right: 0;
  bottom: 0;

  min-width: 0;
  overflow: hidden;
  border-left: 4px solid #ffffff;

  z-index: 10;
  pointer-events: none;

  transform: translateX(100%);

  transition:
    transform 1000ms cubic-bezier(0.76, 0, 0.24, 1);
}

.a4w-industry-screen.is-applications-open .a4w-precast-inline-slot {
  transform: translateX(0);
  pointer-events: auto;
}

.a4w-industry-card[data-industry="tilt-up"] {
  border-left: 4px solid #ffffff;
}

.a4w-industry-screen.is-applications-open
.a4w-industry-card[data-industry="precast"]
.a4w-industry-content {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;

  transition:
    opacity 320ms ease-in-out,
    transform 320ms ease-in-out;
}

.a4w-coming-soon {
  position: absolute;
  left: 50%;
top: 50%;
transform: translate(-50%, -50%);

  z-index: 3;

  min-width: 190px;
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 24px;
  border: 0;
  border-radius: 999px;

  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;

  color: var(--a4w-navy);
  background: #dcddde;

  pointer-events: none;
  cursor: default;
}

.a4w-precast-return,
.a4w-precast-return:hover,
.a4w-precast-return:focus,
.a4w-precast-return:focus-visible,
.a4w-precast-return:active {
  appearance: none;
  -webkit-appearance: none;

  border: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;

  padding: 0 !important;
  margin: 0;

  background: transparent !important;
  background-color: transparent !important;

  color: #ffffff;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
}

.a4w-application-label {
  position: absolute;
  top: 24px;
  left: 18px;
  z-index: 4;

  font-family: 'Kumbh Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  pointer-events: none;
}

/* Staggered submenu card starting positions */

.a4w-precast-application-card:nth-child(1) {
  transform: translateX(300%);
}

.a4w-precast-application-card:nth-child(2) {
  transform: translateX(200%);
}

.a4w-precast-application-card:nth-child(3) {
  transform: translateX(100%);
}

.a4w-industry-screen.is-applications-open
.a4w-precast-application-card {
  transform: translateX(0);
}