/* FONTS */
@font-face {
  font-family: "Avenir LT W01_45 Book1475508";
  src: url("fonts/1475508/065a6b14-b2cc-446e-9428-271c570df0d9.woff2")
      format("woff2"),
    url("Fonts/1475508/65d75eb0-2601-4da5-a9a4-9ee67a470a59.woff")
      format("woff");
}
@font-face {
  font-family: "Avenir LT W01_45 Book O1475514";
  src: url("fonts/1475514/476612d9-282d-4f76-95cd-b4dd31e7ed21.woff2")
      format("woff2"),
    url("Fonts/1475514/f1ebae2b-5296-4244-8771-5f40e60a564a.woff")
      format("woff");
}
@font-face {
  font-family: "Avenir LT W01_55 Roman1475520";
  src: url("fonts/1475520/b290e775-e0f9-4980-914b-a4c32a5e3e36.woff2")
      format("woff2"),
    url("Fonts/1475520/4b978f72-bb48-46c3-909a-2a8cd2f8819c.woff")
      format("woff");
}
@font-face {
  font-family: "Avenir LT W01_65 Medium1475532";
  src: url("fonts/1475532/17b90ef5-b63f-457b-a981-503bb7afe3c0.woff2")
      format("woff2"),
    url("Fonts/1475532/c9aeeabd-dd65-491d-b4be-3e0db9ae47a0.woff")
      format("woff");
}
@font-face {
  font-family: "Avenir LT W01_85 Heavy1475544";
  src: url("fonts/1475544/d513e15e-8f35-4129-ad05-481815e52625.woff2")
      format("woff2"),
    url("Fonts/1475544/61bd362e-7162-46bd-b67e-28f366c4afbe.woff")
      format("woff");
}
@font-face {
  font-family: "Avenir LT W01_95 Black1475556";
  src: url("fonts/1475556/c78eb7af-a1c8-4892-974b-52379646fef4.woff2")
      format("woff2"),
    url("Fonts/1475556/75b36c58-2a02-4057-a537-09af0832ae46.woff")
      format("woff");
}

/* GLOBAL */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  background-image: linear-gradient(#ffffff, #f2f2f2);
  color: #636569;
  font-family: "Avenir LT W01_45 Book1475508";
  font-size: 1.15rem;
  line-height: 1.48rem;
  font-weight: 400;
  margin: 0;
}
h1 {
  font-size: 4rem;
  line-height: 4.4rem;
  font-family: "Avenir LT W01_65 Medium1475532";
}
h2 {
  font-size: 2.6rem;
  line-height: 3.0rem;
  font-family: "Avenir LT W01_65 Medium1475532";
}
h3 {
  font-size: 1.7rem;
  line-height: 2.05rem;
  font-family: "Avenir LT W01_65 Medium1475532";
}
h1,
h2,
h3 {
  margin: 0;
}
b {
  font-family: "Avenir LT W01_95 Black1475556";
}
a {
  color: #f3453a;
}
.center-type {
  text-align: center;
}
.right-type {
  text-align: right;
}

/* RESPONSIVE FRAMEWORK */
.flex-wrapper {
  margin-top: 25vh;
  margin-bottom: 25vh;
  display: flex;
  flex-direction: column;
}
.flex-wrapper.hero {
  margin-top: 0;
  margin-bottom: 0;
}
.flex-wrapper.footer {
  margin-bottom: 0;
}
.flex-wrapper:first-child {
  margin-top: 0rem;
}
.flex-grid {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  text-align: left;
  gap: 30px;
}
.flex-item {
  padding: 3.125rem;
}
.flex-item h3 {
  padding-top: 0;
}
.flex-item p:first-child {
  padding-top: 0;
  margin-top: 0;
}
.flex-item p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* LOGO AND NAV */
.main-logo {
  max-width: 70px;
  display: inline-block;
}
.logo-holder {
  align-items: center;
  display: flex;
}
.nav {
  text-align: right;
}
.nav a {
  font-family: "Avenir LT W01_55 Roman1475520";
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  margin-left: 2.3rem;
  display: inline-block;
  line-height: 24px;
  position: relative;
}
.nav a:hover {
  cursor: pointer;
}
.nav a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #f3453a;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.nav a:first-child {
  margin-left: 0;
}
.tagline {
  display: inline-block;
  max-width: 250px;
  margin-left: 30px;
}
.tagline-mobile {
  display: none;
  max-width: 130px;
  margin-left: 20px;
}
#burger-menu {
  cursor: pointer;
  height: 27px;
  width: 27px;
  overflow: visible;
  position: relative;
  z-index: 2;
  display: none;
}
#burger-menu span,
#burger-menu span:before,
#burger-menu span:after {
  background: #f3453a;
  display: block;
  height: 2px;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
}
#burger-menu span:before,
#burger-menu span:after {
  content: "";
}
#burger-menu span:before {
  left: 0px;
  top: -10px;
  width: 27px;
}
#burger-menu span {
  right: 0px;
  top: 13px;
  width: 27px;
}
#burger-menu span:after {
  left: 0px;
  top: 10px;
  width: 27px;
}
#burger-menu.close span:before {
  top: 0px;
  transform: rotate(90deg);
  width: 27px;
}
#burger-menu.close span {
  transform: rotate(-45deg);
  top: 13px;
  width: 27px;
}
#burger-menu.close span:after {
  top: 0px;
  left: 0;
  transform: rotate(90deg);
  opacity: 0;
  width: 0;
}
#menu {
  display: block;
}
#menu.overlay {
  visibility: visible;
  opacity: 1;
  padding-top: 100px;
  background: rgba(0, 0, 0, 0.5);
}

/* HERO */
h1.big {
  font-size: 5rem;
  line-height: 5.5rem;
}
.red {
  position: relative;
}

h1.big .red:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 100px;
  right: 3%;
  top: 89%;
  background: url("/img/deeper-arrow.svg") top center no-repeat;
}
a.explore-link {
  color: #636569;
  font-size: 21px;
  text-decoration: none;
  position: relative;
}
a.explore-link:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 50px;
  right: 1px;
  top: 92%;
  background: url("/img/deeper-arrow-small.svg") top center no-repeat;
}
.hero {
  width: 100vw;
  height: 100vh;
}
.contact-hero {
  height: 25vh;
}
.hero p {
  font-size: 2rem;
  line-height: 2.4rem;
  margin: 0;
}
.hero .flex-grid,
.contact-hero .flex-grid {
  align-items: center;
}
.header .flex-item,
.quote .flex-item,
.footer .flex-item {
  padding: 0;
}
.quote, .flex-wrapper {
  position: relative;
  z-index:1
}
.header {
  max-height: 100px;
}
.header .flex-item {
  max-height: 100px;
  padding-top: 30px;
  line-height: 70px;
}

/* QUOTES */
blockquote {
  margin: 0;
  font-family: "Avenir LT W01_95 Black1475556";
  font-size: 2.3rem;
  line-height: 3rem;
}
blockquote figure {
  display: flex;
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Avenir LT W01_45 Book O1475514";
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}
.center-type blockquote figure {
  justify-content: center;
}
.quote-2 p {
  margin-top: 0;
  margin-bottom: 0;
}
.quote-2 p:nth-child(2) {
  font-family: "Avenir LT W01_45 Book1475508";
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.quotey {
  max-width: 70px;
}

/* COLORFUL STYLES */
.red {
  color: #f3453a;
  font-family: "Avenir LT W01_95 Black1475556";
}
.white {
  color: #fff;
  font-family: "Avenir LT W01_95 Black1475556";
}
.white-box {
  background-color: #fff;
  color: #636569;
}
.grey-box {
  background-color: #636569;
  color: #fff;
}
.lightgrey-box {
  background-color: #e4e4e4;
  color: #636569;
}
.red-box {
  background-color: #f3453a;
  color: #fff;
}
.no-pad {
  padding: 0;
}
.three-box-stagger .flex-item {
  height: fit-content;
  margin-top: 0;
}
.three-box-stagger .flex-item:nth-child(2) {
  margin-top: 20vh;
}
.three-box-stagger .flex-item:nth-child(3) {
  margin-top: 40vh;
}
.red-promo p:last-child {
  font-size: 1.7rem;
  line-height: 2rem;
}

/* LAZY LOADS + ANIMATIONS */
.fadeIn {
  animation: animat 0.9s ease-in-out;
  animation-fill-mode: forwards;
}
.fadeInNext {
  animation: animat 0.9s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.fadeInAfter {
  animation: animat 0.9s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.fadeInScreen {
  animation: animat 0.9s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
@keyframes animat {
  0% {
    opacity: 0;
    transform: translateX(-12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* FOOTER */
.footer {
  background: url("/img/footer-mountain.png") bottom center no-repeat;
}
.flex-grid.foot-sub {
  margin-top: 1rem;
  padding-bottom: 7rem;
}
.foot-head h2 {
  font-size: 2.8rem;
  line-height: 3.25rem;
  font-family: "Avenir LT W01_45 Book1475508";
}
.footer .end-matter {
  padding-bottom: 1.7rem;
}
.footer .end-matter,
.footer .end-matter a {
  color: #636569;
  font-family: "Avenir LT W01_55 Roman1475520";
  font-size: 0.9rem;
  letter-spacing: 0.01rem;
}
.footer .end-matter a {
  font-family: "Avenir LT W01_65 Medium1475532";
  margin-right: 1.2rem;
}
.footer .end-matter a:last-child {
  margin-right: 0;
}
.footer .end-matter a:hover {
  color: #f3453a;
}
.footer .logo {
  max-height: 90px;
}
.footer-logo {
  max-width: 90px;
}
.footer-contact {
  text-decoration: none;
  font-family: "Avenir LT W01_85 Heavy1475544";
}

/* BACKGROUND MOUNTAINS */
.follow-the-path {
  position: absolute;
  top: -100%;
  left: 0%;
  z-index: -1;
  opacity: 0;
}
#the-wrapper {
  position: absolute;
  width: 2139px;
  height: 1999px;
  top: -20vh;
  left: 90vw;
  overflow: visible;
  z-index: -1;
  opacity: 0;
}
#the-mountains {
  width: 2139px;
  height: 1999px;
  position: absolute;
  top: 138vh;
  z-index: -1;
  right: -14vw;
  transform: translate(50%, -50%);
}
#the-mountains img {
  max-width: 2200px;
  position: relative;
  top: -5vh;
  right: -4vw;
  z-index: -1;
  transform: scale(0.95);
}
#the-mountains .h1 {
  opacity: 0;
  position: relative;
  z-index: -1;
  top: 0;
  right: -30vw;
}

/* MQs */
@media (max-width: 1850px) {
  .hero p {
    font-size: 1.6rem;
    line-height: 1.95rem;
    margin: 0;
  }
  .hero .we-go-deeper .flex-item,
  .hero .you-go-higher .flex-item {
    width: 100%;
  }
  .hero .you-go-higher .flex-item {
    justify-content: flex-end;
    display: flex;
  }
  .hero .we-go-deeper .empty,
  .hero .you-go-higher .empty {
    display: none;
  }
}
@media (max-width: 1120px) {
  .nav a {
    margin-left: 1.5rem;
  }
}
@media (max-width: 1080px) {
  #burger-menu {
    display: block;
  }
  .nav {
    display: flex;
    justify-content: flex-end;
  }
  .tagline {
    display: none;
  }
  .tagline-mobile {
    display: inline-block;
  }
  #hero .d-col-5 {
    width: 20%;
  }
  #hero .d-col-7 {
    width: 76%;
  }
}
@media (min-width: 880px) {
  .flex-wrapper {
    padding-left: 6%;
    padding-right: 6%;
  }
  .flex-grid {
    margin-top: 2rem;
  }
  .flex-grid:first-child {
    margin-top: 0;
  }
  .d-col-1 {
    width: 7.05%;
  }
  .d-col-2 {
    width: 15.5%;
  }
  .d-col-3,
  .d-col-thirds {
    width: 23.95%;
  }
  .d-col-4,
  .d-col-quarters {
    width: 32.4%;
  }
  .foot-sub .d-col-4 {
    width: 42.4%;
  }
  .foot-sub .d-col-4:first-child,
  .foot-sub .d-col-4:last-child {
    width: 12.4%;
  }
  .d-col-5 {
    width: 40.85%;
  }
  .d-col-6,
  .d-col-halfs {
    width: 49.3%;
  }
  .d-col-7 {
    width: 57.75%;
  }
  .d-col-8 {
    width: 66.2%;
  }
  .d-col-9 {
    width: 74.65%;
  }
  .d-col-10 {
    width: 83.1%;
  }
  .d-col-11 {
    width: 91.55%;
  }
  .d-col-12,
  .d-col-full {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 880px) {
  .flex-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }
  .flex-grid {
    flex-flow: row wrap;
  }
  #hero .flex-grid {
    flex-flow: initial;
  }
  .t-col-4,
  .t-col-6,
  .t-col-12 {
    margin-top: 2rem;
  }
  .t-col-4 {
    width: 100vw;
  }
  .t-col-6 {
    width: 100vw;
  }
  .t-col-12 {
    width: 100vw;
  }
  .flex-grid:first-child .t-col-4,
  .flex-grid:first-child .t-col-6,
  .flex-grid:first-child .t-col-12 {
    margin-top: 0;
  }
  .empty {
    display: none;
  }
  .hero .flex-item {
    width: 100vw;
  }
  .end-matter .t-col-6 {
    width: 47.2%;
  }
}
@media only screen and (min-width: 500px) and (max-width: 767px) {
  h1 {
    font-size: 3.6rem;
    line-height: 4rem;
  }
  h1.big {
    font-size: 4rem;
    line-height: 4.4rem;
  }
  .flex-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flex-grid {
    flex-flow: row wrap;
  }
  #hero .flex-grid {
    flex-flow: initial;
  }
  .m-col-6,
  .m-col-12 {
    margin-top: 2rem;
  }
  .m-col-6 {
    width: 100%;
  }
  .m-col-12 {
    width: 100%;
  }
  .flex-grid:first-child .m-col-6,
  .flex-grid:first-child .m-col-12 {
    margin-top: 0;
  }
  .three-box-stagger .flex-item,
  .three-box-stagger .flex-item:nth-child(2),
  .three-box-stagger .flex-item:nth-child(3) {
    margin-top: 2rem;
  }
  .empty {
    display: none;
  }
  .hero .flex-item {
    width: 100vw;
  }
  #burger-menu {
    display: block;
  }
  .hero .you-go-higher .flex-item {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 820px) {
  .nav a.menu-hide {
    display: none;
  }
}
@media only screen and (min-width: 0px) and (max-width: 499px) {
  h1 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
  h1.big {
    font-size: 3rem;
    line-height: 3.4rem;
  }
  .hero p {
    font-size: 1.3rem;
    line-height: 1.55rem;
    margin: 0;
  }
  .hero .you-go-higher .flex-item {
    justify-content: flex-end;
  }
  h2,
  blockquote {
    font-size: 1.8rem;
    line-height: 2.15rem;
  }
  .flex-grid.foot-sub {
    margin-top: 1rem;
    padding-bottom: 7rem;
  }
  .quote-2 p:nth-child(2) {
    font-family: "Avenir LT W01_85 Heavy1475544";
    font-size: 1.45rem;
    line-height: 2rem;
  }
  .quote-2 p:nth-child(3) {
    font-family: "Avenir LT W01_45 Book1475508";
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .flex-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flex-grid {
    flex-flow: row wrap;
  }
  #hero .flex-grid {
    flex-flow: initial;
  }
  .m-col-6,
  .m-col-12 {
    margin-top: 2rem;
  }
  .m-col-6 {
    width: 100%;
  }
  .m-col-12 {
    width: 100%;
  }
  .flex-grid:first-child .m-col-6,
  .flex-grid:first-child .m-col-12 {
    margin-top: 0;
  }
  .three-box-stagger .flex-item,
  .three-box-stagger .flex-item:nth-child(2),
  .three-box-stagger .flex-item:nth-child(3) {
    margin-top: 2rem;
  }
  .empty {
    display: none;
  }
  .hero .flex-item {
    width: 100vw;
  }
  #burger-menu {
    display: block;
  }
  .tagline {
    display: none;
  }
  .tagline-mobile {
    display: inline-block;
  }
  .end-matter .flex-item,
  .end-matter .right-type {
    text-align: center;
  }
}

@media only screen and (max-width: 1600px) {
  #the-mountains {
    right: 0vw;
  }
}
@media only screen and (max-width: 1200px) {
  #the-mountains .h1 {
    right: -32vw;
  }
}
@media only screen and (max-width: 1110px) {
  #the-mountains .h1 {
    right: -33vw;
  }
}
@media only screen and (max-width: 1070px) {
  #the-mountains .h1 {
    right: -35vw;
  }
}
@media only screen and (max-width: 1000px) {
  #the-mountains .h1 {
    right: -36vw;
  }
}
@media only screen and (max-width: 970px) {
  #the-mountains .h1 {
    right: -38vw;
  }
}
@media only screen and (max-width: 930px) {
  #the-mountains .h1 {
    right: -48vw;
  }
  #the-mountains img {
    right: -12vw;
  }
}
@media only screen and (max-width: 880px) {
  #the-mountains .h1 {
    right: -50vw;
  }
}
@media only screen and (max-width: 820px) {
  #the-mountains .h1 {
    right: -57vw;
  }
  #the-mountains img {
    right: -16vw;
  }
}
@media only screen and (max-width: 780px) {
  #the-mountains .h1 {
    right: -58vw;
  }
  #the-mountains img {
    right: -16vw;
  }
}
@media only screen and (max-width: 767px) {
  #the-mountains .h1 {
    right: -74vw;
  }
  #the-mountains img {
    right: -20vw;
  }
}
@media only screen and (max-width: 730px) {
  #the-mountains .h1 {
    right: -77vw;
  }
  #the-mountains img {
    right: -21vw;
  }
}
@media only screen and (max-width: 700px) {
  #the-mountains .h1 {
    right: -84vw;
  }
  #the-mountains img {
    right: -8vw;
    transform: scale(0.55);
    top: -56vh;
  }
  .hero-sub {
    max-width: 50%;
  }
}
@media only screen and (max-width: 670px) {
  #the-mountains .h1 {
    right: -86vw;
  }
  #the-mountains img {
    right: -25vw;
  }
}
@media only screen and (max-width: 650px) {
  #the-mountains .h1 {
    right: -90vw;
  }
}
@media only screen and (max-width: 610px) {
  #the-mountains .h1 {
    right: -97vw;
  }
  #the-mountains img {
    right: -30vw;
  }
}
@media only screen and (max-width: 590px) {
  #the-mountains .h1 {
    right: -100vw;
  }
  #the-mountains {
    right: -20vw;
  }
}
@media only screen and (max-width: 570px) {
  #the-mountains .h1 {
    right: -103vw;
  }
  #the-mountains img {
    right: -8vw;
    transform: scale(0.55);
    top: -56vh;
  }
  .hero-sub {
    max-width: 90%;
  }
}
@media only screen and (max-width: 550px) {
  #the-mountains .h1 {
    right: -109vw;
  }
}
@media only screen and (max-width: 530px) {
  #the-mountains .h1 {
    right: -109vw;
  }
}
@media only screen and (max-width: 510px) {
  #the-mountains .h1 {
    right: -113vw;
  }
}
@media only screen and (max-width: 420px) {
  #the-mountains .h1 {
    right: -173vw;
    top: -10vh;
  }
  #the-mountains img {
    right: -20vw;
    transform: scale(0.55);
    top: -60vh;
  }
}
@media only screen and (max-width: 393px) {
  #the-mountains .h1 {
    right: -183vw;
    top: -8vh;
  }
  #the-mountains img {
    right: -22vw;
    transform: scale(0.55);
    top: -60vh;
  }
}

@media only screen and (max-width: 390px) {
  #the-mountains .h1 {
    right: -183vw;
    top: -8vh;
  }
  #the-mountains img {
    right: -20vw;
    transform: scale(0.55);
    top: -60vh;
  }
}

@media only screen and (max-width: 375px) {
  #the-mountains .h1 {
    right: -197vw;
    top: 28vh;
  }
  #the-mountains img {
    right: -17vw;
    transform: scale(0.4);
    top: -60vh;
  }
}

@media only screen and (max-width: 360px) {
  #the-mountains .h1 {
    right: -206vw;
    top: 11vh;
  }
  #the-mountains img {
    right: -17vw;
    transform: scale(0.4);
    top: -70vh;
  }
}

@media only screen and (min-width: 550px) and (max-height: 790px) {
  #the-mountains {
    top: 148vh;
  }
}

@media only screen and (min-width: 550px) and (max-height: 720px) {
  #the-mountains {
    top: 155vh;
  }
}

@media only screen and (min-width: 550px) and (max-height: 690px) {
  #the-mountains {
    top: 165vh;
  }
}

@media only screen and (min-width: 550px) and (max-height: 650px) {
  #the-mountains {
    top: 175vh;
  }
}

@media only screen and (min-width: 550px) and (max-height: 610px) {
  #the-mountains {
    top: 192vh;
  }
}

.form {
  width: 100%;
  max-width: 350px;
  height: 58px;
  background: white;
  border: 1px solid #d3d3d3;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 70px;
  float: left;
  margin: 20px 20px 0px 0;
  padding: 0 30px;
  font-size: 18px;
  color: #636569;
  font-family: "Avenir LT W01_45 Book1475508";
}
::placeholder {
  font-size: 18px;
  color: #636569;
  font-family: "Avenir LT W01_45 Book1475508";
  opacity: 0.6;
}

.you-go-higher h1:after {
  content: "";
  position: absolute;
  width: 2139px;
  height: 1999px;
  left: -84%;
  top: 100%;
  background: url("/img/mountain.png") top center no-repeat;
  overflow: visible;
  z-index:-1
}

@media only screen and (max-width: 1200px) {
  .you-go-higher h1:after {
    transform: scale(0.9);
    left: -89%;
    top: -20%;
  }
}

@media only screen and (max-width: 1080px) {
  .you-go-higher h1:after {
    transform: scale(0.8);
    left: -96%;
    top: -145%;
  }
}

@media only screen and (max-width: 950px) {
  .you-go-higher h1:after {
    transform: scale(0.7);
    left: -106%;
    top: -270%;
  }
}

@media only screen and (max-width: 767px) {
  .you-go-higher h1:after {
    transform: scale(0.7);
    left: -128%;
    top: -340%;
  }
}

@media only screen and (max-height: 700px) {
  .hero .flex-grid.we-go-deeper {
    align-items: flex-start;
  }
}

@media only screen and (max-height: 900px) and (max-width: 550px) {
  .hero .flex-grid.we-go-deeper {
    align-items: flex-start;
  }
}

@media only screen and (max-width: 550px) {
  .you-go-higher h1:after {
    transform: scale(0.7);
    left: -212%;
    top: -500%;
  }
}
.animatedNow {
  opacity: 0;
  transition: 0.9s;
}
.animatedNow.inview {
  transition-delay: 0.1s;
  opacity: 1;
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) {
  .hero .flex-grid.we-go-deeper {
    align-items: flex-start;
  }
}


.mountain img {
  position: absolute;
  left: -50vw;
  width: 200vw;
  height: auto;
  max-width: 2139px;
  pointer-events: none;
}

.mountain:after {
  content: '';
  position: absolute;
  left: 0;
  width: 200vw;
  height: auto;
  z-index: -1;
}

#mountain {
  z-index: -1;
  top: -350px
}
.you-go-higher {
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3 ease-in-out;
}
.you-go-higher.fade {
  opacity:0;
}