:root {
  --primary-color: #eb0a1e;
  --black: #000;
  --light-black: #1e1e1e;
  --dark-gray: #323232;
  --gray: ##575757;
  --light-gray: #ebebeb;
}

@font-face {
  font-family: ToyotaType-Book;
  src: url(../../fonts/lc300/ToyotaType-Book.otf) format("opentype");
  font-style: book;
}

@font-face {
  font-family: ToyotaType-Regular;
  src: url(../../fonts/lc300/ToyotaType-Regular.woff) format("woff"),
    url(../../fonts/lc300/ToyotaType-Regular.ttf) format("truetype");
  font-style: normal;
}

.lc300-page {
  color: var(--black);
  position: relative;
}

.lc300-page h1 {
  font-family: ToyotaType-Regular;
  font-size: 64px;
  line-height: 64px;
  margin: 0px;
  letter-spacing: -0.24rem;
}

.lc300-page h2 {
  font-family: ToyotaType-Regular;
  font-size: 52px;
  line-height: 60px;
  margin: 0px;
  letter-spacing: -0.2rem;
}

.lc300-page h3 {
  font-family: ToyotaType-Regular;
  font-size: 46px;
  line-height: 56px;
  margin: 0px;
  letter-spacing: -0.14rem;
}

.lc300-page h4 {
  font-family: ToyotaType-Regular;
  font-size: 32px;
  line-height: 40px;
  margin: 0px;
  letter-spacing: -0.12rem;
}

.lc300-page h5 {
  font-family: ToyotaType-Regular;
  font-size: 24px;
  line-height: 30px;
  margin: 0px;
  letter-spacing: 0px;
  letter-spacing: -0.12rem;
}

.lc300-page h6 {
  font-family: ToyotaType-Regular;
  font-size: 16px;
  line-height: 24px;
  margin: 0px;
  letter-spacing: 0px;
}

.lc300-page p {
  font-family: ToyotaType-Regular;
  font-size: 18px;
  line-height: 24px;
  margin: 0px;
  letter-spacing: 0px;
}

.lc300-primary-btn {
  text-transform: uppercase;
  font-style: normal;
  text-transform: capitalize;
  font-weight: 300;
  color: var(--black);
  -webkit-clip-path: polygon(25% 0%, 100% 0, 100% 79%, 81% 100%, 0 100%, 0 24%);
  clip-path: polygon(0 0, 90% 0%, 100% 40%, 100% 100%, 10% 100%, 0% 60%);
  height: 48px;
  width: 200px;
  font-size: 16px;
  line-height: 14px;
  letter-spacing: -0.02rem;
  transition: 0.2s 0.1s;
  background: var(--light-gray);
  border: 0 solid;
  overflow: hidden;
}

.lc300-secondary-btn {
  background: var(--black);
  color: #fff;
}

.lc300-primary-btn:hover {
  cursor: pointer;
  background: var(--primary-color);
  color: #fff;
  transition: all 0.3s ease-in;
}

/* popup form  */

.lc300-overlay-form {
  position: fixed;
  width: 100vw;
  height: 100%;
  background-color: #111111d3;
  z-index: 10000;
  top: 0px;
  left: 0;
  overflow: hidden;

  display: none;
}
.lc300-form-popup-form-wrapper {
  width: 900px;
  /* height: 600px; */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.lc300-form-popup-img img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.lc300-form-popup-form {
  padding: 16px;
}

.lc300-form-header {
  display: flex;
  align-content: center;
  justify-content: space-between;
}

.lc300-form-header h2 {
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
  margin: 4px 0px;
}

.lc300-form-header button {
  background-color: var(--black);
  border: none;
  width: 48px;
  height: 48px;
}

.lc300-form-header button img {
  width: 100%;
}

.lc300-enquiry-form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.lc300-enquiry-form-style {
  height: 48px;
  border: 1px solid #b7b7b7;
  background: rgba(125, 125, 125, 0.1);
  padding: 12px;
  color: var(--light-black);
  /* margin-right: 16px; */
  width: 100%;
}

.lc300-enquiry-custom_checkbox {
  display: flex;
  gap: 5px;
  font-size: 14px;
  align-items: flex-start;
}

/* HERO SECTION  */

.lc300-hero-section {
  position: relative;
  height: 84dvh;
  background-color: #323232;
  background-image: url(../../images/showroom/lc300/lc300-hero-section-image-desktop-1920x1080.webp);
  background-position: center 80%;
  background-repeat: no-repeat;
  background-size: cover;
}

.lc300-overlay {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.lc300-hero-content {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.lc300-hero-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lc300-hero-content h1 {
  color: #fff;
}
.lc300-360-experience-container {
  position: relative;
  height: 80dvh;
  overflow: hidden !important;
}

.lc300-360-experience-container img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.lc300-360-overlay {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

/* 360 experience container */
.lc300-360-experience-text-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  align-items: center;
  display: flex;
  z-index: 4;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.lc300-360-circle-button {
  width: 160px;
  height: 160px;
  padding: 10px;
  border-radius: 138px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  /* margin: auto; */
  background: rgba(15, 15, 15, 0.3); /* Apply opacity to the background color */
  box-shadow: 0px 0px 80px 0px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;

  transition: background-color 0.3s ease, color 0.3s ease;
}
.lc300-360-circle-button:hover {
  background-color: white;
  color: var(--black);
}
.lc300-360-circle-button-heading {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  text-transform: uppercase;
  text-align: center;
  opacity: 100%;
  font-family: ToyotaType-Bold;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.59) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lc300-360-circle-button:hover .lc300-360-circle-button-heading {
  /* color: var(--black); */
  background: linear-gradient(180deg, #000 0%, #2f2f2f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lc300-360-text {
  font-size: 36px;
  font-weight: 350;
  line-height: 42px;
  font-family: ToyotaType-Regular2;
  letter-spacing: 0em;
  text-align: center;
  color: white;
  width: 30%;

  /* margin: auto; */
  margin-top: 0;
}
.lc300-360-circle-button-heading {
  /* font-family: ToyotaType-Regular; */
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  opacity: 100%;
}


/* Legacy Section  */

.lc300-legacy-section {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  flex-direction: column;
  align-items: center;
  /* margin-top: 48px; */
}

.lc300-title-content {
  display: grid;
  grid-template-columns: repeat(3, calc(98% / 3));
  height: fit-content;
  gap: 16px;
  padding: 16px;
}

.lc300-title-content h3 {
  letter-spacing: -0.16rem;
  line-height: 100%;
}

.lc300-title-content p {
  width: auto;
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 24px;
}

.legacy-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Subnav  */
.lc300-sticky-navbar {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 4.6em;
  z-index: 9999;
}

.lc300-sticky-mobile-navbar {
  background-color: #000;
  color: white;

  display: none;
}

.lc300-stickynav-items-container {
  background-color: rgba(0, 0, 0, 1);
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* padding-left: 120px;
  padding-right: 120px; */
  overflow-x: auto;
  -ms-overflow-style: none; /* Hide the scrollbar for MS Edge */
  scrollbar-width: none;
  z-index: 999;
}
.lc300-stickynav-items-container::-webkit-scrollbar {
  display: none;
  -webkit-overflow-scrolling: touch;
}

.lc300-stickynav-items-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 0px 8px;
}

.lc300-stickynav-items-container p {
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  cursor: pointer;
  text-wrap: nowrap;
  margin: 0;
}
.lc300-sticky-nav-links-text {
  /* padding-bottom: 5px; */
}

.lc300-sticky-nav-link-active {
  background-color: var(--primary-color);
  padding: 8px 16px;
  /* width: 100%;
  height: 100%; */
  clip-path: polygon(0 0, 80% 0, 100% 35%, 100% 100%, 20% 100%, 0 65%);
}

/*LEGACY SWIPER */
.legacy-slider-wrapper .swiper {
  position: relative;
  width: 100%;
  padding-top: 36px;
  padding-bottom: 36px;
  overflow: visible !important;
}

.legacy-slider-wrapper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.68, 0.09, 0.27, 0.87) !important;
}

.legacy-slider-wrapper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: fit-content !important;
  height: fit-content !important;
  transition: all 0.5s ease, color 0.5s ease;
}

.legacy-slider-wrapper .swiper-slide-active {
  /* background: #000000 !important; */
  color: #ffffff !important;
  transition: all 0.4s ease, color 0.5s ease;
}

@keyframes scale-bg-legacy {
  0% {
    height: 4px;
  }

  100% {
    height: 100%;
  }
}

.legacy-slider-wrapper .swiper-slide-active::after {
  content: "";
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, #000000 0%, #1e1e1e 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;

  animation: scale-bg-legacy 0.5s ease-in-out forwards;
}

.legacy-slider-wrapper .swiper-slide h3,
.legacy-slider-wrapper .swiper-slide h6 {
  transition: all 0.5s ease;
}

.legacy-slider-wrapper .swiper-slide-active h3,
.legacy-slider-wrapper .swiper-slide-active h6 {
  color: #ffffff !important;
}

.legacy-pagination {
  /* width: 100px !important ; */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.legacy-bullet {
  position: relative !important;
  width: 40px !important;
  height: 40px !important;
  background: none !important;
  line-height: 0px;
  font-size: 40px;
  transition: all 0.2s ease-in;
}

.legacy-bullet .swiper-pagination-bullet-active {
  background: #000;
  color: #000000;
}

.legacy-bullet .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  line-height: 0px;
  /* background: black; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -0%) rotate(45deg);
  transform-origin: center;
  background-color: rgb(255, 255, 255);
  display: block;
  transition: all 0.2s ease-in;
}

.legacy-bullet .swiper-pagination-bullet-active::after {
  background-color: black;
  display: block;
}

.legacy-slider-wrapper .swiper-button-next,
.legacy-slider-wrapper .swiper-button-prev {
  width: 50px !important; /* Adjust arrow size */
  height: 40px !important;
  color: #000 !important; /* Change arrow color */
  font-size: 24px !important; /* Adjust arrow icon size */
  border: 2px solid #cecece;
  background-color: #ebebeb;
  box-shadow: 0px 4px 6.5px 0px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  transition: all 0.4s ease-in-out;
}

.legacy-slider-wrapper .swiper-button-next {
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  right: 6px;
  top: 50%;
}

.legacy-slider-wrapper .swiper-button-prev {
  position: absolute;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  left: 6px;
  top: 50%;
}

.legacy-slider-wrapper .swiper-button-next:hover,
.swiper-button-prev:hover {
  border: 2px solid var(--primary-color);
  color: #c4c4c4;
}

.legacy-slider-wrapper .swiper-button-next::after,
.legacy-slider-wrapper .swiper-button-prev::after {
  content: "";
  width: 10px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.legacy-slider-wrapper .swiper-button-next::after {
  background-image: url("/images/showroom/lc300/arrow-right.svg") !important;
}

.legacy-slider-wrapper .swiper-button-prev::after {
  background-image: url("/images/showroom/lc300/arrow-left.svg") !important;
}

/* SWIPER */

#lc300-legacy {
  padding: 15vh 0px;
}

.lc300-legacy-card {
  width: fit-content;
  padding: 36px 36px;
  background: #ebebeb;
  color: var(--black);
  /* -webkit-clip-path: polygon(0 0, 90% 0%, 100% 15%, 100% 100%, 10% 100%, 0% 85%) */
  clip-path: polygon(0 0, 90% 0%, 100% 15%, 100% 100%, 10% 100%, 0% 85%);
  width: 480px;
  height: 360px;
  transition: all 0.5s ease-in-out;
}

.lc300-legacy-card h3,
h6 {
  display: none;
}

.lc300-legacy-card img {
  width: 400px;
  margin-left: 36px;
  display: block;
  margin: auto;
}

/* EXTERIOR  */

#lc300-exterior {
  padding: 5vh 0px;
}

.lc300-section-banner {
  position: relative;
  height: 700px;
}

.lc300-exterior-banner {
  background-image: url(../../images/showroom/lc300/lc300-banner-01-desktop-1920x750.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0 0, 95% 0%, 100% 10%, 100% 100%, 5% 100%, 0% 90%);
  /* margin-top: 60px; */
}

.lc300-exterior-banner .lc300-title-content-section {
  position: absolute;
  z-index: 2;
  top: 0;
}

.lc300-overlay-2 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.lc300-section-banner .lc300-title-content h2 {
  color: #fff;
  letter-spacing: -0.08rem;
}

.lc300-section-banner .lc300-title-content p {
  font-family: ToyotaType-Book;
  color: var(--light-gray);
}

.lc300-section-exterior {
  padding: 64px 0px;
}

.lc300-section-exterior-feat {
  position: relative;
  height: 520px;
  margin: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.lc300-exterior-feat-desc-box {
  position: relative;
  width: 100%;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
  pointer-events: none;
}

.lc300-exterior-feat-desc-box::after {
  content: "";
  width: 100%;
  height: 80%;
  background: linear-gradient(
    180deg,
    #ebebeb00 0%,
    #ebebeb00 10%,
    #ebebeb 36%,
    #ebebeb 100%
  );
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.ext-desc-wrapper {
  padding: 16px;
}

.feature-navigations {
  pointer-events: all;
}

/* Progrees  */
.feature-navigations .lc300-feature-progress-bar {
  height: 10px;
  width: 200px;
  /* position: absolute;
    top: 0px;
    left: 0px;
    z-index: 100; */
  background-color: var(--primary-color);
}

.ext-desc-wrapper h4 {
  margin: 0px;
  letter-spacing: -0.1rem;
}

.ext-desc-wrapper p {
  font-family: ToyotaType-Book;
  font-size: 18px;
  margin-top: 16px;
  letter-spacing: 0rem;
}

.feature-navigations {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 16px 0px;
  padding: 0px 16px;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.feature-pagination {
  /* background: #ccc; */
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 12px;
  transform: translate3d(0px, 0%, 0) !important;
}

.feature-pagination span {
  width: 36px;
  height: 36px;
  margin: 0px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1 !important;
}

.feature-pagination .bullet-number {
  position: relative;
  z-index: 2;
}

.feature-pagination .swiper-pagination-bullet {
  position: relative;
}

.progress-svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--primary-color);
  fill: none;
  stroke-dashoffset: calc(138.2px * (1 - var(--progress)));
  stroke-dasharray: 138.2;
  transform: rotate(-90deg);
}

.feature-pagination .swiper-pagination-bullet-active {
  background-color: var(--light-black);
  color: var(--light-gray);
  position: relative;
}

.feature-pagination .swiper-pagination-bullet-active .bullet-number {
  background-color: var(--light-black);
  color: var(--light-gray);
  position: relative;
}

.feat-button-next,
.feat-button-prev {
  position: relative;
  width: 36px;
  height: 36px;
  /* background-color: #c4c4c4; */
}

.feat-button-next::before,
.feat-button-prev::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feat-button-next:before {
  background-image: url("/images/showroom/lc300/arrow-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.feat-button-prev:before {
  background-image: url("/images/showroom/lc300/arrow-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.lc300-exterior-feat-image-box {
  grid-area: 1/2/2/4;
  position: relative;
  width: 100%;
}

.lc300-exterior-feat-image-box .swiper-button-next {
  position: absolute !;
  top: 0% !important;
  right: 0;
  /* transform: translateY(-50%); */
}

.lc300-exterior-feat-image-box .swiper-button-prev {
  position: absolute;
  top: 0% !important;
  right: 0;
  /* transform: translateY(-50%); */
}

.lc300-exterior-feat-image-box .swiper {
  /* margin: unset !important; */
}

.lc300-exterior-feat-image-box .swiper-wrapper {
  width: 100%;
}
.lc300-exterior-feat-image-box .swiper-slide {
  width: 900px !important;
}

.lc300-exterior-feat-image-box .swiper-slide {
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lc300-exterior-feat-image-box .swiper-slide-active {
  opacity: 1;
}

.lc300-exterior-feat-image-card {
  position: relative;
  height: 100%;
  width: 100%;
  background: var(--light-gray);
  clip-path: polygon(0 0, 92% 0%, 100% 12%, 100% 100%, 8% 100%, 0% 88%);
}

.lc300-exterior-feat-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.lc300-exterior-feat-image-box .swiper-wrapper {
  justify-content: flex-start;
  margin-left: 0;
  padding-left: 0;
}

.lc300-exterior-feat-image-box .swiper-slide {
  margin: 0;
  flex-shrink: 0;
}

/* Interior Section */

.lc300-section-interior {
  padding: 64px 0px;
}

.lc300-section-interior-feat {
  position: relative;
  height: 520px;
  margin: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.lc300-interior-feat-desc-box {
  position: relative;
  width: 100%;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
  pointer-events: none;
}

.lc300-interior-feat-desc-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #ebebeb00 0%,
    #ebebeb00 60%,
    #ebebeb 70%,
    #ebebeb 100%
  );
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.lc300-exterior-feat-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.int-desc-wrapper {
  padding: 16px;
}

.int-desc-wrapper h4 {
  margin: 0px;
  letter-spacing: -0.1rem;
}

.int-desc-wrapper p {
  font-family: ToyotaType-Book;
  font-size: 18px;
  margin-top: 16px;
  letter-spacing: 0rem;
}

.lc300-interior-feat-image-box {
  grid-area: 1/2/2/4;
  position: relative;
  width: 100%;
}

.lc300-exterior-feat-image-box .swiper-wrapper {
  justify-content: flex-start;
  margin-left: 0;
  padding-left: 0;
}

.lc300-interior-feat-image-box .swiper-slide {
  width: 900px !important;
  opacity: 0.9;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lc300-interior-feat-image-box .swiper-slide-active {
  opacity: 1;
}

.lc300-interior-feat-image-card {
  position: relative;
  height: 100%;
  width: 100%;
  background: var(--light-gray);
  clip-path: polygon(0 0, 92% 0%, 100% 12%, 100% 100%, 8% 100%, 0% 88%);
}

.lc300-interior-feat-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.lc300-interior-banner {
  background-image: url(../../images/showroom/lc300/lc300-banner-02-desktop-1920x750.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(5% 0%, 100% 0%, 100% 90%, 95% 100%, 0% 100%, 0% 10%);
}

#lc300-interior {
  padding: 5vh 0px;
}

.lc300-interior-banner .lc300-title-content-section {
  z-index: 2;
  position: absolute;
  top: unset;
  bottom: 0;
}

.lc300-interior-feat-image-box .swiper-slide {
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lc300-interior-feat-image-box .swiper-slide-active {
  opacity: 1;
}

#lc300-colours {
  padding-top: 5vh;
}

/* GRS */

#lc300-grs {
  padding-top: 5vh;
}

.grs-banner {
  position: relative;
  height: 750px;
  overflow: hidden;
}

.grs-parallax-img {
  filter: contrast(1.4);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grs-div {
  position: absolute;
  z-index: 2;
  /* background-color: #3c7ba56b; */
  opacity: 1;
  height: 100%;
  width: 100%;
  background-image: url(/images/showroom/lc300/grs-cliping.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: darken;
  transform: scale(1.1);
}

.lc300-grs-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0px;
}

.lc300-grs-section .lc300-grs-topo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.lc300-grs-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 480px;
  padding: 16px;
  gap: 16px;
}

.lc300-grs-features:nth-child(2) {
  margin-top: 48px;
}

.lc300-grs-feature-points {
  display: grid;
  flex-direction: column;
  gap: 16px;
}

.lc300-grs-feature-point {
  background-image: linear-gradient(90deg, #222222 0%, #161616 100%);
  clip-path: polygon(92% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* border-left: 4px solid var(--primary-color); */
}

.lc300-grs-feature-point .lc300-grs-feature-point-bar {
  width: 4px;
  height: 110%;
  background-color: var(--primary-color);
  position: absolute;
  top: 0px;
  left: 0px;
}

.lc300-grs-feature-point h4 {
  color: white;
}

.lc300-grs-feature-point p {
  color: #c4c4c4;
  font-size: 21px;
  line-height: 32px;
}
.lc300-grs-feature-image-1 {
  overflow: hidden;
}
.lc300-grs-feature-image-1 img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 92% 0%, 100% 12%, 100% 100%, 8% 100%, 0% 88%);
  object-position: center;
  object-fit: cover;
}

/* PERFORMANCE SECTION */

#lc300-performance {
  padding-top: 5vh 0px;
}

.lc300-performance-banner {
  background-image: url(../../images/showroom/lc300/lc300-banner-03-desktop-1920x750.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 95% 100%, 0% 100%, 0% 0%);
}

.lc300-performance-banner .lc300-title-content-section {
  position: absolute;
  z-index: 2;
  top: unset;
  bottom: 0px;
}

.lc300-section-performance {
  padding: 48px 0px;
}

.lc300-section-performance-feat {
  position: relative;
  height: 520px;
  margin: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.lc300-performance-feat-desc-box {
  position: relative;
  width: 100%;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
  pointer-events: all;
}

.lc300-performance-feat-desc-box::after {
  content: "";
  width: 100%;
  height: 70%;
  background: linear-gradient(
    180deg,
    #ebebeb00 0%,
    #ebebeb00 20%,
    #ebebeb 36%,
    #ebebeb 100%
  );
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.perf-desc-wrapper {
  padding: 16px;
}

.perf-desc-wrapper h4 {
  margin: 0px;
  letter-spacing: -0.1rem;
}

.perf-desc-wrapper p {
  font-family: ToyotaType-Book;
  font-size: 18px;
  margin-top: 16px;
  letter-spacing: 0rem;
}

.lc300-performance-feat-image-box {
  grid-area: 1/2/2/4;
  position: relative;
  width: 100%;
}

.lc300-performance-feat-image-box .swiper-slide {
  width: 900px !important;
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lc300-performance-feat-image-box .swiper-slide-active {
  opacity: 1;
}

.lc300-performance-feat-image-card {
  position: relative;
  height: 100%;
  width: 100%;
  background: var(--light-gray);
  clip-path: polygon(0 0, 92% 0%, 100% 12%, 100% 100%, 8% 100%, 0% 88%);
}

.lc300-performance-feat-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

/* Suspension Section */

.lc300-section-suspension {
  padding: 48px 0px;
}

.lc300-section-suspension-feat {
  position: relative;
  height: 520px;
  margin: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.lc300-suspension-feat-desc-box {
  position: relative;
  width: 100%;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
  pointer-events: none;
}

.lc300-suspension-feat-desc-box::after {
  content: "";
  width: 100%;
  height: 80%;
  background: linear-gradient(
    180deg,
    #ebebeb00 0%,
    #ebebeb00 20%,
    #ebebeb 36%,
    #ebebeb 100%
  );
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.susp-desc-wrapper {
  padding: 16px;
}

.susp-desc-wrapper h4 {
  margin: 0px;
  letter-spacing: -0.1rem;
}

.susp-desc-wrapper p {
  font-family: ToyotaType-Book;
  font-size: 18px;
  margin-top: 16px;
  letter-spacing: 0rem;
}

.lc300-suspension-feat-image-box {
  grid-area: 1/2/2/4;
  position: relative;
  width: 100%;
}

.lc300-suspension-feat-image-box .swiper-slide {
  width: 900px !important;
  opacity: 0.6;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lc300-suspension-feat-image-box .swiper-slide-active {
  opacity: 1;
}

.lc300-suspension-feat-image-card {
  position: relative;
  height: 100%;
  width: 100%;
  background: var(--light-gray);
  clip-path: polygon(0 0, 92% 0%, 100% 12%, 100% 100%, 8% 100%, 0% 88%);
}

.lc300-suspension-feat-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

/* Inner Swiper for Suspension Images */
.inner-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.inner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

/* Safety  */

#lc300-safety {
  padding-top: 5vh;
}

#lc300-tech {
  /* padding-top: 5vh; */
}

.lc300-airbags-banner .lc300-title-content-section {
  position: absolute;
  top: unset;
  bottom: 0;
  z-index: 5;
}

.lc300-airbags-banner {
  background-image: url(../../images/showroom/lc300/lc300-airbags-desktop-1920x750.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 10%);
}

.lc300-adas-banner {
  background-image: url(../../images/showroom/lc300/lc300-ADAS-desktop-1200x750.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lc300-adas-banner .lc300-title-content {
  position: absolute;
  z-index: 2;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  bottom: unset;
  top: 0px;
}

.lc300-adas-banner .lc300-overlay-2 {
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.lc300-adas-wrapper-desktop {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  padding: 0px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.lc300-adas-wrapper-mobile {
  display: none;
}

.lc300-adas-point-desktop {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 16px;
  border-left: 1px solid #ffffff41;
}

.lc300-adas-point-desktop h5 {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.1rem;
}

.lc300-adas-point-desktop h6 {
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  display: block;
}

.lc300-adas-point-desktop p {
  color: #dbdbdb;
  font-family: ToyotaType-Book;
  font-size: 16px;
  line-height: 24px;
}

.lc300-adas-point-desktop .lc300-adas-point-para {
  margin-top: 8px;
  height: 72px;
}

#lc300-dimentions {
  padding-top: 5vh;
}

.lc300-dimensions-section {
  margin-top: 64px;
}

.lc300-dimension-wrapper {
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 36px;
}

.lc300-dimension-wrapper img {
  width: 80%;
  object-fit: contain;
  object-position: right;
  flex-grow: 1;
}

.lc300-dimension-box {
  width: 280px;
  min-width: 280px;
  padding: 20px 16px;
  color: var(--light-black);
  /* height: px; */
  font-size: 32px;
  line-height: 92%;
  background-color: #e2e2e2;
  clip-path: polygon(0 0, 75% 0, 100% 50%, 100% 100%, 0 100%);
}

.lc300-dimension-image-desktop {
  display: block;
}

.lc300-dimension-image-mobile {
  display: none;
}

/* Specifications  */

#lc300-specs {
  padding-top: 5vh;
}

.lc300-specification-sheet {
  padding: 0px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lc300-spec-sheet-heading {
  display: grid;
  grid-template-columns: 32vw 1fr 1fr;
  padding: 0 32px;
  align-items: center;
  height: 72px;
  width: 100%;
  background-color: var(--light-gray);
  clip-path: polygon(0 0, 98% 0, 100% 50%, 100% 100%, 2% 100%, 0 60%);
}

.lc300-spec-sheet-heading h5 {
  text-align: center;
}

.lc300-spec-subheader {
  grid-template-columns: 1fr;
  cursor: pointer;
}

.lc300-spec-sheet {
  height: 72px;
  overflow: hidden;
  /* pointer-events: none; */
  transition: height 0.3s ease-in-out;
}

.lc300-spec-sheet.active {
  height: auto;
}

.lc300-spec-sheet.active .lc300-spec-subheader {
  background-color: #333333;
}

.lc300-spec-sheet.active .lc300-spec-subheader h5 {
  color: #fff;
}

.lc300-spec-sheet-text {
  display: grid;
  grid-template-columns: 32vw 1fr 1fr;
  padding: 12px 32px;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #d4d4d4;
}

.lc300-spec-text:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.lc300-spec-sheet-text p {
  text-align: center;
  text-transform: capitalize;
}

.lc300-spec-sheet-text .lc300-spec-text:first-child {
  border-right: 1px solid #d4d4d4;
}

.single-col {
  grid-template-columns: 32vw 1fr;
}

.merged-spec {
  position: relative;
  padding-bottom: 40px;
}

.merged-spec .spec {
  position: absolute;
  bottom: 4px;
  right: 28%;
}
.merged-spec .lc300-spec-text {
  border: none !important;
}

.lc300-specification-section {
  margin: 60px 0px;
}

.lc300-button-wrapper {
  display: flex;
  justify-content: flex-end;
}

/* Gallery Section */

#lc300-gallery {
  padding-top: 5vh;
}

.lc300-gallery-section {
  /* background: var(--black); */
  padding: 16px;
  position: relative;
  height: auto;
  overflow: hidden;
  padding: 0px 16px 48px;
  /* margin-top: 60px; */
}

.lc300-gallery-heading {
  color: #fff;
  margin: 0px;
  padding: 24px 0px;
  text-align: center;
}

.lc300-gallery-section .lc300-grs-topo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.lc300-gallery-box {
  position: relative;
}

.filter-switch {
  border: 1px solid #7d7d7d;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 0px;
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 50px;
  width: 300px;
  overflow: hidden;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.filter-switch input {
  display: none;
}
.filter-switch label {
  flex: 1;
  text-align: center;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s;
  font-weight: 500;
  font-size: 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.filter-switch .background {
  position: absolute;
  width: 49%;
  height: 40px;
  background-color: var(--light-gray);
  top: 4px;
  left: 4px;
  border-radius: 0px;
  transition: left 0.3s ease-in-out;
}
#option2:checked ~ .background {
  left: 50%;
}
#option1:checked + label[for="option1"] {
  color: #212121;
}
#option2:checked + label[for="option2"] {
  color: #212121;
}
#option1:not(:checked) + label[for="option1"],
#option2:not(:checked) + label[for="option2"] {
  color: #fff;
}

.swiper.gallerySwiper {
  width: 100%;
  height: 650px;
  clip-path: polygon(5% 0%, 100% 0%, 100% 90%, 95% 100%, 0% 100%, 0% 10%);
}

.swiper-slide.gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallerySwiper .swiper-button-next {
  background-color: #f1f1f1;
  color: #161616;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.gallerySwiper .swiper-button-prev {
  background-color: #f1f1f1;
  color: #161616;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.gallerySwiper .swiper-button-next:after {
  font-size: 16px;
}

.gallerySwiper .swiper-button-prev:after {
  font-size: 16px;
}

/* FORM SECTION */

.lc300-test-drive-overlay {
  position: absolute;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 30%,
    rgba(0, 0, 0, 0.9) 70%,
    rgba(0, 0, 0, 1) 100%
  );
  width: 100%;
  height: 100%;
}

.lc300-test-drive-wrapper {
  position: relative;
  height: 700px;
  background-image: url(/images/showroom/lc300/kingdon-on-wheels-1920x960.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lc300-test-drive-content-wrapper {
  position: absolute;
  right: 5%;
  top: 10%;
  /* transform: translateX(50%); */
  z-index: 8;
}

.lc300-test-drive-content-wrapper h2 {
  color: white;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
}

.form-style {
  height: 48px;
  border: 1px solid #4d4d4d;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  color: white;
  /* margin-right: 16px; */
  width: 100%;
}

.form-style::placeholder {
  color: gray;
}

.lc300-form-group {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.lc300-lc300-custom_checkbox {
  color: #ababab;
  font-size: 14px;
}

.lc300-custom_checkbox label {
  font-weight: 300;
}

.form-custom_checkbox label {
  color: #d4d4d4;
  font-weight: 200;
}

/* Colours  */
.lc300-visualiser {
  margin-top: 20px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.lc300-visualiser-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0%, 100% 12%, 100% 100%, 8% 100%, 0% 88%);
  position: relative;
  border: 2px solid #e7e7e7;
  grid-area: 1/2/2/4;
}

.lc300-visualiser-img::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #212121;
  top: 0;
  left: 0;
  z-index: -1;
}
.lc300-visualiser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lc300-visualiser-sidebox {
  position: relative;
  grid-area: 1/1/2/2;
}

.lc300-visualiser-sidebox h4 {
  margin-bottom: 8px;
}

.visualiser-switch {
  border: 1px solid #c4c4c4;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 0px;
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  width: 240px;
  overflow: hidden;
  border-radius: 50px;
}
.visualiser-switch input {
  display: none;
}
.visualiser-switch .option {
  flex: 1;
  text-align: center;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s;
  font-weight: 500;
  font-size: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.visualiser-switch label img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.visualiser-switch .variant-background {
  position: absolute;
  width: 49%;
  height: 40px;
  background-color: var(--light-black);
  border-radius: 18px;
  top: 4px;
  left: 4px;
  transition: left 0.3s ease-in-out;
}

.visualiser-switch .view-background {
  position: absolute;
  width: 49%;
  height: 40px;
  background-color: var(--light-black);
  border-radius: 18px;
  top: 4px;
  transition: left 0.3s ease-in-out;
}

/* VARIANT SWITCH */
#variant-zx:checked ~ .variant-background {
  left: 4px;
}

#variant-zx:checked + label[for="variant-zx"] {
  color: var(--light-gray);
}

/* Active state for GRS */
#variant-grs:checked ~ .variant-background {
  left: 50%;
}

#variant-grs:checked + label {
  color: var(--light-gray);
}

/* VIEW SWITCH */
#view-exterior:checked ~ .view-background {
  left: 4px;
}

#view-interior:checked ~ .view-background {
  left: 50%;
}

#view-exterior:checked + label[for="view-exterior"],
#view-interior:checked + label[for="view-interior"] {
  color: #ffffff;
}

#view-exterior:checked + label[for="view-exterior"] img,
#view-interior:checked + label[for="view-interior"] img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(100%) saturate(0%)
    hue-rotate(193deg) brightness(106%) contrast(106%);
}

.colour-switch {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.colour-switch input {
  display: none;
}

.colour-label {
  cursor: pointer;
  background-color: #dadada;
  padding: 24px 18px;
  /* clip-path: polygon(0 0, 92% 0%, 100% 40%, 100% 100%, 0% 100%, 0% 100%); */
  transition: all 0.3s ease-out;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}

.colour-label span {
  content: "✔️";
  width: 48px;
  height: 48px;
  padding: 0px 4px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #ffffff;
  position: absolute;
  z-index: 8;
  top: -1px;
  right: -1px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #ffffff;
}

.colour-label:hover {
  /* padding: 24px 24px; */
}
#color-b + label[for="color-b"] {
  color: #ffffff;
}

#lc300-int-b + label[for="lc300-int-b"] {
  color: #ffffff;
}
#lc300-int-nb + label[for="lc300-int-nb"] {
  color: #ffffff;
  background-size: cover;
}

#lc300-int-b + label[for="lc300-int-b"] {
  color: #ffffff;
  background-size: cover;
}

#lc300-int-rb + label[for="lc300-int-rb"] {
  color: #ffffff;
  background-size: cover;
}

#color-b:checked + label[for="color-b"] span {
  color: #000;
}

#color-w:checked + label[for="color-w"] span {
  color: #000;
}

#lc300-int-nb:checked + label[for="lc300-int-nb"] span {
  color: #000;
}

#lc300-int-b:checked + label[for="lc300-int-b"] span {
  color: #000;
}

#lc300-int-rb:checked + label[for="lc300-int-rb"] span {
  color: #000;
}

.lc300-visualiser-btn-wrapper {
  position: absolute;
  bottom: 24px;
  display: flex;
  gap: 8px;
  z-index: 5;
  right: 30%;
  transform: translateX(50%);
  bottom: 30px;
}

.lc300-disclaimer-note {
  font-size: 10px !important;
  line-height: 14px !important;
  margin-top: 24px !important;
}
/* MEDIA QUERIES */

@media screen and (max-width: 1440px) {
  .lc300-page h1 {
    font-family: ToyotaType-Regular;
    font-size: 52px;
    line-height: 60px;
    margin: 0px;
    letter-spacing: -0.24rem;
  }

  .lc300-page h2 {
    font-family: ToyotaType-Regular;
    font-size: 42px;
    line-height: 48px;
    margin: 0px;
    letter-spacing: -0.2rem;
  }

  .lc300-page h3 {
    font-family: ToyotaType-Regular;
    font-size: 32px;
    line-height: 40px;
    margin: 0px;
    letter-spacing: -0.14rem;
  }

  .lc300-page h4 {
    font-family: ToyotaType-Regular;
    font-size: 24px;
    line-height: 30px;
    margin: 0px;
    letter-spacing: -0.12rem;
  }

  .lc300-page h5 {
    font-family: ToyotaType-Regular;
    font-size: 20px;
    line-height: 28px;
    margin: 0px;
    letter-spacing: 0px;
    letter-spacing: -0.12rem;
  }

  .lc300-page h6 {
    font-family: ToyotaType-Regular;
    font-size: 16px;
    line-height: 24px;
    margin: 0px;
    letter-spacing: 0px;
  }

  /* sticky  */

  .lc300-stickynav-items-container {
    height: 52px;
  }

  .lc300-sticky-nav-links-text {
    font-size: 14px !important;
    line-height: 16px !important;
  }

  .lc300-stickynav-items-container a {
    min-width: 80px;
  }

  /* Lagacy SECTION  */

  .lc300-page p {
    font-family: ToyotaType-Book;
    font-size: 18px;
    line-height: 24px;
    margin: 0px;
    letter-spacing: -0.04rem;
  }

  .lc300-title-content h3 {
    letter-spacing: -0.16rem;
    line-height: 92%;
  }

  .lc300-title-content p {
    width: auto;
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 24px;
  }

  .lc300-section-banner {
    height: 500px;
  }

  /* EXTERIOR SECTION */
  .lc300-section-exterior-feat {
    height: 480px;
  }

  .lc300-exterior-feat-image-box .swiper-slide {
    width: 600px !important;
  }

  .ext-desc-wrapper p {
    font-family: ToyotaType-Book;
    font-size: 18px;
    margin-top: 16px;
    letter-spacing: 0rem;
  }

  .lc300-exterior-feat-desc-box::after {
    background: linear-gradient(
      180deg,
      #ebebeb00 0%,
      #ebebeb00 20%,
      #ebebeb 36%,
      #ebebeb 100%
    );
  }

  .ext-desc-wrapper p {
    color: var(--dark-gray);
    font-size: 18px;
    line-height: 24px;
    margin-top: 12px;
  }

  .lc300-section-interior-feat {
    height: 480px;
  }

  .lc300-interior-feat-image-box .swiper-slide {
    width: 600px !important;
  }

  .int-desc-wrapper p {
    color: var(--dark-gray);
    font-size: 18px;
    line-height: 24px;
    margin-top: 12px;
  }

  .grs-banner {
    height: 500px;
    transform: scale(1);
  }

  .lc300-grs-features {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 400px;
  }

  /* Performance Section */

  .lc300-section-performance-feat {
    height: 480px;
  }

  .lc300-performance-feat-desc-box::after {
    background: linear-gradient(
      180deg,
      #ebebeb00 0%,
      #ebebeb00 30%,
      #ebebeb 36%,
      #ebebeb 100%
    );
  }

  .lc300-performance-feat-image-box .swiper-slide {
    width: 600px !important;
  }

  .lc300-section-suspension-feat {
    height: 480px;
  }

  .lc300-suspension-feat-image-box .swiper-slide {
    width: 600px !important;
  }

  .swiper.gallerySwiper {
    height: 500px;
  }

  .lc300-test-drive-content-wrapper h2 {
    margin-bottom: 12px;
  }

  /* Visuliser  */
  .lc300-visualiser-img {
    aspect-ratio: unset;
    height: 64vh;
  }
  .lc300-visualiser-sidebox h4 {
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
  .lc300-page h1 {
    font-family: ToyotaType-Regular;
    font-size: 48px;
    line-height: 52px;
    margin: 0px;
    letter-spacing: -0.2rem;
  }

  .lc300-page h2 {
    font-family: ToyotaType-Regular;
    font-size: 36px;
    line-height: 42px;
    margin: 0px;
    letter-spacing: -0.18rem;
  }

  .lc300-page h3 {
    font-family: ToyotaType-Regular;
    font-size: 28px;
    line-height: 32px;
    margin: 0px;
    letter-spacing: -0.12rem;
  }

  .lc300-page h4 {
    font-family: ToyotaType-Regular;
    font-size: 24px;
    line-height: 30px;
    margin: 0px;
    letter-spacing: -0.1rem;
  }

  .lc300-page h5 {
    font-family: ToyotaType-Regular;
    font-size: 20px;
    line-height: 28px;
    margin: 0px;
    letter-spacing: 0px;
    letter-spacing: -0.08rem;
  }

  .lc300-page h6 {
    font-family: ToyotaType-Regular;
    font-size: 16px;
    line-height: 24px;
    margin: 0px;
    letter-spacing: 0px;
  }

  .lc300-page p {
    font-family: ToyotaType-Regular;
    font-size: 18px;
    line-height: 24px;
    margin: 0px;
    letter-spacing: 0px;
    letter-spacing: -0.04rem;
  }

  /* HERO SECTION  */

  .lc300-hero-section {
    background-image: url(../../images/showroom/lc300/lc300-hero-section-image-tablet-900x1080.webp);
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .lc300-legacy-section {
    display: flex;
    justify-content: flex-start;
  }

  .lc300-title-content {
    display: grid;
    grid-template-columns: repeat(3, calc(98% / 3));
    height: fit-content;
    gap: 8px;
  }

  .lc300-title-content h3 {
    letter-spacing: -0.16rem;
    line-height: 92%;
  }

  .lc300-title-content p {
    font-size: 14px;
    line-height: 21px;
  }

  .lc300-exterior-banner {
    background-image: url(../../images/showroom/lc300/lc300-banner-01-tablet-900x750.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .lc300-section-banner {
    height: 480px;
  }

  .lc300-section-exterior-feat {
    height: 420px;
  }

  .ext-desc-wrapper p {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }

  /* navigation  */
  .lc300-sticky-navbar {
    top: 6em;
  }

  .lc300-sticky-mobile-navbar {
    display: none;
  }

  .lc300-sticky-nav-links-text {
    font-size: 12px !important;
    line-height: 0px !important;
  }

  .lc300-stickynav-items-container a {
    min-width: 60px;
  }

  /* Interior Section */

  .lc300-interior-banner {
    background-image: url(../../images/showroom/lc300/lc300-banner-02-tablet-900x750.webp);
  }

  .lc300-section-interior-feat {
    height: 480px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }

  .lc300-interior-feat-image-box .swiper-slide {
    width: 600px !important;
  }

  .int-desc-wrapper p {
    font-size: 16px;
    line-height: 22px;
  }

  .lc300-section-interior-feat {
    height: 420px;
  }

  .grs-banner {
    height: 400px;
  }

  .lc300-grs-features {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 360px;
  }

  .lc300-grs-feature-point {
    padding: 10px;
  }

  .lc300-grs-feature-point p {
    font-size: 20px;
    line-height: 24px;
  }

  .lc300-grs-feature-point p {
    font-size: 16px;
    line-height: 24px;
  }

  /* Performance Section */

  .lc300-section-performance-feat {
    height: 480px;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
  }

  .lc300-performance-feat-image-box .swiper-slide {
    width: 600px !important;
  }

  .perf-desc-wrapper p {
    font-size: 16px;
    line-height: 22px;
  }

  .lc300-adas-point-desktop {
    padding-left: 8px;
    gap: 8px;
  }

  .lc300-adas-point-desktop h5 {
    font-size: 20px;
    line-height: 24px;
  }

  .lc300-adas-point-desktop h6 {
    font-size: 16px;
    line-height: 20px;
  }

  .lc300-adas-point-desktop p {
    font-size: 16px;
    line-height: 20px;
  }

  .lc300-dimension-box {
    width: 160px;
    min-width: 16px;
    padding: 16px 10px;
    color: var(--light-black);
    font-size: 24px;
    line-height: 92%;
    background-color: #e2e2e2;
    clip-path: polygon(0 0, 75% 0, 100% 50%, 100% 100%, 0 100%);
  }

  .swiper.gallerySwiper {
    width: 100%;
    height: 500px;
    clip-path: polygon(5% 0%, 100% 0%, 100% 90%, 95% 100%, 0% 100%, 0% 10%);
  }

  /* popup form  */

  .lc300-form-popup-form-wrapper {
    width: 700px;
    /* height: 600px; */
  }

  .lc300-enquiry-form-group {
    margin-bottom: 14px;
    font-size: 12px;
    gap: 12px;
  }

  .lc300-enquiry-form-style {
    height: 36px;
    padding: 4px;
  }

  .lc300-form-header h2 {
    font-size: 24px;
  }

  .lc300-visualiser-img {
    height: 50vh;
  }

  .lc300-test-drive-wrapper {
    height: 500px;
  }

  .lc300-gallery-section {
    height: auto;
  }

  .merged-spec .spec {
    right: 25%;
  }
}

@media screen and (max-width: 850px) {
  .lc300-sticky-mobile-navbar {
    display: none;
  }

  .lc300-grs-features {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr;
    height: auto;
  }
  .lc300-grs-feature-image-1 {
    grid-area: 1/1/2/2;
  }

  .lc300-grs-feature-point {
    padding: 10px 16px;
  }

  .lc300-form-popup-form-wrapper {
    width: 600px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 30vh 1fr;
  }

  .lc300-enquiry-form-group {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .lc300-enquiry-form-style {
    height: 36px;
    padding: 4px;
  }

  .lc300-form-popup-img img {
    /* height: 200px; */
    object-position: center -50vh;
  }

  .lc300-form-header button {
    width: 32px;
    height: 32px;
  }

  .lc300-visualiser {
    display: flex;
    flex-direction: column-reverse;
  }

  .lc300-visualiser-img {
    grid-area: 1/ 1 / 2 / 2;
  }

  .lc300-visualiser-sidebox {
    grid-area: 2/ 1 / 3 / 2;
  }

  .colour-switch {
    flex-direction: row;
    justify-content: space-between;
  }

  .colour-label {
    width: 100%;
  }

  .lc300-visualiser-sidebox h4 {
    margin-bottom: 8px;
  }

  .lc300-visualiser-btn-wrapper {
    position: static;
    bottom: unset;
    right: unset;
    transform: unset;
    justify-content: center;
  }

  .lc300-performance-banner {
    background-image: url(../../images/showroom/lc300/lc300-banner-03-tablet-900x750.webp);
  }

  .lc300-test-drive-content-wrapper {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
  }

  .lc300-test-drive-content-wrapper h2 {
    margin-bottom: 16px;
  }

  .form-style {
    background: rgba(0, 0, 0, 0.8);
  }

  .lc300-test-drive-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.8) 30%,
      rgba(0, 0, 0, 0.9) 70%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .lc300-adas-point-desktop .lc300-adas-point-para {
    height: 100px !important;
  }

  .lc300-adas-point-para p {
    font-size: 14px;
  }

  .merged-spec {
    position: relative;
    padding-bottom: 40px;
  }
  
  .merged-spec .spec {
    position: absolute;
    bottom: 4px;
    right: 20%;
  }
  .merged-spec .lc300-spec-text {
    border-right: none !important;
  }
}

@media (max-width: 640px) {
  .lc300-page h1 {
    font-family: ToyotaType-Regular;
    font-size: 48px;
    line-height: 56px;
    margin: 0px;
    letter-spacing: -0.12rem;
    text-align: center;
  }

  .lc300-page h2 {
    font-family: ToyotaType-Regular;
    font-size: 32px;
    line-height: 40px;
    margin: 0px;
    letter-spacing: -0.1rem;
  }

  .lc300-page h3 {
    font-family: ToyotaType-Regular;
    font-size: 32px;
    line-height: 36px;
    margin: 0px;
    letter-spacing: -0.08rem;
  }

  .lc300-page h4 {
    font-family: ToyotaType-Regular;
    font-size: 24px;
    line-height: 28px;
    margin: 0px;
    letter-spacing: -0.05rem;
  }

  .lc300-page h5 {
    font-family: ToyotaType-Regular;
    font-size: 18px;
    line-height: 24px;
    margin: 0px;
    letter-spacing: 0px;
    letter-spacing: -0rem;
  }

  .lc300-page h6 {
    font-family: ToyotaType-Regular;
    font-size: 16px;
    line-height: 24px;
    margin: 0px;
    letter-spacing: 0px;
  }

  .lc300-page p {
    font-family: ToyotaType-Regular;
    font-size: 14px;
    line-height: 24px;
    margin: 0px;
    letter-spacing: 0px;
    letter-spacing: -0.01rem;
  }

  /* HERO SECTION  */

  .lc300-hero-section {
    background-image: url(../../images/showroom/lc300/lc300-hero-section-image-mobile-600x1080.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 86vh;
  }

  .lc300-hero-content {
    width: 100%;
    gap: 24px;
  }

  .lc300-hero-btn-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .lc300-sticky-navbar {
    /* position: fixed; */
    position: sticky;
    top: 60px;
    width: 100%;
  }

  .lc300-sticky-mobile-navbar {
    display: flex;
    justify-content: space-between;

    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #000;
    color: white;
    transition: all 0.3s ease-in-out;
  }

  .lc300-sticky-mobile-navbar.fixed {
    position: fixed;
    top: 60px; /* Offset from the top */
    width: 100%;
  }

  .lc300-stickynav-items-container.fixed {
    position: fixed;
    top: 80px; /* Offset from the top */
    width: 100%;
  }

  .lc300-sticky-mobile-navbar .content {
    background-color: var(--primary-color);
    width: 50%;
    clip-path: polygon(85% 0, 100% 50%, 100% 100%, 0 100%, 0 0);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.04rem;
  }

  .lc300-sticky-mobile-navbar .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lc300-sticky-navbar.active .icon svg {
    transition: transform 0.3s ease-in-out;
  }

  .lc300-sticky-navbar.active .icon svg {
    transform: rotate(-180deg);
  }

  .lc300-stickynav-items-container {
    flex-direction: column;
    height: 0px;
    overflow: hidden;
    position: absolute;
    top: 48px;
    width: 100%;
    transition: all 0.3s ease-out;
  }

  .lc300-sticky-navbar.active .lc300-stickynav-items-container {
    height: 528px;
  }

  .lc300-stickynav-items-container a {
    width: auto;
    height: 48px;
    font-size: 14px;
    line-height: 16px;
    justify-content: flex-start;
    padding: 16px;
  }

  .lc300-stickynav-items-container p {
    pointer-events: none;
    font-size: 16px !important;
  }

  .lc300-sticky-nav-link-active {
    clip-path: polygon(92% 0, 100% 50%, 100% 100%, 0 100%, 0 0);
  }

  /* LEGACY SECTION  */

  #lc300-legacy {
    padding: 10vh 0;
  }

  .lc300-legacy-section {
    /* padding: 32px 8px; */
  }

  .lc300-title-content {
    display: flex;
    flex-direction: column;
    padding: 16px;
  }

  .lc300-legacy-card {
    padding: 10px;
  }

  .lc300-legacy-card img {
    width: 320px !important;
  }

  .lc300-exterior-banner {
    background-image: url(../../images/showroom/lc300/lc300-banner-01-mobile-600x750.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
  }

  .lc300-section-banner {
    height: 520px;
    /* clip-path: polygon(0 0, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 100%); */
    /* padding: 16px 8px; */
  }

  .lc300-overlay-2 {
    background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }

  .lc300-title-content-section {
    height: 100%;
    justify-content: space-between;
    padding: 24px;
  }

  .legacy-pagination {
    width: auto !important ;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .legacy-bullet {
    position: relative !important;
    width: 40px !important;
    height: 60px !important;
    background: none !important;
    transition: all 0.2s ease-in;
  }

  .legacy-bullet.active {
    background: #000;
    color: #000000;
    font-size: 18px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 32px !important;
    height: 32px !important;
  }

  .swiper-button-next {
    position: absolute !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    right: 4px !important;
    top: 35% !important;
  }

  .swiper-button-prev {
    position: absolute !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    left: 4px !important;
    top: 35% !important;
  }

  /* Exterior Section */

  .lc300-section-exterior-feat {
    height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 8px;
  }

  .lc300-exterior-feat-image-box {
    grid-area: 1 / 1 / 2 / 2;
    transition: clip-path 0.3s ease;
  }

  .lc300-exterior-feat-image-card {
    width: 100%;
  }

  .lc300-exterior-feat-image-box .swiper-slide {
    width: 100% !important;
  }

  .lc300-exterior-feat-desc-box::after {
    background-image: linear-gradient(
      180deg,
      #ebebeb00 0%,
      #ebebeb00 36%,
      #ebebeb 48%,
      #ebebeb 100%
    );
  }

  .lc300-exterior-feat-desc-box {
    clip-path: polygon(0 0, 92% 0%, 100% 12%, 100% 100%, 8% 100%, 0% 88%);
    pointer-events: none;
  }

  .ext-desc-wrapper p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
  }

  /* Interior Section */
  .lc300-interior-banner {
    background-image: url(../../images/showroom/lc300/lc300-banner-02-mobile-600x750.webp);
    clip-path: polygon(0 0, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
  }

  .lc300-section-interior-feat {
    height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }

  .lc300-interior-feat-image-box {
    grid-area: 1 / 1 / 2 / 2;
    transition: clip-path 0.3s ease;
  }

  .lc300-interior-feat-image-box .swiper-slide {
    width: 100% !important;
  }

  .lc300-section-banner .lc300-overlay {
    background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }

  .int-desc-wrapper p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 14px;
  }

  .lc300-interior-feat-desc-box {
    pointer-events: none;
  }

  .feature-navigations {
    pointer-events: all;
  }

  .lc300-interior-feat-desc-box::after {
    background-image: linear-gradient(
      180deg,
      #ebebeb00 0%,
      #ebebeb00 50%,
      #ebebeb 80%,
      #ebebeb 100%
    );
  }

  .grs-banner {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    transform: scale(1);
  }

  .grs-div {
    background-image: url(../../images/showroom/lc300/grs-cliping-mobile.webp);
  }

  .lc300-grs-feature-point h4 {
    margin-bottom: 16px;
  }

  /* Performance Section */

  .lc300-performance-banner {
    background-image: url(../../images/showroom/lc300/lc300-banner-03-mobile-600x750.webp);
    clip-path: polygon(0 0, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 0%);
  }

  .lc300-section-performance-feat {
    height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }

  .lc300-performance-feat-desc-box::after {
    background-image: linear-gradient(
      180deg,
      #ebebeb00 0%,
      #ebebeb00 36%,
      #ebebeb 48%,
      #ebebeb 100%
    );
  }

  .lc300-performance-feat-desc-box {
    pointer-events: none;
  }

  .lc300-performance-feat-image-box .swiper-slide {
    width: 100% !important;
  }

  .perf-desc-wrapper p {
    font-size: 14px;
    line-height: 20px;
  }

  .lc300-performance-feat-image-box {
    grid-area: 1 / 1 / 2 / 2;
    transition: clip-path 0.3s ease;
  }

  .lc300-section-suspension-feat {
    height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }

  .lc300-suspension-feat-image-box {
    grid-area: 1 / 1 / 2 / 2;
    transition: clip-path 0.3s ease;
  }
  .lc300-suspension-feat-image-box .swiper-slide {
    width: 100% !important;
  }

  /* Safety  */
  .lc300-airbags-banner {
    background-image: url(../../images/showroom/lc300/lc300-airbags-mobile-1200x750.webp);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 10%);
  }

  .lc300-adas-wrapper-desktop {
    display: none;
  }

  .lc300-adas-banner {
    height: 380px !important;
    background-image: url(../../images/showroom/lc300/lc300-ADAS-desktop-1200x750.webp);
  }

  .lc300-adas-banner .lc300-overlay-2 {
    background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }

  .lc300-adas-banner .lc300-title-content-section h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .lc300-adas-banner .lc300-title-content-section p {
    font-size: 14px;
    line-height: 20px;
  }

  .lc300-adas-banner .lc300-title-content-section {
    top: unset;
    bottom: 16px;
    height: auto;
  }

  .lc300-adas-wrapper-mobile {
    display: block;
    padding: 16px;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .lc300-adas-point-mobile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 12px;
    background-color: var(--light-black);
    border-bottom: 1px solid #ffffff41;
  }

  .lc300-adas-point-mobile h5 {
    color: #fff;
  }

  .lc300-adas-point-mobile h6 {
    color: #fff;
  }

  .lc300-adas-point-mobile p {
    color: #dbdbdb;
  }

  .lc300-dimension-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .lc300-dimension-wrapper img {
    width: 100%;
    object-fit: contain;
    object-position: right;
  }

  .lc300-dimension-box {
    width: 100%;
    font-size: 24px;
    line-height: 92%;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 100% 100%, 0 100%);
  }

  .lc300-dimension-image-desktop {
    display: none;
  }

  .lc300-dimension-image-mobile {
    display: block;
  }

  /* Specification  */
  .lc300-specification-sheet {
    padding: 0px 8px;
  }

  .lc300-spec-sheet-heading {
    height: 52px;
    padding: 0 16px;
  }

  .lc300-spec-sheet-text {
    padding: 8px 8px;
  }

  .lc300-spec-text p {
    line-height: 20px;
  }

  .lc300-spec-header h4 {
    text-wrap: nowrap;
  }

  .swiper.gallerySwiper {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    clip-path: polygon(5% 0%, 100% 0%, 100% 90%, 95% 100%, 0% 100%, 0% 10%);
  }

  .swiper.gallerySwiper .swiper-button-prev {
    top: unset !important;
    bottom: 40% !important;
    left: 2% !important;
  }

  .swiper.gallerySwiper .swiper-button-next {
    top: unset !important;
    bottom: 40% !important;
    right: 2% !important;
  }

  .filter-switch label {
    font-size: 14px;
  }

  .filter-switch {
    width: 240px;
    bottom: 16px;
  }

  /* popup form  */

  .lc300-form-popup-form-wrapper {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 30vh 1fr;
    padding: 8px;
  }

  .lc300-form-popup-img img {
    object-position: center -20vh;
  }

  .lc300-form-popup-form {
    padding: 8px 0px 0px 0px;
  }

  .lc300-enquiry-form-group {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .lc300-enquiry-form-style {
    height: 36px;
    padding: 4px;
  }

  .lc300-form-header h2 {
    font-size: 24px;
  }

  .lc300-form-header button {
    width: 40px;
    height: 40px;
  }

  .lc300-form-popup-form-wrapper .lc300-enquiry-form-group label {
    font-size: 10px;
  }

  .lc300-enquiry-form-group {
    gap: 8px;
  }

  .colour-label {
    padding: 16px 8px;
    font-size: 16px;
  }

  .colour-label span {
    width: 36px;
    height: 36px;
  }

  .lc300-visualiser-sidebox h4 {
    margin-bottom: 8px;
  }

  .lc300-visualiser-img {
    aspect-ratio: 16/9;
    height: auto;
  }

  .lc300-visualiser-btn-wrapper .visualiser-switch .option img {
    display: none;
  }

  .lc300-test-drive-content-wrapper {
    padding: 16px;
    max-width: unset;
  }

  .lc300-test-drive-content-wrapper h2 {
    margin-bottom: 16px;
  }

  .lc300-spec-sheet {
    height: 52px;
  }

  .lc300-specification-section .lc300-button-wrapper {
    justify-content: flex-start;
  }

  .merged-spec {
    padding-bottom: 40px;  
  }
  
  .merged-spec .spec {
    right: 20%;
  }
}

@media screen and (max-width: 420px) {
  .lc300-legacy-card h3 {
    font-size: 24px;
  }

  .lc300-legacy-card p {
    font-size: 14px;
    line-height: 18px;
  }

  .lc300-legacy-card img {
    width: 240px;
  }
  .merged-spec .spec {
    right: 15%;
  }
}
 .test-form.thank-u,.test-form.thank-u-popup {
      height: 300px;
    }

    .thank-u img,.thank-u-popup img {
      width: 50px;
      display: flex;
      margin: 0 auto;
      margin-top: 20px;
    }

    .thank-u p {
      text-align: center;
      margin-top: 5px;
      /* font-size: 16px; */
      color: #fff !important;
      line-height: normal;
    }
  .thank-u-popup p {
      text-align: center;
      margin-top: 5px;
      font-size: 16px;
      color: #000000 !important;
      line-height: normal;
      font-family: inherit;
    }
    .thank-u,.thank-u-popup {
      padding: 15px;
    }

    .thank-u .gitem2 ,.thank-u-popup .gitem2 {
      line-height: 8px;
    }

    .thank-u .gitem3, .thank-u-popup .gitem3 {
      width: 55%;
      margin: 15px 22%;
      padding: 15px;
    }

    .thank-u .gitem3 p .thank-u-popup .gitem3 p {
      margin-top: 0;
    }

    .flex-column{
      flex-direction: column;
    }
    .lc300-test-drive-content-wrapper{
      width: 35%;
    }
    .flex-base{
      flex: 1;
    }
    .gap-0{
      gap: 0;
    }
    .lc-300-know-more{
      color: var(--primary-color) !important;
      cursor: pointer;
    }
    .lc-300-lab input{
          margin-right: 5px !important;
    }
    
.modal {
	z-index: 10000;
	right: -17px;
}

.modal-backdrop {
	z-index: 10000;
}

.modal-open {
	padding-right: 0 !important;
	overflow: auto;
}

.modal.in {
	padding-right: 0 !important;
}

.modal-content {
	float: left;
	width: 100%;
	margin-bottom: 40px;
	border-radius: 0;
	border: none;
	box-shadow: none;
}

.modal-content .close {
	opacity: 1;
	padding: 0;
	margin-top: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 99;
	text-shadow: none;
	background-color: transparent;
	width: 40px;
	height: 40px;
	border-radius: 0;
	text-align: right;
	box-shadow: none;
}

.modal-content .close:hover {
	background-color: transparent;
}

.modal-content .close img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
}

.modal-dialog {
	max-width: 600px;
	width: 90%;
	margin: 70px auto 0;
}

.modal-body {
	float: left;
	width: 100%;
	padding: 30px 30px 10px;
}

.modal-backdrop.in {
  opacity: 0.85;
}
.popup-lc-300-know-more{
  display: flex;
  align-items: start;
  gap: 3px;
}
@media only screen and (max-width:767px){
  .lc300-test-drive-content-wrapper {
    width: 100%;
}
.thank-u-mob{
  margin-top: 10px;
}
.lc300-test-drive-content-wrapper {
    width: 100%;
}
.modal-content {
    width: 94%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
    .lc300-test-drive-wrapper {
        height: 660px;
    }
        .lc300-test-drive-content-wrapper
 {
    width: 100%;
}
}
@media only screen and (min-width: 1024px) and (max-width: 1100px) {
       .lc300-test-drive-content-wrapper
 {
    width: 51% !important;
}
.lc300-test-drive-wrapper {
        height: 650px;
    }
  
}
@media only screen and (min-width: 912px) and (max-width: 1023px) {
    .lc300-test-drive-content-wrapper {
        width:59%
      }
}
@media screen and (max-width: 850px) {
    .lc300-form-popup-img img {
        /* height: 200px; */
        object-position: center -28vh !important;
    }
}
.modal-content .close {
    right: 5px !important;
    top: -9px !important;
}




@media screen and (max-width: 767px){
  .modal.in .modal-dialog {
    width: 96% !important;
    top: 0 !important;
}
.modal-body {
    padding: 14px 12px 10px;
}
}
.modal.in .modal-dialog{
      display: flex;
    align-items: center;
    justify-content: center;
    height: 100% !important;
    margin: 0 auto;
}
.lc300-enquiry-form-style {
    height: 33px;
    padding: 5px 10px;
    font-size: 13px;
}
.lc300-enquiry-form-group .form-error-msg{
    font-size: 9px;
}
@media only screen and (max-width: 640px){
  .lc300-overlay-form{
      overflow-x: hidden;
    overflow-y: auto;
}
}
@media only screen and (max-width: 370px){
.lc300-form-popup-form-wrapper {
    margin: 36px 0;
  }}
@media only screen and (min-width: 1024px) and (max-width: 1025px) and (height:600px){
  .lc300-enquiry-custom_checkbox label{
    font-size: 9px;
  }
  }

@media only screen and (min-width:343px) and  (max-width: 344px){
    .lc300-form-popup-img img {
        object-position: center -12vh  !important;
    }
}