@font-face {
  font-family: "Humanist521BT";
  src: url("../fonts/Humanist521BT.ttf") format("truetype");
}

@font-face {
  font-family: "Humanist521LightBT";
  src: url("../fonts/Humanist521LightBT.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mobile {
  display: none;
}
.desktop {
  display: block;
}
.vertical-line-left {
  width: 1px;
  height: 100vh; /* Full screen height */
  background-color: #444;
  position: absolute;
  /* left: 16%; */
  left: 9%;
  top: 0;
  z-index: 5;
}
.vertical-line-right {
  width: 1px;
  height: 100vh; /* Full screen height */
  background-color: #444;
  position: absolute;
  right: 9%;
  top: 0;
  z-index: 5;
}
.slide-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
/* On load */
.load {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInBottom 1s ease-out forwards;
}
/* On scroll - start hidden */
.hidden {
  opacity: 0;
}
/* Active on scroll */
.show {
  opacity: 1;
  transform: translate(0);
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-in-left.show {
  animation: slideInLeft 1s ease-out forwards;
}
.slide-in-right.show {
  animation: slideInRight 1s ease-out forwards;
}
.slide-in-top.show {
  animation: slideInTop 1s ease-out forwards;
}
.slide-in-bottom.show {
  animation: slideInBottom 1s ease-out forwards;
}

@media (max-width: 767px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .vertical-line-left {
    left: 5%;
  }
  .vertical-line-right {
    right: 5%;
  }
}

@media only screen and (min-width: 768px) {
}

@media only screen and (min-width: 1024px) {
}

@media only screen and (min-width: 1224px) {
}

@media only screen and (min-width: 1800px) {
}
