
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: 'Monda', sans-serif;
}

a {
  color: #017953;
  transition: 0.5s;
   text-decoration: none;
}

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


}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Staatliches', cursive;
  margin: 0 0 0px 0;
  padding: 0;letter-spacing:1px
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #128460;
  color: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

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

.clear{display:block; clear:both}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 0px 0;
  height: auto;
  position: relative;
  float:left;
  transition: all 0.5s;
  background:#fff;
  width:100%

}



#header #logo {
  float: left;
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 0px;
  }
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #18d26e;
}

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

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }
  #header #logo img { 
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  display: table;
  width: 100%;
  height: 630px;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 630px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
  }


  #intro {
  display: table;
  width: 100%;
  height: 320px;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #intro p {
    width: 60%;
  }
}

#intro .carousel-fade .carousel-inner .carousel-item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev, #intro .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #intro .carousel-control-prev, #intro .carousel-control-next {
    width: 5%;
  }
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #18d26e;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #18d26e;
}

/*--------------------------------------------------------------
# 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 (min-width: 1024px) {
  #nav-menu-container {
    padding-right: 0px;
  }
}

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

/* Nav Meu Styling */
.nav-menu a {
  padding: 33px 28px 29px 28px;
  text-decoration: none;
  display: inline-block;
  color: #000;
  font-family: 'Staatliches', cursive;
  font-weight: lighter;
  font-size: 20px;
  text-transform: uppercase;
  outline: none;letter-spacing:1px
}

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

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

.nav-menu ul {
  margin: 4px 0 0 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: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;

}

.nav-menu ul li:hover > a {
  color: #18d26e;
}

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

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

#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(0, 0, 0, 0.8);
  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: 16px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing:1px
}

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

#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: #18d26e;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

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

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  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
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #18d26e;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/* welcome Section
--------------------------------*/
#welcome {
  background: #fff;
  padding:60px 0px
}


#welcome .icons{margin:20px 0px}

#welcome .icons img{float:left; margin:0px 15px 0px 0px}

#welcome .icons p{
  color:#000; font-size:18px;
  text-transform:uppercase;
  font-family: 'Monda', sans-serif;
  line-height:10px; padding-top:13px;
  font-weight:bold
}

#welcome .icons span{
  color:#000; font-size:30px;
  text-transform:none;
  font-family: 'Monda', sans-serif;
  font-weight:bolder
}


#welcome h3 {
  
  margin: 0px 0;
  font-size: 35px;
  color:#050320; text-transform:uppercase;
  font-weight: bolder;
}

#welcome h4 {
  
  margin: 0px 0px 15px 0px;
  font-size: 55px;
  color:#050320; text-transform:uppercase;
  font-weight: bolder;
}



#welcome p {
  font-size: 17px;
  line-height: 29px;
  color: #000;
  margin-bottom: 0;
}


@media (max-width: 768px) {

  #welcome h3 {
  
  margin: 20px 0px 0px 0px;
  font-size: 35px;
  color:#050320; text-transform:uppercase;
  font-weight: bolder;
}


  #welcome h4 {
  
  margin: 0px 0px 15px 0px;
  font-size: 45px;
  color:#050320; text-transform:uppercase;
  font-weight: bolder;
}
}


#welcome .cta-btn {
  font-family: 'Monda', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 10px;
  background:#050320;
  color: #fff;
}

#welcome .cta-btn:hover {
  background: #017953;

}



/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: url(../img/service-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 65px;
  font-weight: lighter;
}

#call-to-action p {
  color: #fff;
}







/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin: 30px 0px;
}

#services h4 {

  color:#050320; font-size:45px;
  font-weight:bold
  
}

#services h3 {

  color:#017953; font-size:32px;
  font-weight:bold
  
}


#services a {
  color: #017953;
  transition: 0.5s;
  font-weight:bolder;
   text-decoration: none;
}

#services img{margin-bottom:8px}


#services h2 {

  color:#050320; font-size:26px;
  font-weight:bold;
  margin:8px 0px
  
}


#services .description {
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 15px;
  color:#000
}




/* Portfolio Section
--------------------------------*/
#gallery {
  background: #020014;
  background-size: cover;
  padding: 55px 0px 55px 0px;
}

#portfolio {
  background: none;
  background-size: cover;
  
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0px 0 0px 0;
  list-style: none;
  text-align: center;
}




#portfolio .portfolio-item {
  position: relative;
  height: auto;
  overflow: hidden; margin:25px 0px 0px 0px
}

#portfolio .portfolio-item figure {
  background: #eeeeee;
  overflow: hidden;
  height: 200px;
  position: relative;
  border-radius: 4px 4px ;
  margin: 0;
}



@media (max-width: 768px) {
  #portfolio .portfolio-item figure {
  background: #eeeeee;
  overflow: hidden;
  height: 220px;
  position: relative;
  border-radius: 4px 4px ;
  margin: 0;
  width:80%; margin: 0 auto
}
}



#portfolio .portfolio-item figure:hover img {

  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview, #portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0%;
  transition: 0.2s linear;
}





#portfolio h2  {
  font-size: 35px;
  color: #000;
  text-transform: uppercase;
  text-align: left;
  font-weight: 700;
  position: relative;

}


#portfolio h3  {
  font-size: 35px;
  color: #0f9168;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;

}


#portfolio h4  {
  font-size: 45px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: light;
  position: relative;
  margin-bottom:10px

}


@media (max-width: 768px) {
  #portfolio .portfolio-item figure {
  background: #eeeeee;
  overflow: hidden;
  height: 220px;
  position: relative;
  border-radius: 4px 4px ;
  margin: 0;
  width:80%; margin: 0 auto
}


#portfolio h2  {
  font-size: 27px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;

}

}



#portfolio .portfolio-item figure .link-preview:hover, #portfolio .portfolio-item figure .link-details {
  background: rgba(0, 0, 0, 0.1);
}

#portfolio .portfolio-item figure .link-preview:hover i, #portfolio .portfolio-item figure .link-details {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(0% - 0px);
  top: calc(0% - 0px);
}



#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(0% - px);
}



#portfolio .portfolio-item img {
  transition: all ease-in-out 0.6s;
  width: 100%;
}

#portfolio .portfolio-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}




.form .input{background:#e5e5e5; padding:16px 10px; color:#000;
 font-size:16px;  width:100%;
font-family: 'Monda', sans-serif; font-style: none;
float:none; border:2px solid #e5e5e5; float:none; margin: 0 auto;
margin-bottom:12px; margin-top:8px;
border-radius:0px; font-weight: 500;}

 .submits {  font-family: 'Rajdhani', sans-seri
  text-transform: capitalize;
  font-weight: lighter;
  font-size: 17px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 5px; border:none; background:#050320;
  color:#fff;
  margin-bottom:30px}

.submits:hover { background: #017953;
   color:#fff}

.alertmsg {font-size:12px; color:#f00; font-style:no;}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #095f44;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #014831;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #18d26e;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #18d26e;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 29px;
  font-weight: lighter;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
  margin-bottom:15px
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #none;
}

#footer .footer-top h4::after {
  background: #095f44;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom:none;
  padding: 3px 0;
}



#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  font-size:16px
}

#footer .footer-top .footer-links ul a:hover {
  color: #50a98c;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 28px;
  font-size:16px
}





#footer .copyright {
  text-align: center;
  padding-top: 30px;
   font-size:16px
}

#footer .credits {
  text-align: center;
  font-size: 16px;
  color: #fff;
}

#footer .credits a {
  text-align: center;
  font-size: 16px;
  color: #fff !important;
}



#content {
  background: #fff;
  padding:60px 0px
}





#content h3 {
  
  margin: 0px 0px 0px 0px;
  font-size: 35px;
  color:#050320; text-transform:uppercase;
  font-weight: bolder;
}





#content p {
  font-size: 16px;
  line-height: 29px;
  color: #000;
  margin-bottom: 0;
}


@media (max-width: 768px) {

  #content  h3 {
  
  margin: 0px 0px 20px 0px;
  font-size: 35px;
  color:#050320; text-transform:uppercase;
  font-weight: bolder;
}


 #content .col-lg-5{ display:none}


}