:root {
  --green: #d3d82e;
}

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

body {
  position: relative;
  font-family: 'Open Sans';
}
  body.padded {
    padding-top: 140px;
  }
  @media (max-width: 991px) {
    body.padded {
      padding-top: 60px;
    }
  }

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 900;
  margin-bottom: 1.5rem;
}

h2.display-4 {
  font-weight: 900;
  letter-spacing: -2px;
}
  h2.display-4::before {
    content: '';
    display: block;
    height: 8px;
    width: 80px;
    margin: 0 0 1rem -15px;
    background: var(--green);
  }

  @media (max-width: 767px) {
    h2.display-4 {
      font-size: 2rem !important;
    }
  }

.social a {
  font-size: 24px;
  margin-left: 8px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

#header {
  height: 140px;
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
  #header .header-wrapper {
    height: 140px;
  }
  #header .logo img {
    max-width: 110px;
  }
  #header .social a {
    color: rgba(0, 0, 0, 0.4);
  }
  #header .social a:hover {
    color: rgba(0, 0, 0, 0.8);
  }

  #nav .nav-link {
    color: #000;
    font-weight: 700;
    letter-spacing: -.5px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    -webkit-transition: .5s ease;
  	-moz-transition: .5s ease;
  	-o-transition: .5s ease;
  	transition: .5s ease;
    padding: .5rem 0;
    margin: 0 12px;
  }
    #nav .nav-link:hover {
      color: var(--green);
    }
    #nav .nav-link.active {
      border-bottom: 2px solid var(--green);
    }

    #header.sticky {
      height: 60px;
      position: fixed;
      top: 0;
      left: 0;
    }
      #header.sticky .header-wrapper {
        height: 60px;
      }
      #header.sticky .logo img {
        height: 50px;
      }

    #header .nav-open,
    #header .nav-close {
      display: none;
      cursor: pointer;
    }


@media (max-width: 991px) {
  #header {
    height: 60px;
  }
    #header .header-wrapper {
      height: 60px;
    }
    #header .logo img {
      height: 50px;
    }
    #header .nav-open {
      display: block;
    }
    #nav {
      position: fixed;
      top: 0;
      right: -260px;
      background: #000;
      width: 260px;
      height: 100vh;
      z-index: 1000;
      display: list-item;
      padding: 60px 20px 20px;
      -webkit-transition: .2s ease;
    	-moz-transition: .2s ease;
    	-o-transition: .2s ease;
    	transition: .2s ease;
    }
      #nav .nav-link {
        color: #fff;
      }
      #header .nav-close {
        display: block;
        color: rgba(255, 255, 255, .8);
        position: absolute;
        top: 12px;
        left: 24px;
      }
    #nav.nav-opened {
      right: 0;
    }
}

#hero {
  background-image: url(../img/hero.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  height: calc(100vh - 140px);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
  #hero .hero-text {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
    margin-right: 40px;
  }
    #hero .hero-text h1 {
      font-size: 60px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -2px;
    }
    #hero .hero-text .lead {
      font-weight: 700;
    }
  @media (max-width: 991px) {
    #hero {
      height: calc(100vh - 60px);
      flex-direction: column;
      justify-content: center;
      padding: 40px;
    }
    #hero .hero-text {
      text-align: center;
      margin-right: 0;
      margin-bottom: 40px;
    }
    #hero .hero-img {
      /* max-width: 80%; */
    }
  }

  @media (max-width: 767px) {
    #hero .display-1 {
      font-size: 3.5rem !important;
      letter-spacing: -3px;
    }
    #hero .lead {
      font-size: 1.25rem;
    }
  }

#numeros {
  background-color: rgba(0, 0, 0, 1);
  color: #fff;
}
  #numeros .lead {
    font-weight: 700;
  }
    #numeros .lead strong {
      color: var(--green);
    }
  #numeros .display-3 {
    color: var(--green);
  }

.box {
  padding: 2rem;
  border-radius: 8px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  margin-bottom: 30px;
  width: 100%;
}
  .box:hover {
    background: var(--green) !important;
  }
    .box .material-icons {
      color: var(--green) !important;
      -webkit-transition: .5s ease;
      -moz-transition: .5s ease;
      -o-transition: .5s ease;
      transition: .5s ease;
    }
      .box:hover .material-icons {
        color: #000 !important;
      }
  .box-icon {
    min-width: 86px;
  }
    .box-icon img {
      max-width: 86px;
    }
  .box h4 {
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }
  @media (max-width: 767px) {
    #hero .display-1 {
      font-size: 3.5rem !important;
      letter-spacing: -3px;
    }
  }

#servicos {
  background-image: url(../img/helloquence-61189-unsplash.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}
  #servicos .box {
    background: rgba(255, 255, 255, .9);
  }
  #servicos::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, .4);
  }

#tecnologia {
  background-image: url(../img/farzad-nazifi-71686-unsplash.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  color: #fff;
  position: relative;
}
  #tecnologia .box {
    background: rgba(0, 0, 0, .5);
  }
    #tecnologia .box:hover {
      color: #000;
    }
  #tecnologia::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
  }

#faq h5 {
  letter-spacing: -0.7px;
}

#clientes .logos img {
  max-height: 100px;
}

#contato {
  background: rgba(0, 0, 0, .04);
}
  #contato .contato span {
    font-size: 18px;
    font-weight: 700;
  }

  #contato .map {
    border: 8px solid #fff;
  }

#footer {
  background: #222;
  color: #fff;
}
  #footer .logo {
    height: 100px;
  }
  #footer p span {
    border-bottom: 2px solid var(--green);
  }
  #footer .social a {
    color: rgba(255, 255, 255, 0.4);
  }
  #footer .social a:hover {
    color: rgba(255, 255, 255, 0.8);
  }
