/*--------------------------------------*/
/*---------- Navigation Styles ---------*/
/*-- These styles only in nav section --*/
/*--------------------------------------*/

nav {
    display: flex;
    vertical-align: top;
    width: 98vw;
    margin-left: 10px;
    height: 100px;
    position: fixed;
    z-index: 10;
}
.brand {
  width: 80px;
  height: auto;
  align-self: center;
  margin-left: 15px;
  -webkit-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
  transition: 0s ease-in-out;
}
.brand.change.darker {
  filter: grayscale(100%) brightness(17.5%) sepia(100%) hue-rotate(114deg)
    saturate(600%) contrast(0.8);

}

/*-- Overlay Formatting --*/

.overlay {
    position: absolute;
    top: 95px;
    right: 25px;
    height: 100vh;
    visibility: hidden;
    list-style: none;
    width: 44px;
}
.opened,
.overlay {
  transition: transform 0.1s;
}
.opened {
  visibility: visible;
}
.overlay-content {
    display: flex;
    flex-direction: column;
    text-align: center;

    top: 80px;
    right: 51px;
    width: 25px;
    size: 2em;
}
.overlay a {
    font-size: 1em;
    font-weight: 900;
    line-height: 3em;
    color: #fff;
}
.overlay-box {
  background-color: #333;
  z-index: 4;
}
.nav-arrow {
  font-family: "DIN Next LT W01 Regular", sans-serif;
  position: relative;
  left: -190px;
  transition: 0.2s;
  z-index: -1;
}
.overlay a:hover .nav-arrow {
  padding-left: 210px;
}
.overlay-logo {
  position: absolute;
  width: 120px;
  height: auto;
  top: 45px;
  left: 45px;
}

/*-- Hamburger Button --*/

#hamburger {
  width: 25px;
  height: 20px;
  margin-left: auto;
  align-self: center;
  margin-right: 40px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.15s ease-in-out;
  -moz-transition: 0.15s ease-in-out;
  -o-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  transition-delay: background 0.4s;
  cursor: pointer;
  z-index: 5;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.15s ease-in-out;
  -moz-transition: 0.15s ease-in-out;
  -o-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}

#hamburger span.change.darker {
  background: #3b615a;
}

#hamburger.open span.change.darker {
  background: #3b615a;
}
.fa {
  color:white;
}

.fa:hover {
  opacity: none;
}

.fafa-facebook .change.darker {
  background: #3b615a;
}


#hamburger span:nth-child(1) {
  top: -3px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger span:nth-child(2) {
  top: 6px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger span:nth-child(3) {
  top: 15px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger.open span:nth-child(1) {
  background: #fff;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  top: -5px;
  left: 0px;
  width: 100%;
}

#hamburger.open span:nth-child(2) {
 background: #fff;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
 top: -5px;
  left: 9px;
  width: 100%;
}

#hamburger.open span:nth-child(3) {
  background: #fff;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
top: -5px;
  left: 18px;
  width: 100%;
}

#hamburger:hover span:nth-child(1){
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 100ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 100ms;
}

#hamburger:hover span:nth-child(2){
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}

#hamburger:hover span:nth-child(3){
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 300ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 300ms;
}

#hamburger.open span:nth-child(1){
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 100ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 100ms;
}

#hamburger.open span:nth-child(2){
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}

#hamburger.open span:nth-child(3){
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 300ms;
          animation: burger-hover 1s infinite ease-in-out alternate forwards 300ms;
}

@-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}



/*-- Responsive Nav Overlay --*/

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .nav-arrow {
    left: -100px;
  }

  

  .overlay a:hover .nav-arrow {
    padding-left: 90px;
  }
  .overlay-logo {
    width: 60px;
    top: 20px;
    left: 20px;
  }
  
  .overlay-content {
    width: 50%;
  }

  #intro-carousel .title-alt .carousel-caption {
    left: 90px;
    bottom: 120px;
}

    #intro-carousel .title-alt .carousel-caption {
    
        visibility: hidden;

    }

  nav {
    display: flex;
    vertical-align: top;
    width: 105vw;
    margin-left: -16px;
    height: 119px;
    position: fixed;
    z-index: 10;
}

  .biography .biography-image {
    height: 408px;
  }

}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .nav-arrow {
    left: -100px;
  }
  .overlay a:hover .nav-arrow {
    padding-left: 110px;
  }
  .overlay-logo {
    width: 80px;
    top: 20px;
    left: 20px;
  }



 #intro-carousel .title-alt .carousel-caption {
    
        visibility: hidden;
    }

  .biography .biography-image {
    height: 408px;
  }

  .biography-description {
    padding: 140px 35px 140px 115px !important;
}


}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-arrow {
    left: -120px;
  }
  .overlay a:hover .nav-arrow {
    padding-left: 140px;
  }
  .overlay-logo {
    width: 100px;
    top: 30px;
    left: 30px;
  }




    .biography-description {
    padding: 140px 135px !important;
}

}


@media only screen and (max-width: 1001px) {

#intro-carousel .title-alt .carousel-caption {
    
        visibility: hidden;

    }

.carousel-indicators {
  visibility: hidden;
}

}















.section-g,
.section-g-bottom {
  background: #2bc28a;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.section-w,
section-w-bottom {
  background: #fff;

}







.videoWrapper {
    position: relative;
    padding-bottom: 46.25%;
     z-index: 10000!important;
    border-bottom: 125px solid white;
    border-top: 125px solid white;
    height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}












#social-test {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 40px;
}

.social-footer {
  max-width: 135px!important;
  }

   .column-social {
    float: left;
  width: 20%;
  }
@media (max-width: 1300px) {
  .column-social{
    float: left;
   
}
  }

a:hover .column-social .social-footer {
   color: red;
  }

nav ul {
  position: fixed;
  top: 60px;
  right: 18px;
  height: 100vh;
  visibility: hidden;
  pointer-events: none;
  list-style: none;
  width: 35px;
}

nav.active ul {
  visibility: visible;
  pointer-events: initial;
  transition-delay: 0.2s;
}