:root {
  --light-grey: #eeece9;
  --dark-grey: #555;
  --almost-black: #000105;
  --hamburger-height: 14px;
  --hamburger-width: 30px;
  --hamburger-thickness: 2px;
  --hamburger-color: #111;
}

:root {
  --almost-black: #111;
}

.nav-wrapper {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 90px;
}
@media screen and (min-width: 640px) {
  .nav-wrapper {
    min-height: unset;
  }
}

.nav {
  align-items: center;
  display: flex;
  font-size: 1em;
  justify-content: space-between;
  margin: 40px 30px 20px 30px;
  max-width: 1280px;
  width: calc(100% - 60px);
}
@media screen and (min-width: 640px) {
  .nav {
    margin: 80px 30px 40px 30px;
  }
}
.nav .nav-logo {
  height: 1.75em;
}
.nav .nav-logo img {
  max-height: 100%;
  width: auto;
}
.nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav .is-open,
.nav a:hover {
  color: #d1d1d1;
}
.nav .nav-menu {
  background: #fff;
  display: flex;
  flex-direction: column;
  left: 0;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 90px;
  transition: 0.3s ease opacity, transform 0.3s ease;
  width: 100%;
  transform: translateY(-10px);
  z-index: -10;
}
.nav .nav-menu.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
.nav .nav-menu a {
  margin: 0;
  padding: 10px 30px;
}
@media screen and (min-width: 640px) {
  .nav .nav-menu {
    display: block;
    width: auto;
    left: unset;
    flex-direction: row;
    position: relative;
    top: unset;
    z-index: 10;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
  }
  .nav .nav-menu a {
    margin: 0 0 0 0.875em;
    padding: 0;
  }
}

:root {
  --light-grey: #eeece9;
  --dark-grey: #555;
  --almost-black: #000105;
  --hamburger-height: 14px;
  --hamburger-width: 30px;
  --hamburger-thickness: 2px;
  --hamburger-color: #111;
}

#nav-toggle {
  cursor: pointer;
  height: var(--hamburger-height);
  position: relative !important;
  transform: rotate(0deg);
  transition: 0.2s ease;
  width: var(--hamburger-width);
  cursor: pointer;
}

#nav-toggle span {
  background: var(--hamburger-color);
  display: block !important;
  height: var(--hamburger-thickness);
  left: 0;
  opacity: 1;
  position: absolute;
  transform: rotate(0deg);
  transition: all 0.2s ease;
  width: 100%;
}
#nav-toggle span:nth-child(1) {
  margin-top: calc(-1 * var(--hamburger-thickness));
}
#nav-toggle span:nth-child(2), #nav-toggle span:nth-child(3) {
  margin-top: calc( var(--hamburger-height) / 2 - var(--hamburger-thickness) / 2 );
}
#nav-toggle span:nth-child(4) {
  margin-top: var(--hamburger-height);
}

#nav-toggle.is-open span {
  background-color: var(--hamburger-color);
}
#nav-toggle.is-open span:nth-child(1),
#nav-toggle.is-open span:nth-child(4) {
  margin-top: calc(var(--hamburger-height) / 2 - var(--hamburger-thickness));
  width: 0%;
  left: 50%;
}
#nav-toggle.is-open span:nth-child(2) {
  transform: rotate(45deg);
}
#nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

:root {
  --light-grey: #eeece9;
  --dark-grey: #555;
  --almost-black: #000105;
  --hamburger-height: 14px;
  --hamburger-width: 30px;
  --hamburger-thickness: 2px;
  --hamburger-color: #111;
}

.footer {
  font-size: 0.8em;
  margin: 80px 20px 60px 20px;
  text-align: center;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  margin: 1em 0;
}
.footer .footer-social > * {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin: 1em 0.2em;
}
.footer .footer-social > * svg {
  width: 26px;
  height: auto;
}
.footer .footer-social > * svg > *:first-child {
  stroke: #fff !important;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  min-height: 100%;
  margin: 0;
}
@media screen and (min-width: 480px) {
  body {
    font-size: 17px;
  }
}
@media screen and (min-width: 960px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 19px;
  }
}

p {
  margin: 0.5em 0;
}

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

.only-desktop {
  display: none;
}
@media screen and (min-width: 640px) {
  .only-desktop {
    display: block;
  }
}