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

a {
  color: #2e8fd8;
  transition: 0.5s;
}

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

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

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

/* Back to top button */
.call-btn {
  position: fixed;
  display: none;
  width: 60px;
  height: 60px;
  background-color: #2e8fd8;
  color: #fff;
  font-size: 22px;
  line-height: 60px;
  text-align: center;
  bottom: 10px;
  right: 10px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  z-index: 5;
}

.call-btn:focus {
  background: #2e8fd8;
  color: #fff;
  outline: none;
}

.call-btn:hover {
  background: #222;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#topbar .contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

#topbar .contact-info li {
  display: inline-block;
}

#topbar .contact-info li:first-child {
  padding-right: 20px;
  margin-right: 15px;
  border-right: 1px solid #e9e9e9;
}


#topbar .contact-info a {
  line-height: 1;
  color: #555;
}

#topbar .contact-info a:hover {
  color: #2e8fd8;
}

#topbar .contact-info i {
  color: #2e8fd8;
  padding: 4px;
}

#topbar .social-links a {
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a i {
  transition: all .4s ease-in-out;
}

#topbar .social-links a i.fa-twitter {
  color: #1da1f2;
}

#topbar .social-links a i.fa-facebook-f {
  color: #3b5998;
}

#topbar .social-links a i.fa-google {
  color: #3cba54;
}

#topbar .social-links a i.fa-pinterest-p {
  color: #c8232c;
}

#topbar .social-links a:hover i {
  color: #555;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo {
  display: inline-block;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-width: 180px;
  margin-top: -25px;
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  background-image: url("../img/backgrounds/a-to-z-tree-removal-service.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 180px 0;
  width: 100%;
  height: 65vh;
  position: relative;
}

#intro:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#intro .intro-content {
  position: relative;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#intro .intro-content h1 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
}

#intro .intro-content h1 span {
  color: #2e8fd8;
  text-decoration: underline;
}
#intro .breadcrumb {
  background-color: rgba(34, 34, 34, .7);
  border-radius: 0 15px;
}

#intro .breadcrumb-item a:hover {
  color: #fff;
}

#intro .breadcrumb-item + .breadcrumb-item::before {
  color: #aaa;
}

#intro .breadcrumb-item.active {
  color: #aaa;
}

#intro .intro-content .btn-intro {
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  border: 2px solid #fff;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #222;
}

#intro .intro-content .btn-intro:hover {
  background: none;
  color: #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: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: "Font Awesome 5 Pro";
}

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

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

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #555;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: #2e8fd8 !important;
}

.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 .menu-active > a {
  background: #2e8fd8;
  color: #444;
}

.nav-menu ul li:hover > a {
  color: #2e8fd8;
}

.nav-menu ul .menu-active:hover > a {
  color: #444 !important;
}

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

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(34, 34, 34, .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;
  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: #2e8fd8;
}

#mobile-nav ul .menu-active > a {
  color: #2e8fd8;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(34, 34, 34, .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
--------------------------------------------------------------*/

#sitemap {
  padding: 60px 0;
}


/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 55px;
  color: #222;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #2e8fd8;
  bottom: 0;
  left: 0;
}

.section-header p {
  padding: 0;
  margin: 0;
}

/* Service Page Section
--------------------------------*/

#service {
  padding: 60px 0 0;
}

#service .col-lg-8 {
  border-right: 3px dashed #2e8fd8;
}

#service .service-img {
  margin-bottom: 20px;
}

#service .service-img img {
  border-bottom: 7px dashed #2e8fd8;
  border-radius: 100px 0;
}

#service .service-description h3 {
  font-weight: 600;
  margin-bottom: 15px;
  padding: 0;
  color: #444;
}

#service .service-description p {
  color: #666;
  text-align: justify;
}

#service h2 {
  padding: 0;
  margin-top: 0;
  font-weight: 600;
}

#service #contact {
  padding: 0;
}

#service #services {
  margin-top: 30px;
  padding: 0;
}

#service #services .box {
  margin-bottom: 25px;
}


/* About Section
--------------------------------*/
#about {
  padding: 60px 0;
}

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

#about .about-img img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 10px  rgba(0, 0, 0, .3);
}

#about .content h2 {
  color: #222;
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
}

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

#about .content p {
  line-height: 26px;
}

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

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #2e8fd8;
}

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

#about .content ul li {
  padding-bottom: 10px;
  margin-left: 30px;
}

#about .content ul li i {
  position: absolute;
  line-height: 26px;
  margin-left: -30px;
}

#about .areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#about .areas-list a {
  background-image: url('../img/backgrounds/areas-bg.jpg');
  background-position: center center;
  background-size: cover;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  margin-right: 10px;
  padding: 15px 10px;
  width: 32%;
  border-radius: 0 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all .4s ease-in-out;
}

#about .areas-list a:before {
  content: ' ';
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  border-radius: 0 15px;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transition: all .4s ease-in-out;
  z-index: 1;
}

#about .areas-list a:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#about .areas-list a:hover:before {
  background-color: rgba(0, 0, 0, .7);
}

#about .areas-list a li {
  position: relative;
  z-index: 2;
}

#about .areas-list a li h2 {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin: 0;
  padding: 0;
}

#about .areas-list a li i {
  color: #2e8fd8;
  font-size: 20px;
  padding-right: 5px;
}


/* Services Section
--------------------------------*/
#services {
  padding: 60px 0 30px;
}

#services .box {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

#services .box:before {
  content: ' ';
  position: absolute;
  background-color: rgba(0, 0, 0 , .3);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

#services .box:hover:before {
  background-color: rgba(0, 0, 0 , .75);
}

#services .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#services .box h4 {
  position: relative;
  font-weight: 700;
  padding-bottom: 7px;
  margin-bottom: 15px;
  font-size: 22px;
  color: #fff;
  z-index: 3;
}

#services .box p {
  position: relative;
  font-size: 14px;
  text-align: justify;
  margin-bottom: 0;
  line-height: 24px;
  color: #fff;
  opacity: 0;
  transition: all 0.4s ease-in-out;  
  z-index: 3;
}

#services .box h4:before {
  content: ' ';
  position: absolute;
  background-color: #2e8fd8;
  width: 20%;
  height: 3px;
  bottom: 0;
  transition: all 0.4s ease-in-out;
}

#services .box:hover h4:before {
  width: 40%;
}

#services .box:hover p {
  opacity: 1;
}

#services .box p a:hover {
  color: #999;
}


/* Testimonials Section
--------------------------------*/
#testimonials {
  background-image: url("../img/backgrounds/a-to-z-tree-removal-services.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  position: relative;
  padding: 30px 0;
}

#testimonials:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

#testimonials .section-header h2 {
  color: #fff;
}

#testimonials .section-header p {
  color: #fff;
}

#testimonials .testimonial-item {
  position: relative;
  background-color: #333;
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 225px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

#testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 5px 0;
  color: #fff;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  color: #eee;
  font-style: italic;
  margin: 0 auto 15px auto;
}

#testimonials .testimonial-item ul {
  list-style: none;
  margin: 7px 0 0;
  padding: 0;
}

#testimonials .testimonial-item ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

#testimonials .testimonial-item ul li i {
  font-size: 18px;
  color: #2e8fd8;
}

#testimonials .owl-nav, #testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #2e8fd8;
}


/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #222;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #2e8fd8;
  color: #222;
  background: #2e8fd8;
}

#call-to-action .cta-btn:hover {
  background: transparent;
  border: 3px solid #fff;
  color: #fff;
}


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

#contact {
  padding: 30px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 20px;
  color: #2e8fd8;
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #2e8fd8;
}

#contact .contact-address,
#contact .contact-area,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #2e8fd8;
  border: 1px solid #2e8fd8;
  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 {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #2e8fd8;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

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

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

#footer .copyright {
  display: inline-block;
  margin: 0;
  color: #444;
}

#footer .copyright a {
  color: #444;
}

#footer .copyright a:hover {
  color: #2e8fd8;
}

#footer .footer-social-links {
  display: inline-block;
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer .footer-social-links li {
  display: inline-block;
  padding: 0;
  padding: 4px 12px;
  font-size: 18px;
  line-height: 1px;
  border-right: 1px solid #c9c9c9;
}

#footer .footer-social-links li:last-child {
  border-right: none;
}

#footer .footer-social-links li a {
  color: #444;
}

#footer .footer-social-links li a i {
  transition: all .4s ease-in-out;
}

#footer .footer-social-links li a:hover i.fa-twitter {
  color: #1da1f2;
}

#footer .footer-social-links li a:hover i.fa-facebook-f {
  color: #3b5998;
}

#footer .footer-social-links li a:hover i.fa-google {
  color: #3cba54;
}

#footer .footer-social-links li a:hover i.fa-pinterest-p {
  color: #c8232c;
}
