:root {
  --lv2-color-black: #0a0a0a;
  --lv2-color-black-rgb: 10, 10, 10;
  --lv2-color-white: #ffffff;
  --lv2-color-white-rgb: 255, 255, 255;
  --lv2-color-grey-100: #f7f7f7;
  --lv2-color-grey-200: #e3e3e3;
  --lv2-color-grey-500: #8c8c8c;
  --lv2-color-grey-800: #333333;
  --lv2-color-red: #f44336;
  --lv2-font-book: 'Nobel Book', sans-serif;
  --lv2-font-regular: 'Nobel', sans-serif;
  --lv2-container-max-width: 1280px;
  --lv2-value-1: 4px;
  --lv2-value-2: 8px;
  --lv2-value-2dot5: 12px;
  --lv2-value-3: 14px;
  --lv2-value-4: 16px;
  --lv2-value-5: 20px;
  --lv2-value-6: 24px;
  --lv2-value-8: 32px;
  --lv2-value-10: 40px;
  --lv2-value-12: 48px;
  --lv2-value-16: 64px;
  --lv2-value-18: 72px;
  --lv2-value-20: 80px;
  --lv2-value-24: 96px;
  --lv2-value-25: 100px;
  --lv2-section-space: 140px;
  --lv2-menu-height: 100px;
  --lv2-gradient-text-1: linear-gradient(to bottom, #5c5c5c, #e3e3e3);
  --lv2-gradient-text-2: linear-gradient(to bottom, #acacac, #fafafa);
  --lv2-gradient-text-3: linear-gradient(to bottom, #ad7369, #ffcbc2);
  --lv2-gradient-text-4: linear-gradient(to bottom, #969696, #d4d4d4);
  --lv2-gradient-text-5: linear-gradient(to bottom, #908c87, #e4dddd);
  --lv2-gradient-text-6: linear-gradient(to bottom, #0D30A8, #CDD8FF);
  --lv2-gradient-text-7: linear-gradient(to bottom, #5D6738, #FAFFE8);
}

@media (max-width: 1024px) {
  :root {
    --lv2-section-space: 48px;
  }
}
@font-face {
  font-family: "Nobel";
  font-display: swap;
  src: local("Nobel Light"), url(../../../assets/fonts/resources/Nobel-Light.woff2) format("woff2");
  font-weight: 200;
}
@font-face {
  font-family: "Nobel Book";
  font-display: swap;
  src: local("Nobel Book"), url(../../../assets/fonts/resources/Nobel-Book.woff2) format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Nobel";
  font-display: swap;
  src: local("Nobel Regular"), url(../../../assets/fonts/resources/Nobel-Regular.woff2) format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Nobel";
  font-display: swap;
  src: local("Nobel Bold"), url(../../../assets/fonts/resources/Nobel-Bold.woff2) format("woff2");
  font-weight: 700;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Nobel", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--lv2-font-book);
  color: var(--lv2-color-black);
  -webkit-font-smoothing: antialiased;
  background: white;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

#lv2-main article section:not(:first-child) {
  margin-top: var(--lv2-section-space);
}
@media (max-width: 1280px) {
  #lv2-main article section:not(:first-child) {
    margin-top: var(--lv2-value-16);
  }
}

.mob_hide {
  display: none !important;
}

@media (min-width: 1024px) {
  .mob_hide {
    display: block !important;
  }
}
.desk_hide {
  display: block !important;
}

@media (max-width: 1024px) {
  .desk_hide {
    display: none !important;
  }
}
.show_on_sml_down {
  display: none !important;
}

@media (max-width: 599px) {
  .show_on_sml_down {
    display: block !important;
  }
}
.show_on_sml_up {
  display: none !important;
}

@media (min-width: 600px) {
  .show_on_sml_up {
    display: block !important;
  }
}
.show_on_med_down {
  display: none !important;
}

@media (max-width: 1023px) {
  .show_on_med_down {
    display: block !important;
  }
}
.show_on_med_up {
  display: none !important;
}

@media (min-width: 1024px) {
  .show_on_med_up {
    display: block !important;
  }
}
.lv2-container {
  max-width: var(--lv2-container-max-width);
  margin: 0 auto;
  width: 100%;
  padding-inline: var(--lv2-value-6);
}
.footer__wrp.lv2-container {
  padding: var(--lv2-value-4);
}

.lv2-container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .lv2-container-fluid {
    padding: 0 var(--lv2-value-6);
  }
}

.lv2-p-0 {
  padding: 0 !important;
}

.lv2-px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.lv2-p-12 {
  padding: var(--lv2-value-12);
}
@media (min-width: 1024px) {
  .lv2-p-12 {
    padding: var(--lv2-container-left);
  }
}

@media (max-width: 1024px) {
  .lv2-max-container-py-12 {
    padding-top: var(--lv2-value-12) !important;
    padding-bottom: var(--lv2-value-12) !important;
  }
  .lv2-max-container-pb-25 {
    padding-bottom: var(--lv2-value-25) !important;
  }
}
@media (min-width: 1024px) {
  .lv2-min-container-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.no-show-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.lv2-dark-bg {
  background-color: var(--lv2-color-black);
  color: var(--lv2-color-white);
}

.lv2-grey-bg {
  background-color: var(--lv2-color-grey-100);
}

.lv2-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .lv2-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.lv2-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .lv2-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lv2-no-gap {
  gap: 0;
}

.lv2-align-center {
  align-items: center;
}

.lv2-justify-center {
  justify-content: center;
}

.lv2-text-left {
  text-align: left;
}

.gap-6 {
  gap: 24px;
}

.gap-12 {
  gap: 48px;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-auto {
  margin-top: auto;
}

.mt-1 {
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .max-mt-1 {
    margin-top: 4px;
  }
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-8 {
  margin-bottom: 32px;
}

.lv2-eyebrow {
  font-family: var(--lv2-font-book);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--lv2-value-4);
}
@media (max-width: 1024px) {
  .lv2-eyebrow {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
  }
}

.lv2-section-title {
  font-family: var(--lv2-font-regular);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .lv2-section-title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.48px;
  }
}

.lv2-split-title {
  font-family: var(--lv2-font-regular);
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--lv2-value-6);
}
@media (max-width: 1024px) {
  .lv2-split-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
  }
}

.lv2-split-desc {
  font-family: var(--lv2-font-book);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.64px;
  color: rgba(10, 10, 10, 0.6);
}

.lv2-dark-bg .lv2-split-desc,
.lv2-dark-bg .lv2-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.lv2-huge-title {
  font-family: var(--lv2-font-regular);
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--lv2-value-12);
}
@media (max-width: 1024px) {
  .lv2-huge-title {
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }
}

.lv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 25px;
  font-family: var(--lv2-font-regular);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  min-height: 44px;
  cursor: pointer;
}
.lv2-btn svg {
  transition: transform 0.3s ease-in-out, fill 0.3s ease-in-out;
  transform: translateX(0);
}
.lv2-btn:hover svg, .lv2-btn:active svg {
  transform: translateX(4px);
}
.lv2-btn.lv2-btn-outline {
  border: 1px solid rgba(10, 10, 10, 0.8);
  color: rgba(10, 10, 10, 0.8);
  background-color: transparent;
}
.lv2-btn.lv2-btn-outline:hover, .lv2-btn.lv2-btn-outline:active {
  background-color: var(--lv2-color-black);
  color: var(--lv2-color-white);
  border-color: rgb(10, 10, 10);
}
.lv2-btn.lv2-btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--lv2-color-white);
}
.lv2-btn.lv2-btn-outline-white:hover, .lv2-btn.lv2-btn-outline-white:active {
  background-color: var(--lv2-color-white);
  color: var(--lv2-color-black);
}
.lv2-btn.lv2-btn-outline-white:hover svg, .lv2-btn.lv2-btn-outline-white:active svg {
  fill: var(--lv2-color-black);
}
.lv2-btn.lv2-btn-outline-white-nobg {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--lv2-color-white);
}
.lv2-btn.lv2-btn-outline-white-nobg:hover, .lv2-btn.lv2-btn-outline-white-nobg:active {
  background: rgb(255, 255, 255);
  color: rgba(10, 10, 10, 0.8);
}

.lv2-text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--lv2-font-regular);
  padding: var(--lv2-value-1) 0;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.8);
  transition: color 0.3s ease-in-out;
}
.lv2-text-link svg {
  transition: transform 0.15s ease-in-out, fill 0.15s ease-in-out;
}
.lv2-text-link:hover {
  color: rgb(10, 10, 10);
}
.lv2-text-link:hover svg {
  transform: translateX(4px);
}
.lv2-text-link:hover::after {
  width: 100%;
  background-color: var(--lv2-color-black);
}
.lv2-text-link.white {
  color: var(--lv2-color-white);
}
.lv2-text-link.white:hover::after {
  background-color: var(--lv2-color-white);
}
.lv2-text-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 1;
  background-color: inherit;
  height: 1px;
  width: 0;
  transition: width 0.3s ease-in-out;
}

.lv2-btn-arrow {
  transition: transform 0.3s ease-in-out;
}

.lv2-btn:hover .lv2-btn-arrow {
  transform: translateX(4px);
}

.lv2-preloader {
  position: fixed;
  inset: 0;
  background-color: #0a0a0a;
  z-index: 9999;
  overflow: hidden;
}
.lv2-preloader canvas {
  position: absolute;
  inset: 0;
  display: block;
}

.lv2-media-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.lv2-media-btn img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lv2-media-btn:hover {
  background-color: rgb(255, 255, 255);
}
.lv2-media-btn:hover svg {
  fill: var(--lv2-color-black);
}

#lv2-hero-play-btn {
  position: absolute;
  top: calc(var(--lv2-menu-height) + 48px);
  right: var(--lv2-container-left);
}
@media (max-width: 1024px) {
  #lv2-hero-play-btn {
    top: 90px;
    right: var(--lv2-container-left);
  }
}

.lv2-hero-section {
  position: relative;
  height: 100svh;
  min-height: 600px;
  background-color: var(--lv2-color-black);
  overflow: hidden;
}

.lv2-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.lv2-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.lv2-hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 2;
  padding-bottom: 116px;
}
@media (max-width: 1024px) {
  .lv2-hero-content-overlay {
    text-align: center;
    padding-bottom: 122px;
  }
}

.lv2-hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .lv2-hero-slide-inner {
    align-items: center;
  }
}

.lv2-hero-subtitle {
  font-family: var(--lv2-font-book);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--lv2-value-5);
}
@media (max-width: 1024px) {
  .lv2-hero-subtitle {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .lv2-hero-subtitle {
    font-size: 24px;
    margin-bottom: var(--lv2-value-4);
  }
}

.lv2-hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: var(--lv2-value-12);
  color: var(--lv2-color-white);
}
@media (max-width: 1024px) {
  .lv2-hero-stats {
    gap: 16px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .lv2-hero-stats {
    gap: 20px;
    margin-bottom: 20px;
  }
}

.lv2-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--lv2-value-3);
  min-width: var(--lv2-value-20);
  padding-right: var(--lv2-value-6);
}
@media (max-width: 1024px) {
  .lv2-stat {
    align-items: center;
    padding-right: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .lv2-stat {
    gap: var(--lv2-value-2);
    padding-right: var(--lv2-value-5);
  }
}
.lv2-stat:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.lv2-stat h2 {
  font-family: var(--lv2-font-regular);
  font-size: var(--lv2-value-16);
  line-height: var(--lv2-value-18);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .lv2-stat h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .lv2-stat h2 {
    font-size: var(--lv2-value-12);
  }
}
.lv2-stat span {
  font-family: var(--lv2-font-book);
  font-size: 16px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .lv2-stat span {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 1280px) {
  .lv2-stat span {
    font-size: 14px;
  }
}

.lv2-hero-bottom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 var(--lv2-container-left) var(--lv2-value-12) var(--lv2-container-left);
  z-index: 10;
}

.lv2-hero-scrollbar {
  flex: 1;
  max-width: 154px;
  height: 1px;
}
.lv2-hero-scrollbar.lv2-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1024px) {
  .lv2-hero-scrollbar.lv2-scrollbar-track {
    width: 100%;
  }
}
.lv2-hero-scrollbar .lv2-hero-scrollbar-thumb {
  background-color: var(--lv2-color-white);
  box-shadow: rgba(255, 255, 255, 0.35) 0px 0px 10px 1px;
}

.lv2-hero-section-label {
  font-family: var(--lv2-font-regular);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  .lv2-hero-section-label {
    display: none;
  }
}

.lv2-whatsapp-link {
  position: fixed;
  right: var(--lv2-container-left);
  bottom: var(--lv2-value-12);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  padding: 10px;
  z-index: 10;
  background-color: rgba(10, 10, 10, 0.5);
  transition: background-color 0.2s ease-in-out;
}
.lv2-whatsapp-link:hover {
  background-color: rgb(10, 10, 10);
}
@media (max-width: 1024px) {
  .lv2-whatsapp-link {
    right: var(--lv2-value-6);
    bottom: var(--lv2-value-6);
  }
}

.lv2-dummy-box {
  width: 48px;
  height: 48px;
  padding: 10px;
}

.lv2-hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.lv2-hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lv2-hero-slide:has(video)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.lv2-hero-slide:has(img)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
.lv2-hero-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lv2-slider-nav-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14%;
  z-index: 5;
  cursor: none;
}
.lv2-slider-nav-zone.dir-left {
  left: 0;
}
.lv2-slider-nav-zone.dir-right {
  right: 0;
}
.lv2-slider-nav-zone.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.lv2-slider-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  margin-left: -32px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lv2-slider-cursor img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.5);
  will-change: transform, opacity;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.lv2-slider-cursor.is-visible {
  opacity: 1;
}
.lv2-slider-cursor.is-visible img {
  transform: scale(1);
}
.lv2-slider-cursor.is-disabled {
  opacity: 0.3;
}
.lv2-slider-cursor:not(.theme-dark) .lv2-cursor-theme-dark {
  display: none;
}
.lv2-slider-cursor.theme-dark .lv2-cursor-theme-light {
  display: none;
}
.lv2-slider-cursor {
  /* Direction visibility */
}
.lv2-slider-cursor.dir-left .lv2-cursor-left {
  opacity: 1;
}
.lv2-slider-cursor.dir-right .lv2-cursor-right {
  opacity: 1;
}
.lv2-slider-cursor.is-hovering-left:not(.is-disabled) .lv2-cursor-left {
  opacity: 0;
}
.lv2-slider-cursor.is-hovering-left:not(.is-disabled) .lv2-cursor-left-hover {
  opacity: 1;
}
.lv2-slider-cursor.is-hovering-right:not(.is-disabled) .lv2-cursor-right {
  opacity: 0;
}
.lv2-slider-cursor.is-hovering-right:not(.is-disabled) .lv2-cursor-right-hover {
  opacity: 1;
}

.lv2-hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.lv2-hero-img-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
}

.lv2-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.lv2-hero-content-overlay--bottom {
  align-items: flex-end;
  padding-bottom: 116px;
}
.lv2-hero-content-overlay--bottom .lv2-hero-slide-inner {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .lv2-hero-content-overlay--bottom {
    padding-bottom: 70px;
  }
  .lv2-hero-content-overlay--bottom .lv2-hero-slide-inner {
    align-items: center;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .lv2-hero-content-overlay--bottom {
    padding-bottom: 76px;
  }
}

.lv2-hero-eyebrow {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--lv2-value-2);
}

.lv2-hero-headline {
  font-family: var(--lv2-font-regular);
  font-weight: 400;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: var(--lv2-color-white);
  margin-bottom: var(--lv2-value-10);
}
@media (max-width: 1024px) {
  .lv2-hero-headline {
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.64px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: var(--lv2-value-6);
  }
}

.lv2-hero-cta {
  backdrop-filter: blur(4px);
}

.lv2-hero-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}
.lv2-hero-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease-in-out;
  cursor: pointer;
  border: none;
  padding: 0;
}
.lv2-hero-pagination .swiper-pagination-bullet-active {
  background-color: rgb(255, 255, 255);
  transform: scale(1.3);
}

.lv2-model-explorer {
  background-color: var(--lv2-color-white);
}

.lv2-model-explorer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--lv2-value-16);
}

.lv2-model-filters {
  display: flex;
}
@media (max-width: 1024px) {
  .lv2-model-filters.desktop-filters {
    display: none;
  }
}
.lv2-model-filters.mobile-filters {
  display: none;
}
@media (max-width: 1024px) {
  .lv2-model-filters.mobile-filters {
    display: block;
  }
}

.lv2-filter-btn {
  font-family: var(--lv2-font-regular);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  color: rgba(10, 10, 10, 0.2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 14px;
}
.lv2-filter-btn.active {
  color: var(--lv2-color-black);
  pointer-events: none;
}
.lv2-filter-btn:hover {
  color: var(--lv2-color-black);
}

.lv2-filter-select-wrapper {
  position: relative;
  display: inline-block;
}

.lv2-filter-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  font-family: var(--lv2-font-regular);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.48px;
  color: rgba(10, 10, 10, 0.8);
  cursor: pointer;
  outline: none;
  padding-right: 20px;
}
.lv2-filter-select:active, .lv2-filter-select:hover {
  color: rgb(10, 10, 10);
}

.lv2-select-chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.lv2-model-carousel-wrapper {
  position: relative;
  width: 100%;
}

.lv2-model-carousel {
  padding-bottom: var(--lv2-value-16);
}
@media (max-width: 1024px) {
  .lv2-model-carousel {
    padding: 0;
  }
}

.lv2-model-card {
  position: relative;
  width: 395px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .lv2-model-card {
    width: 100%;
    padding: 0 24px;
  }
}
@media (hover: hover) {
  .lv2-model-card .lv2-text-link {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease-in-out;
  }
  .lv2-model-card:hover .lv2-text-link {
    opacity: 1;
    transform: translateY(0);
  }
}
.lv2-model-card:hover .lv2-model-img {
  transform: scale(1.08);
}

.lv2-model-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--lv2-value-4);
}

.lv2-model-bg-text {
  font-family: var(--lv2-font-regular);
  font-size: 150px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.lv2-model-bg-text.lx {
  background: var(--lv2-gradient-text-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lv2-model-bg-text.lm {
  background: var(--lv2-gradient-text-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lv2-model-bg-text.rx {
  background: var(--lv2-gradient-text-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lv2-model-bg-text.ls {
  background: var(--lv2-gradient-text-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lv2-model-bg-text.nx {
  background: var(--lv2-gradient-text-6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lv2-model-bg-text.es {
  background: var(--lv2-gradient-text-7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lv2-model-img {
  width: 100%;
  aspect-ratio: 1540/680;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.lv2-model-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.lv2-model-type {
  font-family: var(--lv2-font-regular);
  color: var(--lv2-color-black);
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.lv2-model-powertrain {
  font-family: var(--lv2-font-regular);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.4);
}

.lv2-model-carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--lv2-value-6);
}
.lv2-model-carousel-controls .lv2-compare-link {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .lv2-model-carousel-controls {
    flex-direction: column;
    gap: 24px;
  }
  .lv2-model-carousel-controls .lv2-compare-link {
    margin-left: 0;
  }
}

.lv2-scrollbar-track {
  width: 648px;
  height: 1px;
  background-color: rgba(10, 10, 10, 0.2);
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .lv2-scrollbar-track {
    width: 150px;
  }
}
.lv2-scrollbar-track.lv2-scrollbar-grey {
  background-color: var(--lv2-color-grey-200);
}
.lv2-scrollbar-track::before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  inset: 0;
  height: auto;
  padding: 10px 0;
  transform: translateY(-50%);
  top: 50%;
}

.lv2-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background-color: var(--lv2-color-black);
  border-radius: 999px;
  transition: 0.1s linear;
}
.lv2-scrollbar-thumb.lv2-scrollbar-dark {
  background-color: var(--lv2-color-black);
}

.lv2-video-banner {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lv2-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lv2-banner-bg img,
.lv2-banner-bg picture,
.lv2-banner-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lv2-banner-bg video[src=""] {
  -o-object-position: 80% 0;
     object-position: 80% 0;
}

.lv2-bg-gradient-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 25%, #000000 110%);
}

.lv2-bg-gradient-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.lv2-bg-dark-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.lv2-bg-gradient-custom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(281.85deg, rgba(0, 0, 0, 0) 0.2%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.lv2-banner-content {
  position: relative;
  z-index: 3;
}

.lv2-content-boxed {
  max-width: 550px;
}

.lv2-banner-logo {
  height: 32px;
  width: auto;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .lv2-banner-logo {
    width: auto;
    height: 24px;
  }
}

.lv2-banner-heading {
  font-family: var(--lv2-font-book);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .lv2-banner-heading {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 40px;
  }
}

.lv2-floating-play-btn {
  position: absolute;
  right: var(--lv2-container-left);
  top: 50px;
  z-index: 3;
}
@media (max-width: 1024px) {
  .lv2-floating-play-btn {
    right: var(--lv2-value-6);
  }
}

.lv2-highlight-section {
  background-color: var(--lv2-color-white);
}

.lv2-highlight-banner-inner {
  position: relative;
  height: 670px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--lv2-color-white);
}
@media (max-width: 1024px) {
  .lv2-highlight-banner-inner {
    height: 500px;
  }
}

.lv2-highlight-content {
  position: relative;
  z-index: 3;
  padding: var(--lv2-value-25) var(--lv2-value-18);
}
@media (max-width: 1024px) {
  .lv2-highlight-content {
    padding: var(--lv2-value-10) var(--lv2-value-6);
  }
}

.lv2-split-section .lv2-container {
  gap: 48px;
}
@media (max-width: 1024px) {
  .lv2-split-section .lv2-container {
    gap: 20px;
  }
}
.lv2-split-section.lv2-split-section-boxed .lv2-split-media {
  width: 100%;
}
.lv2-split-section.lv2-split-section-boxed .lv2-eyebrow,
.lv2-split-section.lv2-split-section-boxed .lv2-split-title {
  margin-bottom: var(--lv2-value-2dot5);
}
.lv2-split-section.lv2-split-section-boxed .lv2-split-desc {
  margin-bottom: var(--lv2-value-6);
}
@media (max-width: 1024px) {
  .lv2-split-section.lv2-split-section-boxed {
    padding: 0 var(--lv2-value-6);
  }
  .lv2-split-section.lv2-split-section-boxed .lv2-split-media {
    max-height: 228px;
  }
}

@media (min-width: 1025px) {
  .lv2-container.lv2-grid-2 {
    grid-template-columns: 1fr 695px;
  }
  .lv2-container.lv2-grid-2.lv2-grid-reverse {
    grid-template-columns: 695px 1fr;
  }
  .lv2-split-section-boxed .lv2-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .lv2-split-section-boxed .lv2-split-content {
    padding: 0 72px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .lv2-grid-reverse .lv2-split-content {
    order: 2;
  }
  .lv2-grid-reverse .lv2-split-media {
    order: 1;
  }
}
@media (max-width: 1024px) {
  .lv2-split-section-boxed .lv2-split-content {
    padding: 24px;
    padding-top: 34px;
    order: 1;
  }
  .lv2-split-section-boxed .lv2-split-content .lv2-split-desc {
    margin-bottom: 24px;
  }
}
.lv2-split-content .lv2-text-link {
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .lv2-split-content .lv2-text-link {
    margin-top: 20px;
  }
}

.lv2-split-media {
  height: 100%;
}
@media (max-width: 1024px) {
  .lv2-split-media {
    aspect-ratio: 1/1;
  }
}
.lv2-split-media img,
.lv2-split-media picture {
  width: 100%;
  min-height: 468px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .lv2-split-media img,
  .lv2-split-media picture {
    min-height: auto;
  }
}

.lv2-zoom .lv2-zoom-img {
  overflow: hidden;
}

.lv2-zoom .lv2-zoom-img img {
  transform: scale(1);
  transition: transform 0.2s linear;
}

.lv2-zoom:hover .lv2-zoom-img img {
  transform: scale(1.03);
}

.lv2-ownership-header {
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .lv2-ownership-header {
    flex-direction: column;
    gap: 0;
  }
}

.lv2-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lv2-header-right {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.lv2-ownership-slide {
  height: auto;
}

@media (min-width: 1025px) {
  .ownership-scrollbar-container {
    display: none;
  }
}

@media (max-width: 1025px) {
  .lv2-ownership-carousel {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
}

.lv2-card-gradient {
  position: relative;
  height: 477px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
}
@media (max-width: 1024px) {
  .lv2-card-gradient {
    height: 256px;
    padding: 16px;
  }
}
.lv2-card-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 53%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}
.lv2-card-gradient .lv2-card-gradient-title {
  transform: scale(1) translateY(25px);
  transition: transform 0.2s ease-in-out;
}
.lv2-card-gradient .lv2-text-link {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease-in-out !important;
}
.lv2-card-gradient:hover .lv2-text-link {
  opacity: 1;
  transform: translateY(0);
}
.lv2-card-gradient:hover .lv2-card-gradient-title {
  transform: scale(1) translateY(0);
}
@media (hover: none) {
  .lv2-card-gradient .lv2-text-link {
    opacity: 1;
    transform: translateY(0);
  }
  .lv2-card-gradient .lv2-card-gradient-title {
    transform: scale(1) translateY(0);
  }
}

.lv2-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.lv2-card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lv2-card-gradient-content {
  position: relative;
  z-index: 3;
}

.lv2-card-gradient-title {
  font-family: var(--lv2-font-book);
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.64px;
  color: white;
}
@media (max-width: 1024px) {
  .lv2-card-gradient-title {
    font-size: 20px;
    line-height: 24px;
  }
}

.lv2-discovery-deck {
  background-color: var(--lv2-color-white);
}
.lv2-discovery-deck .lv2-model-carousel-controls {
  justify-content: center;
  margin-top: var(--lv2-value-12);
}
.lv2-discovery-deck .lv2-discovery-carousel {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.lv2-card {
  width: 100%;
}
.lv2-card img {
  width: 100%;
  aspect-ratio: 800/450;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}

.lv2-card-title-normal {
  font-family: var(--lv2-font-book);
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.64px;
  color: #333;
}
@media (max-width: 1024px) {
  .lv2-card-title-normal {
    font-size: 20px;
    line-height: 24px;
  }
}

.lv2-cta-banner {
  position: relative;
  height: 611px;
  display: flex;
  align-items: center;
  text-align: left;
}
.lv2-cta-banner .lv2-split-title {
  margin-bottom: 0;
}
.lv2-cta-banner .lv2-container {
  display: flex;
  align-items: center;
  z-index: 1;
}

.lv2-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  max-width: 552px;
}
@media (max-width: 1024px) {
  .lv2-cta-content {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.lv2-btn-group {
  display: flex;
  gap: 24px;
  width: 100%;
}
@media (max-width: 1024px) {
  .lv2-btn-group {
    gap: 16px;
  }
}
.lv2-btn-group .lv2-btn {
  flex: 1;
}
@media (max-width: 1024px) {
  .lv2-btn-group .lv2-btn {
    white-space: nowrap;
    padding: var(--lv2-value-3) var(--lv2-value-5);
  }
}

.lv2-helper-text {
  position: absolute;
  bottom: 52px;
  left: var(--lv2-container-left);
  font-family: var(--lv2-font-regular);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.48px;
  color: white;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 1024px) {
  .lv2-helper-text {
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 32px;
    font-size: 12px;
    line-height: 16px;
  }
}

.lv2-modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow-y: auto;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
.lv2-modal.is-open {
  visibility: visible;
  pointer-events: all;
}

.lv2-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.lv2-modal-panel {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 640px;
  padding: 64px;
  margin: 24px;
  will-change: transform, opacity;
}
@media (max-width: 1024px) {
  .lv2-modal-panel {
    width: 342px;
    max-width: 100%;
    margin: auto;
    padding: 30px 24px;
    overflow-y: auto;
  }
}

.lv2-modal-close {
  position: absolute;
  top: var(--lv2-value-6);
  right: var(--lv2-value-6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
}
.lv2-modal-close:hover {
  opacity: 0.45;
}
.lv2-modal-close svg path {
  transition: fill 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  .lv2-modal-close {
    top: var(--lv2-value-3);
    right: var(--lv2-value-3);
    width: 24px;
    height: 24px;
  }
}

.lv2-modal-title {
  font-family: var(--lv2-font-book);
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lv2-color-black);
  margin: 0 0 36px;
}
@media (max-width: 1024px) {
  .lv2-modal-title {
    font-size: 20px;
    line-height: 24px;
  }
}

.lv2-modal-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .lv2-modal-form {
    gap: 12px;
  }
}

.lv2-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lv2-form-field {
  display: flex;
  flex-direction: column;
}
.lv2-form-field.lv2-error-field .lv2-input,
.lv2-form-field.lv2-error-field .lv2-checkbox {
  border-color: var(--lv2-color-red);
}

.lv2-error {
  color: var(--lv2-color-red);
  font-size: var(--lv2-value-2dot5);
  margin-top: var(--lv2-value-1);
  transition: ease-in-out 0.2s;
}
@media (max-width: 1024px) {
  .lv2-error {
    margin-top: 1px;
  }
}

.lv2-input {
  font-family: var(--lv2-font-book);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.48px;
  vertical-align: middle;
  font-weight: 300;
  color: var(--lv2-color-black);
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.2);
  padding: 13px 20px;
  outline: none;
  transition: border-color 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}
.lv2-input::-moz-placeholder {
  color: rgba(10, 10, 10, 0.4);
  font-family: var(--lv2-font-book);
}
.lv2-input::placeholder,
.lv2-input .placeholder-active {
  color: rgba(10, 10, 10, 0.4);
  font-family: var(--lv2-font-book);
}
.lv2-input:focus {
  border-color: rgba(10, 10, 10, 0.8);
}
@media (max-width: 1024px) {
  .lv2-input {
    width: 100%;
    padding: 8.5px 20px;
  }
}
@media (hover: hover) {
  .lv2-input:hover:not(:focus) {
    border-color: rgba(10, 10, 10, 0.4);
  }
}

.lv2-input-prefix-wrapper {
  display: flex;
  align-items: stretch;
  position: relative;
}
.lv2-input-prefix-wrapper .lv2-input-prefix {
  display: flex;
  align-items: center;
  background: transparent;
  border-right: none;
  padding: 13px 20px 13px 20px;
  font-family: var(--lv2-font-book);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.48px;
  color: var(--lv2-color-black);
  height: calc(100% - 1px);
  position: absolute;
  top: 1px;
  left: 1px;
}
@media (max-width: 1024px) {
  .lv2-input-prefix-wrapper .lv2-input-prefix {
    padding: 8.5px 10px 8.5px 20px;
  }
}
.lv2-input-prefix-wrapper .lv2-input-prefix::after {
  content: "";
  height: 100%;
  border-right: 1px solid rgba(10, 10, 10, 0.2);
  right: 0;
  position: absolute;
}
.lv2-input-prefix-wrapper .lv2-input {
  flex: 1;
  padding-left: 8px;
  /* Reduce gap since the +91 is right next to it */
}
.lv2-input-prefix-wrapper .lv2-input[type=tel] {
  padding-left: 80px;
}

.lv2-input-select.placeholder-active {
  color: rgba(10, 10, 10, 0.4);
}
.lv2-input-select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.36458 9.36214C7.15625 9.54964 6.84375 9.54964 6.65625 9.36214L2.65625 5.36214C2.44792 5.15381 2.44792 4.84131 2.65625 4.65381C2.84375 4.44548 3.15625 4.44548 3.34375 4.65381L6.98958 8.29964L10.6563 4.65381C10.8438 4.44548 11.1563 4.44548 11.3438 4.65381C11.5521 4.84131 11.5521 5.15381 11.3438 5.34131L7.36458 9.36214Z' fill='%230A0A0A' fill-opacity='0.8'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right var(--lv2-value-5) center;
  transition: background-image ease-in-out 0.15s;
}
.lv2-input-select:open {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.63542 4.63786C6.84375 4.45036 7.15625 4.45036 7.34375 4.63786L11.3438 8.63786C11.5521 8.84619 11.5521 9.15869 11.3438 9.34619C11.1563 9.55452 10.8438 9.55452 10.6563 9.34619L7.01042 5.70036L3.34375 9.34619C3.15625 9.55453 2.84375 9.55453 2.65625 9.34619C2.44792 9.15869 2.44792 8.84619 2.65625 8.65869L6.63542 4.63786Z' fill='%230A0A0A' fill-opacity='0.8'/%3E%3C/svg%3E%0A");
  color: rgb(10, 10, 10);
}
.lv2-input-select:active {
  color: rgb(10, 10, 10);
}

.lv2-form-actions {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .lv2-form-actions {
    margin-top: 16px;
  }
}

.lv2-modal-submit {
  min-width: 220px;
}
@media (max-width: 1024px) {
  .lv2-modal-submit {
    min-width: 168px;
  }
}

.lv2-consent-field .lv2-error {
  display: block;
  margin-top: 12px;
  text-align: center;
}

.lv2-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
}
.lv2-form-consent input[type=checkbox] {
  display: none;
}
.lv2-form-consent .lv2-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(10, 10, 10, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.2s ease-in-out;
}
.lv2-form-consent .lv2-checkbox::after {
  content: "";
  width: 5px;
  height: 10px;
  border: solid var(--lv2-color-black);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg) scale(0.5);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  margin-bottom: 2px;
}
.lv2-form-consent input[type=checkbox]:checked + .lv2-checkbox {
  border-color: var(--lv2-color-black);
}
.lv2-form-consent input[type=checkbox]:checked + .lv2-checkbox::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.lv2-form-consent .lv2-consent-text {
  font-family: var(--lv2-font-book);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.5px;
  color: rgba(10, 10, 10, 0.8);
}
@media (max-width: 1024px) {
  .lv2-form-consent .lv2-consent-text {
    font-size: 10px;
    line-height: 14px;
  }
}

@media (hover: none) {
  .lv2-text-link:hover svg,
  .lv2-btn:hover .lv2-btn-arrow {
    transform: none;
  }
  .lv2-model-card:hover .lv2-model-img,
  .lv2-zoom:hover .lv2-zoom-img {
    transform: scale(1);
  }
  .lv2-model-card .lv2-text-link {
    opacity: 1;
    transform: none;
  }
  .lv2-slider-nav-zone,
  .lv2-cursor-icon {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */