/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, b, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    overscroll-behavior: none;
}

body {
  line-height: 1;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.5px;
  scroll-behavior: smooth;
}

/* html, body {
  scroll-snap-type: y mandatory;
} */

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

#webgi-canvas {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  touch-action: none;
  /* pointer-events: none; */
}

#webgi-canvas-container{
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  position:fixed;
}

/* LOADER */
.loader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 10;
  background-color: #e1dedf;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(14px, 3vh, 24px);
  font-size: 14px;
  box-sizing: border-box;
  padding: clamp(28px, 7vh, 72px) 24px;
  overflow: hidden;
}

.loader img {
  width: min(58vw, 620px);
  max-width: 88vw;
  max-height: clamp(120px, 30vh, 220px);
  height: auto;
  object-fit: contain;
  animation: loaderLogoIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loader p {
  color: #111111;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  animation: loaderTextPulse 0.9s ease-in-out infinite alternate;
}

.progress {
  width: min(64vw, 810px);
  height: 2px;
  background: #c42323;
	transform: scaleX(0);
	transition: transform 0.18s ease-out;
  transform-origin: left;
	z-index: 10;
  opacity: 0.95;
  animation: loaderProgressIn 0.45s ease-out 0.12s both;
}

@keyframes loaderLogoIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderTextPulse {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

@keyframes loaderProgressIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.95;
  }
}

@media (max-width: 700px), (max-height: 560px) {
  .loader img {
    width: min(82vw, 460px);
    max-height: 24vh;
  }

  .progress {
    width: min(78vw, 560px);
  }
}

/* HEADER SECTION */
.header{
  position: absolute;
  z-index: 2;
  display: flex;
  width: 100%;
  justify-content: center;
  pointer-events: none;
}

.header--container{
  display: flex;
  width: min(1180px, calc(100vw - 56px));
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  opacity: 0;
  pointer-events: auto;
}

.header--brand{
  flex: 0 0 auto;
  width: clamp(150px, 16vw, 210px);
  height: auto;
  display: block;
  object-fit: contain;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header--menu {
  display: flex;
  flex: 1 1 auto;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;

}

.header--menu::-webkit-scrollbar {
  display: none;
}

.header--menu li{
  flex: 0 0 auto;
  padding: 9px 13px;
  color: black;
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 1;
  transition: all .25s ease-in-out;
  border-radius: 50px;
  pointer-events: all;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header--menu li:hover,
.header--menu li.active{
  background: black;
  color: white;
  cursor: pointer;
}

/* HERO SECTION */

.section{
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100vh;
  align-content: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  scroll-snap-align: start;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hero--container{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(1180px, calc(100vw - 56px));
}

.hero--content{
  width: min(430px, 48vw);
  position: absolute;
  margin-left: clamp(18px, 5vw, 72px);
  opacity: 0;
}

h1{
  position: relative;
  left: -12px;
  width: 280px;
  height: 76px;
  font-style: normal;
  font-weight: 700;
  font-size: 184px;
  line-height: 76px;
  letter-spacing: -0.01em;
  color: #181818;
  margin-bottom: 60px;
}

.hero--content > h2{
  text-align: left;
  margin-right: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: 0;
  color: #181818;
}

.hero--content > h3{
  margin-bottom: 18px;
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.25;
  letter-spacing: 0;
  color: #be1921;
}

.hero--content > p{
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 28px;
  color: #161616;
}

.hero--contact {
  margin-top: 16px;
  margin-bottom: 0 !important;
  font-size: clamp(13px, 1.1vw, 15px) !important;
  line-height: 1.45 !important;
}

.hero--contact a {
  color: #be1921;
  font-weight: 700;
  text-decoration: none;
}

.hero--contact a:hover {
  text-decoration: underline;
}

.button{
  width: 194px;
  height: 60px;
  left: 134px;
  top: 447px;
  border: none;
  background-image: linear-gradient(9deg, #af0d0d, #eb6262);
  border-radius: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  padding: 10px;
  transition: all 0.8s ease-in-out;
  background-position: 0 -30px;
  background-size: 100% 90px;
  background-repeat: repeat-x repeat-y;
}

.button:hover{
  background-image: linear-gradient(9deg, #af0d0d, #eb6262);
  box-shadow: 0px 6px 20px #d50f0fc3;
  transform: translateY(-3px);
  cursor: pointer;
  background-position: 0 0;
}


.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hero--scroller--container{
  bottom: 0;
  align-items: center;
  width: 170px;
  align-content: center;
  flex-direction: column;
  position: absolute;
  text-align: center;
  line-height: 3.2em;
  color: grey;
  overflow: hidden;
}

.hero--scroller{
  opacity: 0;
}

/* PERFORMANCE SECTION */

.performance--container{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80%;
}

.performance--content{
  width: 320px;
  position: absolute;
  margin-right: 10%;
  opacity: 0;
}

.performance--content p{
  line-height: 22px;
}

.performance--container.fixed{
  position: fixed;
  top: 50%
}

.performance--content > h1{
  position: relative;
  left: -4px;
  font-style: normal;
  font-weight: 700;
  font-size: 85px;
  line-height: 55px;
  letter-spacing: -0.01em;
  color: #be1921;
  margin-bottom: 60px;
  word-break: break-all;
}

.performance--content > h2 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 17px;
}

.performance--content > img{
  margin-top: 32px;
  margin-bottom: 32px;
  border-radius: 10px;
}

/* POWER SECTION */

.power--container{
  display: flex;
  width: 80%;
  align-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}

.power--content{
  width: 400px;
}

.power--content > h1{
  font-style: normal;
  font-weight: 700;
  font-size: 125px;
  line-height: 55px;
  letter-spacing: -0.01em;
  color: #be1921;
  margin-top: 32px;
  margin-bottom: 24px;
}

.power--content > p{
  line-height: 22px;
}

.power--img{
  position: relative;
  top: -340px;
}

.power--features--img{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}

/* AUTOFOCUS SECTION */

.autofocus--container{
  display: flex;
  align-content: flex-end;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.autofocus--content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.autofocus--content p{
  width: 70%;
  text-align: center;
  line-height: 22px;
}

.autofocus--content > h1{
  font-style: normal;
  font-weight: 100;
  font-size: 85px;
  text-align: center;
  line-height: 55px;
  letter-spacing: -0.01em;
  /* margin-top: 32px; */
  margin-bottom: 24px;
  width: 100%;
}

.autofocus--content > h1 strong{
  font-weight: 700;
  color: #be1921;
}

.autofocus--img{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
}

/* EXPLORE SECTION */

.explore--container{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-content: flex-end;
  flex-direction: column;
  width: 100%;
}

.explore--content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 10%;
}

.explore--content p{
  width: 70%;
  text-align: center;
  line-height: 22px;
}

.explore--content > h1{
  font-style: normal;
  font-weight: 100;
  font-size: 85px;
  text-align: center;
  line-height: 75px;
  letter-spacing: -0.01em;
  /* margin-top: 32px; */
  margin-bottom: 32px;
  width: 400px;
  height: auto;
  text-align: right;
}

.explore--content > h1 strong{
  font-weight: 700;
  color: #be1921;
}

.exit--container{
  display: none;
  width: 100%;
  height: 100%;
  align-content: center;
  bottom: 60px;
  align-items: flex-end;
  position: fixed;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.button--secondary{
    border-radius: 58px;
    font-weight: 700;
    font-size: 10px;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: #3d3d3d;
    transition: all 0.4s ease-in-out;
    background-repeat: repeat-x repeat-y;
    z-index: 2;
    padding: 10px 30px;
    border: 1px solid black;
    text-transform: uppercase;
    pointer-events: auto;
    margin-right: 10px;
}

.button--secondary:hover{
  cursor: pointer;
  color: #ffffff;
  background-color: #181818;
  pointer-events: auto;
}

/* GALLERY SECTION */

.gallery--section {
  background: #f5f5f5;
  padding: 80px 0;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery--container {
  width: 85%;
  max-width: 1280px;
  text-align: center;
}

.gallery--container > h2 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 17px;
  color: #666;
}

.gallery--container > h1 {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #181818;
  position: relative;
  left: 0;
  width: 100%;
  height: auto;
  line-height: 1.2;
}

.gallery--container > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 22px;
}

.gallery--filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.gallery--filter {
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #ffffff;
  color: #181818;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 11px 18px;
  transition: all 0.25s ease-in-out;
}

.gallery--filter:hover,
.gallery--filter.active {
  background: #181818;
  border-color: #181818;
  color: #ffffff;
}

.gallery--grid {
  column-count: 4;
  column-gap: 18px;
  margin-top: 40px;
  text-align: left;
}

.gallery--item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  break-inside: avoid;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: #ffffff;
}

.gallery--item.hidden {
  display: none;
}

.gallery--item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery--item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.gallery--item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1000px) {
  .gallery--grid {
    column-count: 3;
  }
}

@media (max-width: 720px) {
  .gallery--grid {
    column-count: 2;
    column-gap: 14px;
  }

  .gallery--item {
    margin-bottom: 14px;
  }
}

@media (max-width: 980px) {
  .header--container {
    width: calc(100vw - 32px);
    gap: 18px;
    margin-top: 22px;
  }

  .header--brand {
    width: clamp(128px, 22vw, 170px);
  }

  .header--menu {
    justify-content: flex-start;
  }

  .hero--container {
    width: calc(100vw - 32px);
  }

  .hero--content {
    width: min(430px, 54vw);
    margin-left: 2vw;
  }
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 600px) {

  .hero--scroller--text{
    display: none;
  }

  .header--container{
    flex-direction: column;
    width: calc(100vw - 24px);
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
  }

  .header--brand {
    width: min(46vw, 160px);
  }

  .header--menu{
    display: flex;
    gap: 8px;
    width: 92vw;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .header--menu li{
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.7);
  }

  .hero--container{
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100% !important;
  }

  .hero--content{
    width: min(88vw, 420px);
    margin-left: 0;
    position: absolute;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    /* opacity: 0; */
  }

  h1{
    left: unset;
    width: unset;
    height: unset;
    font-size: 7em;
    line-height: 1em;
    letter-spacing: -0.01em;
    margin-bottom: 30vh;
    margin-top: -10px;
    position: relative;
  }

  .hero--content > h2{
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.25em;
    margin-right: 0;
    margin-top: 80px;
  }

  .hero--content > h3{
    text-align: center;
    font-size: 1em;
    margin-bottom: 14px;
  }

  .hero--content > p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    margin-bottom: 24px;
    width: 100%;
    text-align: center;
  }

  .performance--container {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .performance--content {
    width: 320px;
    position: absolute;
    margin-right: 0;
    opacity: 0;
    margin-top: 20%;
    text-align: center;
  }

  .performance--content p {
    display: none;
  }

  .performance--content img {
    display: none;
  }

  .performance--content svg {
    margin-top: 50vh;
  }

  .power--content {
    margin-top: 100vh;
  }

  .power--content p{
    width: 85%;
  }

  .power--content h1{
    font-size: 6em;
  }

  .power--container{
    display: flex;
    width: 80%;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-around;
  }

  .power--features--img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
  }

  .power--features--img img {
    width: auto;
    height: 220px;
  }

  .autofocus--content h1{
    font-size: 3em;
    line-height: 1em;
    margin-bottom: 60vh;
  }

  .autofocus--content{
    margin-top: 30px;
  }

  .explore--container{
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
  }

  .explore--content {
    align-items: center;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .explore--content h1{
    text-align: center;
    font-size: 3em;
    line-height: 1em;
    margin-bottom: 40px;
    width: min(88vw, 400px);
    height: auto;
  }

}


/*# sourceMappingURL=src.28773bef.css.map */