* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ------------------- BODY ------------------- */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

a {
  color: black;
}

h1 {
  font-size: 70px;
}

/* ------------------- HEADER ------------------- */
header {
  background-color: white;
  z-index: 1000;
  position: sticky;
  -webkit-box-shadow: 0px 0px 5px rgb(207, 207, 207);
          box-shadow: 0px 0px 5px rgb(207, 207, 207);
  top: 0;
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 10px 20px;
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
header .header-content nav a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo {
  border-radius: 50%;
  font-size: 0;
  overflow: hidden;
}
.logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

/* ------------------- CONTAINER ------------------- */
main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s linear forwards;
          animation: fadeIn 0.5s linear forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.grid-3 {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.grid-3 img {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container-full {
  padding: 40px 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.container.centered-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  line-height: 1.4;
}
.container.centered-text p {
  text-align: center;
}
.container.legal {
  max-width: 1000px;
}
.container.legal p {
  margin: 0;
  text-align: start;
  max-width: 100%;
}
.container p {
  font-size: 14px;
  -ms-hyphens: auto;
      hyphens: auto;
  letter-spacing: 0.5px;
  max-width: 590px;
  text-align: start;
  margin: 0 auto;
  width: 100%;
}

.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------- HERO ------------------- */
.hero {
  background-color: black;
  height: calc(70svh - 65px);
  font-size: 70px;
  min-height: 320px;
  margin-bottom: 20px;
}
.hero .hero-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  color: white;
  height: 100%;
  text-align: center;
  text-transform: uppercase;
}
.hero.subpage {
  height: 300px;
  font-size: 50px;
}
.hero.subpage h2 {
  font-size: 1em;
  letter-spacing: 3px;
}
.hero h1 {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 3px;
}
.hero p {
  font-size: 0.417em;
}
.hero h2 {
  font-size: 0.3em;
  font-weight: 400;
  letter-spacing: 2px;
}
.hero img {
  -o-object-fit: contain;
     object-fit: contain;
}
.hero svg {
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: 20px;
  -webkit-animation: float 1s linear infinite;
          animation: float 1s linear infinite;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
            transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-10px);
            transform: translatey(-10px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
/* ------------------- FOOTER ------------------- */
footer {
  padding: 40px 20px;
  text-align: center;
  text-transform: none;
}
footer p {
  font-size: 15px;
}
footer p a {
  display: inline-block;
  color: black;
  margin: 0 5px;
}

/* ------------------- MEDIA QUERIES ------------------- */
@media only screen and (max-width: 1200px) {
  .hero {
    font-size: 60px;
  }
  .hero .hero-content {
    gap: 20px;
  }
  .hero.subpage {
    height: 200px;
    font-size: 35px;
  }
  .container-full {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 992px) {
  .hero {
    font-size: 50px;
  }
  .container-full {
    padding: 20px 0;
  }
  .grid-3 {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .hero {
    font-size: 45px;
  }
  #close-menu,
  #open-menu {
    display: block;
  }
  header .header-content nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    background-color: white;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .header-content nav.active {
    opacity: 1;
    pointer-events: all;
  }
  #close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .hero {
    font-size: 9vw;
  }
}
@media only screen and (max-width: 500px) {
  .container p {
    font-size: 14px;
  }
}/*# sourceMappingURL=styles.css.map */