/* FRONTEND CSS
*********************************************/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px; /* height of sticky header */
  
   }
  
  body {
      background: #070336;
  }
  
  html, body {
      font-family: "arboria", sans-serif;
  }
  
  body.modal-open {
      overflow: hidden !important;
  }
  
  .float-left {
      float: left;
  }
  
  .float-right {
      float: right;
  }
  
  .cf:before, .cf:after {
      content: " ";
      display: table;
  }
  
  .cf:after {
      clear: both;
  }
  
  .cf {
  }
  
  .page span {
      color: inherit !important;
      font-weight: inherit !important;
  }
  
  ::-moz-selection { 
    background: #E86F58; 
    color: #070336; 
  }
  
  ::selection { 
    background: #E86F58;
    color: #070336; 
  }
  
  .vertical-center {
      margin: 0;
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  }
  
  /* FADER
  *********************************************/
  
  #fader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 999999;
      pointer-events: none;
      background: #02021C;
      animation-duration: 500ms;
      animation-timing-function: ease-in-out;
    }
  
    #fader:before {
      content: 'fade'
    }
  
    @keyframes fade-out {
      from { opacity: 1 }
      to { opacity: 0 }
    }
  
    @keyframes fade-in {
      from { opacity: 0 }
      to { opacity: 1 }
    }
  
    #fader.fade-out {
      opacity: 0;
      animation-name: fade-out;
    }
  
    #fader.fade-in {
      opacity: 1;
      animation-name: fade-in;
    }
  
  
  /* SCROLL TO TOP BUTTON
  *********************************************/
  
  #toTop {
      padding: 24px 18px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      position: fixed;
      bottom: 15px;
      right: 15px;
      display: none;
      z-index: 99;
      width: 60px;
      height: 60px;
       cursor: pointer;
  }
  
  /* SCROLL ARROW
  *********************************************/
  
  .arrow-container {
    width: 12px;
    /* cubic-bezier-easing = sine / mehr Beispiele: https://easings.net/ */
    animation: bounce 3000ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    cursor: pointer;
    height: 20px;
    position: absolute;
    bottom: 60px;
    left: calc(50% - 6px);
  }
  
  .arrow-down {
    height: 2px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: 0% 0%;
    border-radius: 5px;
  }
  .arrow-down:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 100%;
    border-radius: 5px;
    background: #ffffff;
    transform: rotate(-90deg);
    transform-origin: 0% 100%;
  }
  
  @keyframes bounce {
  50% {
      transform: translateY(-15px);
    }
  }
  
  
  /* HEADER
  *********************************************/
  
  header.header-nav {
      width: 100%;
      padding: 0;
      z-index: 9;
      position: fixed;
      height: 90px;
  }
  
  header.header-nav .forest-header {
      border-bottom: 1px solid #38355E ;
  }
  .menu-nav {
      width: 100%;
      height: 90px;
  }
  
  header.header-nav .logo {
      float: left;
      height: 90px;
      padding-top: 30px;
  }
  
  header.header-nav::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      backdrop-filter: blur(10px);
      height: 100%;
      background: inherit;
      transition: transform 0.3s ease 0s;
  }
  
  .header-button {
      position: absolute;
      top: 20px;
      right: 80px;
  }
  
  .menu-button {
      width: 50px;
      height: 50px;
      position: fixed;
      top: 20px;
      right: 50px;
      cursor: pointer;
      z-index: 90;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      border-radius: 30px;
      background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #E86F58, #E7AE46);
      justify-content: space-between;
      text-align: center;
      text-decoration: none !important;
      vertical-align: middle;
      padding: 0px 13px;
      border: solid 2px transparent;
      background-origin: border-box;
      background-clip: content-box, border-box;
      box-shadow: 2px 1000px 1px #070336 inset;
      transition: all .2s ease;
  }
  
  .menu-button:hover {
      box-shadow: none;
  }
  
  .menu-button span {
      width: 20px;
      height: 1px;
      background-color: #fff;
      display: block;
      position: absolute;
      transition: all 0.6s ease;
      top: 14px;
  }
  
  .menu-button span:nth-of-type(2) {
      top: 22px;
  }
  
  .menu-button span:nth-of-type(3) {
      top: 30px;
      width: 10px;
  }
  
  .menu-button.active span {
      background-color: white;
  }
  
  .menu-button.active span:nth-of-type(1) {
      transform: translateY(0.5rem) rotate(-45deg);
  }
  
  .menu-button.active span:nth-of-type(2) {
      transform: translateX(1.5rem);
      opacity: 0;
  }
  
  .menu-button.active span:nth-of-type(3) {
      transform: translateY(-0.5rem) rotate(45deg);
      width: 20px;
  }
  
  /* MAIN MENU
  *********************************************/
  
  
  /* BUTTONS
  *********************************************/
  
  .btn {
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      border-radius: 30px;
      transition: all .2s ease;
      font-family: 'Bona Nova', Georgia, 'Times New Roman', Times, serif;
      font-size: 18px;
      align-items: center;
      color: #ffffff !important;
      cursor: pointer;
      display: inline-flex;
      justify-content: space-between;
      text-align: center;
      text-decoration: none !important;
      vertical-align: middle;
      padding: 10px 20px;
      border: solid 2px transparent;
      background-origin: border-box;
      background-clip: content-box, border-box;
      box-shadow: 2px 1000px 1px #070336 inset;
  }
  
  .btn:hover {
      border: solid 2px transparent;
      box-shadow: none;
  }
  
  .btn:after {
      content: "";
      margin-left: 10px;
      position: relative;
      right: 0;
      width: 6px;
      height: 6px;
      background: #E86F58;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
  }
  
  .btn em {
      margin-left: 5px;
  }
  
  .btn.btn-gradient-1 {
      background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #AC2D4D, #E83A5A);
  }
  
  .btn.btn-gradient-1:after {
      background: #E83A5A;
  }
  
  .btn.btn-gradient-2 {
      background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #E83A5A, #E86F58);
  }
  
  .btn.btn-gradient-2:after {
      background: #E86F58;
  }
  
  .btn.btn-gradient-3 {
      background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #E86F58, #E7AE46);
  }
  
  .btn.btn-gradient-3:after {
      background: #E7AE46;
  }
  
  .btn.btn-gradient-4 {
      background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #EAAF45, #A3BE3A);
  }
  
  .btn.btn-gradient-4:after {
      background: #A3BE3A;a
  }
  
  .btn.btn-gradient-5 {
      background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #A3BE3A, #5C9343);
  }
  
  .btn.btn-gradient-5:after {
      background: #5C9343;
  }
  
  .btn:hover:after {
      right: -5px;
      background: #fff;
  }
  
  .btn.focus, .btn:focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .25);
  }
  
  .btn-primary.focus, .btn-primary:focus {
      box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .5);
  }
  
  .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
      color: #fff !important;
      background-color: #034A47;
      border-color: #034A47;
  }
  
  .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .5);
  }
  
  
  
  /* SECTIONS
  *********************************************/
  
  section#home {
      position: relative;
      height: 1200px;
  }
  
  section#introduction {
      position: relative;
  }
  
  section#content {
      position: relative;
  }
  
  .pos-intro {
      position: relative;
      height: 100%;
  }
  
  /* BACKGROUNDS
  *********************************************/
  
  
  /* IMAGES
  *********************************************/
  
  .pos-image img {
      width: 100%;
      height: inherit;
  }
  
  /* HOME
  *********************************************/
  
  .home-container {
      position: absolute;
      left: 50%;
      top: 400px;
      transform: translate(-50%, -50%);
      max-width: 740px;
      width: 100%;
    }
  
  /* APPROACH
  *********************************************/
  
  .approach-tile {
      background: #19535F;
      color: #fff;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
  }
  
  .process_line {
      width: 1px;
      background-color: #38355E;
      height: 80px;
      margin: 80px 60px;
  }
  
  /* RIGHT COLUMN
  *********************************************/
  
  .right-column {
      border-left: 1px solid #38355E;
  }
  
  /* CALL TO ACTION TILE
  *********************************************/
  
  .cta-tile {
      background: #19535F;
      color: #fff;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
  }
  
  /* JOURNAL
  *********************************************/
  
  .journal-tile {
      background: rgba(255,255,255,0.3);
      border: 1px solid #19535F;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
      height: 100%;
  }
  
  .page-nav {
      font-family: 'Clarity City';
      font-size: 14px;
      color: #034A47;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none !important;
  }
  
  /* STUDIES
  *********************************************/
  
  .studies {
      margin-top: 30px;
  }
  
  .studies p {
      font-size: 14px;
      line-height: 1.3;
      margin-bottom: 10px;
  }
  
  .studies a {
      text-decoration: none;
  }
  
  .studies a:hover {
      text-decoration: underline;
  }
  
  .studies ul {
      list-style: none;
      padding: 0px;
      margin: 0px;
  }
  
  .studies ul li, .studies ol li {
      margin: 0px 0px 15px 0px;
      border-bottom: 1px solid #C98A3D;
      font-size: 14px;
      line-height: 1.3;
      padding: 0px 10px 10px;
  }
  
  /* SERVICES
  *********************************************/
  
  .service:nth-of-type(1n)  {
      margin-top: 0px;
  }
  
  .service:nth-of-type(1n) h2, .service:nth-of-type(1n) a {
      background: -webkit-linear-gradient(left, #E83A5A, #E86F58);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .service:nth-of-type(1n) a::after {
      content: url(../images/arrow-gradient-2.svg);
  }
  
  .service:nth-of-type(2n)  {
      margin-top: 300px;
  }
  
  .service:nth-of-type(2n) h2, .service:nth-of-type(2n) a {
      background: -webkit-linear-gradient(left, #E86F58, #E7AE46);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .service:nth-of-type(2n) a::after {
      content: url(../images/arrow-gradient-3.svg);
  }
  
  .service:nth-of-type(3n)  {
      margin-top: 600px;
  }
  
  .service:nth-of-type(3n) h2, .service:nth-of-type(3n) a {
      background: -webkit-linear-gradient(left, #EAAF45, #A3BE3A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .service:nth-of-type(3n) a::after {
      content: url(../images/arrow-gradient-4.svg);
  }
  
  
  .service a {
      font-family: 'Brandon Grotesque', Arial, Helvetica, sans-serif;
      font-size: 15px;
      letter-spacing: 2px;
      line-height: 18px;
      text-transform: uppercase;
  }
  
  .service a:after {
      margin-left: 10px;
      position: relative;
      right: 0;
      top: -1px;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      display: inline-block;
      width: 14px;
      height: 9px;
  }
  
  .service a:hover:after {
      right: -5px;
  }
  
  .service a:after { 
      fill: #A3BE3A;
  }
  
  
  .service-tile {
      margin-top: 30px;
      height: 100%;
      padding: 0 15px;
  }
  
  .service-tile ul li:last-of-type, .service-tile ol li:last-of-type {
      border-bottom: 0px;
  }
  
  .row-eq-height {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
  }
  
  .pos-list {
      border: 1px solid #38355E;
  }
  
  /* CASE STUIDES
  *********************************************/
  
  .case-studies-title {
      top: 100px;
      position: relative;
  }
  
  .case-study {
      margin-bottom: 200px;
  }
  
  .case-study-text {
      position: relative;
      margin-top: 100px;
  }
  
  .case-study-divider {
      position: absolute;
      left: 15px;
      bottom: 100%;
      z-index: 3;
      width: 150%;
      transform-origin: left;
  }
  
  .case-study-divider.divider-right{
      left: -50%;
  }
  
  .collaboration .case-study-divider, .collaborator .case-study-divider  {
      width: 95%;
      left: 0;
  }
  
  .case-study-divider:before {
      display: block;
      height: 1px;
      background-color: #fff;
      content: "";
  }
  
  .case-study-text .pos-title {
      margin-top: 30px;
  }
  
  .case-study .pos-link a {
      font-family: 'Brandon Grotesque', Arial, Helvetica, sans-serif;
      font-size: 15px;
      letter-spacing: 2px;
      line-height: 18px;
      text-transform: uppercase;
      background: -webkit-linear-gradient(left, #A3BE3A, #5C9343);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .case-study .pos-link a:after {
      font-family: 'Font Awesome 5 Pro';
      font-weight: normal;
      content: "\f178";
      margin-left: 10px;
      position: relative;
      right: 0;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
  }
  
  .case-study .pos-link a:hover:after {
      right: -5px;
  }
  
  .collaboration .pos-link a {
      font-family: 'Brandon Grotesque', Arial, Helvetica, sans-serif;
      font-size: 15px;
      letter-spacing: 2px;
      line-height: 18px;
      text-transform: uppercase;
      background: -webkit-linear-gradient(left, #EAAF45, #A3BE3A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  
  /* PROFILES
  *********************************************/
  
  .profile-text {
      position: relative;
      margin-top: 100px;
  }
  
  .profile-divider {
      position: absolute;
      left: 15px;
      bottom: 100%;
      z-index: 3;
      width: 135%;
      transform-origin: left;
  }
  
  .profile-divider.divider-right{
      left: -35%;
  }
  
  .profile-divider:before {
      display: block;
      height: 1px;
      background-color: #fff;
      content: "";
  }
  
  .profile-text .pos-title {
      margin-top: 30px;
  }
  
  .service-tile {
      margin-top: 30px;
      height: 100%;
      padding: 0 15px;
  }
  
  
  /* SCROLL TO NEXT SECTION
  *********************************************/
  
  a.scroll {
      margin-top: 10px;
  }
  
  /* TABLES
  *********************************************/
  
  
  table {
      border: solid 1px #19535F;
      border-collapse: collapse;
      border-spacing: 0;
  }
  table thead th {
      background-color: #19535F;
      border: solid 1px #19535F;
      color: #ffffff;
      padding: 10px;
      text-align: left;
  }
  table thead th p {
      color: #ffffff;
      margin-bottom: 0px;
  }
  table tbody td {
      border: solid 1px #19535F;
      padding: 10px;
      background: rgba(255, 255, 255, .2);
  }
  
  .yoo-zoo td, .yoo-zoo th {
      padding: 10px !important;
      vertical-align: top;
  }
  
  .yoo-zoo tr.white {
      background: #e17656;
  }
  
  .yoo-zoo tr.white td p {
      color: #ffffff !important;
      text-transform: uppercase;
  }
  
  .yoo-zoo td p, .yoo-zoo th p {
      margin: 0px !important;
  }
  
  /* FOOTER
  *********************************************/
  
  footer {
   
  }
  .footer {
  }
  
  footer .footer .footer-menu ul {
      list-style: none;
  }
  
  footer .footer .footer-menu li:first-of-type{
      margin: 0px 0px 10px 0px;
  }
  
  footer .footer .footer-menu p, footer .footer .footer-menu a,  footer .footer .footer-menu span.separator {
      font-size: 14px;
      color: #fff;
  }
  
  footer .footer .footer-menu a:hover {
      color: #E86F58;
  } 
  
  .footer .footer-connect a, .footer .footer-contact a {
      position: relative;
      padding-left: 25px;
  }
  
  .footer .footer-connect a.link_linkedin:before {
      content: url(../images/linkedin.svg);
      position: absolute;
      display: inline-block;
      top: 0px;
      left: 0px;
  }
  
  .footer .footer-connect a.link_instagram:before {
      content: url(../images/instagram.svg);
      position: absolute;
      display: inline-block;
      top: 0px;
      left: 0px;
  }
  
  .footer .footer-contact a.link_email:before {
      content: url(../images/email.svg);
      position: absolute;
      display: inline-block;
      top: 0px;
      left: 0px;
  }
  
  .footer .footer-contact a.link_phone:before {
      content: url(../images/phone.svg);
      position: absolute;
      display: inline-block;
      top: 0px;
      left: 0px;
  }
  
  footer .footer .footer-menu li::after{
      content: "";
      margin: 2px 3px 2px 7px;
      display: inline-block;
      width: 4px;
      height: 4px;
      background: #E86F58;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
  }
  
  footer .footer .footer-menu li:last-of-type::after{
      display: none;
  }
  
  .footer-bottom {
      display: inline-block;
  }
  .footer .back-to-top {
      text-align: right;
  }
  a.back-to-top-link {
      align-items: center;
      color: #fff;
      border-radius: 50px;
      cursor: pointer;
      display: inline-flex;
      font-size: 20px;
      height: 80px;
      justify-content: space-between;
      line-height: 80px;
      width: 80px;
      height: 80px;
      text-align: center;
      text-decoration: none;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      vertical-align: middle;
      position: relative;
      border: solid 2px transparent;
      background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #E86F58, #E7AE46);
      background-origin: border-box;
      background-clip: content-box, border-box;
      box-shadow: 2px 1000px 1px #070336 inset;
  }
  
  a.back-to-top-link:hover {
      box-shadow: none;
  }
  
  a.back-to-top-link:after {
      content: url(../images/return-arrow.svg);
      position: absolute;
      top: 25px;
      left: 32px;
  }
  
  .cta a {
      position: relative;
  }
  
  .cta a::before {
      position: absolute;
      width: 100%;
      height: 2px;
      background: -webkit-linear-gradient(left, #E83A5A, #E86F58);
      top: 90%;
      left: 0;
      pointer-events: none;
  }
  
  .cta a::before {
      transform-origin: 100% 50%;
      transform: scale3d(0, 1, 1);
      transition: transform 0.3s;
      content: '';
  }
   
  .cta a:hover::before {
      transform-origin: 0% 50%;
      transform: scale3d(1, 1, 1);
  }
  
  /* OVERLAY MENU
  *********************************************/
  
  .menu-overlay {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      z-index: 10;
      background: rgb(7,3,54);
      background: -moz-linear-gradient(180deg, rgba(7,3,54,1) 0%, rgba(2,2,28,1) 100%);
      background: -webkit-linear-gradient(180deg, rgba(7,3,54,1) 0%, rgba(2,2,28,1) 100%);
      background: linear-gradient(180deg, rgba(7,3,54,1) 0%, rgba(2,2,28,1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#070336",endColorstr="#02021c",GradientType=1);
      transform: translateX(100%);
      transition: all 0.8s ease-in-out;
      overflow: auto;
      -ms-overflow-style: none; 
      scrollbar-width: none; 
  }
  
  .menu-overlay::-webkit-scrollbar {
      display: none;
  }
  
  .menu-overlay.open {
      transform: translateX(0);
  }
  
  .menu-overlay .nav li { 
      list-style: none;
      text-align: right;
      position: relative;
      animation: fadeOut 0.5s ease-in-out 0.2s forwards;
  }
  
  .menu-overlay.open .nav li {
      animation: fadeIn 0.5s ease-in-out 0.2s forwards;
      transition: all 0.8s ease-in-out;
      opacity: 0;
  }
  
  .menu-overlay.open .nav li:nth-of-type(1n)  {
      animation-delay: 0.7s;
  }
  
  .menu-overlay.open .nav li:nth-of-type(2n)  {
      animation-delay: 0.75s;
  }
  
  .menu-overlay.open .nav li:nth-of-type(3n)  {
      animation-delay: 0.8s;
  }
  
  .menu-overlay.open .nav li:nth-of-type(4n)  {
      animation-delay: 0.85s;
  }
  
  .menu-overlay.open .nav li:nth-of-type(5n)  {
      animation-delay: 0.9s;
  }
  
  .menu-overlay.open .nav li:nth-of-type(6n)  {
      animation-delay: 0.95s;
  }
  
  @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
  }
  
  @keyframes fadeOut {
      0% {opacity:1;}
      100% {opacity:0;}
  }
  
  .menu-overlay .menu-container {
      margin: 0 auto;
      display: block;
      top: 20%;
      position: relative;
      padding-bottom: 50px;
  }
  
  .menu-overlay ul {
      display: block;
  }
  
  .menu-overlay li a {
      list-style: none;
      font-size: 60px;
      color: #ffffff;
      margin-bottom: 0px;
      font-family: 'Bona Nova', Georgia, 'Times New Roman', Times, serif;
      line-height: 1.1;
      letter-spacing: 0px;
      text-transform: none;
      text-decoration: none;
      font-weight: normal;
      transition: all 0.3s ease;
  }
  
  .menu-overlay li:nth-of-type(1n) a:hover {
      background: -webkit-linear-gradient(left, #AC2D4D, #E83A5A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .menu-overlay li:nth-of-type(2n) a:hover  {
      background: -webkit-linear-gradient(left, #E83A5A, #E86F58);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .menu-overlay li:nth-of-type(3n) a:hover  {
      background: -webkit-linear-gradient(left, #E86F58, #E7AE46);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .menu-overlay li:nth-of-type(4n) a:hover  {
      background: -webkit-linear-gradient(left, #EAAF45, #A3BE3A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .menu-overlay li:nth-of-type(5n) a:hover  {
      background: -webkit-linear-gradient(left, #A3BE3A, #5C9343);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  
  .menu-overlay .menu li a:after {
      content: "";
      margin-left: 10px;
      background: #fff;
      top: 35px;
      bottom: 0;
      right: -50px;
      position: absolute;
      width: 40px;
      height: 1px;
      -ms-transform-origin: right;
      transform-origin: right;
      -ms-transform: scaleX(0);
      transform: scaleX(0);
      transition: transform .6s cubic-bezier(.165,.84,.44,1);
  }
  
  .menu-overlay .menu li a:hover:after, 
  .menu-overlay .menu li.active a:after {
      -ms-transform-origin: right;
      transform-origin: right;
      -ms-transform: scaleX(1);
      transform: scaleX(1);
  }
    
  /* SLIDERS
  *********************************************/
  
  .rl_sliders.accordion>.accordion-group {
      margin-bottom: 10px;
      border: 0px;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      border-radius: 0px;
      background-color: transparent;
  }
  
  
  .rl_sliders.accordion>.accordion-group a {
      font-family: 'Clarity City';
      color: #19535F;
      line-height: 1.2;
      font-weight: normal;
      font-size: 24px;
      font-weight: 500;
  }
  
  .rl_sliders.accordion>.accordion-group>.accordion-heading>a.accordion-toggle {
      -webkit-transition-duration: 0s !important;
      -moz-transition-duration: 0s !important;
      -o-transition-duration: 0s !important;
      transition-duration: 0s !important;
  }
  
  #case-studies .rl_sliders.accordion>.accordion-group a {
      font-size: 40px;
  }
  
  .rl_sliders.accordion>.accordion-group .accordion-heading .accordion-toggle {
      padding: 20px 40px 20px 30px;
  }
  .rl_sliders.accordion>.accordion-group>.accordion-heading>a.accordion-toggle {
      border-bottom: 1px solid #19535F;
      background-image: url(../images/slide_sprite.png);
      background-position: right -20px;
      background-size: 34px 200px;
      background-repeat: no-repeat;
      background-color: transparent;
      text-decoration: none;
  }
  .rl_sliders.accordion>.accordion-group>.accordion-heading>a.accordion-toggle:hover {
      background-image: url(../images/slide_sprite.png);
      background-position: right -20px;
      background-repeat: no-repeat;
      background-size: 34px 200px;
      background-color: transparent;
      color: #19535F;
      text-decoration: none;
  }
  #case-studies .rl_sliders.accordion>.accordion-group>.accordion-heading>a.accordion-toggle {
      background-position: right -10px;
  }
  #case-studies .rl_sliders.accordion>.accordion-group>.accordion-heading>a.accordion-toggle:hover {
      background-position: right -10px;
  }
  
  .nn_sliders.accordion>.accordion-group.active>.accordion-heading>a.accordion-toggle {
      background-image: url(../images/slide_sprite.png);
      background-position: right -120px;
      background-repeat: no-repeat;
      background-size: 34px 200px;
      background-color: transparent;
      color: #19535F;
      text-decoration: none;
  }
  #case-studies .nn_sliders.accordion>.accordion-group.active>.accordion-heading>a.accordion-toggle {
      background-position: right -110px;
  }
  .rl_sliders.accordion>.accordion-group>.accordion-body>.accordion-inner {
      border-top: 0px;
      padding: 30px 30px 0px;
  }
  
  .rl_sliders.accordion>.accordion-group>.accordion-body>.accordion-inner a {
      text-decoration:underline;
      font-family: 'Clarity City';
      font-size: 16px;
      color: #034A47;
      letter-spacing: 0;
      line-height: 25px;
  }
  
  .rl_sliders.accordion>.accordion-group>.accordion-body>.accordion-inner a:hover {
      text-decoration:none;
  }
  
  .rl_sliders.accordion>.accordion-group.active>div>a:focus, .rl_sliders.accordion>.accordion-group>div>a:focus {
      outline: 0;
      -webkit-box-shadow: inset 0 0 4px #C98A3D;
      box-shadow: inset 0 0 4px #C98A3D;
  }
  
  .rl_sliders.accordion>.accordion-group>.accordion-body>.accordion-inner ul, .rl_sliders.accordion>.accordion-group>.accordion-body>.accordion-inner ol {
      list-style: inside;
  }
  
  
  /* PAGINATION
  *********************************************/
  
  
  .zoo-pagination a:hover, .zoo-pagination span {
      text-decoration: none;
      padding: 15px 20px;
      text-align: center;
      float: left;
      background: #034A47;
      border: 0px;
      color: #fff;
      font-family: 'Clarity City';
      font-size: 15px;
      text-align: center;
      line-height: 22px;
  }
  
  .zoo-pagination a {
      text-decoration: none;
      text-align: center;
      padding: 15px 20px;
      float: left;
      color: #034A47;
      border: 0px;
      background: #ffffff;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      font-family: 'Clarity City';
      font-size: 15px;
      text-align: center;
      line-height: 22px;
  }
  
  /* SKIP TO CONTENT
  *********************************************/
  
  #skippy {
      display: block;
      padding: 1em;
      color: #070336 ;
      background: -webkit-linear-gradient(left, #E83A5A, #E86F58);;
      outline: 0;
  }
  
  .skippy {
      width: 100%;
      min-width: 100%;
  }
  
  .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      border: 0;
  }
  
  #skippy .skiplink-text {
      padding: .5em;
      outline: 1px dotted;
  }
  
  
  #bfElementGroupNoWrap92, #bfElementGroupNoWrap90,#bfElementGroupNoWrap88 {
      position: relative;
      display: flex;
      margin-bottom: 15px;
  }
  
  #bfElementGroupNoWrap92 input, #bfElementGroupNoWrap90 input, #bfElementGroupNoWrap88 input {
      flex: auto;
      margin: 5px 0 0 ;
  }
  
  #bfElementGroupNoWrap92 label, #bfElementGroupNoWrap90 label, #bfElementGroupNoWrap88 label {
      flex: auto;
      margin: 0px !important;
  }
  
  #bfElementGroupNoWrap92::before, #bfElementGroupNoWrap90::before, #bfElementGroupNoWrap88::before {
      content: "Low";
      position: absolute;
      top: 25px;
      left: 5px;
      color: #19535F;
      font-weight: 600;
  }
  
  #bfElementGroupNoWrap92::after, #bfElementGroupNoWrap90::after, #bfElementGroupNoWrap88::after {
      content: "High";
      position: absolute;
      top: 25px;
      right: 12px;
      color: #19535F;
      font-weight: 600;
  }
  
  /* CUSTOM CURSOR
  *********************************************/
  
  .lg-cursor-pointer:nth-child(1):before{
      width: 40px;
      height: 40px;
      background-color: transparent;
      border: solid 2px #E86F58;
      margin: -20px 0 0 -20px;
  }
  
  .lg-cursor--hover .lg-cursor-pointer:nth-child(1):before {
      transform: scale(1.3);
  }
  
  .lg-cursor-pointer:nth-child(2):before {
      width: 6px;
      height: 6px;
      background-color: #E86F58;
      margin: -3px 0 0 -3px;
  }
  
  .lg-cursor--hover .lg-cursor-pointer:nth-child(2):before {
      transform: scale(1.2);
  }
  
  /* PROGRESS LINE
  *********************************************/
  .progressline {
      background: rgb(92,147,67);
      background: linear-gradient(90deg, rgba(92,147,67,1) 0%, rgba(163,190,58,1) 15%, rgba(234,175,69,1) 30%, rgba(231,174,70,1) 45%, rgba(232,111,88,1) 60%, rgba(232,58,90,1) 75%, rgba(172,45,77,1) 100%);
      height: 3px;
      width: 0%;
      position: fixed;
      top: 0;
      z-index: 100;
    }
  
  .progresslinealt {
      background: rgb(92,147,67);
      background: linear-gradient(90deg, rgba(92,147,67,1) 0%, rgba(163,190,58,1) 15%, rgba(234,175,69,1) 30%, rgba(231,174,70,1) 45%, rgba(232,111,88,1) 60%, rgba(232,58,90,1) 75%, rgba(172,45,77,1) 100%);
      height: 0%;
      width: 4%;
      position: absolute;
      left: 50%;
      top: 0;
      z-index: 100;
  }
  
  
  /* ANIMATED TEXT
  *********************************************/
  
  .word {
      margin: 0;
      text-align: center;
      overflow: visible;
      line-height: 1;
      font-size: 30px;
      font-family: 'Bona Nova', Georgia, 'Times New Roman', Times, serif;
      line-height: 1.1;
      letter-spacing: 0px;
      text-transform: none;    
      color: #fff;
    }
    
    
    .preloader-container {
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow-x: auto;
      overflow-y: scroll;
      position: fixed;
      z-index: 99;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      background-color: #02021C;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      overflow: hidden;
      -webkit-transition: all 1s linear;
      -o-transition: all 1s linear;
      transition: all 1s linear;
  }
  
  .preloader-container .animation {
      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;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }
  
  .preloader-container .animation #skip {
      color: #20495a;
      cursor: pointer;
      font-family: montserrat, sans-serif;
      font-size: 1.75em;
      position: absolute;
      margin: 0 auto;
      bottom: 20vh;
  }
  
  .hidden {
      display: none;
  }
  
  .visuallyhidden {
      opacity: 0;
  }
  
  
  .parallax__group {
      position: relative;
      height: 100vh;
      width: 100vw;
      transform-style: preserve-3d;
  }
  
  .parallax__layer {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
     
  }
  
  .moon {
      background: url(../images/Moon.png) no-repeat center;
      background-size: 224px 224px;
      background-position: top right;
      z-index: 2;
      right: 100px;
      top: 200px;
      height: 224px;
  }
  
  .mountain {
      background: url(../images/background.png) no-repeat center;
      background-size: 1661px 264px;
      background-position: top center;
      z-index: 3;
      top: 670px;
      height: 264px;
  }
  
  .forest2 {
      background: url(../images/forest2.png) no-repeat center;
      background-size: 1754px 600px;
      background-position: top center;
      z-index: 4;
      top: 450px;
      height: 600px;
  }
  
  .wolf {
      background: url(../images/wolf.png) no-repeat center;
      background-size:  1461px 859px;
      background-position: top center;
      z-index: 5;
      top:310px;
      height:  859px;
  }
  
  .forest1 {
      background: url(../images/forest1.png) no-repeat center;
      background-size: 1461px 859px;
      background-position: top center;
      z-index: 6;
      top: 290px;
      height: 859px;
  }
  
  .fireflies {
      background: url(../images/FireFlies.png) no-repeat center;
      background-size: 3482px 1227px;
      background-position: top center;
      z-index: 7;
      height: 1227px;
      top: -100px;
  }
  
  .roots {
      background: url(../images/root.png) no-repeat center;
      background-size: 628px 187px;
      background-position: top center;
      z-index: 5;
      height: 187px;
      top: 0px;
  }
  
  div#particles-js {
      padding-top: 300px;
  }