*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --gantari: "Gantari", sans-serif;
  --black: #131313;
  --black-rgb: 19, 19, 19;
  --gray: #333333;
  --white: #ffffff;
  --hero-height: 140px;
  --hero-logo-height: 90px;
  --hero-2-logo-height: 60px;
}

* {
  font-family: var(--gantari);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gantari) !important;
  line-height: 100%;
  font-weight: 400;
}

body {
  background-color: var(--black);
  color: var(--white);
}

.hero-logo {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
  height: var(--hero-logo-height);
  background-color: var(--black);
  padding: 20px;
  padding-top: 18px;
  border-radius: 14px;
}
.hero-menu {
  z-index: 10;
  top: 40px;
  right: 40px;
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  z-index: 9999;
}
.hero-menu span {
  position: relative;
  height: 4px;
  width: 30px;
  background-color: var(--white);
  display: block;
  margin-bottom: 6px;
  border-radius: 50px;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}
.hero-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hero-menu.active span:nth-child(2) {
  opacity: 0;
  left: -5px;
}
.hero-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -10px;
}

body.fullscreen-menu-open {
  overflow: hidden;
}

.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  right: -100px;
}
.fullscreen-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  right: 0;
}
.fullscreen-menu-surface {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(2rem, 6vw, 4rem);
  background-color: var(--black);
  cursor: pointer;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
}
@media (max-width: 575.98px) {
  .fullscreen-menu-surface {
    width: 100vw;
  }
}
.fullscreen-menu-nav {
  cursor: default;
}
.fullscreen-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.fullscreen-menu-list a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--white);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.fullscreen-menu-list a:hover, .fullscreen-menu-list a:focus-visible {
  opacity: 0.7;
}
.fullscreen-menu-list a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 6px;
}
.fullscreen-menu-avatar-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.fullscreen-menu-avatar-wrap:hover .fullscreen-menu-avatar--hover, .fullscreen-menu-avatar-wrap:focus-within .fullscreen-menu-avatar--hover {
  opacity: 1;
}
.fullscreen-menu-avatar {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fullscreen-menu-avatar--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.fullscreen-menu-social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
.fullscreen-menu-social-links a {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.fullscreen-menu-social-links img {
  height: 14px;
  width: auto;
}
.fullscreen-menu-social-links img.icon-whatsapp {
  height: 20px;
}

.hero-2-logo {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
  height: var(--hero-2-logo-height);
}

.reel-slider {
  max-width: 100%;
  max-height: 100vh;
  overflow: hidden;
}
@media (max-width: 576px) {
  .reel-slider {
    max-height: calc(100svh - 140px);
    margin-top: 140px;
  }
}
.reel-slider .splide__slide img {
  display: block;
  width: 100%;
  height: 100svh;
}
@media (max-width: 576px) {
  .reel-slider .splide__slide img {
    max-height: calc(100svh - 140px);
  }
}
.reel-slider .splide__slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.reel-slider .splide__arrow {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}
.reel-slider .splide__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}
.reel-slider .splide__arrow svg {
  fill: var(--white);
}
.reel-slider .splide__pagination__page {
  background: rgba(255, 255, 255, 0.35);
}
.reel-slider .splide__pagination__page.is-active {
  background: var(--white);
}