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

a {
  color: #af0b2b;
  transition: 0.5s;
}

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

p {
  padding: 0;
  margin: 0 0 10 0;
  color: #fff;
}



h1 {
    font-size: 72px;
    color: #111;
    text-align: center;
    font-weight: 800;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
        text-align: center;
  }
}

h3 {
    font-size: 24px;
    color: #111;
    text-align: center;
    font-weight: 600;
}
    
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: #777;
  padding: 0;
  margin: 0 0 0 0;
  line-height: inherit;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #000;
  padding: 0;
  line-height: inherit;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #706f6f;
  color: #fff;
  padding: 2px 20px 8px 20px;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  color: #fff;
  outline: none;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 120px;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}


#header #logo img {
  max-width: 250px;
  margin-top: 15px;
  max-height: 140px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #header #logo img {
    max-height: 100px;
    float: none;
    align: left;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  #header {
    height: 130px;
    float: none;
    margin-bottom: 20px;
  }
}





/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  height: auto;
  margin-top: 130px;

}

#intro img {
     max-width: 100%;
     height: auto;
}


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



@media (max-width: 768px) {
  #intro img {
    max-width: 100%;
  }
}

#intro p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

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

#intro .btn-get-started:hover {
  color: #1dc8cd;
  background: #fff;
}





/*--------------------------------------------------------------
# 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 Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  margin-top: 40px;
  text-decoration: none;
  display: inline-block;
  color: #575756;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

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

.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: #1dc8cd;
}

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

/* 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;
}

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

@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(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: 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: #1dc8cd;
}

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

#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 {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 24px;
  color: #111;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 18px;
    color: #111;
    text-align: center;
    font-weight: 600;

  }
}

.section-header .section-description {
  text-align: center;
  font-size: 24px;
  font-weight: 200;
  padding-bottom: 40px;
  line-height: 40px;
  color: #777;
  font-style: italic;
}

@media screen and (max-width: 768px) {
  .section-header {
    font-size: 15px;
    color: #000;
    text-align: center;
    font-weight: 300;

  }
}

.section-header .section-divider {
  display: block;
  width: 160px;
  height: 3px;
  background: #c3c4c4;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

/* About Us Section
--------------------------------*/
#about {
  padding-top: 50px;;
  overflow: hidden;
}

#about .about-img {
  height: auto;
  overflow: hidden;
}

#about .about-img img {

  max-width: 100%;
}

#about .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}

@media (max-width: 768px) {
  #about .about-img {
    width: auto;
  }
  
  #about .about-img img {
    padding-bottom: 30px;
  }
}

#about .content .h2 {
  color: #333;
  font-weight: 300;
  font-size: 38px;
  text-align: center;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 40px;
  margin-left: 30px;
}

@media (max-width: 768px) {
  #about p {
    font-size: 1em;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#about .content p:last-child {
  margin-bottom: 50px;
}

#about i {
  color: #06cc22;
  padding-right: 15px;
}

#about li {
  font-size: 24px;
  padding-right: 4px;
  font-weight: 200;
  color: #3e0505;
  }
  
  @media (max-width: 768px) {
  #about i {
    font-size: 18px;
    line-height: 14px;
    margin-bottom: 5px;
      text-align: center;
  }
}


#about .content ul {
  list-style: none;
  padding: 0;
}



@media (max-width: 768px) {
  #about .content ul li {
    font-size: 18px;
    line-height: 14px;
    margin-bottom: 5px;
    text-align: center;
  }
}



/* Leistung
--------------------------------*/
#leistung {
  background: #dadada;
  padding: 60px 0 0 0;

}

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


#leistung {
  padding: 60px 0;
  overflow: hidden;
  margin-top: 80px;
}

#leistung h3 {
  margin-top: 20px;
  color: #000;
  text-align: left;
}

#leistung h4 {
  margin-top: 5px;
  color: #000;
  text-align: left;
  font-size: 18px;
}

#leistung p {
  margin-bottom: 5px;
  color: #000;
  text-align: justify;
  margin-left: 30px;
}

@media (max-width: 768px) {
  #leistung #leistung-list a {
    font-size: 18px;
  }
  #leistung #leistung-list i {
    top: 13px;
  }
}




/* Gallery Section
--------------------------------*/
#gallery {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

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

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Our Team Section
--------------------------------*/

#team {
  padding: 60px 0;
  overflow: hidden;
}

#team .member {
  text-align: center;
}


#team .member .pic img {
  max-height: 100px;
  margin-bottom: 20px;
  margin-top: 20px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member h3 {
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 24px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

#team .member .a {
  color: #b3b3b3;
  line-height: 5px;
}

#team .member p {
  font-weight: 400;
  font-size: 14px;
  margin: 0 0 0 0 ;
}



/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
  background: #000;
}

#contact a {
  color: #fff;
}

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

#contact .contact-about h3 {
  font-size: 36px;
  text-align: left;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e4032e;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

#contact .social-links {
  padding-bottom: 20px;
}

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

#contact .social-links a:hover {
  background: #706f6f;
  color: #fff;
}

#contact .info {
  color: #fff;
}

#contact .info i {
  font-size: 32px;
  color: #e4032e;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #1dc8cd;
  border: 1px solid #1dc8cd;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact .form button[type="submit"]:hover {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #1dc8cd;
}

/*--------------------------------------------------------------
# cookie
--------------------------------------------------------------*/
#cookiedingsbums a {color:#000; text-decoration:none;}

#cookiedingsbums a:hover {text-decoration:underline;}

#cookiedingsbums div {padding:10px; padding-right:40px;}

#cookiedingsbums span {
  color: #fff;
}

#cookiedingsbums { 

   text-align:right; 
   border-top:1px solid #fff;
   background: #009640; 

   filter: progid:DXImageTransform.Microsoft.gradient(   startColorstr='#d6e0eb', endColorstr='#c4007a',GradientType=0 ); 
   position:fixed;
   bottom:0px; 
   z-index:10000; 
   width:100%; 
   font-size:12px; 
   line-height:70px;}

#cookiedingsbumsCloser {
   color: #fff;
   font: 14px/100% arial, sans-serif;
   position: absolute;
   right: 5px;
   text-decoration: none;
   text-shadow: 0 1px 0 #fff;
   top: 5px;
   cursor:pointer;
   border-top:1px solid white; 
   border-left:1px solid white; 
   border-bottom:1px solid white; 
   border-right:1px solid white; 
   padding:4px;
   background: #c4007a; /* Old browsers */
   filter: progid:DXImageTransform.Microsoft.gradient(    startColorstr='#ced6df', endColorstr='#f2f6f9',GradientType=0 ); 
 }

#cookiedingsbumsCloser:hover {border-bottom:1px solid white; border-right:1px solid white; border-top:1px solid #7b92a9; border-left:1px solid #7b92a9;}
