@media (min-width: 1150px) {
  .max-w-screen-xl {
    max-width: 1150px;
  }
}
img {
  width: 100%;
  display: block;
}
.h-10vw {
  height: 65vw;
  /* max-height: 300px; */
}

.bg-333333 {
  background-color: hsl(0, 0%, 20%);
}
.border-color-grey {
  border-color: #595858;
}

.h-fit {
  height: fit-content;
}
.text-wrap-balance {
  text-wrap: balance;
}

@media (min-width: 768px) {
  .md\:h-400 {
    height: 400px;
  }
}

.heading {
  font-family: "museo-sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.paragraph {
  color: #b0b0b0;
  line-height: 1.25em;
  /* font-size: 1.063em; */
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-family: "EB Garamond";
  font-style: italic;
  font-weight: 500;
}

/* Brand Styles */

:root {
  --process-margin: 4px;
  --brand-size: 12vw;
}

.brand {
  display: flex;
  position: fixed;
  border-radius: 50%;
  top: 0;
  z-index: 2;

  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.brand:hover {
  width: calc(var(--brand-size) + 9.5vw);
  height: calc(var(--brand-size) + 9.5vw);
  border-radius: 30% 100%;
}

.brand,
#upBrand {
  width: var(--brand-size);
  height: var(--brand-size);
  transform-origin: top left;
}

.brand:hover,
#upBrand:hover {
  animation: expand 1s;
  transform: scale(1.2);
}

#upBrand {
  position: absolute;
  transition: none;
  border-radius: 0 0 50%;

  -webkit-animation-name: shimmy;
  animation-name: shimmy;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@keyframes shimmy {
  92% {
    transform: translate3d(-4px, 0, 0);
  }

  93% {
    transform: translate3d(4px, 0, 0);
  }

  94% {
    transform: translate3d(-3px, 0, 0);
  }

  95% {
    transform: translate3d(3px, 0, 0);
  }

  96% {
    transform: translate3d(-2px, 0, 0);
  }

  97% {
    transform: translate3d(2px, 0, 0);
  }

  98% {
    transform: translate3d(-1px, 0, 0);
  }

  99% {
    transform: translate3d(1px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes expand {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.35);
  }

  40% {
    transform: scale(1.15);
  }

  60% {
    transform: scale(1.3);
  }

  80% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1.2);
  }
}

/* navigation */

/* new navigation */

:root {
  --grey-dark: #595b5a;
  --grey-middle: #878787;
  --yellow: #fdb713;
  --yellow-light: #ffeec7;
  --white: #ffffff;
  --white-rbga: rgba(255, 255, 255, 0.5);
  --black: #000000;
  --black-nav: #141414;

  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;

  --footerHeight: 4rem;
}

#nav-toggle {
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* -webkit-appearance: none; */
  font-size: calc(1rem + 0.5rem);
  cursor: pointer;

  background: transparent;
  border-color: transparent;
  color: var(--yellow);
  font-size: 2rem;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  z-index: 100;
}

.nav--show {
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* footer / nav buttons */

.nav-btn {
  background: transparent;
  border-color: transparent;
  color: var(--yellow);
  font-size: 1.5rem;
  cursor: pointer;
}

#nav--top,
#nav--close {
  display: none;
}

.arrowUp #nav--open,
.arrowUp #nav--close {
  display: none;
}

.arrowUp #nav--top {
  display: -webkit-flex;
  display: flex;
}

/* navigation */

#nav__overlay {
  position: fixed;
  top: 0%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  background: var(--black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease-in-out;
}

.bottomZero #nav__overlay {
  opacity: 0.8;
  visibility: visible;
}

#nav-toggle {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  margin: min(3rem, 3%);
}

.nav {
  position: -webkit-sticky;
  position: sticky;
  bottom: -600px;
  width: 100%;
  padding: 1rem 0;
  background-color: var(--black-nav);
  transition: all 250ms ease-in-out;
  z-index: 102;
}

.nav a {
  text-decoration: none;
}
.nav ul,
.nav li {
  list-style: none;
}

.bottomZero .nav {
  bottom: 0;
}

.bottomZero #nav--close {
  display: -webkit-flex;
  display: flex;
}

.bottomZero #nav--open {
  display: none;
}

.bottomZero.arrowUp #nav--close {
  display: none;
}

.nav__links {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.nav__links li {
  width: 100%;
  border-bottom: 1px solid #aaa;
}

.nav__links li a {
  display: block;
  width: auto;
  cursor: pointer;
  color: var(--white);
  font-family: "museo-sans", sans-serif;
  font-style: normal;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  font-size: 3.25vw;
  text-transform: capitalize;
  /* padding: 2% 0; */
}

.nav__links li:last-child a {
  color: var(--yellow-light);
}

@media only screen and (max-width: 680px) {
  .nav__links li a {
    font-size: 1.5rem;
    /* padding: 3% 0; */
  }
}

@media only screen and (min-width: 1100px) {
  .nav__links li a {
    font-size: 2.25rem;
  }
}

@media only screen and (min-width: 681px) {
  .nav__links li:hover a {
    color: var(--yellow);
  }
  .social__links li a img:hover {
    background: var(--yellow);
  }
}

.nav__footer {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin: 1rem auto 2rem auto;
  width: 90%;
  max-width: 1150px;
  align-items: center;
}

/* legal */

.legal__links {
  display: -webkit-flex;
  display: flex;
  /* justify-content: flex-end; */
  /* margin: 1rem auto 2rem auto; */
  width: 100%;
  /* max-width: 1150px; */
  color: #ffffff;
  font-family: "museo-sans", sans-serif;
  font-style: normal;
  font-weight: 100;

  font-size: 0.8em;
  line-height: 1.4em;
  letter-spacing: 0.094em;
}

@media only screen and (max-width: 450px) {
  .legal__links__paragraph__delimiter {
    display: none;
  }

  .legal__links__paragraph a {
    display: block;
  }
}

/* socials */

.social__links {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  /* margin: 1rem auto 2rem auto; */
  width: 100%;
  /* max-width: 1150px; */
}

.social__links li {
  margin-left: 0.5rem;
}

.social__links li a img {
  width: 1.75rem;
  background: var(--white);
}

/* legal links */

.legal__link__list {
  font-size: 0.75rem;
  color: hsl(0, 0%, 69%);
}

.legal__link__list__item {
  transition: all 100ms ease-in-out;
  color: hsl(0, 0%, 69%);
}
.legal__link__list__item:hover {
  color: hsl(42, 98%, 53%);
}

@media only screen and (min-width: 625px) {
  .br {
    display: none;
  }
}
