html,
body,
p,
a {
  font-family: 'Avenir Next W04 Demi';
  color: #C45447;
}
h1 {
  font-family: 'Avenir Next W04 Demi';
  color: #C45447;
}
h2 {
  font-family: "Avenir Next LT W04 Thin";
  color: #C45447;
  font-size: 15px;
  letter-spacing: 3px;
}
p {
  font-family: 'Avenir Next W04 Demi';
  font-size: 14px;
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: -10px;
  z-index: 9999999;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: black;
  stroke-width: 3.5;
  stroke-linecap: round;
}
.ham1 .top {
  stroke-dasharray: 40.5 139;
}
.ham1 .bottom {
  stroke-dasharray: 40.5 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}
.loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-content: center;
}
.loader svg {
  width: 150px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader .spin {
  transform-origin: center;
  animation: spin 1.1s linear infinite;
}
.loader.hidden {
  opacity: 0;
  transition: opacity 0.1s;
}
body {
  margin: 0;
  font-family: 'Gilda';
  background-color: white;
  color: black;
  letter-spacing: 2px;
  font-size: 18px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.mobile {
  display: none;
}
.hidden {
  opacity: 0;
}
.fadeIn {
  transition: all 0.5s ease-in;
}
header {
  width: 100vw;
  padding: 20px;
}
header .header-container {
  display: flex;
  justify-content: center;
}
nav {
  width: 100vw;
  max-width: 1200px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 0px;
}
nav ul div {
  text-align: center;
}
nav ul li {
  display: flex;
  align-items: center;
}
nav ul li img {
  width: 25px;
  display: inline-block;
  margin-right: 8px;
}
nav ul li a {
  text-decoration: none;
  display: block;
  color: #C45447;
  font-size: 14px;
  position: relative;
}
iframe {
  width: 100vw;
}
p.progress {
  display: none;
}
@media screen and (max-width: 700px) {
  nav ul {
    flex-direction: column;
  }
  nav ul p {
    display: none;
  }
  nav ul h2 {
    margin-bottom: 30px;
  }
  p.progress {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
}
