/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #707070;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #fff;
}

a, a:hover, a:active, a:focus {
  color: #fff;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 20px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

form input{
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

form button[type="submit"] {
  background: #E8E8E8;
  border: 0;
  width:100%;
  padding: 10px 24px;
  color: #230871;
  transition: 0.4s;
  border-radius: 0;
}

form button[type="submit"]:hover {
  color: #fff;
  background: #230871;
}

form input[type="file"] {
  background: #E8E8E8;
  border: 0;
  padding: 10px 24px;
  color: #230871;
  transition: 0.4s;
  border-radius: 0;
}

.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #C40D3C;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 90px;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  font-size: 16px;
}

#header a, a:hover, a:active, a:focus{
    color: #fff; 
}

@media (max-width: 998px) {
  #header {
    font-size: 12px;
  }
}

#header #logo {
  float: left;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  height: 90px;
  color: #707070;
  transition: all 0.5s;
}

#header.header-fixed a, a:hover, a:active, a:focus{
    color: #707070; 
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
#banner {
  width: 100%;
  height: 100vh;
  background: url(../img/background.jpg) top center;
  background-size: cover;
  position: relative;
}

@media (min-width: 1024px) {
  #banner {
    background-attachment: fixed;
  }
}

#banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#banner .banner-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#banner h1 {
  margin: 30px 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  max-width: 1000px;
}

@media (max-width: 768px) {
  #banner h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  #banner h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#banner .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background-color: #C40D3C;
  border: 2px solid #C40D3C;
}

#banner .btn-get-started:hover {
  color: #C40D3C;
  background: transparent;
  border: 2px solid #C40D3C;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Menu Styling */
.nav-menu a {
  padding: 0 15px 10px 15px;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  outline: none;
}

@media (max-width: 998px) {
  .nav-menu a {
    padding: 0 8px 10px 8px;
    }
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
  background-color: #C40D3C;
  padding: 5px 10px;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(196, 13, 60, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
  color: transparent;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #C40D3C;
}

#mobile-nav ul .menu-item-active {
  color: #C40D3C;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(196, 13, 60, 0.5);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Main
--------------------------------*/

#main .container{
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Aeroarte Section
--------------------------------*/

#aeroarte h2{
    font-size: 56px;
    color: #C40D3C
}

#aeroarte .watermark{
  background: url(../img/aeroarte-graphic.png) bottom center no-repeat;
  background-size: contain;
}

@media (max-width: 768px) {
  #aeroarte .watermark{
    background: url(../img/aeroarte-graphic.png) top left no-repeat;
    background-size: cover;
  }
}

#aeroarte .color-box{
    background-color: #E8E8E8;
}

#aeroarte .picture{
  height: 300px;
  padding: 0px;
  background: url(../img/aeroarte-section.jpg) top right no-repeat;
  background-size: cover;
}

/* Services Section
--------------------------------*/

#servicos .picture{
  background: url(../img/services-section.jpg) center right no-repeat;
  background-size: cover;
}

#servicos .overlay{
  padding: 50px;
  color: #fff;
  background-color: rgba(196, 13, 60, 0.7);
}

#servicos .color-box{
  padding: 50px;
  color: #fff;
  background-color: #707070;
}

#services .picture{
  background: url(../img/services-section.jpg) center right no-repeat;
  background-size: cover;
}

#services .overlay{
  padding: 50px;
  color: #fff;
  background-color: rgba(196, 13, 60, 0.7);
}

#services .color-box{
  padding: 50px;
  color: #fff;
  background-color: #707070;
}

/* Products Section
--------------------------------*/

#produtos .picture{
  background: url(../img/products-section.jpg) center right no-repeat;
  background-size: cover;
}

#produtos .overlay{
  padding: 50px;
  color: #fff;
  background-color: rgba(32, 8, 113, 0.7);
}

#produtos .color-box{
  padding: 50px;
  color: #230871;
  background-color: #E8E8E8;
}

#products .picture{
  background: url(../img/products-section.jpg) center right no-repeat;
  background-size: cover;
}

#products .overlay{
  padding: 50px;
  color: #fff;
  background-color: rgba(32, 8, 113, 0.7);
}

#products .color-box{
  padding: 50px;
  color: #230871;
  background-color: #E8E8E8;
}

/* Clients Section
--------------------------------*/

#clientes{
    text-align: center;
}

#clientes h2{
    color: #230871;
}

#clientes .brand{
    padding: 20px; 
}

#clients{
    text-align: center;
}

#clients h2{
    color: #230871;
}

#clients .brand{
    padding: 20px; 
}

/* Partners Section
--------------------------------*/

#parceiros{
  color: #fff;
  min-height: 100px;
  background: url(../img/partnership-section.jpg) center center no-repeat;
  background-size: cover;
}

#partners{
  color: #fff;
  min-height: 100px;
  background: url(../img/partnership-section.jpg) center center no-repeat;
  background-size: cover;
}

/* Contact Section
--------------------------------*/

#contato h2{
    color: #230871;
}

#contato a{
    color: #707070;
}

#contato i {
  font-size: 24px;
  color: #230871;
}

#contact h2{
    color: #230871;
}

#contact a{
    color: #707070;
}

#contact i {
  font-size: 24px;
  color: #230871;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #E8E8E8;
  padding: 30px 0;
  color: #707070;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

#footer a{
    color: #707070;
}
