@font-face {
  font-family: "Rethink";
  src: url("../fonts/RethinkSans-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Rethink";
  src: url("../fonts/RethinkSans-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: "Rubik";
  src: url("../fonts/RubikMonoOne-Regular.ttf") format("truetype");
  font-style: normal;
}
:root {
  --blue: #0046F9;
}

* {
  font-family: "Rethink";
}
a, button {
  font-family: inherit;
}

html {
  margin: 0;
  max-width: 100vw;
  width: 100vw;
  overflow-x: hidden;
  background-color: white;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: black;
}

html::-webkit-scrollbar-thumb {
  background: white;
}

html::-webkit-scrollbar-thumb:hover {
  background: #7d7d7d;
}

[fade-in] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  transform-origin: bottom left;
}

[fade-in].fade-in-appear {
  visibility: visible;
  --fade-in-time: 500ms;
  --fade-in-delay: 0s;
  animation: fadein var(--fade-in-time) ease var(--fade-in-delay) forwards;
}

[fade-in-child] {
  visibility: visible;
  animation: fadein 0ms ease 0ms forwards;
}

[fade-in-child] > *,
[fade-in-child] .fade-in-child {
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  transform-origin: bottom left;
  position: relative;
  display: inline-block;
}

[fade-in-child].fade-in-appear > *,
[fade-in-child].fade-in-appear .fade-in-child {
  visibility: visible;
  --fade-in-delay: 0s;
  animation: fadein var(--fade-in-time) ease var(--fade-in-delay) forwards;
}


@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(6px) scaleY(0) skewX(10deg);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: translateY(0px);
  }
}

@media screen and (max-width: 1000px) {
  .donly { display: none !important; }
}
@media screen and (min-width: 1000px) {
  .monly { display: none !important; }
}

.contained {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.contained.wide {
  max-width: 1250px;
}

.side-titles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 120px;
  margin-top: 120px;
}

.side-titles.double {
  min-height: 100vh;
  margin-bottom: 400px;

}

.side-titles.mbcloser {
  margin-bottom: 24px;
}

.title-text .border-top {
  padding: 24px 0;
  border-top: solid 1px black;
}

.side-titles .border-top {
  padding: 24px 0;
  border-top: solid 1px black;
  align-self: end;
}
.side-titles .stat {
  align-self: end;
}

.side-titles .stat h1 {
  font-size: 200px;
  margin: 0;
  line-height: 150px;
  text-align: right;
}

.side-titles .stat h1 + p {
  margin-bottom: 64px;
}

.side-titles.double .stat h1:first-child {
  margin-top: 290px;
}
.side-titles > h2 {
  grid-column: 1 / 5;
}
.side-titles > p {
  grid-column: 3 / 7;
}

.side-titles .side-image {
  grid-column: 2 / 7;
  width: 100%;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  margin-top: 64px;
}

.side-titles .stats-grid {
  grid-column: 2 / 7;
}

@media screen and (max-width: 1000px) {
  .side-titles {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    margin-top: 32px;
  }
  .side-titles > * {
    grid-column: 1 / 3;
  }
  .side-titles > h2 {
    font-size: 32px;
  }
  .side-titles > p, .side-titles > .border-top > p, 
  .side-titles > .border-top > b {
    font-size: 18px !important;
    line-height: 1.6em !important;
  }
  .side-titles .side-image {
    aspect-ratio: 2 / 1;
    margin-top: 12px;
  }
  .side-titles .stats-grid {
    margin-top: 48px;
  }

  .side-titles.mbcloser {
    margin-bottom: 65px;
  }
}

.title-text {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.title-text h2 {
  grid-column: 1 / 6;
  font-weight: 800;
}

.title-text p {
  grid-column: 3 / 7;
  font-size: 32px;
  line-height: 1.4em;
}

@media screen and (max-width: 1000px) {
  .title-text {
    grid-template-columns: 1fr;
    padding-top: 32px;
    gap: 6px;
  }
  .title-text h2 {
    grid-column: 1 / 2;
    font-size: 24px;
  }

  .title-text p {
    grid-column: 1 / 2;
    font-size: 18px;
  }

}


.video-container {
  margin-top: 60px;
  margin-bottom: 60px;
  height: 140vw;
}

.video-container .inner {
  height: 100vh;
  display: flex;
  align-items: center;
}


.videoplayer {
  width: 100%;
  box-sizing: border-box; 
  margin-top: 190px;
  margin-bottom: 190px;
  position: relative;
}

.videoplayer .inner {
  height: 2100px;
}

.videoplayer video {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 7;
  background-color: #ddd;
  cursor: pointer;
}

.videoplayer .play-button {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: solid 1px black;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
  box-sizing: border-box;
  /* background-color: #ffffff22; */
  pointer-events: none;
}

.videoplayer:hover .play-button {
  transform: translate(-50%, -50%) scale(0.95);
}

@media screen and (max-width: 1000px) {
  .videoplayer .play-button {
    transform: translate(-50%, -50%) scale(0.5);
  }

  .video-container {
    margin: 0;
    padding: 0;
    margin-top: -100px;
    margin-bottom: 0px;
  }

  .videoplayer {
    padding: 0;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 800px) {
  .video-container {
    margin-top: -220px;
  }
}

.cols6 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.stats-col2 {
  display: flex;
  flex-direction: column;
  gap: 0 24px;
  margin-bottom: 32px;
  grid-column: 2 / 7;
  background-color: #F4F4F5;
  padding: 32px 72px;
}

.stats-col2 > h2 {
  font-weight: 800;
  margin-bottom: 0;
}

.stats-col2 .stats-col2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 32px;
}

.stats-col2 .stats-col2-inner h2 {
  margin: 8px 0;
  font-weight: 800;
}

.stats-col2 .border-top {
  border-top: solid 1px black;
}

@media screen and (max-width: 1000px) {
  .stats-col2  {
    grid-column: 1 / 7;
    padding: 32px 22px;
  }
  .stats-col2 > h2 {
    margin-top: 12px;
    font-size: 32px;
  }
  .stats-col2 > p {
    font-size: 18px;
  }
  .stats-col2 .stats-col2-inner h2 {
    margin: 8px 0;
    font-size: 32px;
  }
  .stats-col2 .stats-col2-inner p {
    margin: 8px 0;
    font-size: 18px;
  }


  .stats-col2 > * {
    grid-column: 1 / 5;
  }
  .stats-col2 .border-top {
    padding-top: 22px;
  }
}

@media screen and (max-width: 600px) {
  .stats-col2 .stats-col2-inner {
    grid-template-columns: 1fr;
  }
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 28px;
  margin: 12px 0;
}

section p {
  font-size: 24px;
}


footer .top {
  background-color: black;
  color: white;
  font-size: 24px;
}

footer .top .contained {
  display: grid;
  grid-template: "a b" auto "c d" auto / 1fr auto;
  padding: 24px;
  gap: 12px;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:hover {
  text-decoration: underline;
}

footer .links {
  grid-area: c;
  align-self: center;
}

footer .socials {
  grid-area: b;
  justify-self: end;
  display: flex;
  gap: 24px;
  align-items: center;
}

footer .socials img {
  filter: invert(1);
}

footer .group {
  grid-area: d;
  display: flex;
  gap: 24px;
}

footer .bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 32px 24px;
  font-size: 16px;
}

@media screen and (max-width: 1000px) {
  footer .links {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
  }
  footer .links > span {
    display: none;
  }

  footer .links a {
    display: inline-block;
    padding: 6px 0;
  }

  footer  .top .contained {
    grid-template: "a" auto "b" auto "c" auto "d" auto / 1fr auto;
  }
  footer .socials {
    justify-self: start;
  }

  footer .bottom {
    grid-template-columns: 1fr;
  }

  footer .bottom img {
    width: 160px;
    margin-bottom: 24px;
  }

  footer .legal {
    font-size: 12px;
  }
}


.cards .card {
  aspect-ratio: 3 / 4;
  position: relative;
  border-radius: 30px;
  width: 321px;
  overflow: hidden;
  display: inline-block;
}

.cards .card .thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  object-fit: cover;
  transition: filter 300ms, transform 300ms;
}

.cards .card h2 {
  position: absolute;
  z-index: 2;
  font-size: 64px;
  bottom: 0;
  left: 0;
  margin: 0;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: bottom left;
  margin: 24px;
  width: 380px;
  line-height: 0.8em;
  user-select: none;
  transition: opacity 300ms;
  white-space: pre-line;
  color: white;
}

.cards .card .logo {

  position: absolute;
  z-index: 2;
  font-size: 64px;
  bottom: 12px;
  left: 24px;
  user-select: none;
  transition: opacity 300ms;
}

.cards .card .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #00000063; */
  z-index: 1;
}

.card-space {
  height: 600px;
}
/* .cards .card:hover {
  opacity: 1 !important;
} */

.cards .card:hover .thumbnail {
  filter: contrast(1.3);
  transform: scale(1.1);
}

.cards .card:hover h2 {
  opacity: 0.6;
}
.cards-cta {
  background-color: black;
  padding-top: 120px;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  padding-bottom: 160px;
}

.cards-cta .inner {
  display: inline-block;
  clear: none;
  gap: 12px;
  white-space: nowrap;
  color: white;
}
.cards-cta .inner .card {
  margin-right: 24px;
  width: 170px;
}
.cards-cta .card h2 {
  font-size: 32px;

}
.cards-cta .logo {
  transform-origin: left bottom;
  transform: scale(0.5);
  left: 18px !important;
  bottom: 18px !important;
}

.cards-cta h3 a {
  color: white;
  text-decoration: none;
  text-align: center;
  display: block;
  font-weight: 300;
  margin: 32px 0;
}

.big-text {
  font-size: 48px !important;
  font-weight: 800;
}
.side-titles .big-text {
  grid-column: 1 / 6;
}

@media screen and (max-width: 1000px) {
  .cards-cta {
    padding-top: 42px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 0;
  }

  .cards-cta > h3 {
    font-size: 18px;
  }

  .big-text {
    font-size: 28px !important;
  }

  .cards-cta .inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 12px;
    height: auto;
  }
  .cards-cta .inner .card {
    height: auto !important;
    min-height: none;
    max-height: none;
    aspect-ratio: 5 / 2 !important;
    width: 100%;

    --fade-in-delay: 150ms !important;
  }
  .cards-cta .inner .card h2 {
    font-size: 32px;
  
  }
  .cards-cta .inner .card .logo {
    transform-origin: left bottom;
    transform: scale(0.4);
    left: 22px !important;
    bottom: 22px !important;
  }
  
  .cards-cta .card h2 {
    transform: none !important;
  }
}

.banners {
  overflow: hidden;
  padding: 120px 0 0;
}

.banner {
  font-size: 24px;
  height: 100px;
  margin: 0.2em -1em;
  user-select: none;
  display: flex;
  align-items: center;
}

.banner.angled {
  border: 1px solid black;
  transform: translateY(-5%) rotate(4deg);
  position: relative;
  z-index: 2;
  background-color: white;
}

.banner > span {
  white-space: nowrap;
  position: relative;
  display: block;
  text-indent: -20em;
}

.banner .dot {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 100px;
  margin: 0 1em;
}

.banner.black {
  background-color: black;
  color: white;
}

.banner.blue {
  background-color: var(--blue);
  color: white;
}


.banner.white .dot {
  background-color: black;
}



@media screen and (max-width: 860px) {
  .banners {
    padding: 42px 0;
  }
  .banner {
    font-size: 16px;
    height: 64px;
  }
}

.carrousel {
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  padding: 32px 0;
  font-size: 20px;
  white-space: nowrap;
}

.carrousel .inner {
  animation: carrousel 30s linear 0s infinite;
  display: inline-block;
}

@keyframes carrousel {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.header {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  z-index: 8;
  flex-direction: row;
  height: 108px;
  padding: 29px 32px 42px 45px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.758), transparent);
}
.header-brand img {
  display: flex;
  align-items: center;
  filter: brightness(0) invert(1);
  height: 33px;
}

@media screen and (max-width: 860px) {
  .header-brand img {
    height: 22px;
  }
}

.header-brand-divider {
  border-left: solid 1px #6b6a6a;
  margin-right: 36px;
  height: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  pointer-events: none;
  user-select: none;
}

.header-content {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

header .menu-links {
  display: flex;
  gap: 32px;
}

header .menu-links .nav-item {
  font-size: 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.05px;
  justify-content: start;
  flex-wrap: nowrap;
}


.nav-menu-btn {
  border: none;
  background-color: transparent;
  padding: 0;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}



@media screen and (max-width: 1000px) {



  .header {
    max-width: 100%;
    padding-bottom: 100px;
    padding: 0;
    padding-left: 22px;
    height: auto;
  }

  .header-content {
    gap: 0;
  }
  .nav-menu {
    max-width: 100%;
  }
  .header-brand {
    display: grid;
    grid-template-columns: auto auto 1fr;
    padding: 0;
    justify-items: center;
  }
  .header-brand img {
    height: 22px;
  }
  .header-brand-title {
    height: 20px;
    pointer-events: none;
  }


  html:has(.header.open) {
    overflow-y: hidden;
  }

  .nav-menu-btn:focus, .nav-menu-btn:hover {
    outline: none;
  }
  .nav-menu-btn .opened {
    display: none;
  }
  .header.open .nav-menu-btn .opened {
    display: inline-block;
  }
  .header.open .nav-menu-btn .closed {
    display: none;
  }

  .header.open .header-gradient {
    opacity: 0;
  }

  .header.open + .mobile-menu {
    opacity: 1;
    pointer-events: all;
    transform: none;
  }
}


.nav-item {
  align-self: stretch;
  margin: auto 0;
  text-decoration: none;
  color: #FAFAFA; 
  padding: 12px 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  transition: color 150ms;
  display: inline-block;
}



.nav-item:visited {
  color: #FAFAFA;
}

.nav-item:hover {
  opacity: 0.7;
}


.header.solid .nav-item:hover {
  color: var(--secondary);
}

.nav-catalog {
  transition: width 300ms, color 150ms, transform 300ms, opacity 300ms;
  white-space: nowrap;
  width: 114px;
  margin-right: -34px;
  text-align: left;
}
.header.home .nav-catalog {
  width: 0;
  transform: translateY(-10px);
  opacity: 0;
}
.header.home.solid .nav-catalog {
  width: 114px;
  transform: none;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0px;
  padding-top: 84px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 7;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 300ms, transform 300ms;
  background-color: black;
  color: white;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 700;
  align-items: stretch;
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 285px;
  padding: 26px;
}

.mobile-menu-links a {
  padding: 16px 22px 16px 16px;
  opacity: 1 !important;
  letter-spacing: 0.01em;
  margin: 0;
  text-align: left;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
}

.mobile-menu-links a.nav-catalogo {
  width: 100%;
}

.mobile-menu-links a:hover:hover {
  text-decoration: underline;
}

.mobile-menu-links a:hover,.mobile-menu-links a:visited {
  color: var(--secondary);
}

.mobile-menu-links a:after {
  content: " ";
  display: inline-block;
  background: var(--chevron);
  width: 16px;
  height: 16px;
  background-size: 100%;
}

.mobile-menu-footer {
  background-color: var(--secondary); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  overflow: hidden;
  min-height: 280px;
}

.mobile-menu-socials {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: 36px;
}
.mobile-menu-socials img {
  width: 28px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(65%) saturate(4490%) hue-rotate(343deg) brightness(101%) contrast(99%);
}

.mobile-menu .legal {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: white;
  margin: 0;
}


@media (max-width: 991px) {
  .header-divider {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .nav-item {
    font-size: 14px;
    padding: 6px;

  }
  .mobile-menu-links a {
    padding: 12px;
  }
}
