@charset "UTF-8";
/* Breakpoints */
/* Spacing */
/* Fonts */
/* Colors */
/* Margins */
.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: -1px;
}
.home-hero .hero-image {
  position: relative;
  width: 100%;
  min-height: min(800px, 52.98013245vw);
  background: center no-repeat;
  background-size: cover;
  padding-top: min(220px, 14.56953642vw);
  padding-bottom: 40px;
  margin-bottom: -1px;
}
@media (max-width: 890px) {
  .home-hero .hero-image {
    min-height: min(800px, 80vw);
    padding-top: 120px;
  }
}
@media (max-width: 660px) {
  .home-hero .hero-image {
    padding-top: 60px;
  }
}
.home-hero .bottom-mask {
  position: absolute;
  bottom: -2px;
  width: 100%;
  background: bottom center repeat-x;
}
.home-hero .hero-content {
  position: relative;
  text-align: left;
  margin: auto;
  padding-bottom: 10px;
  height: 100%;
}
.home-hero .hero-content .title {
  font-size: min(4.7619047619vw, 72px);
  max-width: 860px;
}
.home-hero .hero-content .title h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: min(4.7619047619vw, 72px);
  line-height: 1.1em;
  color: #dcdad6;
  padding-bottom: min(5px, 0.33057851vw);
}
@media (max-width: 1000px) {
  .home-hero .hero-content .title h1 {
    font-size: 42px;
    padding-bottom: 4.7619047619px;
  }
}
@media (max-width: 660px) {
  .home-hero .hero-content .title h1 br {
    display: none;
  }
}
.home-hero .hero-content .hero-icon {
  margin-bottom: 3.44827586vw;
  max-height: 50px;
}
.home-hero .hero-content .hero-icon img {
  height: 50px;
  width: auto;
}
.home-hero .hero-content .description {
  position: relative;
  margin: 0;
  max-width: 790px;
  margin-bottom: 20px;
}
.home-hero .hero-content .description h2 {
  font-size: min(2.1164021164vw, 32px);
  line-height: 1.2;
  color: #dcdad6;
  margin-bottom: 0.5em;
}
@media (max-width: 1000px) {
  .home-hero .hero-content .description h2 {
    font-size: 21.164021164px;
  }
}
.home-hero .hero-content .description p {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: min(clamp(15px, 1.1904761905vw, 18px), 18px);
  line-height: 1.6em;
  color: #dcdad6;
}
@media (max-width: 890px) {
  .home-hero .hero-content .description p {
    font-size: 12px;
    width: 65%;
  }
}
@media (max-width: 660px) {
  .home-hero .hero-content .description p {
    width: 90%;
  }
}
.home-hero .hero-content .description p.small-text {
  font-size: 12px;
  line-height: 1.4em;
}
.home-hero .hero-content .description .button {
  margin: min(75px, 4.96031746vw) 0;
}

:root {
  --ovlcol: #000;
  --ovlopa: 0;
}

.single-col {
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: var(--bg-desktop);
}
@media (max-width: 660px) {
  .single-col {
    background-image: var(--bg-mobile);
    background-size: cover !important;
    min-height: var(--h-mobile) !important;
  }
}
.single-col .site-container {
  margin: 0;
}
.single-col .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.single-col.bgfull {
  background-size: cover !important;
  background-position: center top !important;
}
.single-col.bgfull::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--ovlcol);
  z-index: 1;
  opacity: var(--ovlopa);
}
.single-col.bgleft {
  background-position: left top !important;
  background-size: 50% auto !important;
}
.single-col.bgright {
  background-position: right top !important;
  background-size: 50% auto !important;
}
.single-col.bgleftpos {
  background-position: left center;
}
.single-col.bgtoppos {
  background-position: center top;
}
.single-col.bgrightpos {
  background-position: right center;
}
.single-col.bgbottompos {
  background-position: center bottom;
}

.two-col {
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin: auto;
  overflow-x: hidden;
}
.two-col.bgfull {
  background-size: cover !important;
  background-position: center top !important;
}
.two-col.bgleft {
  background-position: left top !important;
  background-size: 50% auto !important;
}
.two-col.bgright {
  background-position: right top !important;
  background-size: 50% auto !important;
}
@media (max-width: 890px) {
  .two-col.bgright {
    background-position: 50vw top !important;
    background-size: contain !important;
  }
}
.two-col.bgleftpos {
  background-position: left center;
}
@media (max-width: 890px) {
  .two-col.bgleftpos {
    background-position: left top !important;
  }
}
.two-col.bgleftpos .twocol-content .col-left {
  min-height: 50vw;
}
.two-col.bgtoppos {
  background-position: center top;
}
.two-col.bgrightpos {
  background-position: right center;
}
@media (max-width: 890px) {
  .two-col.bgrightpos {
    background-position: right calc(100% - 10px) !important;
  }
}
.two-col.bgrightpos .twocol-content .col-right {
  min-height: 40vw;
}
.two-col.bgbottompos {
  background-position: center bottom;
}
.two-col .twocol-content {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: min(95px, 6.27737226vw);
  width: 100%;
  max-width: 1728px;
}
@media (max-width: 660px) {
  .two-col .twocol-content {
    flex-direction: column;
    gap: 0;
    align-items: center;
    overflow: hidden;
  }
}
.two-col .twocol-content.medium {
  max-width: 75%;
  margin: auto;
}
.two-col .twocol-content.small {
  max-width: 60%;
  margin: auto;
}
.two-col .twocol-content .col {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col {
    width: 100%;
  }
}
.two-col .twocol-content .col.center {
  align-items: center;
}
.two-col .twocol-content .col.center h1,
.two-col .twocol-content .col.center h2,
.two-col .twocol-content .col.center h3,
.two-col .twocol-content .col.center h4,
.two-col .twocol-content .col.center h5,
.two-col .twocol-content .col.center h6 {
  width: 100%;
  text-align: center;
  background-position: center bottom !important;
}
.two-col .twocol-content .col.center p {
  width: 100%;
  text-align: center;
}
.two-col .twocol-content .col.flex-end {
  align-items: flex-end;
}
.two-col .twocol-content .col.flex-end h1,
.two-col .twocol-content .col.flex-end h2,
.two-col .twocol-content .col.flex-end h3,
.two-col .twocol-content .col.flex-end h4,
.two-col .twocol-content .col.flex-end h5,
.two-col .twocol-content .col.flex-end h6 {
  width: 100%;
  text-align: right;
  background-position: right bottom !important;
}
.two-col .twocol-content .col.flex-end p {
  width: 100%;
  text-align: right;
}
.two-col .twocol-content .col.col-left {
  padding-left: min(150px, 9.9206349206vw);
  padding-right: calc(min(150px, 9.9206349206vw) / 2);
}
@media (max-width: 1000px) {
  .two-col .twocol-content .col.col-left {
    padding-left: min(50px, 3.30687831vw);
  }
}
.two-col .twocol-content .col.col-left.leftbig {
  width: 65%;
  max-width: 65%;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col.col-left.leftbig {
    width: 100%;
    max-width: 100%;
  }
}
.two-col .twocol-content .col.col-left.rightbig {
  width: 35%;
  max-width: 35%;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col.col-left.rightbig {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 660px) {
  .two-col .twocol-content .col.col-left.bgleft {
    min-height: 100vw;
  }
}
@media (max-width: 660px) {
  .two-col .twocol-content .col.col-left {
    padding-left: min(50px, 3.30687831vw);
    padding-right: calc(min(50px, 3.30687831vw) / 2);
    padding-bottom: 20px !important;
  }
}
.two-col .twocol-content .col.col-right {
  padding-left: calc(min(150px, 9.9206349206vw) / 2);
  padding-right: min(150px, 9.9206349206vw);
}
@media (max-width: 1000px) {
  .two-col .twocol-content .col.col-right {
    padding-right: min(50px, 3.30687831vw);
  }
}
.two-col .twocol-content .col.col-right.leftbig {
  width: 35%;
  max-width: 35%;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col.col-right.leftbig {
    width: 100%;
    max-width: 100%;
  }
}
.two-col .twocol-content .col.col-right.rightbig {
  width: 65%;
  max-width: 65%;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col.col-right.rightbig {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 660px) {
  .two-col .twocol-content .col.col-right.bgright {
    min-height: 100vw;
  }
}
@media (max-width: 660px) {
  .two-col .twocol-content .col.col-right {
    padding-left: calc(min(50px, 3.30687831vw) / 1);
    padding-right: min(50px, 3.30687831vw);
    padding-top: 0 !important;
  }
}
.two-col .twocol-content .col p {
  width: 100%;
  max-width: 80%;
}
.two-col .twocol-content .col p:last-child {
  margin-bottom: 0;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col p {
    max-width: 90%;
  }
}
@media (max-width: 660px) {
  .two-col .twocol-content .col p br {
    display: none;
  }
}
.two-col .twocol-content .col figure {
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.two-col .twocol-content .col figure img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col figure img {
    width: 70%;
  }
}
.two-col .twocol-content .col figure ul {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  width: 100%;
  gap: min(50px, 3.31125828vw);
}
@media (max-width: 660px) {
  .two-col .twocol-content .col figure ul {
    justify-content: center;
    gap: 50px;
  }
}
.two-col .twocol-content .col figure ul li {
  width: min(160px, 10.58201058vw);
  flex: none;
  text-align: center;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col figure ul li {
    width: 160px;
  }
}
.two-col .twocol-content .col figure ul li img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media (max-width: 660px) {
  .two-col .twocol-content .col figure ul li img {
    width: 70%;
  }
}

.blade-outline {
  width: 100%;
  box-sizing: border-box;
  padding: 3.44827586vw;
  text-align: center;
}
@media (max-width: 660px) {
  .blade-outline {
    padding: 1.72413793vw;
  }
}
.blade-outline h1 {
  margin-bottom: min(50px, 3.31125828vw);
  font-size: min(4.7619047619vw, 72px);
  line-height: 1.04878049em;
  background-image: none !important;
}
@media (max-width: 660px) {
  .blade-outline h1 {
    font-size: 47.619047619px;
  }
}
.blade-outline h2 {
  margin-bottom: min(50px, 3.31125828vw);
  font-size: min(2.1164021164vw, 32px);
  line-height: 1.25em;
  background-image: none !important;
}
@media (max-width: 660px) {
  .blade-outline h2 {
    font-size: 21.164021164px;
  }
}
.blade-outline p {
  font-size: min(2.1164021164vw, 32px);
  line-height: 1.45454545em;
}
@media (max-width: 660px) {
  .blade-outline p {
    font-size: 21.164021164px;
  }
}
.blade-outline figure {
  margin: 0;
}
.blade-outline img {
  max-width: 100%;
  height: auto;
}
.blade-outline figure {
  margin: 0;
}
.blade-outline figure > img {
  width: 100%;
  max-width: 1454px;
  max-height: 782px;
  object-fit: contain;
  object-position: center;
  margin: 15px auto;
}
.blade-outline figure ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px auto;
  width: 100%;
  gap: 30px;
}
.blade-outline figure ul li {
  flex: 1; /* todas las imágenes se expanden igual */
}
.blade-outline figure ul li img {
  object-fit: cover; /* opcional: recorta imágenes si no tienen el mismo aspecto */
  width: 100%; /* asegura que se escalen */
  height: auto; /* mantiene proporción */
}
.blade-outline figure iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.blade-outline figure video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-top: 15px;
}
.blade-outline .outline-text-link {
  display: contents;
}
.blade-outline .outline-text {
  font-family: "Inter", sans-serif;
}

.gallery {
  background-repeat: no-repeat;
}
@media (max-width: 890px) {
  .gallery {
    padding: 0 !important;
  }
}
.gallery.bgfull {
  background-size: cover !important;
  background-position: center top !important;
}
.gallery.bgleft {
  background-position: left top !important;
  background-size: 50% auto !important;
}
.gallery.bgright {
  background-position: right top !important;
  background-size: 50% auto !important;
}
.gallery.bgleftpos {
  background-position: left center;
}
.gallery.bgtoppos {
  background-position: center top;
}
.gallery.bgrightpos {
  background-position: right center;
}
.gallery.bgbottompos {
  background-position: center bottom;
}
@media (max-width: 890px) {
  .gallery .gal-content {
    padding: 0 !important;
  }
}
.gallery .gal-content.medium {
  max-width: 75%;
  margin: auto;
}
.gallery .gal-content.small {
  max-width: 60%;
  margin: auto;
}
.gallery .gal-content .intro * {
  max-width: 100% !important;
}
.gallery .gal-content .gallery-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(40px, 2.64550265vw);
}
@media (max-width: 890px) {
  .gallery .gal-content .gallery-group {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}
.gallery .gal-content .gallery-item {
  max-width: 548px;
  width: 36.24338624vw;
  display: flex;
  flex-direction: column;
}
@media (max-width: 890px) {
  .gallery .gal-content .gallery-item {
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
  }
}
.gallery .gal-content .gallery-item figure {
  margin: 0;
  aspect-ratio: 1/1;
  margin-bottom: 40px;
}
@media (max-width: 660px) {
  .gallery .gal-content .gallery-item figure {
    margin-bottom: 20px;
  }
}
.gallery .gal-content .gallery-item figure img {
  width: 100%;
  max-width: 100% !important;
  height: auto;
  transition: all 0.3s ease-in-out;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.gallery .gal-content .gallery-item figure img:hover {
  transform: scale(1.05);
}
.gallery .gal-content .gallery-item .gallery-item-bg {
  width: 100%;
  height: min(44.31216931vw, 670px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 890px) {
  .gallery .gal-content .gallery-item .gallery-item-bg {
    height: min(133vw, 670px);
  }
}
.gallery .gal-content .gallery-item .gallery-item-bg.no-content {
  height: min(730px, 48.94117647vw);
}
@media (max-width: 890px) {
  .gallery .gal-content .gallery-item .gallery-item-bg.no-content {
    height: min(730px, 133vw);
  }
}
.gallery .gal-content .gallery-item .gallery-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 3.30687831vw, 50px);
  background-color: #2a2a2a;
  gap: 25px;
}
@media (max-width: 660px) {
  .gallery .gal-content .gallery-item .gallery-content {
    gap: 20px;
  }
}
.gallery .gal-content .gallery-item .gallery-content h3 {
  font-family: "Bebas Neue", "Arial Narrow", "Impact", "Haettenschweiler", sans-serif;
  font-size: clamp(58px, 4.7619047619vw, 72px);
  font-weight: 400;
  line-height: 0.92;
  color: #dcdad6;
  text-transform: uppercase;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  margin: 0;
  text-box: trim-both cap alphabetic;
}
.gallery .gal-content .gallery-item .gallery-content .tag {
  display: inline-block;
  text-box: trim-both cap alphabetic;
  font-family: "Space Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  background-color: #f0b432;
  color: #010101;
  border: 1px solid #f0b432;
  padding: 8px 10px;
  margin-bottom: 1.66666667em;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
}
.gallery .gal-content .gallery-item .gallery-content .tag.primary {
  color: #010101;
  background-color: #f0b432;
  border: 1px solid #f0b432;
}
.gallery .gal-content .gallery-item .gallery-content .tag.secondary {
  background-color: transparent;
  border: 1px solid #f0b432;
  color: #f0b432;
}
.gallery .gal-content .gallery-item .gallery-content .tag.tertiary {
  color: #010101;
  background-color: #c9c2b8;
  border: 1px solid #c9c2b8;
}
.gallery .gal-content .gallery-item .gallery-content .desc {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: min(1.19047619vw, 18px);
  line-height: 1.5;
  color: #dcdad6;
  text-align: left;
  margin-bottom: 1rem;
  margin: 0;
}
.gallery .gal-content .gallery-item .gallery-content .desc strong {
  font-weight: 700;
}
@media (max-width: 660px) {
  .gallery .gal-content .gallery-item .gallery-content .desc {
    font-size: 17px !important;
  }
}
.gallery .gal-content .gallery-item .gallery-content .button {
  margin: 0;
}
@media (max-width: 660px) {
  .gallery .gal-content .gallery-item .gallery-content .button {
    margin-top: 5px;
  }
}
.gallery .gallery-content-mb {
  width: 100%;
  height: 0;
}
@media (max-width: 890px) {
  .gallery .gallery-content-mb {
    height: 25px;
  }
}

.video-gallery {
  background-repeat: no-repeat;
  /* h1 {
    margin-bottom: min(60px, 3.96825397vw);
    padding-bottom: min(40px, 2.64550265vw);
    font-size: min(vars.$tlhdr_vw, vars.$tlhdr);
    line-height: 1.04878049em;
    background: url(../../../assets/img/line-black.svg) left bottom no-repeat;
    background-size: min(9.39153439vw, 142px) min(1.32275132vw, 20px);
  }
  h2 {
    margin-bottom: min(50px, 3.31125828vw);
    font-size: min(vars.$tlhdrsm_vw, vars.$tlhdrsm);
    line-height: 1.25em;
  }
  p {
    font-size: min(vars.$tlhdrxsm_vw, vars.$tlhdrxsm);
    line-height: 1.45454545em;
  } */
}
.video-gallery.bgfull {
  background-size: cover !important;
  background-position: center top !important;
}
.video-gallery.bgleft {
  background-position: left top !important;
  background-size: 50% auto !important;
}
.video-gallery.bgright {
  background-position: right top !important;
  background-size: 50% auto !important;
}
.video-gallery.bgleftpos {
  background-position: left center;
}
.video-gallery.bgtoppos {
  background-position: center top;
}
.video-gallery.bgrightpos {
  background-position: right center;
}
.video-gallery.bgbottompos {
  background-position: center bottom;
}
.video-gallery .gal-content.medium {
  max-width: 75%;
  margin: auto;
}
.video-gallery .gal-content.small {
  max-width: 60%;
  margin: auto;
}
.video-gallery .gal-content .intro * {
  max-width: 100% !important;
}
.video-gallery .gal-content .gallery-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(40px, 2.64550265vw);
  margin-bottom: min(60px, 3.96825397vw);
}
@media (max-width: 660px) {
  .video-gallery .gal-content .gallery-group {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.video-gallery .gal-content .gal-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 16.53439153vw), 1fr));
  justify-content: space-evenly;
  margin: auto;
}
.video-gallery .gal-content .gal-group.md {
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 13.22751323vw), min(309px, 20.58201058vw)));
}
@media (max-width: 660px) {
  .video-gallery .gal-content .gal-group.md {
    grid-template-columns: repeat(1, 50%);
    justify-content: center;
    gap: 40px;
  }
}
.video-gallery .gal-content .gal-group.sm {
  grid-template-columns: repeat(auto-fit, minmax(min(120px, 7.93650794vw), min(200px, 13.22751323vw)));
}
@media (max-width: 660px) {
  .video-gallery .gal-content .gal-group.sm {
    grid-template-columns: repeat(2, minmax(30%, 1fr));
    max-width: 90%;
    margin: 0 auto;
    gap: 20px;
  }
  .video-gallery .gal-content .gal-group.sm > *:last-child:nth-child(odd) {
    grid-column: span 2;
    justify-self: center;
    width: 42%;
  }
}
@media (max-width: 660px) {
  .video-gallery .gal-content .gal-group {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.video-gallery .gal-content .gallery-item {
  max-width: min(375px, 24.83443708vw);
  height: fit-content;
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 660px) {
  .video-gallery .gal-content .gallery-item {
    margin-bottom: 0;
    max-width: 50%;
  }
}
.video-gallery .gal-content .gallery-item a {
  text-decoration: none;
}
.video-gallery .gal-content .gallery-item figure {
  margin: 0;
  aspect-ratio: 1/1;
}
@media (max-width: 660px) {
  .video-gallery .gal-content .gallery-item figure {
    margin-bottom: 20px;
  }
}
.video-gallery .gal-content .gallery-item figure img {
  width: 100%;
  max-width: 100% !important;
  height: auto;
  transition: all 0.3s ease-in-out;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.video-gallery .gal-content .gallery-item figure img:hover {
  transform: scale(1.05);
}
.video-gallery .gal-content .gallery-item h3 {
  margin-top: max(10px, min(30px, 1.98675497vw));
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: max(14px, min(clamp(15px, 1.1904761905vw, 18px), 18px));
  line-height: 1.45454545em;
  text-align: left;
  text-transform: none;
  color: #010101;
}
@media (max-width: 660px) {
  .video-gallery .gal-content .gallery-item h3 {
    font-size: 14px;
  }
}
.video-gallery .gal-content .gallery-item .line {
  width: 16%;
  height: 1px;
  background-color: #010101;
  margin-top: max(10px, min(30px, 1.98675497vw));
}
.video-gallery .gal-content .gallery-item .desc {
  width: 100%;
  font-size: max(14px, min(clamp(15px, 1.1904761905vw, 18px), 18px));
  font-weight: 400;
  line-height: 1.55555556em;
  margin-top: max(10px, min(30px, 1.98675497vw));
  color: #010101;
  text-align: left;
}
.video-gallery .gal-content .gallery-item .desc strong {
  font-weight: 700;
}
@media (max-width: 660px) {
  .video-gallery .gal-content .gallery-item .desc {
    font-size: 14px;
  }
}
.video-gallery .gal-content .gallery-item .desc:hover {
  color: #b20000;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-modal .video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.video-modal .video-modal-content {
  position: relative;
  background-color: #000;
  max-width: 900px;
  width: 90%;
  z-index: 10000;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 890px) {
  .video-modal .video-modal-content {
    width: 95%;
  }
}
.video-modal .video-modal-content .video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background-color 0.3s ease;
}
@media (max-width: 890px) {
  .video-modal .video-modal-content .video-modal-close {
    font-size: 24px;
    width: 35px;
    height: 35px;
  }
}
.video-modal .video-modal-content .video-modal-close:hover {
  background-color: rgb(255, 255, 255);
}
.video-modal .video-modal-content .video-modal-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-modal .video-modal-content .video-modal-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes fadeUpSlider {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-slider {
  padding-top: 120px;
  padding-bottom: 120px;
  background-repeat: no-repeat;
  overflow-x: hidden !important;
  /* subtle dot grid overlay */
  /* ─── HERO PAGINATION ─── */
  /* ─── SCROLL INDICATOR ─── */
}
.gallery-slider.bgfull {
  background-size: cover !important;
  background-position: center top !important;
}
.gallery-slider.bgleft {
  background-position: left top !important;
  background-size: 50% auto !important;
}
.gallery-slider.bgright {
  background-position: right top !important;
  background-size: 50% auto !important;
}
.gallery-slider.bgleftpos {
  background-position: left center;
}
.gallery-slider.bgtoppos {
  background-position: center top;
}
.gallery-slider.bgrightpos {
  background-position: right center;
}
.gallery-slider.bgbottompos {
  background-position: center bottom;
}
.gallery-slider.sldclassic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-slider .site-container .dots-container {
  display: none;
}
.gallery-slider .site-container.sldright {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 0;
}
@media (max-width: 660px) {
  .gallery-slider .site-container.sldright {
    flex-direction: column;
  }
}
.gallery-slider .site-container.sldright .slider-header {
  width: 30.22486772vw;
  align-self: flex-start;
  align-items: flex-start;
}
@media (max-width: 660px) {
  .gallery-slider .site-container.sldright .slider-header {
    width: auto;
    margin-bottom: min(40px, 2.64550265vw);
    align-items: center;
    text-align: center;
  }
}
.gallery-slider .site-container.sldright .slider-header p {
  text-align: left;
  max-width: 80% !important;
}
@media (max-width: 1000px) {
  .gallery-slider .site-container.sldright .slider-header p {
    max-width: 100% !important;
  }
}
@media (max-width: 1000px) {
  .gallery-slider .site-container.sldright .slider-header p br {
    display: none;
  }
}
.gallery-slider .site-container.sldright .classic-container {
  width: min(815px, 53.9021164vw);
  margin-left: auto;
}
@media (max-width: 660px) {
  .gallery-slider .site-container.sldright .classic-container {
    width: 100%;
    padding-bottom: 30px;
  }
}
.gallery-slider .site-container.sldright .classic-container .slider .slick-list .slick-track .slide-item .slide-image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.gallery-slider .site-container.sldright .classic-container .slider .slick-list .slick-track .slide-item .slide-image figure {
  max-height: max-content;
}
.gallery-slider .site-container.sldright .classic-container .slider .slick-list .slick-track .slide-item .slide-image .slide-content {
  align-items: flex-start;
}
.gallery-slider .site-container.sldright .classic-container .slider .slick-list .slick-track .slide-item .slide-image .slide-content p {
  max-width: 80% !important;
  font-family: "Inter", sans-serif;
  font-size: min(3.1746031746vw, 48px);
  text-align: left;
  letter-spacing: -0.02em;
  line-height: 1.52083333em;
}
.gallery-slider .site-container.sldright .classic-container .arrows {
  width: 100px;
  top: auto;
  bottom: 0;
  transform: translateY(0px);
}
@media (max-width: 660px) {
  .gallery-slider .site-container.sldright .classic-container .arrows {
    display: none;
  }
}
.gallery-slider .site-container.sldright .classic-container .arrows div {
  width: 30px;
  height: 30px;
}
@media (max-width: 890px) {
  .gallery-slider .site-container.sldright .classic-container .arrows div {
    width: 20px;
    height: 20px;
  }
}
.gallery-slider .site-container.sldright .classic-container .arrows .next-slide {
  background: url(../../../assets/img/right-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}
.gallery-slider .site-container.sldright .classic-container .arrows .next-slide.slick-disabled {
  opacity: 0.3;
}
.gallery-slider .site-container.sldright .classic-container .arrows .prev-slide {
  background: url(../../../assets/img/left-arrow.svg) no-repeat;
  background-size: contain;
}
.gallery-slider .site-container.sldright .classic-container .arrows .prev-slide.slick-disabled {
  opacity: 0.3;
}
.gallery-slider .site-container.sldright .classic-container .slick-dots {
  bottom: 30px;
  width: auto;
  right: 0;
}
.gallery-slider .site-container.sldright .dots-container {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 30px;
  margin-left: min(100px, 6.61375661vw);
  margin-right: min(100px, 6.61375661vw);
}
@media (max-width: 660px) {
  .gallery-slider .site-container.sldright .dots-container {
    margin: auto;
    text-align: center;
    bottom: -10px;
  }
}
.gallery-slider .site-container.sldright .dots-container .slick-dots {
  bottom: 0;
  text-align: left;
}
@media (max-width: 660px) {
  .gallery-slider .site-container.sldright .dots-container .slick-dots {
    text-align: center;
    margin: auto;
  }
}
.gallery-slider .site-container.sldright .dots-container .slick-dots li.slick-active button:before {
  background-color: transparent;
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../../assets/img/dot-gold.svg);
  background-size: cover;
}
.gallery-slider .site-container.sldright .dots-container .slick-dots li button:before {
  background-color: transparent;
  border: 2px solid #dcdad6;
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../../assets/img/dot-white.svg);
  background-size: cover;
}
.gallery-slider .slider-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: min(40px, 2.64550265vw);
}
.gallery-slider .slider-header > div {
  width: 100%;
}
@media (max-width: 1000px) {
  .gallery-slider .slider-header > div {
    width: auto;
  }
}
.gallery-slider .slider-header h1 {
  margin-bottom: min(40px, 2.64550265vw);
  padding-bottom: min(10px, 0.66137566vw);
  font-size: min(4.7619047619vw, 72px);
  line-height: 1.09677419em;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .gallery-slider .slider-header h1 {
    font-size: 47.619047619px;
    padding-bottom: 4.7619047619px;
  }
}
.gallery-slider .slider-header h2 {
  margin-bottom: min(40px, 2.64550265vw);
  padding-bottom: min(10px, 0.66137566vw);
  font-size: min(4.7619047619vw, 72px);
  line-height: 1.09677419em;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .gallery-slider .slider-header h2 {
    font-size: 47.619047619px;
    padding-bottom: 4.7619047619px;
  }
}
.gallery-slider .slider-header p {
  font-size: min(clamp(15px, 1.1904761905vw, 18px), 18px);
  line-height: 1.45454545em;
  min-height: 1em;
  margin-bottom: min(40px, 2.64550265vw);
  max-width: 80%;
  text-align: center;
}
.gallery-slider .slider-header p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .gallery-slider .slider-header p {
    font-size: 11.9047619048px;
  }
}
.gallery-slider .classic-container {
  height: 100%;
  min-height: 100%;
}
.gallery-slider .classic-container .arrows {
  width: 100%;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 10;
}
.gallery-slider .classic-container .arrows div {
  width: 40px;
  height: 80px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media (max-width: 890px) {
  .gallery-slider .classic-container .arrows div {
    width: 20px;
    height: 40px;
  }
}
.gallery-slider .classic-container .arrows .next-slide {
  background: url(../../../assets/img/right-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}
.gallery-slider .classic-container .arrows .next-slide.slick-disabled {
  opacity: 0.3;
}
.gallery-slider .classic-container .arrows .prev-slide {
  background: url(../../../assets/img/left-arrow.svg) no-repeat;
  background-size: contain;
}
.gallery-slider .classic-container .arrows .prev-slide.slick-disabled {
  opacity: 0.3;
}
.gallery-slider .classic-container .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: auto;
}
.gallery-slider .classic-container .slider.noslider .slick-dots {
  display: none;
}
.gallery-slider .classic-container .slider .slick-list {
  height: 100%;
}
.gallery-slider .classic-container .slider .slick-list .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.gallery-slider .classic-container .slider .slick-list .slide-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-slider .classic-container .slider .slick-list .slide-item figure {
  display: flex;
  justify-content: center;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.gallery-slider .classic-container .slider .slick-list .slide-item figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}
.gallery-slider .classic-container .slider .slick-list .slide-item a {
  text-decoration: none;
}
.gallery-slider .classic-container .slider .slick-list .slide-item .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 5;
  margin-top: min(35px, 2.31481481vw);
  margin-bottom: min(35px, 2.31481481vw);
}
.gallery-slider .classic-container .slider .slick-list .slide-item .slide-content h3 {
  color: #dcdad6;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: min(22px, 1.455026455vw);
  line-height: 1.45454545em;
  margin: 0;
  margin-bottom: min(40px, 2.64550265vw);
  width: 100%;
  text-align: center;
}
.gallery-slider .classic-container .slider .slick-list .slide-item .slide-content h3 strong {
  font-weight: 400;
  font-size: min(32px, 2.11640212vw);
}
@media (max-width: 890px) {
  .gallery-slider .classic-container .slider .slick-list .slide-item .slide-content h3 {
    font-size: 14.5502645503px;
  }
}
.gallery-slider .classic-container .slider .slick-list .slide-item .slide-content p {
  color: #dcdad6;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: min(22px, 1.455026455vw);
  line-height: 1.45454545em;
  width: 100%;
  max-width: min(778px, 51.45502646vw);
  text-align: center;
  padding-bottom: min(22px, 1.45502646vw);
}
@media (max-width: 890px) {
  .gallery-slider .classic-container .slider .slick-list .slide-item .slide-content p {
    font-size: 14.5502645503px;
  }
}
.gallery-slider .classic-container .slick-dots {
  bottom: 0px;
}
.gallery-slider .classic-container .slick-dots li.slick-active button:before {
  background-color: transparent;
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../../assets/img/dot-gold.svg);
  background-size: cover;
}
.gallery-slider .classic-container .slick-dots li button:before {
  background-color: transparent;
  border: 2px solid #dcdad6;
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../../assets/img/dot-white.svg);
  background-size: cover;
}
.gallery-slider .picture-container {
  height: 57.47354497vw;
}
.gallery-slider .picture-container .arrows {
  width: 90%;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 10;
}
@media (max-width: 660px) {
  .gallery-slider .picture-container .arrows {
    display: none;
  }
}
.gallery-slider .picture-container .arrows div {
  width: 40px;
  height: 80px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media (max-width: 890px) {
  .gallery-slider .picture-container .arrows div {
    width: 20px;
    height: 40px;
  }
}
.gallery-slider .picture-container .arrows .next-slide {
  background: url(../../../assets/img/right-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}
.gallery-slider .picture-container .arrows .next-slide.slick-disabled {
  opacity: 0.3;
}
.gallery-slider .picture-container .arrows .prev-slide {
  background: url(../../../assets/img/left-arrow.svg) no-repeat;
  background-size: contain;
}
.gallery-slider .picture-container .arrows .prev-slide.slick-disabled {
  opacity: 0.3;
}
.gallery-slider .picture-container .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: auto;
}
.gallery-slider .picture-container .slider.noslider .slick-dots {
  display: none;
}
.gallery-slider .picture-container .slider .slick-list {
  height: 100%;
}
.gallery-slider .picture-container .slider .slick-list .slick-track {
  display: flex;
  align-items: center;
  height: 100%;
}
.gallery-slider .picture-container .slider .slick-list .slide-item {
  width: 100%;
  height: 100%;
}
.gallery-slider .picture-container .slider .slick-list .slide-item figure {
  display: inline-block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.gallery-slider .picture-container .slider .slick-list .slide-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery-slider .picture-container .slider .slick-list .slide-item a {
  text-decoration: none;
}
.gallery-slider .picture-container .slider .slick-list .slide-item .slide-content {
  display: none;
}
.gallery-slider .picture-container .slider .slick-list .slide-item .slide-content h3 {
  color: #dcdad6;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: min(22px, 1.455026455vw);
  line-height: 1.45454545em;
  margin: 0;
  margin-bottom: min(40px, 2.64550265vw);
  width: 100%;
  text-align: center;
}
.gallery-slider .picture-container .slider .slick-list .slide-item .slide-content h3 strong {
  font-weight: 400;
  font-size: min(32px, 2.1164021164vw);
}
@media (max-width: 890px) {
  .gallery-slider .picture-container .slider .slick-list .slide-item .slide-content h3 strong {
    font-size: 21.164021164px;
  }
}
@media (max-width: 890px) {
  .gallery-slider .picture-container .slider .slick-list .slide-item .slide-content h3 {
    font-size: 14.5502645503px;
  }
}
.gallery-slider .picture-container .slider .slick-list .slide-item .slide-content p {
  color: #dcdad6;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: min(22px, 1.455026455vw);
  line-height: 1.45454545em;
  width: 200%;
  text-align: center;
  padding-bottom: min(22px, 1.45502646vw);
  transform: translateX(-25%);
}
@media (max-width: 890px) {
  .gallery-slider .picture-container .slider .slick-list .slide-item .slide-content p {
    font-size: 14.5502645503px;
  }
}
.gallery-slider .picture-container .slick-dots {
  bottom: 25px;
}
.gallery-slider .picture-container .slick-dots li.slick-active button:before {
  background-color: transparent;
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../../assets/img/dot-gold.svg);
  background-size: cover;
}
.gallery-slider .picture-container .slick-dots li button:before {
  background-color: transparent;
  border: 2px solid #dcdad6;
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../../../assets/img/dot-white.svg);
  background-size: cover;
}
.gallery-slider .centered-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.gallery-slider .centered-container .arrows {
  width: min(80.68783069vw, 1220px);
  position: absolute;
  left: 50%;
  top: min(287px, 18.97315436vw);
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  margin: auto;
}
.gallery-slider .centered-container .arrows div {
  width: 40px;
  height: 80px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  transform: translateY(-30px);
}
@media (max-width: 890px) {
  .gallery-slider .centered-container .arrows div {
    width: 20px;
    height: 40px;
    transform: translateY(-10px);
  }
}
.gallery-slider .centered-container .arrows .next-slide {
  background: url(../../../assets/img/right-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}
.gallery-slider .centered-container .arrows .next-slide.slick-disabled {
  opacity: 0.3;
}
@media (max-width: 890px) {
  .gallery-slider .centered-container .arrows .next-slide {
    transform: translate(10px, -10px);
  }
}
.gallery-slider .centered-container .arrows .prev-slide {
  background: url(../../../assets/img/left-arrow.svg) no-repeat;
  background-size: contain;
}
.gallery-slider .centered-container .arrows .prev-slide.slick-disabled {
  opacity: 0.3;
}
@media (max-width: 890px) {
  .gallery-slider .centered-container .arrows .prev-slide {
    transform: translate(-10px, -10px);
  }
}
.gallery-slider .centered-container .slider {
  width: min(70.10582011vw, 1060px);
  overflow: visible;
  margin: auto;
}
.gallery-slider .centered-container .slider.noslider .slick-dots {
  display: none;
}
.gallery-slider .centered-container .slider .slick-track {
  margin-top: 20px;
}
@media (max-width: 890px) {
  .gallery-slider .centered-container .slider .slick-track {
    margin-top: 10px;
  }
}
.gallery-slider .centered-container .slider .slide-item {
  margin-top: min(110.75px, 7.32473545vw);
  margin-right: min(3.9021164vw, 59px);
  width: min(16.46825397vw, 249px);
  max-width: 443px;
}
.gallery-slider .centered-container .slider .slide-item a {
  text-decoration: none;
}
.gallery-slider .centered-container .slider .slide-item .slide-content {
  display: none;
}
.gallery-slider .centered-container .slider .slide-item .slide-content h3 {
  color: #57296c;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: min(22px, 1.455026455vw);
  line-height: 1.45454545em;
  margin: 0;
  margin-bottom: min(40px, 2.64550265vw);
  width: 100%;
  text-align: center;
}
.gallery-slider .centered-container .slider .slide-item .slide-content h3 strong {
  font-weight: 400;
  font-size: min(32px, 2.11640212vw);
}
@media (max-width: 890px) {
  .gallery-slider .centered-container .slider .slide-item .slide-content h3 strong {
    font-size: 21.164021164px;
  }
}
@media (max-width: 890px) {
  .gallery-slider .centered-container .slider .slide-item .slide-content h3 {
    font-size: 14.5502645503px;
    width: 65vw;
    transform: translateX(-25%);
  }
}
.gallery-slider .centered-container .slider .slide-item .slide-content p {
  color: #1e1e1e;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: min(22px, 1.455026455vw);
  line-height: 1.45454545em;
  width: 200%;
  text-align: center;
  padding-bottom: min(22px, 1.45502646vw);
  transform: translateX(-25%);
}
@media (max-width: 890px) {
  .gallery-slider .centered-container .slider .slide-item .slide-content p {
    font-size: 14.5502645503px;
    width: 65vw;
  }
}
.gallery-slider .centered-container .slider .slide-item figure {
  display: inline-block;
  width: min(249px, 16.46825397vw);
  height: auto;
  max-width: 249px;
  max-height: 298.8px;
  margin-bottom: 20px;
}
@media (max-width: 660px) {
  .gallery-slider .centered-container .slider .slide-item figure {
    width: 55vw;
    height: 86.28571435vw;
  }
}
.gallery-slider .centered-container .slider .slide-item figure img {
  width: min(249px, 16.46825397vw);
  height: auto;
  object-fit: contain;
  transform: translateY(0) scale(1);
  transform-origin: 0% 50%;
  transition: transform 0.3s ease-out;
}
.gallery-slider .centered-container .slider .slide-item.slick-current + div {
  width: min(29.2989418vw, 443px);
  max-width: 443px;
}
.gallery-slider .centered-container .slider .slide-item.slick-current + div figure {
  width: min(443px, 29.2989418vw);
  height: calc(min(443px, 29.2989418vw) * 1.08);
  max-width: 443px;
  max-height: calc(min(443px, 29.2989418vw) * 1.08);
}
.gallery-slider .centered-container .slider .slide-item.slick-current + div figure img {
  transform: translateY(0%) scale(1.7791164659);
}
.gallery-slider .centered-container .slider .slide-item.slick-current + div .slide-content {
  display: block;
}
.gallery-slider .centered-container .slick-dots li.slick-active button:before {
  background-color: #21b572;
  border: 2px solid #21b572;
}
.gallery-slider .centered-container .slick-dots li button:before {
  background-color: transparent;
  border: 2px solid #21b572;
}
.gallery-slider.text-color-white .slider-header h1,
.gallery-slider.text-color-white .slider-header h2,
.gallery-slider.text-color-white .slider-header p {
  color: #dcdad6 !important;
}
.gallery-slider.text-color-white .arrows .next-slide {
  background: url(../../../assets/img/right-arrow.svg) no-repeat !important;
}
.gallery-slider.text-color-white .arrows .prev-slide {
  background: url(../../../assets/img/left-arrow.svg) no-repeat !important;
}
.gallery-slider.text-color-white .slick-dots li.slick-active button:before {
  background-color: #dcdad6;
  border: 2px solid #dcdad6;
}
.gallery-slider.text-color-white .slick-dots li button:before {
  background-color: transparent;
  border: 2px solid #dcdad6;
}
.gallery-slider .hero-slider {
  height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0;
  overflow: hidden;
  /* Hide old per-button bars */
}
@media (max-width: 660px) {
  .gallery-slider .hero-slider {
    padding-bottom: 68px;
  }
}
.gallery-slider .hero-slider.nonav {
  padding-bottom: 100px;
}
@media (max-width: 660px) {
  .gallery-slider .hero-slider.nonav {
    padding-bottom: 57px;
  }
}
.gallery-slider .hero-slider .hero-bg {
  position: absolute;
  inset: -5% 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1);
  will-change: transform, opacity;
  transform-origin: center center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0, 0, 0.2, 1);
  will-change: opacity, transform;
  filter: brightness(0.9);
}
.gallery-slider .hero-slider .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.1) 40%, rgba(10, 10, 10, 0.75) 100%);
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.1) 40%, rgba(10, 10, 10, 0.75) 100%);
}
.gallery-slider .hero-slider .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  z-index: 1;
}
.gallery-slider .hero-slider .hero-bg .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gallery-slider .hero-slider .hero-bg.active {
  opacity: 1;
}
.gallery-slider .hero-slider .hero-bg.zoom {
  transform: scale(1.08);
}
.gallery-slider .hero-slider .hero-content {
  position: relative;
  z-index: 2;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gallery-slider .hero-slider .hero-content .hero-eyebrow {
  text-box: trim-both cap alphabetic;
  font-family: "Space Mono", "Courier New", "Courier", monospace;
  font-size: clamp(9px, 0.83333333vw, 12px);
  letter-spacing: 0.22em;
  color: #010101;
  background: #f0b432;
  text-transform: uppercase;
  display: inline-block;
  width: fit-content;
  padding: 8px 10px;
  margin-bottom: 20px;
  opacity: 0;
}
.gallery-slider .hero-slider .hero-content .hero-title {
  text-box: trim-both cap alphabetic;
  font-family: "Bebas Neue", "Arial Narrow", "Impact", "Haettenschweiler", sans-serif;
  font-size: clamp(68px, 7.9365079365vw, 120px);
  font-weight: 400;
  line-height: 0.92;
  color: #dcdad6;
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0;
  margin-bottom: 0;
}
.gallery-slider .hero-slider .hero-content .hero-title .char {
  display: inline-block;
  will-change: transform, opacity;
}
.gallery-slider .hero-slider .hero-content .hero-sub {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: min(1.19047619vw, 18px);
  line-height: 1.5;
  color: #dcdad6;
  margin-top: clamp(14px, 1.65343915vw, 25px);
  max-width: clamp(340px, 50%, 800px);
  opacity: 0;
}
@media (max-width: 660px) {
  .gallery-slider .hero-slider .hero-content .hero-sub {
    font-size: 17px !important;
  }
}
.gallery-slider .hero-slider .hero-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end !important;
  z-index: 3;
  opacity: 0;
  animation: fadeUpSlider 1s 1s forwards;
}
.gallery-slider .hero-slider .hero-pagination .hero-pagination-numbers {
  display: flex;
  padding: 0 28px 12px;
  justify-content: space-between;
  padding-left: clamp(50px, 9.9206349206vw, 150px);
  padding-right: clamp(50px, 9.9206349206vw, 150px);
}
.gallery-slider .hero-slider .hero-pagination .hero-page-btn {
  background: none;
  border: none;
  cursor: none;
  padding: 0;
}
.gallery-slider .hero-slider .hero-pagination .hero-page-btn .page-num {
  font-family: "Bebas Neue", "Arial Narrow", "Impact", "Haettenschweiler", sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: rgba(240, 235, 227, 0.2);
  transition: color 0.4s ease;
  line-height: 1;
  display: block;
}
.gallery-slider .hero-slider .hero-pagination .hero-page-btn:hover .page-num {
  color: rgba(240, 235, 227, 0.6);
}
.gallery-slider .hero-slider .hero-pagination .hero-page-btn.active .page-num {
  color: rgb(240, 235, 227);
}
.gallery-slider .hero-slider .hero-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(240, 235, 227, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.gallery-slider .hero-slider .hero-progress-bar .hero-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, #f0b432, #ff6e11);
  box-shadow: 0 0 10px rgba(240, 180, 50, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  transition: none;
}
.gallery-slider .hero-slider .hero-progress-bar .hero-progress-fill .running {
  transform: scaleX(1);
  transition: transform 4s linear;
}
.gallery-slider .hero-slider .page-bar {
  display: none;
}
.gallery-slider .hero-slider .page-bar-fill {
  display: none;
}
.gallery-slider .hero-slider .scroll-indicator {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  height: 60px;
  overflow: hidden;
}
.gallery-slider .hero-slider .scroll-indicator span {
  display: none;
}
.gallery-slider .hero-slider .scroll-indicator .line {
  width: 1px;
  height: 100%;
  background: rgba(240, 235, 227, 0.15);
  position: relative;
  overflow: hidden;
}
.gallery-slider .hero-slider .scroll-indicator .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(240, 235, 227, 0.9), transparent);
  animation: scrollDrop 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.text-color-black * {
  color: #141414 !important;
}
.text-color-black.blade-outline h1, .text-color-black.blade-outline h2 {
  background: transparent !important;
}
.text-color-black.zigzag-text li {
  border-bottom: 1px solid #dcdad6 !important;
}

.center-text * {
  text-align: center !important;
}
.center-text h2 {
  background-position: center bottom !important;
}

@media (max-width: 660px) {
  .half-width-mobile .col {
    width: 60% !important;
    align-self: flex-start !important;
  }
}

.no-round figure {
  border-radius: 0 !important;
  aspect-ratio: unset !important;
}
.no-round figure img {
  object-fit: contain !important;
  aspect-ratio: unset !important;
}
.no-round figure img:hover {
  transform: none !important;
}

.full-width {
  width: 100% !important;
}
.full-width .site-container {
  max-width: 100% !important;
  padding-left: 0;
  padding-right: 0;
}
.full-width .site-container .col figure {
  display: flex;
}

.rotating-text .word-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 5px 0;
  border-top: 1px solid #141414;
  border-bottom: 1px solid #141414;
}
.rotating-text .word-slider .slider-track {
  display: flex;
  width: max-content;
  animation: scroll-left var(--duration, 90s) linear infinite;
}
.rotating-text .word-slider .slider-track.paused {
  animation-play-state: paused;
}
.rotating-text .word-slider li {
  padding: 10px 30px 7px;
  font-family: "Bebas Neue", "Arial Narrow", "Impact", "Haettenschweiler", sans-serif;
  font-size: max(16px, min(1.3227513228vw, 20px));
  line-height: max(16px, min(1.3227513228vw, 20px));
  height: max(16px, min(1.3227513228vw, 20px));
  letter-spacing: 0.05em;
  border-right: 1px solid #141414;
  border-left: 1px solid #141414;
  border-left: none;
  white-space: nowrap;
  box-sizing: content-box;
  margin: 0;
  color: #010101;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.rotating-text.text-color-white .word-slider {
  border-top: 1px solid #dcdad6;
  border-bottom: 1px solid #dcdad6;
}
.rotating-text.text-color-white .word-slider li {
  border-color: #dcdad6;
  color: #dcdad6;
}

.zigzag-text {
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden !important;
}
.zigzag-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zigzag-text li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #dcdad6;
  padding-bottom: min(30px, 1.9841269841vw);
  margin-bottom: min(75px, 4.9603174603vw);
}
@media (max-width: 660px) {
  .zigzag-text li {
    margin-bottom: 50px;
  }
}
.zigzag-text li:nth-child(even) {
  text-align: right;
  align-items: flex-end;
}
.zigzag-text li:last-child {
  margin-bottom: 0;
}
.zigzag-text li h3 {
  font-family: "Inter", sans-serif;
  font-size: min(62px, 4.1005291vw);
  font-weight: 900;
  line-height: 0.8em;
  margin-bottom: 30px;
}
@media (max-width: 890px) {
  .zigzag-text li h3 {
    font-size: 32.8px;
  }
}
.zigzag-text li p {
  font-weight: 300;
  font-size: min(20px, 1.32275132vw);
  line-height: 1.4em;
  width: 92%;
}
@media (max-width: 1000px) {
  .zigzag-text li p {
    font-size: 13px;
  }
}
@media (max-width: 660px) {
  .zigzag-text li p {
    width: 90%;
  }
}

.faq {
  background-repeat: no-repeat;
}
.faq.bgfull {
  background-size: cover !important;
  background-position: center top !important;
}
.faq.bgleft {
  background-position: left top !important;
  background-size: 50% auto !important;
}
.faq.bgright {
  background-position: right top !important;
  background-size: 50% auto !important;
}
.faq.bgleftpos {
  background-position: left center;
}
.faq.bgtoppos {
  background-position: center top;
}
.faq.bgrightpos {
  background-position: right center;
}
.faq.bgbottompos {
  background-position: center bottom;
}
.faq .faq-content.medium {
  max-width: 75%;
  margin: auto;
}
.faq .faq-content.small {
  max-width: 60%;
  margin: auto;
}
.faq .faq-content .intro h3 {
  text-align: center;
  text-transform: uppercase;
}
.faq .faq-content .faq-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: min(60px, 3.96825397vw);
}
.faq .faq-content .faq-item {
  overflow: hidden;
  height: fit-content;
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 919px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1000px) {
  .faq .faq-content .faq-item {
    width: 80%;
  }
}
.faq .faq-content .faq-item h4 {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: max(14px, min(clamp(15px, 1.1904761905vw, 18px), 18px));
  font-weight: 300;
  line-height: 1.45454545em;
  cursor: pointer;
  user-select: none;
  position: relative;
  max-width: 100%;
  color: #dcdad6;
  background-color: #2a2a2a;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.faq .faq-content .faq-item h4:hover {
  background-color: #141414;
}
.faq .faq-content .faq-item h4::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #dcdad6;
}
.faq .faq-content .faq-item .answer {
  width: 100%;
  font-size: max(12px, min(clamp(15px, 1.1904761905vw, 18px), 18px));
  font-weight: 400;
  line-height: 1.55555556em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0 1.5rem;
  padding: 0 min(75px, 4.96031746vw);
  margin-top: 0.25rem;
  color: #dcdad6;
  text-align: left;
  margin-bottom: 1rem;
}
.faq .faq-content .faq-item .answer strong {
  font-weight: 700;
}
.faq .faq-content .faq-item .answer p {
  margin: 0.5rem 0;
}
.faq .faq-content .faq-item .answer p:first-child {
  margin-top: 0;
}
.faq .faq-content .faq-item .answer p:last-child {
  margin-bottom: 0;
}
.faq .faq-content .faq-item.active h4 {
  background-color: #141414;
  color: #dcdad6;
}
.faq .faq-content .faq-item.active h4::after {
  transform: translateY(-50%) rotate(45deg);
  color: #dcdad6;
}
.faq .faq-content .faq-item.active .answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 min(75px, 4.96031746vw) 1.5rem;
}

.team {
  background-repeat: no-repeat;
}
.team.bgfull {
  background-size: cover !important;
  background-position: center top !important;
}
.team.bgleft {
  background-position: left top !important;
  background-size: 50% auto !important;
}
.team.bgright {
  background-position: right top !important;
  background-size: 50% auto !important;
}
.team.bgleftpos {
  background-position: left center;
}
.team.bgtoppos {
  background-position: center top;
}
.team.bgrightpos {
  background-position: right center;
}
.team.bgbottompos {
  background-position: center bottom;
}
.team .team-content.medium {
  max-width: 75%;
  margin: auto;
}
.team .team-content.small {
  max-width: 60%;
  margin: auto;
}
.team .team-content .intro h3 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}
.team .team-content .intro p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.team .team-content .team-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 890px) {
  .team .team-content .team-group {
    max-width: 100%;
  }
}
.team .team-content .team-group .team-item {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #141414;
}
.team .team-content .team-group .team-item .team-pict {
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 660px) {
  .team .team-content .team-group .team-item .team-pict {
    height: 260px;
  }
}
.team .team-content .team-group .team-item .team-info {
  padding: 25px 50px;
}
@media (max-width: 660px) {
  .team .team-content .team-group .team-item .team-info {
    padding: 25px 10px;
  }
}
.team .team-content .team-group .team-item .team-info h3 {
  margin-bottom: 0.5rem;
  font-family: "Bebas Neue", "Arial Narrow", "Impact", "Haettenschweiler", sans-serif;
  font-size: 38px;
  line-height: 1em;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 660px) {
  .team .team-content .team-group .team-item .team-info h3 {
    font-size: 28px;
  }
}
.team .team-content .team-group .team-item .team-info .text-tag-block {
  font-family: "Space Mono";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #f0b432;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1em;
}
@media (max-width: 660px) {
  .team .team-content .team-group .team-item .team-info .text-tag-block {
    white-space: pre-wrap;
    font-size: 16px !important;
  }
}

.timeline-slider {
  padding-top: 120px;
  padding-bottom: 120px;
  background-repeat: no-repeat;
}
.timeline-slider.bgfull {
  background-size: cover !important;
  background-position: center top !important;
}
.timeline-slider.bgleft {
  background-position: left top !important;
  background-size: 50% auto !important;
}
.timeline-slider.bgright {
  background-position: right top !important;
  background-size: 50% auto !important;
}
.timeline-slider.bgleftpos {
  background-position: left center;
}
.timeline-slider.bgtoppos {
  background-position: center top;
}
.timeline-slider.bgrightpos {
  background-position: right center;
}
.timeline-slider.bgbottompos {
  background-position: center bottom;
}
.timeline-slider.sldclassic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.timeline-slider .slider-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: min(45px, 2.96735983vw);
}
.timeline-slider .slider-header h1 {
  font-family: "Bebas Neue", "Arial Narrow", "Impact", "Haettenschweiler", sans-serif;
  font-size: clamp(68px, 7.9365079365vw, 120px);
  font-weight: 400;
  line-height: 0.92;
  color: #dcdad6;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-bottom: min(30px, 1.98675497vw);
  text-transform: uppercase;
  line-height: 1.04878049em;
  letter-spacing: -1.24px;
  background: none;
}
@media (max-width: 890px) {
  .timeline-slider .slider-header h1 {
    font-size: 47.619047619px;
    background-size: 59.5238095238px 9.9206349206px;
    margin-bottom: 0;
    padding-bottom: 26.455026455px;
    text-align: center;
  }
}
.timeline-slider .slider-header h2 {
  font-family: "Bebas Neue", "Arial Narrow", "Impact", "Haettenschweiler", sans-serif;
  font-size: clamp(68px, 7.9365079365vw, 120px);
  font-weight: 400;
  line-height: 0.92;
  color: #dcdad6;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-bottom: min(50px, 3.31125828vw);
  line-height: 1.25em;
}
@media (max-width: 660px) {
  .timeline-slider .slider-header h2 {
    font-size: 21.164021164px;
  }
}
.timeline-slider .slider-header p {
  font-size: min(1.455026455vw, 22px);
  line-height: 1.45454545em;
  margin-bottom: min(20px, 1.32275132vw);
}
@media (max-width: 660px) {
  .timeline-slider .slider-header p {
    font-size: 14.5502645503px;
  }
}
.timeline-slider .classic-container {
  height: 100%;
  min-height: 100%;
}
.timeline-slider .classic-container .arrows {
  width: 100%;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 10;
}
.timeline-slider .classic-container .arrows div {
  width: 40px;
  height: 80px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .arrows div {
    width: 20px;
    height: 40px;
  }
}
.timeline-slider .classic-container .arrows .next-slide {
  background: url(../../../assets/img/right-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
}
.timeline-slider .classic-container .arrows .next-slide.slick-disabled {
  opacity: 0.3;
}
.timeline-slider .classic-container .arrows .prev-slide {
  background: url(../../../assets/img/left-arrow.svg) no-repeat;
  background-size: contain;
  left: 0;
}
.timeline-slider .classic-container .arrows .prev-slide.slick-disabled {
  opacity: 0.3;
}
.timeline-slider .classic-container .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: auto;
}
.timeline-slider .classic-container .slider.noslider .slick-dots {
  display: none;
}
.timeline-slider .classic-container .slider .slick-list {
  height: 100%;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slider .slick-list {
    height: auto;
    margin-bottom: 80px;
  }
}
.timeline-slider .classic-container .slider .slick-list .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.timeline-slider .classic-container .slider .slick-list .slide-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.timeline-slider .classic-container .slider .slick-list .slide-item figure {
  display: flex;
  justify-content: center;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.timeline-slider .classic-container .slider .slick-list .slide-item figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}
.timeline-slider .classic-container .slider .slick-list .slide-item a {
  text-decoration: none;
}
.timeline-slider .classic-container .slider .slick-list .slide-item .slide-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 5;
  gap: min(40px, 2.64550265vw);
  width: min(1100px, 72.4770642vw);
  margin: 0 auto min(130px, 7.64550265vw) auto;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slider .slick-list .slide-item .slide-content {
    flex-direction: column;
    gap: min(30px, 1.98675497vw);
    width: 90%;
  }
}
.timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 37.1031746vw;
  max-width: 50%;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-left {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}
.timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-left h1 {
  font-size: min(300px, 19.86754967vw);
  line-height: 0.8em;
  letter-spacing: max(-22px, -1.45502646vw);
  color: #b20000;
}
.timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-left p {
  font-size: min(18px, clamp(15px, 1.1904761905vw, 18px));
  line-height: 1.55555556em;
  color: #b20000;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-left p {
    font-size: 14.5502645503px;
  }
}
.timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 26.32275132vw;
  max-width: 50%;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-right {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}
.timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-right h2 {
  font-size: min(28px, 1.84973983vw);
  line-height: 1.21428571em;
  margin-bottom: min(28px, 1.84973983vw);
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-right h2 {
    font-size: 21.164021164px;
  }
}
.timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-right p {
  font-size: min(18px, clamp(15px, 1.1904761905vw, 18px));
  line-height: 1.55555556em;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slider .slick-list .slide-item .slide-content .slide-right p {
    font-size: 14.5502645503px;
  }
}
.timeline-slider .classic-container .slick-dots {
  bottom: 0px;
  display: flex !important;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slick-dots {
    gap: 20px;
    row-gap: 0;
  }
}
.timeline-slider .classic-container .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 !important;
}
.timeline-slider .classic-container .slick-dots li button {
  width: auto;
  height: auto;
  padding: 0;
  font-size: min(1.455026455vw, 22px);
  font-family: "Bebas Neue", "Arial Narrow", "Impact", "Haettenschweiler", sans-serif;
  font-weight: 700;
  line-height: 1.45454545em;
  color: #dcdad6 !important;
  border-bottom: 2px solid #f0b432;
  border-bottom-width: 0;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: 0.5s ease-in;
}
@media (max-width: 890px) {
  .timeline-slider .classic-container .slick-dots li button {
    font-size: 14.5502645503px;
    padding: 6.6137566138px 0;
  }
}
.timeline-slider .classic-container .slick-dots li button:before {
  display: none;
}
.timeline-slider .classic-container .slick-dots li.slick-active button {
  border-bottom-width: 2px;
}
.timeline-slider .classic-container .slick-dots .slick-dots li.slick-active button:before {
  background-color: #b20000;
  border: 2px solid #dcdad6;
}
.timeline-slider .classic-container .slick-dots .slick-dots li button:before {
  background-color: transparent;
  border: 2px solid #dcdad6;
}
.timeline-slider .classic-container.text-color-white .slider-header h1,
.timeline-slider .classic-container.text-color-white .slider-header h2,
.timeline-slider .classic-container.text-color-white .slider-header p {
  color: #dcdad6 !important;
}
.timeline-slider .classic-container.text-color-white .arrows .next-slide {
  background: url(../../../assets/img/right-arrow-gold.svg) no-repeat !important;
}
.timeline-slider .classic-container.text-color-white .arrows .prev-slide {
  background: url(../../../assets/img/left-arrow-gold.svg) no-repeat !important;
}
.timeline-slider .classic-container.text-color-white .slick-dots li.slick-active button:before {
  background-color: #dcdad6;
  border: 2px solid #dcdad6;
}
.timeline-slider .classic-container.text-color-white .slick-dots li button:before {
  background-color: transparent;
  border: 2px solid #dcdad6;
}

section.parallax-section {
  position: relative;
  overflow: hidden;
}

.bg-parallax {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 660px) {
  .bg-parallax {
    transform: scale(1);
    inset: 0 0;
  }
}

section.parallax-section > *:not(.bg-parallax) {
  position: relative;
  z-index: 1;
}

html,
body {
  background-color: #141414;
}

/*# sourceMappingURL=home.css.map */
