@charset "UTF-8";

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: #eeeeee;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2 {
  color: #000;
  font-weight: 600;
}

h4 {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 2;
}

h5 {
  color: #626262;
  font-size: 14px;
  font-weight: 500;
}

a {
  letter-spacing: 2px;
  text-decoration: none;
}

ul {
  letter-spacing: 1px;
}

li {
  color: #626262;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 30px;
  text-transform: capitalize;
}

p {
  color: #5e9aa5;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 2;
  margin-bottom: 20px;
}

span {
  letter-spacing: 1px;
}

.orange{
  color: #eb5949;
}

.blue{
  color: #5e9aa5;
}

.black{
  color: #000;
}
.white{
  color: #fff;
}
.img-fluid {
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}

.container-full {
  padding-left: 0;
  padding-right: 0;
}

.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 15px 40px;
  text-transform: uppercase;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  font-size: 13px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #000;
  line-height: 1;
  color: #fff;
  padding: 7px 12px 13px 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: #eb5949;
  color: #fff;
  outline: none;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #eeeeee;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 48px;
  z-index: 3;
  transition: all 0.5s ease;
}

#header #logo {
  padding: 6px 0 0 0;
}

#header #logo h1 {
  color: #505050;
  font-family: "Philosopher", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}

#header #logo h1 a {
  color: #555;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}

#header #logo h1 a span {
  color: #eb5949;
}

#header #logo img {
  width: 30px;
}

.scroll-header {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 20px);
  background: url(../img/hero-bg.png) center bottom no-repeat;
  background-size: 100%;
  position: relative;
  margin-top: 40px;
}

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

#hero .hero-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;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  font-family: "Philosopher", sans-serif;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 38px;
    line-height: 12px;
    line-height: 48px;
  }
}

#hero h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 25px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}

#hero img {
  max-width: 100%;
  max-height: 100%;
  margin-top: 30px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #hero img {
  max-width: 90%;
  max-height: 30%;
  margin-top: 0px;
  margin-bottom: 10px;
  }
}
@media (max-height: 650px) {
  #hero img {
  max-height: 40%;
  margin-top: 0px;
  margin-bottom: 10px;
  }
}
@media (max-height: 350px) {
  #hero img {
  max-height: 20%;
  margin-top: 0px;
  margin-bottom: 10px;
  }
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #eb5949;
  background: #eee;
  color: #eb5949;
  text-decoration: none;
}

#hero .btn-get-started:hover {
  background: #eb5949;
  color: #fff;
}

#hero .btns a {
  color: #555;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;

}

@media (max-width: 768px) {
  #hero .btns a {
    font-size: 10px;
    font-weight: 300;
    margin: 4px 8px;
  }
  #hero .btn-get-started {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 5px;
  border: 2px solid #eb5949;
  background: #eee;
  color: #eb5949;
  text-decoration: none;
}
}
@media (max-height: 650px) {
  #hero .btns a {
    font-size: 10px;
    font-weight: 300;
    margin: 4px 8px;
  }
  #hero .btn-get-started {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 5px;
  border: 2px solid #eb5949;
  background: #eee;
  color: #eb5949;
  text-decoration: none;
}
}
#hero .btns a:hover {
  color: #eb5949;
}

/*--------------------------------------------------------------
# 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: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  margin-top: 1px;
  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 0 0 0;
}

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

/* Nav Meu Styling */
.nav-menu a {
  padding: 8px 8px;
  text-decoration: none;
  display: inline-block;
  color: #555;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  outline: none;
  letter-spacing: 0;
  transition: 0.3s;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: #eb5949;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 5px 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 14px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #71c55d;
}

.nav-menu ul ul {
  margin: 0;
}

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

#mobile-nav-toggle i {
  color: #555;
  font-size: 24px;
}

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

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 50px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#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: 14px;
  overflow: hidden;
  padding: 6px 22px 6px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  letter-spacing: 0;
}

#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: #71c55d;
}

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

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  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 i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.padd-section {
  padding-bottom: 60px;
  padding-top: 60px;
}



.section-title {
  margin-bottom: 80px;
}



.section-title h2 {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.section-title .separator {
  margin: 0;
}

.separator {
  color: #626262;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: capitalize;
}


/* About Us Section
--------------------------------*/
#about-us img {
  max-width: 100%;
}

#about-us {
  background: transparent url(../img/10.jpg) no-repeat center top fixed;
  background-size: cover;
}

#about-us .overlay {
  background: linear-gradient(rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.9) 95%);
  height: 100%;
  width: 100%;
}

#about-us .about-content_1 {
  text-align: left;
  padding-top: 70px;
}

#about-us .about-content {
  text-align: left;
  padding-top: 120px;
}
@media (max-width: 768px) {
  #about-us .about-content_1 {
  text-align: center;
  padding-top: 0px;
  }
  #about-us .about-content {
  text-align: center;
  padding-top: 10px;
}
}

#about-us h2 {
  font-family: "roboto";
  font-size: 30px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  #about-us h2 {
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
}

#about-us span {
  font-weight: 500;
  text-transform: uppercase;
}

#about-us p{
  font-family: "roboto";
  font-size: 20px;
}

@media (max-width: 768px) {
  #about-us p{
  font-family: "roboto";
  font-size: 15px;
}
}

/* Features Section
--------------------------------*/
#features {
  display: inline-block;
  height: 100%;
  width: 100%;
}
#features h2{
  color: #eb5949;
}
@media (max-width: 768px) {
  #features h2 {
    font-size: 25px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#features .feature-block {
  background: #e5e5e554 none repeat scroll 0 0;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block h4 {
  margin-bottom: 20px;
}

#features .feature-block p {
  margin-bottom: 0;
}


/* Newsletter Section
--------------------------------*/
#letter {
  width: 100%;
  height: calc(35vh - 40px);
  background: url(../img/hero-bg.png) center bottom no-repeat;
  background-size: 100%;
  position: relative;
}

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

#letter .overlay {
  background: linear-gradient(rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 95%);
  height: 100%;
  width: 100%;
}

#letter .section-title {
  margin-bottom: 0px;
}


/* Contact Section
--------------------------------*/
#contact {
  background: transparent url(../img/map.jpg) no-repeat center top fixed;
  background-size: cover;
}

#contact h2{
  color: #eb5949;
  padding-top: 80px;
}

@media (max-width: 768px) {
  #contact h2 {
    font-size: 25px;
    line-height: 36px;
    margin-bottom: 30px;
  }
}

.mob-align{
  width: 20%;
}
#contact .social-links {
  padding-bottom: 20px;
  padding-top: 80px;
}

#contact .social-links i {
  font-size: 18px;
  display: inline-block;
  background: #eb5949;
  color: #fff;
  line-height: 1;
  padding: 8px 2px 8px 2px;
  border-radius: 40%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

/*#contact .social-links a:hover {
  background: #eb5949;
  color: #fff;
}

