@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,700,200,100);
@font-face {
  font-family: 'Custom Heading';
  src: url("../fonts/custom-heading-webfont.woff"); }
html, body {
  height: 100%;
  position: relative; }

body {
  margin: 0;
  font-size: 18px;
  font-family: 'Roboto', Verdana, Helvetica, Futura;
  font-weight: 300; }

a {
  color: green; }

#floatingNav {
  text-align: right;
  width: 100%;
  height: 88px;
  padding: 0 10%;
  transition: all 0.3s ease;
  position: fixed;
  z-index: 5000;
  box-sizing: border-box;
  overflow: auto; }
  #floatingNav a {
    box-sizing: border-box;
    padding: 26px 20px 15px 20px !important;
    display: inline-block; }
  #floatingNav .active {
    border-bottom: 2px solid green; }
  #floatingNav.floating {
    background-color: rgba(0, 0, 0, 0.8); }
  @media screen and (max-width: 767px) {
    #floatingNav {
      display: none;
      font-family: 'Custom Heading', arial;
      padding-top: 15%;
      width: 100%;
      height: 100%; } }
  #floatingNav a {
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease; }

#floatingNav.show {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  visibility: visible;
  margin-top: 0px; }
  @media screen and (max-width: 767px) {
    #floatingNav.show {
      display: block;
      padding: 0; }
      #floatingNav.show a {
        display: block;
        text-align: center; }
        #floatingNav.show a.active {
          background: none;
          color: #fff !important;
          font-weight: bold;
          font-size: 1.2em;
          border-bottom: none; }
        #floatingNav.show a:hover {
          font-weight: bold; } }

.height100 {
  min-height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0 20px; }

.text-center {
  text-align: center; }

.button {
  text-decoration: none;
  padding: 10px 20px;
  border-bottom: 4px solid green;
  color: #fff;
  border-radius: 3px;
  font-size: 1.3rem;
  margin: 20px 0;
  display: inline-block;
  background-size: 100% 200%;
  background-image: linear-gradient(to top, #004d00 50%, green 50%);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease; }

.button:hover {
  background-position: 0 100%;
  padding: 14px 24px;
  margin: 16px 0; }

#home {
  text-align: center;
  background: url("../img/hero-bg-green.jpg") center center no-repeat;
  background-size: cover;
  color: #fff;
  display: table;
  box-sizing: border-box;
  padding-top: 10%; }
  @media screen and (max-width: 767px) {
    #home {
      padding-top: 35%; }
      #home img {
        width: 50%; } }

section {
  overflow: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20%;
  text-align: center; }

.section-title {
  text-align: center;
  display: block;
  position: relative;
  margin: 100px auto 80px auto;
  font-size: 3rem;
  font-family: 'Custom Heading', arial; }

.section-title:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  border-bottom: 2px solid green; }

.w80 {
  padding-left: 10% !important;
  padding-right: 10% !important; }

.block-group.b4 .block-item {
  width: 25%; }
  @media screen and (max-width: 767px) {
    .block-group.b4 .block-item {
      width: 46%;
      margin-left: 2%;
      margin-right: 2%; }
      .block-group.b4 .block-item img {
        width: 80%;
        height: auto; } }

.block-group.b3 {
  margin-top: 60px;
  overflow: auto; }
  .block-group.b3 .block-item {
    width: 33.33%; }
  .block-group.b3 p {
    margin-top: 5px; }
  @media screen and (max-width: 767px) {
    .block-group.b3 .block-item {
      width: 100%; } }

.block-item {
  text-align: center;
  min-height: 100px;
  float: left;
  margin-bottom: 80px; }
  .block-item img {
    display: block;
    margin: 0 auto;
    padding-bottom: 15px; }

.parallax-window {
  min-height: 300px;
  background: transparent; }
  @media screen and (max-width: 767px) {
    .parallax-window {
      min-height: 150px; } }

.parallax-text {
  color: #fff;
  font-size: 40px;
  text-align: center;
  line-height: 9;
  overflow-x: hidden;
  width: 100%; }
  .parallax-text span {
    margin: 0 40px;
    font-family: 'Custom Heading', arial; }
  @media screen and (max-width: 767px) {
    .parallax-text {
      line-height: 1; }
      .parallax-text span {
        font-size: 1.2rem;
        margin: 0 10px;
        display: inline-block; } }

#floatingLogo {
  position: fixed;
  top: -90px;
  left: 12%;
  z-index: 6000;
  transition: top .4s ease-in-out; }
  #floatingLogo.show {
    top: 3px; }
  @media screen and (max-width: 767px) {
    #floatingLogo {
      display: none; } }

.mobile-menu {
  position: fixed;
  bottom: 5%;
  right: 5%;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
  background: #000;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 5500;
  display: none; }
  @media screen and (max-width: 767px) {
    .mobile-menu {
      display: block; } }

.mobile-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 54%;
  background: #fff;
  opacity: 1;
  left: 23%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out; }

.mobile-menu span:nth-child(1) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }

.mobile-menu span:nth-child(2) {
  top: 30px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }

.mobile-menu span:nth-child(3) {
  top: 40px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }

/*.mobile-menu:hover span:nth-child(1) {
  top: 20px;
}

.mobile-menu:hover span:nth-child(3) {
  top: 60px;
}*/
.mobile-menu.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 18px;
  left: 33.3%; }

.mobile-menu.open span:nth-child(2) {
  width: 0%;
  opacity: 0; }

.mobile-menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: none;
  bottom: -3px;
  left: 33.3%; }

/*# sourceMappingURL=style.css.map */
