@import url(https://fonts.bunny.net/css?family=inter:400,500);

@font-face {
  font-family: "GT-America";
  src: url("../../../../assets/fonts/GT-America-Standard-Regular.eot");
  src: url("../../../../assets/fonts/GT-America-Standard-Regular.eot?#iefix") format("embedded-opentype"), url("../../../../assets/fonts/GT-America-Standard-Regular.woff2") format("woff2"), url("../../../../assets/fonts/GT-America-Standard-Regular.woff") format("woff"), url("../../../../assets/fonts/GT-America-Standard-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Studio-Feixen";
  src: url("../../../../assets/fonts/Studio-Feixen-Sans-Variable-Trail.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "LemonMilk";
  src: url("../../assets/fonts/LemonMilk.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
#nav-toggle {
  cursor: pointer;
  height: 11.5px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.2s ease;
  width: 28px;
  z-index: 100;
}
@media screen and (min-width: 550px) {
  #nav-toggle {
    display: none;
  }
}

#nav-toggle span {
  background: #111;
  display: block;
  height: 2px;
  left: 0;
  opacity: 1;
  position: absolute;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.2s ease;
  width: 100%;
}
#nav-toggle span:nth-child(1) {
  margin-top: -2px;
}
#nav-toggle span:nth-child(2), #nav-toggle span:nth-child(3) {
  margin-top: 4.75px;
}
#nav-toggle span:nth-child(4) {
  margin-top: 11.5px;
}

#nav-toggle.is-open span {
  background: #fff !important;
}
#nav-toggle.is-open span:nth-child(1),
#nav-toggle.is-open span:nth-child(4) {
  margin-top: 3.75px;
  width: 0%;
  left: 50%;
}
#nav-toggle.is-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#nav-toggle.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

:root {
  --font-wth: 0;
}

@-webkit-keyframes font-width {
  0% {
    font-variation-settings: "wdth" 50;
  }
  25% {
    font-variation-settings: "wdth" 0;
  }
  50% {
    font-variation-settings: "wdth" 80;
  }
  75% {
    font-variation-settings: "wdth" 40;
  }
  100% {
    font-variation-settings: "wdth" 100;
  }
}

@keyframes font-width {
  0% {
    font-variation-settings: "wdth" 50;
  }
  25% {
    font-variation-settings: "wdth" 0;
  }
  50% {
    font-variation-settings: "wdth" 80;
  }
  75% {
    font-variation-settings: "wdth" 40;
  }
  100% {
    font-variation-settings: "wdth" 100;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.nav .banner {
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  width: 100%;
  border-bottom: 1px solid #111;
}
.nav .banner-text {
  text-align: center;
}
.nav .nav-logo {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-name: font-width;
          animation-name: font-width;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.nav .nav-logo a {
  line-height: 1;
  transition: 1s ease color;
}
.nav .nav-logo a:hover {
  color: #ffc300;
}
.nav .nav-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 20px;
}
@media screen and (min-width: 550px) {
  .nav .nav-links-wrapper {
    padding: 0 40px;
  }
}
.nav .nav-list {
  margin: 0;
  padding: 0;
  display: none;
  flex: 1;
  text-transform: capitalize;
  text-align: right;
}
@media screen and (min-width: 550px) {
  .nav .nav-list {
    display: flex;
    width: 50%;
    justify-content: flex-end;
  }
}
.nav .nav-item {
  display: inline;
  border-bottom: 1px solid transparent;
  transition: all 1s ease;
  margin-left: 25px;
  /* 
  &:hover {
    cursor: pointer;
    border-bottom: 1px solid black;
  } */
}
@media screen and (min-width: 550px) {
  .nav .nav-item {
    margin-left: calc(10px + 1.2vw);
    font-size: 1.25em;
  }
}

.is-light .nav-item:hover {
  border-bottom: 1px solid black !important;
}

.footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 20px;
  flex-shrink: 0;
}
@media screen and (min-width: 550px) {
  .footer {
    padding: 20px 40px;
  }
}
.footer a,
.footer .mail {
  width: 100%;
  text-align: right;
  padding: 0;
}
@media screen and (min-width: 400px) {
  .footer a,
.footer .mail {
    width: auto;
    text-align: unset;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
  line-height: 1.35;
}
@media screen and (min-width: 370px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 640px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  html {
    font-size: 17px;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 19px;
  }
}
@media screen and (min-width: 1620px) {
  html {
    font-size: 20px;
  }
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  position: relative;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

em {
  font-family: "Inter", sans-serif;
}

strong {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
h1 em,
h2 em,
h3 em {
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

.main {
  width: 100%;
  flex: 1 0 auto;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  position: relative;
}

.footer {
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
  flex-shrink: 0;
}

.menu {
  opacity: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
  color: #fff;
}
.menu .menu-content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.menu .menu-toggle {
  width: 100%;
  max-height: 100px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-align: right;
  cursor: pointer;
}
.menu .menu-list {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 2em;
}
.menu .menu-list li {
  margin-bottom: 20px;
  text-transform: capitalize;
}
.menu.is-open {
  z-index: 300;
  background: #111;
  opacity: 1;
}
.menu.is-open .menu-toggle,
.menu.is-open li {
  pointer-events: all;
}
@media screen and (min-width: 640px) {
  .menu.is-open {
    display: none;
  }
}

.nav .nav-item.is-open, .nav .nav-item:hover {
  border-bottom: 2px solid #111;
}