/** Colors Variables */
/** Colors Variables */
/*********************** 
 * Header              * 
 ***********************/
.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  width: 100%;
}

#logo-container {
  color: #fff;
  margin: 0 10px;
}

#logo-container img {
  width: 90px;
  height: 90px;
}

#menu-btn {
  width: 100px;
  height: 100px;
  font-family: 'Proxima Nova';
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 20px;
}

ul {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#menu {
  margin: 0 20px;
}

#menu a {
  text-decoration: none;
  color: #fff;
}

#menu li {
  display: inline;
  margin: 0 15px;
}

#menu li i.menu-icon {
  padding: 10px;
  font-size: 2em;
  border-radius: 50px;
  color: white;
}

#menu li i.menu-icon:hover {
  -webkit-animation: icon3d 200ms infinite;
  animation: icon3d 200ms infinite;
}

@media screen and (max-width: 1250px) {
  .navbar,
  #menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

@media screen and (max-width: 875px) {
  .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #logo-container img {
    max-width: 90px;
    max-height: 90px;
    width: 100%;
  }
  #menu {
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  ul#menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  ul#menu li {
    margin-bottom: 15px;
  }
  #menu-btn {
    margin-bottom: 10px;
  }
}

@-webkit-keyframes icon3d {
  0% {
    text-shadow: 3px 2px #f44336, -2px -3px #2196f3;
  }
  25% {
    text-shadow: -2px -3px #f44336, 3px 2px #2196f3;
  }
  50% {
    text-shadow: 3px -2px #f44336, -3px 2px #2196f3;
  }
  75% {
    text-shadow: -3px -2px #f44336, -3px -2px #2196f3;
  }
  100% {
    text-shadow: -3px 0 #f44336, 3px -2px #2196f3;
  }
}

@keyframes icon3d {
  0% {
    text-shadow: 3px 2px #f44336, -2px -3px #2196f3;
  }
  25% {
    text-shadow: -2px -3px #f44336, 3px 2px #2196f3;
  }
  50% {
    text-shadow: 3px -2px #f44336, -3px 2px #2196f3;
  }
  75% {
    text-shadow: -3px -2px #f44336, -3px -2px #2196f3;
  }
  100% {
    text-shadow: -3px 0 #f44336, 3px -2px #2196f3;
  }
}

/** American Captain Font */
@font-face {
  font-family: 'American Captain';
  font-style: normal;
  font-weight: normal;
  src: local("font/American Captain.woff"), url("font/American Captain.woff") format("woff");
}

/** Proxima Font */
@font-face {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 300;
  src: local("font/proximanova-light.woff"), url("font/proximanova-light.woff") format("woff");
}

@font-face {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 500;
  src: local("font/proximanova-regular.woff"), url("font/proximanova-regular.woff") format("woff");
}

@font-face {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 600;
  src: local("font/proximanova-semibold.woff"), url("font/proximanova-semibold.woff") format("woff");
}

@font-face {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 700;
  src: local("font/proximanova-bold.woff"), url("font/proximanova-bold.woff") format("woff");
}

footer {
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(150deg, rgba(0, 0, 0, 0) 23%, #00532d 100%);
  border-top: 1px solid #fff;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 50px 0 50px;
  max-width: 1200px;
  margin: auto;
}

.footer .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 900px) {
  .footer .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer #footer-menu {
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer #footer-menu li {
  font-family: 'Proxima Nova';
  font-size: 16px;
  color: #fff;
  list-style-type: none;
  padding: 2px 0;
}

.footer #footer-menu a {
  text-decoration: none;
  color: #fff;
}

.footer .socials {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 15px 0;
}

.footer .socials i {
  margin-right: 10px;
}

.footer .footer-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer-logo-container .footer-elrond-logo {
  width: 30px;
  height: 30px;
}

.footer .footer-logo-container .footer-elrond-logo-img {
  width: 60px;
  height: 60px;
  padding: 0 30px;
}

.footer .footer-logo-container .footer-elrond-text {
  font-family: 'Proxima Nova';
  font-size: 20px;
  color: #fff;
  padding: 0 30px;
}

.footer .footer-vl {
  border-left: 2px solid #fff;
  height: 50px;
}

.footer .footer-elrond-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.copyright {
  font-family: 'Proxima Nova';
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

@media screen and (max-width: 900px) {
  #footer-menu li {
    text-align: center;
  }
  .footer-menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-logo-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
  }
}

@media screen and (max-width: 700px) {
  .footer-vl {
    display: none;
  }
  .footer-logo-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-elrond-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-elrond-text {
    padding: 30px 0;
    text-align: center;
  }
  .footer-elrond-logo {
    padding-bottom: 20px;
  }
}

html,
body {
  scroll-behavior: smooth;
}

body {
  background: black !important;
  width: 100%;
  height: 90px;
  margin: auto;
}

.max-width-content {
  max-width: 1200px;
  margin: auto;
}

body,
section {
  scroll-behavior: smooth;
}

/* 
 * Banner Section classes
 */
.banner-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner-section img {
  max-height: 480px;
  max-width: 480px;
}

.text-animation {
  font-size: 48px;
  color: #fff;
  opacity: 0;
  width: 100%;
  max-width: 500px;
  line-height: 75px;
}

.text-animation span {
  font-family: "Proxima Nova";
  font-weight: 600;
  position: relative;
  top: 10px;
  left: 10px;
  font-size: 50px;
  font-weight: 600;
  opacity: 0;
  -webkit-animation: fade 400ms ease-in-out forwards;
          animation: fade 400ms ease-in-out forwards;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes fade {
  0% {
    top: 10px;
    left: 10px;
    -webkit-filter: blur(15px);
            filter: blur(15px);
    opacity: 0;
  }
  50% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0.9;
  }
  100% {
    top: 0;
    left: 0;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    top: 10px;
    left: 10px;
    -webkit-filter: blur(15px);
            filter: blur(15px);
    opacity: 0;
  }
  50% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0.9;
  }
  100% {
    top: 0;
    left: 0;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

section {
  width: 100%;
  padding: 50px 0;
}

.section-title {
  font-family: "American Captain";
  font-size: 40px;
  color: #fff;
  margin: auto;
  text-align: center;
  padding: 30px 0;
}

.banner-container {
  width: 50%;
}

/** Section Roadmap */
.roadmap-section {
  /* The actual timeline (the vertical ruler) */
  /* The actual timeline (the vertical ruler) */
  /* Container around content */
  /* The circles on the timeline */
  /* Place the container to the left */
  /* Place the container to the right */
  /* Add arrows to the left container (pointing right) */
  /*.left::before {
        content: " ";
        height: 0;
        position: absolute;
        top: 22px;
        width: 0;
        z-index: 1;
        right: 30px;
        border: medium solid white;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent white;
      }*/
  /* Add arrows to the right container (pointing left) */
  /* Fix the circle for containers on the right side */
  /* The actual content */
  /* Media queries - Responsive timeline on screens less than 600px wide */
}

.roadmap-section .section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.roadmap-section .roadmap-container {
  width: 50%;
}

.roadmap-section * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.roadmap-section .timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap-section .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: -webkit-gradient(linear, left top, left bottom, from(#160105), color-stop(31%, #942627), color-stop(40%, #983535), color-stop(96%, #ba7508));
  background: linear-gradient(180deg, #160105 0%, #942627 31%, #983535 40%, #ba7508 96%);
  top: 0;
  bottom: 0;
  right: 0;
  margin-left: -3px;
}

.roadmap-section .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 100%;
  margin: 50px 0;
}

.roadmap-section .container::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -11px;
  background-color: black;
  border: 4px solid #fff;
  top: 50px;
  border-radius: 50%;
  z-index: 1;
}

.roadmap-section .left {
  left: 0;
}

.roadmap-section .right {
  left: 50%;
}

.roadmap-section .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.roadmap-section .right::after {
  left: -16px;
}

.roadmap-section .content {
  padding: 10px 15px;
  position: relative;
  border-radius: 6px;
  background: #151515;
}

.roadmap-section .content .content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.roadmap-section .content .content-header .content-header-title {
  font-family: "Proxima Nova";
  color: #fff;
  font-weight: bold;
  padding: 3px 0;
  font-size: 20px;
}

.roadmap-section .content .content-header .content-header-time {
  font-family: "Proxima Nova";
  color: black;
  font-weight: bold;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
}

.roadmap-section .content p {
  font-family: "Proxima Nova";
  color: #fff;
  margin: 0;
  padding: 10px 0;
}

@media screen and (max-width: 900px) {
  .roadmap-section {
    /* Place the timelime to the left */
    /* Full-width containers */
    /* Make sure that all arrows are pointing leftwards */
    /*.container::before {
          left: 60px;
          border: medium solid white;
          border-width: 10px 10px 10px 0;
          border-color: transparent white transparent transparent;
        }*/
    /* Make sure all circles are at the same spot */
    /* Make all right containers behave like the left ones */
  }
  .roadmap-section .timeline::after {
    left: 31px;
  }
  .roadmap-section .roadmap-container {
    width: 100%;
  }
  .roadmap-section .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .roadmap-section .left::after,
  .roadmap-section .right::after {
    left: 15px;
  }
  .roadmap-section .right {
    left: 0%;
  }
}

.roadmap-section #ape-scroll-container {
  width: 50%;
}

@media screen and (max-width: 900px) {
  .banner-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
  .banner-container {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
  }
  .text-animation {
    margin: auto;
    padding: 20px 0;
  }
  .img-banner {
    width: 100%;
  }
  .text-animation,
  .text-animation span {
    font-size: 30px !important;
  }
}

.roadmap-section {
  z-index: 1;
  position: relative;
}

.box {
  position: absolute;
  left: 77.77%;
  top: -250px;
  margin: 0;
}

/*********************** 
 * Section "When Apes" * 
 ***********************/
#when {
  background: #3c2e79;
  background: linear-gradient(128deg, #3e3173 0%, #0d0d0d 100%);
  -webkit-clip-path: polygon(50% 13%, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(50% 13%, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 0);
}

#when .when-section {
  padding: 50px 0;
}

#when .when-section .progress-infos {
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: auto;
  padding: 30px 0;
}

#when .when-section .progress-infos .progress-infos-text {
  font-family: "Proxima Nova";
  color: #fff;
  width: 25%;
  text-align: center;
}

#when .when-section .progress-infos .progress-infos-text span {
  font-weight: 700;
}

#when .when-section .progress-infos .progress-infos-text-1 {
  opacity: 0;
  /* Firefox */
  -webkit-animation: textOpacityTransition 2s;
  /* Safari and Chrome */
  /* Opera */
  animation: textOpacityTransition 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#when .when-section .progress-infos .progress-infos-text-2 {
  opacity: 0;
  /* Firefox */
  -webkit-animation: textOpacityTransition 3s;
  /* Safari and Chrome */
  /* Opera */
  animation: textOpacityTransition 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#when .when-section .progress-infos .progress-infos-text-3 {
  opacity: 0;
  /* Firefox */
  -webkit-animation: textOpacityTransition 3s;
  /* Safari and Chrome */
  /* Opera */
  animation: textOpacityTransition 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#when .when-section .progress-infos .progress-infos-text-4 {
  opacity: 0;
  /* Firefox */
  -webkit-animation: textOpacityTransition 4s;
  /* Safari and Chrome */
  /* Opera */
  animation: textOpacityTransition 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#when .when-section .when-section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 0 50px 0;
}

#when .when-section .progressbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: auto;
  border: 1px solid #fff;
  border-radius: 6px 0 0 6px;
}

#when .when-section .complete {
  height: 22px;
  width: 77%;
  background: #07cde9;
  background: -webkit-gradient(linear, left top, right top, color-stop(47%, #07cde9), color-stop(53%, #8d4ce2));
  background: linear-gradient(90deg, #07cde9 47%, #8d4ce2 53%);
  border: 1px solid #fff;
  border-right: 2px solid #fff;
  text-shadow: 0 0 0.125em;
  -webkit-box-shadow: 1px 0 5px 1px #fff;
          box-shadow: 1px 0 5px 1px #fff;
  border-radius: 6px 0 0 6px;
}

#when .when-section [data-aos="reveal-right"] {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#when .when-section [data-aos="reveal-right"].aos-animate {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media screen and (max-width: 1000px) {
  #when .when-section {
    padding: 20px;
  }
}

@media screen and (max-width: 500px) {
  #when .when-section {
    padding: 10px;
  }
}

/*********************** 
 * Section Team        * 
 ***********************/
#team {
  background-image: url("../assets/team/team-background.jpg");
  background-size: cover;
}

#team .team-section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 0;
}

#team .team-section-container .team-card {
  width: 250px;
  padding: 0 0 20px 0;
  margin: 20px;
  border: 1px solid #fff;
  border-radius: 21px;
  backdrop-filter: blur(8.4px);
  -webkit-backdrop-filter: blur(8.4px);
  background: rgba(255, 255, 255, 0.21);
}

#team .team-section-container .team-card .team-card-img img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

#team .team-section-container .team-card .team-card-role {
  font-family: "Proxima Nova";
  color: #fff;
  text-align: center;
  padding: 5px 0 0 0;
}

#team .team-section-container .team-card .team-card-descr {
  font-family: "Proxima Nova";
  color: #fff;
  text-align: center;
  padding: 10px 10px 0 10px;
  font-size: 14px;
}

#team .team-section-container .team-card .team-card-name {
  font-family: "Proxima Nova";
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding: 2px 0;
  font-weight: 600;
}

/*********************** 
 * Section About       * 
 ***********************/
#about .about-section {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

#about p {
  font-family: "Proxima Nova";
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  padding: 20px 50px;
}

/*********************** 
 * Section FAQ         * 
 ***********************/
#faq .faq-section {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

#faq .question {
  font-family: "Proxima Nova";
  color: #fff;
  font-size: 20px;
  text-align: center;
}

#faq .answer {
  font-family: "Proxima Nova";
  color: #fff;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

#faq .topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px;
}

#faq .topics .topic {
  border: 1px solid #fff;
  border-radius: 6px;
  margin-bottom: 20px;
  cursor: pointer;
}

#faq .topics .faq-imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#faq .topics .faq-imgs img {
  margin: 10px;
}

#faq ::marker {
  display: none;
}

#faq summary {
  list-style: none;
}

#faq details,
#faq details summary {
  padding: 20px;
  background-image: none;
  -webkit-appearance: none;
}

#faq details[open] summary ~ * {
  -webkit-animation: sweep 1s ease-in-out;
          animation: sweep 1s ease-in-out;
}

@-webkit-keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

@keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

/*********************** 
 * Section Investor      * 
 ***********************/
#investors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#investors .investor-img {
  margin: 40px 0 20px 0;
  width: 100%;
  max-width: 400px;
}

/*********************** 
 * Terms FAQ            * 
 ***********************/
#terms .terms-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px;
}

#terms .terms-section h1,
#terms .terms-section p {
  font-family: "Proxima Nova";
  color: #fff;
}

#terms .terms-section h1 {
  font-size: 32px;
}

/*********************** 
 * 3D Video Scroll      * 
 ***********************/
.ape-scroll-bound .bound-content {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ape-scroll-bound video {
  width: 80%;
}

@media screen and (max-width: 900px) {
  #ape-scroll-container {
    display: none;
  }
}

/* Keyframs */
@keyframes textOpacityTransition {
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes textOpacityTransition {
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=styles.css.map */