* {
  margin: 0px;
  padding: 0px;
}

body {
  position: relative;
  font-family: 'Raleway', sans-serif;
  background-color: #052739;
}

section {
  height: 100vh;
  padding: 0px 100px;
}

.header {
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  width: 1440px;
  padding-top: 50px;
}

.header__logos {
  height: 60px;
}

.wrapper {
  margin: auto;
}

.pre-loader {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  background-color: #F5EAC2;
  width: 100%;
  height: 100%;
}

.pre-loader__waves {
  content: '';
  position: absolute;
  z-index: 101;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: calc(100% + 900px);
  background-image: url("../img/svg/waves-fullscreen.svg");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.pre-loader__container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.pre-loader__emoji {
  font-size: 14em;
}

.pre-loader__progress {
  font-size: 22px;
  font-weight: 700;
  margin-top: 15px;
  color: #484848;
  opacity: 0.25;
}

.noScroll {
  overflow: hidden;
}

.notVisible {
  opacity: 0;
}

.landing {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.landing::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#41A5C5), to(#c1eaf8));
  background: linear-gradient(180deg, #41A5C5 0%, #c1eaf8 100%);
}

.landing__container {
  position: relative;
  z-index: 6;
  max-width: 1440px;
  margin-top: -100px;
}

.landing__heading {
  font-size: 86px;
  font-weight: 900;
  color: #071041;
  max-width: 50%;
  margin-bottom: 25px;
}

.landing__text {
  font-size: 22px;
  font-weight: 600;
  color: #0A175D;
  max-width: 50%;
  margin-bottom: 50px;
  line-height: 1.6em;
}

.landing__sound {
  position: absolute;
  z-index: 10;
  bottom: 50px;
  right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.landing__sound__text {
  font-size: 14px;
  font-weight: 500;
  color: #F6F6F6;
  margin-right: 20px;
}

.landing__sound__btn {
  background-color: transparent;
  border: 3px solid #F6F6F6;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
  cursor: pointer;
}

.landing__sound__btn i {
  color: #F6F6F6;
  text-align: center;
  font-size: 1.2em;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.landing__sound__btn #mute-sound {
  display: none;
}

.landing__sound__btn:hover {
  background-color: #F6F6F6;
}

.landing__sound__btn:hover i {
  color: #071041;
}

.landing__backdrop__clouds {
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 0px;
  width: 100%;
  height: 400px;
  background-image: url("../img/svg/clouds.svg");
  background-size: cover;
  background-position: -70px 0px;
  background-repeat: repeat;
}

.landing__backdrop__wave {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 400px;
  background-image: url("../img/svg/wave.svg");
  background-size: cover;
  background-repeat: repeat;
}

.landing__backdrop__island {
  position: absolute;
  z-index: 4;
  bottom: 130px;
  right: 50px;
}

.landing__backdrop__birds {
  position: absolute;
  z-index: 5;
  bottom: 640px;
  right: 100px;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.landing__backdrop__wave--001 {
  z-index: 3;
  bottom: -90px;
  background-position: 60px 0px;
}

.landing__backdrop__wave--002 {
  z-index: 4;
  bottom: -120px;
  background-position: 120px 0px;
}

.landing__backdrop__wave--003 {
  z-index: 5;
  bottom: -160px;
  background-position: 49px 0px;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8em 0px;
}

.socials__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45px;
  height: 45px;
  color: #E9E9E9;
  margin-right: 15px;
  border: 3px solid #E9E9E9;
  border-radius: 100%;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
  text-decoration: none;
}

.socials__link:last-of-type {
  margin-right: 0px;
}

.socials__link i, .socials__link svg {
  width: 22px;
  text-align: center;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.socials__link svg {
  height: 22px;
}

.socials__link:hover {
  background-color: #E9E9E9;
  color: #071041;
}

.socials__link:hover #insta {
  fill: #071041;
}

.button {
  position: relative;
  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;
  font-size: 20px;
  font-weight: 700;
  border: 5px solid black;
  text-decoration: none;
  padding: 1.2em 0.8em;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.button::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 0px;
  width: 0%;
  height: 100%;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

.button:hover::before {
  width: 100%;
}

.button--dark {
  color: #0D1B62;
  border-color: #0D1B62;
  width: 50%;
}

.button--dark::before {
  background-color: #0D1B62;
}

.button--dark:hover {
  color: #F6F6F6;
}

.button--dark:hover #button__arrow--dark {
  fill: #F6F6F6;
  stroke: #F6F6F6;
}

.button--light {
  color: #D9D9D9;
  border-color: #D9D9D9;
}

.button--light::before {
  background-color: #D9D9D9;
}

.button--light:hover {
  color: #052739;
}

.button--light:hover #button__arrow--light {
  fill: #052739;
  stroke: #052739;
}

#button__arrow--light {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  fill: #D9D9D9;
  stroke: #D9D9D9;
}

#button__arrow--dark {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  fill: #0D1B62;
  stroke: #0D1B62;
}

.trail {
  position: absolute;
  z-index: -1;
  top: calc(100vh + 350px);
  left: 0px;
  right: 0px;
  bottom: 50vh;
  background-image: url("../img/svg/trail-desktop.svg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  opacity: 0.4;
}

.backdrop__asset {
  position: absolute;
  z-index: -1;
  width: 25vw;
  min-width: 200px;
}

.backdrop__asset--001 {
  top: -350px;
  left: 0px;
}

.backdrop__asset--002 {
  top: -550px;
  right: 0px;
}

.backdrop__asset--003 {
  top: -200px;
  right: 0px;
}

.backdrop__asset--004 {
  top: 800px;
  left: 0px;
  width: 100%;
}

.backdrop__asset--005 {
  top: -150px;
  left: 0px;
  width: 15vw;
}

.backdrop__asset--006 {
  bottom: 50px;
  right: 0px;
  width: 20vw;
}

.backdrop__asset--007 {
  bottom: -150px;
  left: 0px;
  width: 15vw;
}

.backdrop__asset--008 {
  top: 0px;
  left: 250px;
  width: 15vw;
}

.backdrop__asset--009 {
  bottom: 0px;
  left: 350px;
  width: 20vw;
}

.chapter {
  position: relative;
}

.chapter__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  margin: auto;
  height: 100%;
}

.chapter__container--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.chapter__container--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.chapter__text {
  font-size: 22px;
  font-weight: 500;
  color: #F2F2F2;
  line-height: 1.6em;
  max-width: 610px;
}

.chapter__text--left {
  text-align: left;
}

.chapter__text--right {
  text-align: right;
}

.object {
  position: relative;
}

.object__container {
  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;
  max-width: 1440px;
  margin: auto;
  height: 100%;
}

.object__sketchfab {
  width: 40%;
  height: 40%;
}

.object__sketchfab iframe {
  width: 100%;
  height: 100%;
}

.object__right {
  width: 50%;
  margin-left: 40px;
}

.object__heading {
  font-size: 66px;
  font-weight: 800;
  color: #F2F2F2;
  margin-bottom: 35px;
}

.object__text {
  font-size: 18px;
  font-weight: 500;
  color: #D9D9D9;
  margin-bottom: 50px;
  line-height: 1.6em;
}

.object__details {
  margin-bottom: 100px;
}

.object__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #A1A1A1;
  margin-right: 10px;
}

.object__detail {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #F9F9F9;
  margin-right: 40px;
}

.object__detail:last-of-type {
  margin-right: 0px;
}

.object-full {
  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;
}

.object-full__sketchfab {
  width: 90vw;
  height: 90vh;
}

.object-full__sketchfab iframe {
  width: 100%;
  height: 100%;
}

.footer {
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #14232C;
}

.footer__transition {
  position: relative;
  margin-top: 160px;
}

.footer__transition::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: -160px;
  left: 0px;
  height: 160px;
  width: 100%;
  background-image: url("../img/svg/oceanfloor.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer__content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1440px;
  margin: auto;
}

.footer__heading {
  font-size: 40px;
  font-weight: 800;
  color: #E9E9E9;
  line-height: 1.4em;
  max-width: 60%;
  margin-bottom: 100px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 50%;
}

.footer__right {
  width: 50%;
  margin-left: 40px;
}

.footer__org:first-of-type {
  margin-right: 40px;
}

.footer__logo {
  padding: 20px;
  background-color: #121F27;
  width: 250px;
  margin-bottom: 15px;
}

.footer__text {
  font-size: 22px;
  font-weight: 500;
  color: #E9E9E9;
  line-height: 1.8em;
  text-align: justify;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.footer__text a {
  color: #E9E9E9;
}

.footer__text a:hover {
  color: #6e6e6e;
  text-decoration: none;
}

.footer__map {
  position: relative;
}

.footer__map::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("../img/map.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1440px) {
  .header {
    max-width: 100%;
  }
  .header__logos {
    padding-left: 100px;
  }
  .landing__container {
    margin-top: 0px;
  }
  .landing__heading {
    font-size: 64px;
  }
  .landing__backdrop__island {
    right: 0px;
  }
  .socials--header {
    padding-right: 100px;
  }
}

@media (max-width: 1360px) {
  .header {
    max-width: 100%;
    padding-top: 20px;
  }
  .header__logos {
    padding-left: 20px;
  }
  .socials--header {
    padding-right: 20px;
  }
  section {
    padding: 0px 20px;
  }
  .object__right {
    margin-left: 10px;
  }
}

@media (max-width: 1220px) {
  .footer__content {
    height: auto;
    padding: 25vh 50px;
  }
  .footer__container {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer__right {
    margin-left: 0px;
    margin-top: 120px;
  }
}

@media (max-width: 1023px) {
  .landing {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .landing__container {
    margin-top: 0px;
    padding-top: 160px;
  }
  .landing__heading {
    font-size: 48px;
  }
  .landing__text {
    font-size: 18px;
  }
  .landing__sound {
    bottom: -50px;
  }
  .landing__backdrop__birds {
    bottom: 480px;
    right: 30px;
  }
  .landing__backdrop__island {
    bottom: 80px;
    width: 500px;
  }
  .landing__backdrop__wave--001 {
    bottom: -180px;
  }
  .landing__backdrop__wave--002 {
    bottom: -210px;
  }
  .landing__backdrop__wave--003 {
    bottom: -240px;
  }
  .object {
    height: auto;
    padding: 25vh 50px;
  }
  .object__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 580px;
  }
  .object__sketchfab {
    height: 50vh;
    width: 100%;
    margin-bottom: 40px;
  }
  .object__right {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .landing::after {
    height: 240px;
  }
  .backdrop__asset--001 {
    top: -300px;
  }
  .backdrop__asset--002 {
    top: -400px;
  }
  .footer__heading {
    max-width: 80%;
  }
  .footer__left {
    width: 100%;
  }
  .footer__right {
    width: 75%;
  }
}

@media (max-width: 840px) {
  .header__logos {
    height: 35px;
  }
  .socials--header .socials__link {
    width: 30px;
    height: 30px;
  }
  .socials--header .socials__link i, .socials--header .socials__link svg {
    width: 16px;
  }
  .socials--header .socials__link svg {
    height: 16px;
  }
  .landing {
    height: 110vh;
  }
  .landing__container {
    padding-top: 140px;
  }
  .landing__heading {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .landing__text {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .button--dark {
    width: 90%;
  }
  .backdrop__asset--006 {
    bottom: -150px;
  }
}

@media (max-width: 720px) {
  .landing__sound {
    right: 20px;
  }
  .backdrop__asset--008 {
    left: 10px;
  }
  .backdrop__asset--009 {
    left: 25px;
  }
  .footer__heading {
    max-width: 100%;
  }
  .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer__org:first-of-type {
    margin-right: 0px;
    margin-bottom: 40px;
  }
  .footer__right {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .pre-loader__emoji {
    font-size: 8em;
  }
  .socials--header .socials__link {
    margin-right: 10px;
  }
  .socials--header .socials__link:last-of-type {
    margin-right: 0px;
  }
  .landing {
    height: 200vh;
    max-height: 1200px;
  }
  .landing::after {
    height: 180px;
  }
  .landing__container {
    padding-top: 120px;
  }
  .landing__sound__text {
    text-align: right;
    margin-right: 10px;
  }
  .landing__sound__btn {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
  }
  .landing__sound__btn i {
    font-size: 0.8em;
  }
  .landing__backdrop__birds {
    bottom: 410px;
  }
  .landing__backdrop__island {
    width: 400px;
  }
  .button {
    font-size: 18px;
    padding: 1.2em 0.4em;
  }
  .button svg {
    width: 60px;
  }
  .chapter__text {
    font-size: 18px;
  }
  .backdrop__asset--001 {
    top: -120px;
  }
  .backdrop__asset--002 {
    top: -280px;
  }
  .backdrop__asset--005 {
    top: -250px;
  }
  .backdrop__asset--006 {
    bottom: -250px;
  }
  .backdrop__asset--007 {
    bottom: -350px;
  }
  .object {
    padding: 50vh 20px;
  }
  .object__sketchfab {
    position: relative;
    height: auto;
    width: 100%;
    margin-bottom: 120px;
    padding-top: 100%;
  }
  .object__sketchfab iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }
  .object__heading {
    font-size: 44px;
  }
  .object__label {
    margin-right: 0px;
  }
  .object__detail {
    display: block;
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .footer__heading {
    font-size: 28px;
  }
  .footer__text {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .header__logos {
    height: 30px;
    padding-left: 10px;
  }
  .socials--header {
    padding-right: 10px;
  }
  section {
    padding: 50vh 20px !important;
  }
  .landing {
    padding: 0px 20px !important;
    max-height: 1100px;
  }
  .landing__heading {
    font-size: 32px;
  }
  .landing__text {
    font-size: 16px;
  }
  .button {
    font-size: 14px;
    border-width: 3px;
    padding: 1.2em 0.6em;
  }
  .button svg {
    width: 40px;
  }
  .backdrop__asset--001 {
    top: -90px;
  }
  .backdrop__asset--002 {
    top: -260px;
  }
  .backdrop__asset--006 {
    bottom: -250px;
  }
  .backdrop__asset--007 {
    bottom: -50px;
  }
  .object__heading {
    font-size: 38px;
  }
  .footer__transition {
    padding: 0px 20px !important;
  }
  .footer__map {
    padding: 0px 20px !important;
  }
}
/*# sourceMappingURL=main.css.map */