/*--------------------------------------------------------------
* Rights: All rights reserved to GreenSeth Inco. Tech
* Website Author: Letícia S. Gonçalves | Contact: olapatua@gmail.com
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: "Roboto", sans-serif;
  color: #444444;
}

a {
  color: #238562;
  text-decoration: none;
}

a:hover {
  color: #238562;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #5fcf80;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #10C66F;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

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

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
----------------------------------------------------------------*/
#header {
  background: #000000;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

#header.fixed-top {
  height: 70px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.png") top left;
  background-size: cover;
  position: relative;
  text-align: center;
  margin-bottom: -100px;
}

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

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
}

#hero h1 span {
  color: #10C66F;
}

#hero h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 300;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #10C66F;
  margin-top: 30px;
}

#hero .btn-get-started:hover {
  background: #238562;
}

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

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f5f3;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #dff3e9;
  color: #10C66F;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #10C66F;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Green Details
--------------------------------------------------------------*/
.green-details {
  padding: 80px 0;
}

.green-details .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  z-index: 100;
}

.green-details .icon-box::before {
  content: "";
  position: absolute;
  background: #10C66F;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.green-details .icon-box:hover::before {
  background: #10C66F;
  top: 0;
  border-radius: 0px; 
}

.green-details .icon {
  margin-bottom: 15px;
}

.green-details .icon i {
  font-size: 32px;
  line-height: 1;
  color: #10C66F;
  transition: all 0.3s ease-in-out;
}

.green-details .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.green-details .title a {
  color: #111;
}

.green-details .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.green-details .icon-box:hover .title,
.green-details .icon-box:hover .description {
  color: #fff;
}

.green-details .icon-box:hover .title h4 {
  color: #fff;
}

.green-details .icon-box:hover .title a,
.green-details .icon-box:hover .description {
  color: #fff;
}

.green-details .icon-box:hover .icon i {
  color: #fff;
}

@media (max-width: 768px) {
  .green-details {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background-color: #FCF5EB;
  padding: 70px 0 60px;

}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #10C66F;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 10px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Green Target
--------------------------------------------------------------*/
.green-target {
  padding: 80px 0;
  text-align: center;
  justify-content: center;
  align-items: center;  
}

.green-target .section-title h3 {
  text-align: center;

}

.green-target .icon-box {
  text-align: center;
  border-radius: 10px;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  margin-top: 40px;
}

.green-target .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f5f3;
  border-radius: 10px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.green-target .icon-box .icon i {
  color: #238562;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.green-target .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.green-target .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.green-target .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.green-target .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.green-target .icon-box:hover h4 a,
.green-target .icon-box:hover .icon i {
  color: #10C66F;
}

.green-target .icon-box:hover .icon {
  border-color: #10C66F;
}

@media (max-width: 768px) {
  .green-target .section-title h3 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .section-title h3 {
  text-align: center;
}

.contact p {
  text-align: center;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 30px 0 30px 0;
  margin-top: 30px;
}

.contact .info-box i {
  font-size: 28px;
  color: #10C66F;
  border-radius: 10px;
  padding: 8px;
  width: 64px;
  height: 64px;
  border: 1px solid #10C66F;
  border-radius: 10px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Keyframes Animate Loading
--------------------------------------------------------------*/
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
  padding: 40px 0 40px 0;
  background: #fff;
}

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

#footer .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-contact h3 span {
  color: #10C66F;
}

#footer .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-links {
  margin-bottom: 30px;
  text-align: center;
}

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

#footer .footer-links ul i {
  padding-right: 2px;
  color: #10C66F;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

#footer  .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-links ul a:hover {
  text-decoration: none;
  color: #10C66F;
}

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

#footer .social-links a:hover {
  background: #238562;
  color: #fff;
  text-decoration: none;
}

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

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details {
  margin: 80px 0 80px 0;
}

.details .bg-detail {
  background-color: #000;
}

.details .card-body {
  /*background: url("../img/blur.png");*/
  background-color: #fff;
  align-items: center;
  justify-content: center;
  background-image: url("../img/blur.png");
  background-size: 580px;
  background-position: top left;
  background-repeat: no-repeat;
}

.details .section-title {
  align-items: left;
  text-align: left;
}

.details .card {
  border-radius: 10px;
  overflow: hidden;
}

.details .new-card {
  border-radius: 10px;
  overflow: hidden;
  top: 110px;
  left: 18px;
  z-index: 200;
  margin: 10px;
}

/*--------------------------------------------------------------
# Green Demo Section
--------------------------------------------------------------*/
.green-demo {
  padding: 80px 0;
}

.green-demo .section-title h2 {
  border: 1px solid #10C66F;
  background: #fff;
}

.green-demo .section-title h3 {
  text-align: center;
}

.green-demo .bg-detail {
  background-color: #000;
}

.green-demo .card-body {
  background-color: #fff;
  align-items: center;
  justify-content: center;
  background-image: url("../img/blur.png");
  background-size: 580px;
  background-position: top left;
  background-repeat: no-repeat;
  text-align: center;
}

.green-demo .section-title {
  align-items: center;
  text-align: center;
}

.green-demo .card {
  border-radius: 10px;
  overflow: hidden;
}

.green-demo .new-card {
  border-radius: 10px;
  overflow: hidden;
  top: 80px;
  left: -170px;
  z-index: 200;
  margin: 10px;
}

.green-demo .img-green {
  width: 250px;
  height:250px;
}

.green-demo .icon-boxes h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.green-demo .icon-boxes h4:hover {
  color: #10C66F;
}

.green-demo .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.green-demo .icon-box {
  margin-top: 40px;
}

.green-demo .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid #10C66F;
  border-radius: 10px;
  transition: 0.5s;
  background: #fff;
  margin-right: 18px;
}

.green-demo .icon-box .icon i {
  color: #10C66F;
  font-size: 28px;
}

.green-demo .icon-box:hover .icon {
  background: #10C66F;
  border-color: #10C66F;
}

.green-demo .icon-box:hover .icon i {
  color: #fff;
}

.green-demo .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.green-demo .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.green-demo .icon-box .title a:hover {
  color: #10C66F;
}

.green-demo .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.green-demo .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #10C66F;
  margin-top: 30px;
}

.green-demo .btn-get-started:hover {
  background: #238562;
}

.green-demo .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.green-demo .btn-get-started:hover i {
  transform: translateX(5px);
}

/* Media Queries for mobile devices */
@media (max-width: 768px) {
  .green-demo .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .green-demo .card {
    max-width: 100%;
    margin-bottom: 20px;
    position: relative;
    top: 0;
    left: 0;
  }

  .green-demo .new-card {
    display: none;
  }

  .green-demo .col-lg-6 .d-flex {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Green Analysis Section
--------------------------------------------------------------*/
.green-analysis {
  padding: 80px 0;
}

.green-analysis .section-title h2 {
  border: 1px solid #10C66F;
  background: #fff;
}

.green-analysis .section-title h3 {
  text-align: center;
}

.green-analysis .bg-detail {
  background-color: #000;
}

.green-analysis .card-body {
  background-color: #fff;
  align-items: center;
  justify-content: center;
  background-image: url("../img/blur.png");
  background-size: 580px;
  background-position: top left;
  background-repeat: no-repeat;
  text-align: center;
}

.green-analysis .section-title {
  align-items: center;
  text-align: center;
}

.green-analysis .card {
  border-radius: 10px;
  overflow: hidden;
}

.green-analysis .new-card {
  border-radius: 10px;
  overflow: hidden;
  top: 80px;
  left: -170px;
  z-index: 200;
  margin: 10px;
}

.green-analysis .img-green {
  width: 250px;
  height:250px;
}

.green-analysis .icon-boxes h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.green-analysis .icon-boxes h4:hover {
  color: #10C66F;
}

.green-analysis .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.green-analysis .icon-box {
  margin-top: 40px;
}

.green-analysis .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid #10C66F;
  border-radius: 10px;
  transition: 0.5s;
  background: #fff;
  margin-right: 18px;
}

.green-analysis .icon-box .icon i {
  color: #10C66F;
  font-size: 28px;
}

.green-analysis .icon-box:hover .icon {
  background: #10C66F;
  border-color: #10C66F;
}

.green-analysis .icon-box:hover .icon i {
  color: #fff;
}

.green-analysis .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.green-analysis .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.green-analysis .icon-box .title a:hover {
  color: #10C66F;
}

.green-analysis .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.green-analysis .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #10C66F;
  margin-top: 30px;
}

.green-analysis .btn-get-started:hover {
  background: #238562;
}

.green-analysis .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.green-analysis .btn-get-started:hover i {
  transform: translateX(5px);
}

/* Media Queries for mobile devices */
@media (max-width: 768px) {
  .green-analysis .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .green-analysis .card {
    max-width: 100%;
    margin-bottom: 20px;
    position: relative;
    top: 0;
    left: 0;
  }

  .green-analysis .new-card {
    display: none;
  }

  .green-analysis .col-lg-6 .d-flex {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
}

.about .section-title h2 {
  border: 1px solid #10C66F;
  background: #fff;
}

.about .section-title h3 {
  text-align: center;
}

.about .bg-detail {
  background-color: #000;
}

.about .card-body {
  /*background: url("../img/blur.png");*/
  background-color: #fff;
  align-items: center;
  justify-content: center;
  background-image: url("../img/blur.png");
  background-size: 580px;
  background-position: top left;
  background-repeat: no-repeat;
  text-align: center;
}

.about .section-title {
  align-items: center;
  text-align: center;
}

.about .card {
  border-radius: 10px;
  overflow: hidden;
}

.about .new-card {
  border-radius: 10px;
  overflow: hidden;
  top: 80px;
  left: -170px;
  z-index: 200;
  margin: 10px;
}

.about .img-green {
  width: 250px;
  height:250px;
}

.about .icon-boxes h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.about .icon-boxes h4:hover {
  color: #10C66F;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid #10C66F;
  border-radius: 10px;
  transition: 0.5s;
  background: #fff;
  margin-right: 18px;
}

.about .icon-box .icon i {
  color: #10C66F;
  font-size: 28px;
}

.about .icon-box:hover .icon {
  background: #10C66F;
  border-color: #10C66F;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #10C66F;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #10C66F;
  margin-top: 30px;
}

.about .btn-get-started:hover {
  background: #238562;
}

.about .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-get-started:hover i {
  transform: translateX(5px);
}

/* Media Queries for mobile devices */
@media (max-width: 768px) {
  .about .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about .card {
    max-width: 100%;
    margin-bottom: 20px;
    position: relative;
    top: 0;
    left: 0;
  }

  .about .new-card {
    display: none;
  }

  .about .col-lg-6 .d-flex {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Green About
--------------------------------------------------------------*/
.green-about {
  padding: 80px 0;
  text-align: left;
}

.green-about .imgs-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[27];
  grid-template-columns: repeat(27, 1fr);
  position: relative; 
}

.green-about .imgs-grid:before {
  position: absolute;
  content: "";
  width: 255px;
  height: 217px;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translate(-40%, -40%);
  -ms-transform: translate(-40%, -40%);
  transform: translate(-40%, -40%);
  z-index: -1; 
}

.green-about .imgs-grid .grid {
  position: relative; 
}

.green-about .imgs-grid .grid img {
  border-radius: 10px;
  max-width: 100%; 
}

.green-about .imgs-grid .grid.grid-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 18;
  grid-column: 1 / span 18;
  -ms-grid-row: 1;
  -ms-grid-row-span: 27;
  grid-row: 1 / span 27; 
}

.green-about .imgs-grid .grid.grid-2 {
  -ms-grid-column: 19;
  -ms-grid-column-span: 27;
  grid-column: 19 / span 27;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1 / span 5;
  padding-left: 20px; 
}

.green-about .imgs-grid .grid.grid-3 {
  -ms-grid-column: 14;
  -ms-grid-column-span: 16;
  grid-column: 14 / span 16;
  -ms-grid-row: 6;
  -ms-grid-row-span: 27;
  grid-row: 6 / span 27;
  padding-top: 20px; 
}

.green-about .imgs-grid .grid.grid-4 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 18;
  grid-column: 1 / span 18;
  -ms-grid-row: 1;
  -ms-grid-row-span: 27;
  grid-row: 1 / span 27; 
}

.green-about .imgs-grid .grid.grid-5 {
  -ms-grid-column: 14;
  -ms-grid-column-span: 16;
  grid-column: 14 / span 16;
  -ms-grid-row: 6;
  -ms-grid-row-span: 27;
  grid-row: 10 / span 27;
  padding-top: 40px; 
}

.green-about p{
  text-align: left;
}

.green-about .section-title {
  text-align: left;
}

.green-about .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: #10C66F;
  margin-top: 30px;
}

.green-about .btn-get-started:hover {
  background: #238562;
}

.green-about .section-title h2, .section-title h3 {
  text-align: left;
}

/* Media Queries for mobile devices */
@media (max-width: 768px) {
  .green-about .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .green-about .section-title h2,
  .green-about .section-title h3 {
    text-align: center;
  }

  .green-about p {
    text-align: center;
  }

  .green-about .btn-get-started {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Custom list
--------------------------------------------------------------*/
.custom-list {
  width: 100%; 
}

.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px; 
}

.custom-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 10px;
  border: 2px solid #3b5d50;
  position: absolute;
  left: 0;
  top: 8px; 
}

/*--------------------------------------------------------------
# Slider Green
--------------------------------------------------------------*/
.slider-green {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box_sliderproduto_home {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider-green .slider-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.slider-green .bg-detail {
  background-color: #000;
}

.slider-green .list-item {
  cursor: pointer;
}

.slider-image, .list-item img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Btn Get Started
--------------------------------------------------------------*/
.btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.btn-get-started:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# GreenSeth
--------------------------------------------------------------*/
.greenseth {
  padding: 80px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.greenseth .card {
  margin: 50px 0 80px 0;
  background-image: url("../img/blur.png");
}

.greenseth .section-title h2 {
  border: 1px solid #10C66F;
  background: #fff;
}

.greenseth .section-title h3 {
  text-align: center;
}

@media (max-width: 768px) {
  .greenseth .col-6 {
    width: 90%;
  }
  .greenseth .card {
    margin: 20px 0;
  }
}

/*--------------------------------------------------------------
# Green Features
--------------------------------------------------------------*/
.green-features {
  padding: 80px 0;
  margin-bottom: 20px;
  margin-top: 40px;
}

.green-features .section-title h3{
  text-align: center;
}

.green-features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}

.green-features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.green-features .feature-box i {
  line-height: 0;
  background: #dff3e9;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.green-features .feature-box:hover i {
  background: #10c66f;
  color: #fff;
}

.green-features .feture-tabs {
  margin-top: 120px;
}

.green-features .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .green-features .feture-tabs h3 {
    font-size: 28px;
  }
}

.green-features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.green-features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.green-features .feture-tabs .nav-link.active {
  color: #4154f1;
  border-bottom: 3px solid #4154f1;
}

.green-features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}

.green-features .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #4154f1;
}

.green-features .feature-icons {
  margin-top: 120px;
}

.green-features .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .green-features .feature-icons h3 {
    font-size: 28px;
  }
}

.green-features .feature-icons .content .icon-box {
  display: flex;
}

.green-features .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
}

.green-features .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}

.green-features .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}