* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  list-style: none;
  font-weight: 300;
  color: var(--c3);
  text-decoration: none;
}

:root {
  --c1: #aa0000;
  --c2: #000;
  --c3: rgb(182, 182, 182);
  --c4: white;
}

body {
  background-color: var(--c2);

  background-repeat: no-repeat;
  background-size: cover, cover;
  background-attachment: scroll, fixed;
  background-position: center, center;
}

p {
  line-height: 2rem;
  letter-spacing: 0.05rem;
  font-size: 1.1rem;
}

h3,
h2 {
  color: var(--c4);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

a {
  color: var(--c4);
}

.light-bg {
  background-image: repeating-linear-gradient(
    rgba(255, 255, 255, 0.096),
    transparent,
    rgba(255, 255, 255, 0.096)
  );
  background-repeat: no-repeat;
  background-size: 100%, cover;
  background-attachment: scroll, fixed;
  background-position: center, center;
}

.gray-bg {
  background-image: repeating-linear-gradient(
    rgba(255, 255, 255, 0.137),
    transparent,
    rgba(255, 255, 255, 0.137)
  );
  background-repeat: no-repeat;
  background-size: 100%, cover;
  background-attachment: scroll, fixed;
  background-position: center, center;
}

.dark-bg {
  background-image: repeating-linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.096),
    transparent
  );
  background-repeat: no-repeat;
  background-size: 100%, cover;
  background-attachment: scroll, fixed;
  background-position: center, center;
}

.models-bg {
  background-image: repeating-linear-gradient(
    rgba(255, 255, 255, 0.193),
    transparent,
    rgba(255, 255, 255, 0.276)
  );
  background-repeat: no-repeat;
  background-size: 100%, cover;
  background-position: center, center;
}

/* Nav Bar */
.top-banner {
  padding: 1rem 2rem;
  background-color: rgb(38, 38, 38);
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--c4);
  letter-spacing: 0.06rem;
  line-height: 1.6rem;
}

.tdk {
  background-color: var(--c1);
}

.ser {
  background-color: rgba(220, 220, 220, 0.201);
}

.ser:hover {
  background-color: rgba(220, 220, 220, 0.486);
  transition: 0.3s;
}

.tdk:hover {
  background-color: #d60000;
  text-decoration: none;
  transition: 0.3s;
}

.contact__msg {
  color: green;
}

.announcement {
  background-color: var(--c1);
  text-align: center;
  padding: 2rem 1.5rem;
  font-weight: 900;
}

.announcement span {
  color: white;
  font-weight: 900;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.5rem;
}

.announcement p {
  color: white;
  max-width: 60rem;
  margin: 1rem auto 0 auto;
}

.van-tour {
  margin: 0 auto;
  width: 60rem;
  height: 33.75rem;
}

.van-tour iframe {
  padding: 0;
  width: 100%;
  height: 100%;
}

/* End - Nav Bar */
h1 {
  font-size: 4rem;
  margin: 2rem 0;
  color: var(--c2);
  text-transform: uppercase;
  font-weight: 200;
  text-align: center;
}

.sub-nav-name {
  color: var(--c4);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  background-color: #424242;
  padding: 1rem;
  font-size: 1.3rem;
}

.model-title {
  font-size: 5rem;
  color: var(--c2);
  text-transform: uppercase;
  grid-column: 1/2;
}

.model-title2 {
  font-size: 1.3rem;
  color: var(--c2);
  text-transform: uppercase;
  grid-column: 3/4;
  text-align: right;
  line-height: 5rem;
  font-weight: 600;
  margin-right: 5rem;
}

.slide-in-text {
  transform: translateX(100%);
  /* Start off-screen to the left */
  animation: slideIn 0.5s forwards;
  /* Animation name, duration, fill mode */
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.header-bottom {
  width: 100%;
}

.header-info {
  padding: 4rem 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

.header-info p {
  margin: 0 auto;
}

.header-specs-w {
  background-color: rgba(255, 255, 255, 0.138);
  display: grid;
  padding: 3rem 2rem;
}

.header-specs {
  display: grid;
  max-width: 30rem;
  margin: 0 auto;
  align-self: center;
}

.header-specs img {
  width: 100%;
}

.header-specs span {
  display: grid;
  font-size: 1.2rem;
  color: white;
}

.header-specs ul {
  margin-top: 1rem;
  display: grid;
  grid-gap: 0.5rem;
  font-size: 1rem;
}

.header {
  display: grid;
  padding: 4rem 0 2rem 0;
  background-color: #d1edfe;
  transition: 0s;
}

.span2 {
  grid-column: span 2;
  grid-row: span 2;
}

.span15 {
  grid-column: span 3;
}

.span4 {
  grid-column: span 4;
}

.collage {
  grid-column: 1/3;
}

.collage-w {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  grid-gap: 0.6rem;
  max-width: 100rem;
  padding-bottom: 5rem;
}

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

.span2 {
  grid-column: span 2;
  grid-row: span 2;
}

.span15 {
  grid-column: span 3;
}

.span4 {
  grid-column: span 4;
}

.collage-item {
  position: relative;
  display: inline-block;
  /* Or flex, depending on your layout needs */
  cursor: pointer;
}

.collage-item img {
  width: 100%;
  /* Adjust according to your needs */
  display: block;
  /* Removes bottom gap */
}

.overlay-text {
  position: absolute;
  display: grid;
  bottom: 0;
  /* Adjust based on where you want the text */
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Semi-transparent background */
  color: white;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.5s,
    visibility 0.5s;
  padding: 1rem 2rem;
  justify-items: center;
  align-items: center;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 1.5rem;
  text-align: center;
}

.collage-item:hover .overlay-text {
  visibility: visible;
  opacity: 1;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  /* Change from 'auto' to 'hidden' to disable scrolling */
}

.overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the image */
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.close {
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  background-color: var(--c1);
}

.header img {
  width: 100%;
  max-width: 80rem;
  grid-row: 2/3;
  justify-self: center;
  align-self: center;
}

.header {
  display: grid;
  background-image: none;
  padding: 3rem 0 0 0;
  background-color: #d1edfe;
  transition: 0s;
  grid-template-columns: 1fr 30rem;
  grid-template-rows: 1fr;
}

.b-model .header {
  height: auto;
  overflow: visible;
}

.b-model .header .title {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

@media only screen and (max-width: 1500px) {
  .b-model .header .title {
    grid-column: 1 / 2;
  }
}

.banner-image {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/showcase-models.jpg);
  background-size: 100%;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-color: #d1edfe;
  grid-column: 1/2;
}

.bi-kronos {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/models/kronos/kronos-144-0.jpg);
  background-size: 150%;
  background-position: left bottom;
}

.bi-metis {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/header-banner-metis.jpg);
  background-size: 190%;
}

.bi-classic170 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/header-banner-classic170.jpg);
}

.bi-kronos170 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/models/kronos/kronos-170.jpg);
  background-size: 150%;
  background-position: left bottom;
}

.bi-metis170 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/header-banner-metis170.jpg);
}

.bi-ultra {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/models/ultra/ultra-144.jpg);
  background-position: left bottom;
  background-size: 1820px;
}

.bi-ultra170 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/models/ultra/ultra-170.jpg);
  background-size: 150%;
  background-position: left bottom;
  background-size: 1820px;
}

.bi-classic {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/models/classic/banner_classic_models.png);
  background-size: 150%;
  background-position: left bottom;
  background-size: 2500px;
}

.bi-classic144 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/models/classic/sprinter_classic_144.jpg);
  background-size: 150%;
  background-position: left bottom;
  background-size: 2500px;
}

.bi-classic148 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/models/classic/ford_classic_148.jpg);
  background-size: 150%;
  background-position: left bottom;
  background-size: 1820px;
}

.bi-classic148el {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/models/classic/ford_classic_148_el.jpg);
  background-size: 150%;
  background-position: left bottom;
  background-size: 1820px;
}

.bi-classic170 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/header-banner-classic170.jpg);
  background-size: 150%;
  background-position: left bottom;
  background-size: 2250px;
}

.bi-kronos144 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/header-banner-kronos.jpg);
  background-size: 150%;
  background-position: left bottom;
  background-size: 2500px;
}

.bi-metis144 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/header-banner-metis.jpg);
  background-size: 150%;
  background-position: left bottom;
  background-size: 2500px;
}

.bi-metis148 {
  background-image:
    repeating-radial-gradient(transparent, rgba(0, 0, 0, 0.593)),
    url(/assets/images/header-banner-metis148.jpg);
  background-size: 150%;
  background-position: left bottom;
  background-size: 2500px;
}

.title {
  width: 100%;
  padding: 0 2rem;
  margin: 0;
  justify-self: center;
  grid-template-columns: auto 1fr auto;
  display: grid;
  max-width: 30rem;
  padding: 0 2rem;
  margin: 0;
  justify-self: end;
  grid-template-columns: 1fr;
  background-color: #191919;
  background-image:
    repeating-radial-gradient(rgb(23, 23, 23), rgba(41, 41, 41, 0.827)),
    url(/assets/images/seamless-topo.jpg);
  background-size: 50rem;
  display: grid;
  padding: 3rem;
  grid-column: 2/3;
  grid-row: 1/2;
  height: 100%;
  grid-template-rows: 1fr auto auto auto 1fr;
  z-index: 80;
  align-self: center;
  grid-gap: 3rem;
}

.model-title {
  display: grid;
  font-size: 5rem;
  color: var(--c2);
  text-transform: uppercase;
  grid-row: 2/3;
  justify-items: center;
}

.model-title2 {
  display: grid;
  text-transform: uppercase;
  grid-row: 3/4;
  text-align: left;
  line-height: 4rem;
  align-self: center;
  grid-column: 1/2;
  margin-right: 0;
}

.model-title2 li {
  font-weight: 900;
  color: var(--c4);
  letter-spacing: 0.2rem;
  font-size: 1.8rem;
  text-align: center;
  font-style: oblique 90deg;
}

.sliding-list {
  list-style: none;
  padding: 0;
  display: grid;

  grid-gap: 2rem;
}

.sliding-list li {
  opacity: 0;
  transform: translateX(-500%);
  animation: slideIn 0.5s forwards;
  display: grid;
  align-self: center;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered animation delays */
.sliding-list li:nth-child(1) {
  animation-delay: 0.2s;
}

.sliding-list li:nth-child(2) {
  animation-delay: 0.6s;
}

.sliding-list li:nth-child(3) {
  animation-delay: 1s;
}

/* Header hero CTA — skin comes from .tv-cta .tv-cta--red (cta.css);
   this class only places the button inside the .title grid. */
.dyv-circle {
  grid-row: 4/5;
  justify-self: center;
  align-self: center;
}

/* testing end */
/* Expertise */

.s-expertise {
  padding: 0;
}

.expertise-wrapper {
  display: grid;
  padding: 0;
}

.expertise-left,
.expertise-right {
  display: grid;
  grid-template-rows: 1fr;
}

.expertise-left {
  grid-template-columns: 5fr 3fr;
}

.expertise-right {
  grid-template-columns: 3fr 5fr;
}

.expertise-left img,
.expertise-right img {
  width: 100%;
}

.expertise-image {
  height: 100%;
  background-position: -1%, center;
  background-size: cover;
  background-color: black;
}

.exp-txt {
  display: grid;
  grid-template-rows: 1fr auto auto 1fr;
  padding: 10rem 0;
  background-image: linear-gradient(to right, black, rgba(182, 137, 137, 0.05));
}

.expertise-right .exp-txt {
  justify-items: right;
  background-image: linear-gradient(to left, black, rgba(182, 137, 137, 0.05));
}

.exp-txt h3,
.exp-txt h2 {
  grid-row: 2/3;
  max-width: 30rem;

  padding: 0 2rem;
  width: 100%;
}

.exp-txt p {
  grid-row: 3/4;
  max-width: 30rem;

  width: 100%;
  padding: 0 2rem;
}

.sub-nav ul {
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-template-rows: 1fr;
  max-width: 40rem;
  grid-column: 4/5;
  align-items: center;
}

.sub-nav ul a {
  padding: 1.17rem 1.3rem;
}

.sub-nav ul li a:hover {
  background-color: #8d8d8d !important;
}

.sub-nav {
  background-color: rgb(47, 47, 47);
  display: grid;
  letter-spacing: 0.05rem;
  grid-template-columns: auto auto 1fr auto;
}

.emphasize {
  background-color: var(--c1);
}

.sub-nav span {
  align-self: center;
  font-size: 1.2rem;
  padding: 0 1rem;
  letter-spacing: 0.1rem;
}

.base-w {
  grid-column: 2/3;
  grid-row: 1/3;
  background-color: rgba(240, 248, 255, 0.036);
  padding: 3rem 2rem;
}

.base {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  line-height: 1.4rem;
  margin: 0 auto;
}

@keyframes throb {
  0% {
    transform: scale(1) rotate(10deg);
  }

  50% {
    transform: scale(1.1) rotate(10deg);
  }

  /* Scale up to 110% of the original size */
  100% {
    transform: scale(1) rotate(10deg);
  }
}

.click-this {
  width: 6rem;
  height: 4rem;
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  animation: throb 1.5s infinite ease-in-out;
  background-color: var(--c1);
  padding: 0.5rem;
  border-radius: 1rem;
}

.base div {
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.096);
  position: relative;
}

.s-base {
  display: grid;
  padding: 3rem;
  grid-gap: 0.5rem;
}

.s-base h3 {
  margin: 0 auto;
  padding-bottom: 2rem;
}

.big-title {
  color: var(--c4);
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.base h5 {
  color: var(--c4);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.s-chassis {
  justify-content: center;
  padding: 3rem;
  display: grid;
  grid-gap: 1rem;
}

.chassis {
  background-color: rgba(255, 255, 255, 0.121);
  display: grid;
  grid-template-columns: 20rem auto auto;
  grid-template-rows: 5.5rem auto;
}

.chassis-rb {
  grid-column: 2/3;
  display: grid;
  justify-self: center;
  padding: 2rem;
}

.chassis-ru {
  grid-column: 3/4;
  display: grid;
  justify-self: center;
  padding: 2rem;
}

.chassis img {
  width: 100%;
  padding: 2rem;
}

.chassis h3 {
  align-self: center;
  justify-self: center;
  margin: 0;
  font-size: 2rem;
}

.chassis-specs {
  display: grid;
  grid-gap: 3rem;
  grid-template-rows: 17rem auto;
  justify-content: center;
  align-content: center;
  background-color: rgba(255, 255, 255, 0.045);
}

.chassis span {
  color: white;
}

.chassis ul,
.base ul {
  line-height: 2rem;
}

.s-chassis h4 {
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.7rem;
}

.chassis button {
  background-color: var(--c1);
  border: none;
  grid-column: 3/4;
  font-size: 1.2rem;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
}

.chassis-nav {
  background-color: rgba(255, 255, 255, 0.112);
  grid-column: 1/4;
  display: grid;
  grid-template-columns: 18rem 1fr 15rem;
}

.options-w {
  grid-column: 1/3;
  display: grid;
}

.options {
  width: 100%;
  grid-template-columns: 1fr 1fr;
}

.options .options-cat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

.options-w p {
  margin-bottom: 2rem;
}

.base .options-cat-image {
  grid-column: 1/2;
  background-color: #aa0000;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.cat-electricity {
  background-image: url(/assets/videos/lb/starlink-mini-on-van.jpg);
}

.cat-heating {
  background-image: url(/assets/images/air-conditioner-ultra.jpg);
}

.cat-interior {
  background-image: url(/assets/images/camper-van-gallery/metis/camper-van-metis-6.jpg);
}

.cat-interior-storage {
  background-image: url(/assets/images/headliner-shelf.jpg);
}

.cat-exterior {
  background-image: url(/assets/images/campervan_extstorage1.jpg);
}

.cat-performance {
  background-image: url(/assets/images/campervan-suspension2.jpg);
}

.cat-interior-classic {
  background-image: url(/assets/images/camper-van-gallery/classic/classic144-4.jpg);
}

.cat-interior-storage-classic {
  background-image: url(/assets/images/camper-van-gallery/vfs-classic3/vfs-classic-3-2022-5.jpg);
}

.cat-interior-kronos {
  background-image: url(/assets/images/camper-van-gallery/kronos/kronos-table-3.jpg);
}

.cat-interior-storage-kronos {
  background-image: url(/assets/images/headliner-shelf.jpg);
}

.cat-interior-storage-metis {
  background-image: url(/assets/images/headliner-shelf.jpg);
}

.cat-interior-ultra {
  background-image: url(/assets/images/ultra144-interior.jpg);
}

.cat-interior-classic170 {
  background-image: url(/assets/images/camper-van-gallery/classic170/camper-van-classic170-4.jpg);
}

.cat-interior-kronos170 {
  background-image: url(/assets/images/camper-van-gallery/kronos/kronos-bed-8.jpg);
}

.cat-interior-metis170 {
  background-image: url(/assets/images/metis170-interior.jpg);
}

.cat-interior-ultra170 {
  background-image: url(/assets/images/ultra170-interior.jpg);
}

.base .options-list {
  background-color: transparent;
  justify-self: center;
}

.options-list h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.options-list .info-icon {
  grid-column: 1/2;
  align-items: center;
}

.options-list ul {
  width: 20rem;
  margin: 0 auto;
}

.options-list li {
  grid-gap: 0 0.7rem;
  align-items: center;
}

.options-list li a {
  display: grid;
  align-items: center;
}

.s-interior strong {
  font-weight: 600;
  color: var(--c4);
}

/* lightbox */
.close-lightbox {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

/* Style for Question Mark */
.question-mark {
  cursor: pointer;
  font-weight: bold;
  margin-left: 5px;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 99;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.706);
  /* Black w/ opacity */
}

.lightbox-content {
  position: fixed;
  /* Use fixed positioning */
  top: 50%;
  /* Position the top edge of the element at the middle of the screen */
  left: 50%;
  /* Center the element horizontally */
  transform: translate(-50%, -50%);
  /* Offset the element by half its width and height */
  width: 23rem;
  /* Adjust width as needed */
  max-height: 80vh;
  /* Optional: Adjust max height as needed */
  overflow-y: auto;
  /* Enable scrolling within the lightbox if content overflows */
  background-image: repeating-linear-gradient(
    rgba(255, 255, 255, 0.096),
    transparent,
    rgba(255, 255, 255, 0.096)
  );
  background-repeat: no-repeat;
  background-size: 100%, cover;
  background-attachment: scroll, fixed;
  background-position: center, center;
  background-color: var(--c2);
  padding: 3rem 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: Adds a shadow for better visual separation */
  z-index: 1050;
  /* Ensure it sits above other content */
  line-height: 1.5rem;
}

.close-lightbox {
  position: absolute;
  /* Position the close button absolutely within .lightbox-content */
  top: 0;
  /* Align to the top */
  right: 0;
  /* Align to the right */
  color: #aaa;
  padding: 0.5rem 1rem;
  /* Add some padding to make it easier to click */
  cursor: pointer;
  font-weight: 900;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
  background-color: var(--c1);
  transition: 0.2s ease;
}

button {
  border: none;
  background-color: var(--c1);
  padding: 1rem 1.5rem;
  color: var(--c4);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.07rem;
  cursor: pointer;
}

.s-scroll {
  background-image: url(images/camper-van-gallery/classic/classic144-8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center, center;
  height: 30rem;
}

.s-interior {
  padding: 5rem 1rem 0.7rem 1rem;
}

.s-interior-w {
  display: grid;
  grid-gap: 0.7rem;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  max-width: 100rem;
  margin: 0 auto;
}

.interior-w {
  display: grid;

  padding: 3rem;

  background-color: rgba(240, 248, 255, 0.036);
}

.interior-w img {
  max-width: 60rem;
}

.exterior-w {
  grid-template-rows: auto;
  grid-row: 1/3;
}

.interior-w img,
.topview-w img {
  justify-self: center;
  align-self: center;
  width: 100%;
}

.interior-sb {
  background-color: rgba(255, 255, 255, 0.096);
  grid-column: 2/3;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: 4rem 10.5rem auto;
  padding-top: 1rem;
  margin: 2rem 0;
  width: 20rem;
  justify-self: center;
}

.interior-sb-number,
.interior-sb-title {
  background-color: #aa0000;
  display: grid;
  width: 3rem;
  height: 3rem;
  justify-items: center;
  align-items: center;
  color: white;
  font-weight: 900;
  font-size: 2rem;
  grid-row: 1/2;
  grid-column: 2/3;
}

.interior-sb-title {
  background-color: #aa0000;
  height: 3rem;
  width: 15rem;
  font-size: 1rem;
  grid-column: 3/4;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
}

.interior-sb-video {
  grid-column: 1/4;
  justify-self: center;
  padding: 0 1.5rem;
}

.interior-sb-video img {
  width: 100%;
}

.interior-sb-content {
  grid-column: 1/4;
  padding: 0 1.5rem;
  line-height: 1.6rem;
}

.s-interior h2 {
  margin: 0 auto;
  font-size: 5rem;
  max-width: 100rem;
  align-self: center;
}

.s-interior-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  max-width: 100rem;
  margin: 0 auto;
  align-items: center;
}

.s-interior-title div {
  max-width: 35rem;
  display: grid;
  grid-gap: 0.5rem;
  height: 3rem;
  grid-column: 3/4;
  /* auto columns keep the pair snug; align-items stops the buttons
       stretching to the 3rem row so both CTA sets share the recipe height */
  grid-template-columns: auto auto;
  align-items: center;
}

.gray-button {
  background-color: rgb(99, 99, 99);
}

button:hover {
  background-color: #e30101;
  transition: 0.2s;
}

.gray-button:hover {
  background-color: rgba(220, 220, 220, 0.647);
}

.info-trigger:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  text-decoration-color: #e9e9e9;
  cursor: pointer;
}

.s-interior-title button {
  overflow: visible;
}

.topview-w {
  display: grid;
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: rgba(240, 248, 255, 0.036);
  padding: 3rem;
}

.topview-wrapper img {
  padding: 2rem 3rem 3rem 3rem;
}

.info-icon {
  width: 1rem;
  grid-column: 4/5;
  transition: transform 0.1s ease;
  display: grid;
  align-content: center;
}

.info-icon:hover {
  transform: scale(1.3);
  cursor: pointer;
}

.info-icon img {
  width: 100%;
  align-self: center;
  margin-top: -0.1rem;
}

.base ul li {
  display: grid;
  grid-template-columns: auto 1fr auto;
}

.base ul li:hover,
base ul li span:hover {
  color: var(--c4);
}

.contact-block {
  text-align: center;
  display: grid;
  grid-gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

.two-buttons {
  display: grid;
  grid-gap: 1rem;
  width: 28rem;
  /* auto columns + justify-content keep the pair tight and centered
       instead of each button left-aligning inside a wide 1fr column */
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.s-contact-block {
  padding: 5rem;
}

.no-scroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%;
  top: 0;
  /* Adjust if needed */
  left: 0;
  /* Adjust if needed */
}

#universalLightbox h5 {
  font-size: 0.9rem;
  /* Adjust the font size as needed */
  margin-bottom: 1.5rem;
  /* Space between the title and description */
  color: white;
  letter-spacing: 0.1rem;
  font-weight: 400;
  text-transform: uppercase;
}

#universalLightbox p {
  font-size: 1rem;
  /* Adjust the font size as needed */
  margin: 1rem 0;
  /* Space between the description and video player */
  line-height: 1.6rem;
}

.video-thumbnail {
  opacity: 0.8;
}

.video-thumbnail:hover {
  opacity: 1;
}

#universalLightbox video {
  width: 100%;
  /* Make the video player responsive */
  max-width: 20rem;
  /* Maximum size of the video player */
  height: auto;
  /* Maintain aspect ratio */
}

/* Style the scrollbar for the lightbox */
#universalLightbox ::-webkit-scrollbar {
  width: 12px;
  /* Adjust the width of the scrollbar */
}

#universalLightbox ::-webkit-scrollbar-track {
  background: rgb(48, 48, 48);
  /* Background of the track */
}

#universalLightbox ::-webkit-scrollbar-thumb {
  background-color: #888;
  /* Color of the scrollbar thumb */
  border-radius: 6px;
  /* Roundness of the scrollbar thumb */
  border: 3px solid rgb(48, 48, 48);
  /* Creates padding around the thumb */
}

.features {
}

.features ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0.2rem;
  padding: 0.2rem;
  margin: 0 auto;
  max-width: 90rem;
  justify-content: center;
}

.features ul li {
  display: grid;
  grid-row: 1fr 1fr;
  justify-items: center;
  padding: 5rem 0;
  grid-gap: 2rem;
  text-align: center;
  line-height: 1.5rem;
}

.features ul li span {
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 400;
  font-size: 1.2rem;
}

.features ul li i {
  display: grid;
  align-items: center;
  color: var(--c2);
  text-align: center;
  grid-row: 1/2;
  font-size: 3rem;
  background-color: #ffffff;
  height: 6rem;
  width: 6rem;
  border-radius: 10rem;
}

.s-options {
  padding: 5rem 2rem;
}

.option-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 20rem));
  grid-gap: 1rem;
  justify-content: center;
}

.option {
  max-width: 50rem;
  color: var(--c4);
  display: grid;
  align-self: center;
  background: rgba(255, 255, 255, 0.056);
  padding: 2rem 1rem;
}

.option-title {
  color: var(--c4);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.1rem;
  width: 100%;
  margin-bottom: 0.5rem;
  text-align: center;
}

.option-subtitle {
  color: var(--c4);
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  text-align: center;
}

.vni {
  color: var(--c3);
  text-transform: none;
  margin: 0 0 1rem 0;
  letter-spacing: 0;
}

.option button {
  margin: 0.5rem auto 0 auto;
  max-width: 18rem;
  width: 100%;
}

.option img {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.option-p-title {
  color: var(--c4);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin: 0.5rem 0;
  text-align: center;
}

.option-highlight {
  background-color: #404040;
}

.option .vfs {
  margin-bottom: 0;
}

.model-atts {
  display: grid;
  grid-gap: 0.5rem;
  text-align: center;
  margin-bottom: 01rem;
}

.model-atts li {
  font-weight: 400;
  color: var(--c4);
}

.features img {
  width: 6rem;
  background-color: var(--c4);
  border-radius: 100rem;
}

@media only screen and (max-width: 1500px) {
  .header {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .title {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-row: 1/2;
    grid-column: 1/2;
    width: 100%;
    justify-self: center;
    align-self: baseline;
    background-size: 100%;
    max-width: none;
    background-image: none;
    background-color: transparent;
    padding: 2rem 0 0 0;
    grid-gap: 2rem;
    height: 30rem;
  }

  .model-title2 {
  }

  .header img {
    /* 100vw (not %, which is indefinite during grid track sizing)
           keeps the hero logo / sliding-list art from widening the page
           past the viewport on small phones, which pushed every centered
           element off the screen axis */
    max-width: min(30rem, 100vw);
    min-width: 0;
    padding: 0 2rem;
  }

  .banner-image {
    grid-row: 1/2;
    height: 72rem;
  }

  .bi-classic {
    height: 65rem;
  }

  .s-interior-w {
    grid-template-columns: 1fr;
  }

  .base-w,
  .interior-w,
  .topview-w {
    grid-column: 1/2;
  }

  .interior-w {
    grid-row: 1/2;
  }

  .base-w {
    grid-row: 3/4;
  }

  .s-exterior-w .base-w {
    grid-row: 2/3;
  }

  .collage {
    grid-column: 1/2;
  }

  .options {
    grid-template-columns: 1fr;
  }

  .options .options-cat {
    margin: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .banner-image {
    height: 65rem;
  }

  .tdk {
    background-color: var(--c1);
    color: var(--c4);
    text-align: center;
    margin-top: 1rem;
  }

  .tdk {
    background-color: var(--c1);
    color: var(--c4);
    text-align: center;
    margin-top: 1rem;
  }

  .tdk:hover {
    background-color: #d60000;
    text-decoration: none;
  }

  @media only screen and (max-width: 1000px) {
    .banner-image {
      height: 60rem;
    }

    .bi-classic {
      height: 55rem;
      background-size: 1500px;
    }

    .s-interior-title {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      justify-items: center;
    }

    .s-interior-title div {
      grid-column: 1/2;
      justify-items: center;
    }

    /* m072224.css `button { justify-self: start }` would left-align
           the Design Your Van / Contact Now pair */
    .s-interior-title div button {
      justify-self: center;
    }

    .sub-nav span {
      font-size: 1rem;
    }
  }

  @media only screen and (max-width: 800px) {
    .banner-image {
      height: 55rem;
    }

    .bi-classic {
      height: 47rem;
      background-size: 1000px;
    }

    .options .options-cat {
      grid-template-columns: 1fr;
      grid-template-rows: 15rem auto;
    }

    .options-list ul {
      width: 100%;
    }

    .base .options-list {
      justify-self: normal;
    }

    .sub-nav {
      grid-template-columns: 16rem auto;
      background-color: #393939;
    }

    .sub-nav-name {
      grid-column: 1/2;
      background-color: #2b2b2b;
    }

    .sub-nav ul {
      grid-column: 1/3;
      grid-row: 2/3;
      grid-template-columns: 1fr 1fr 1fr;
      max-width: none;
      text-align: center;
      grid-gap: 0.3rem;
      padding: 0.3rem;
      background-color: var(--c2);
    }

    .sub-nav ul a {
      padding: 0;
      width: 100%;
      text-align: center;
      display: block;
      padding: 1rem 0.5rem;
    }

    .collage-w {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      margin: 0 auto;
      grid-gap: 0.6rem;
      max-width: 100rem;
      padding-bottom: 0rem;
    }

    .span2 {
      grid-column: span 1;
      grid-row: span 1;
    }
  }

  @media only screen and (max-width: 600px) {
    .banner-image {
      height: 50rem;
    }

    .bi-classic {
      height: 45rem;
      background-size: 900px;
    }

    .sub-nav {
      grid-template-rows: auto auto auto;
    }

    .sub-nav-name {
      grid-row: 1/2;
      grid-column: 1/3;
      text-align: center;
      font-size: 2rem;
    }

    .sub-nav span {
      grid-row: 2/3;
      padding: 1rem;
      text-align: center;
      grid-column: 1/3;
      font-size: 1.2rem;
    }

    .sub-nav ul {
      grid-row: 3/4;
    }

    .interior-w,
    .topview-w {
      padding: 1rem;
    }

    .features ul {
      grid-template-columns: 1fr;
      padding: 3rem 0;
    }

    .features ul li {
      padding: 3rem 0;
    }

    .s-interior {
      padding: 3rem 0.5rem 0.7rem 0.5rem;
    }

    .s-interior-w,
    .collage-w {
      grid-gap: 0.5rem;
    }

    .s-interior-title {
      grid-template-rows: auto 7rem;
      grid-gap: 1rem;
    }

    .s-interior-title div {
      grid-template-columns: 1fr;
      align-self: baseline;
      height: auto;
    }

    .s-interior h2 {
      font-size: 3rem;
      text-align: center;
      padding-bottom: 1rem;
    }

    .base div {
      padding: 2rem 1rem;
    }

    .two-buttons {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr 1fr;
      max-width: 15rem;
      justify-items: center;
    }

    /* m072224.css `button { justify-self: start }` would left-align
           the stacked Design Your Van / Contact Now pair */
    .two-buttons button {
      justify-self: center;
    }

    .s-contact-block {
      padding: 3rem;
    }

    .click-this {
      width: 5.5rem;
      height: 3.5rem;
      right: -0.3rem;
      top: 0.5rem;
      z-index: 81;
    }
  }

  @media only screen and (max-width: 500px) {
    .banner-image {
      height: 47rem;
    }

    .bi-classic {
      height: 45rem;
      background-size: 800px;
    }

    .base ul li {
      font-size: 0.9rem;
    }

    .base-w {
      padding: 2rem 1rem;
    }

    h3,
    h5 {
      font-size: 1rem;
      text-align: center;
    }
  }
}
