html {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header { 
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

/*--------------------------------------------------------------
# Header Menu
--------------------------------------------------------------*/
#header-menu{
  background-image: url('../images/nav-background.png');
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  #header-menu{
    background-image: url('../images/nav-background.png');
    background-repeat: no-repeat;
    background-position: left;
  }
}


.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #39b54a;
}

.navbar a i,
.navbar a:focus i {
  line-height: 0;
}

.navbar a,
.navbar a:focus {
  font-size: 1.4rem;
  font-weight: 500;
  color: #37423b;
  white-space: nowrap;
  transition: 0.3s;
}

.contact-us-button {
  margin-left: 1.5rem;
  background: #39b54a;
  color: #fff !important;;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 1.5rem;
  display: inline-block;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
#breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#breadcrumb  li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#breadcrumb  ul a {
  color: #39b54a;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#breadcrumb ul a:hover {
  text-decoration: none;
  color: #777777;
}


/*--------------------------------------------------------------
# Home page
--------------------------------------------------------------*/
#heroImage {
  margin-bottom: 4rem;
  position: relative;
  padding-top: 6.7rem;
}

#heroImage .text-hero {
  min-width:15rem;
  max-width:20rem;
  position: absolute;
}


#heroImage .text-hero div {
  border-radius: 1.5rem;
  color: rgba(255, 255, 255, 0.8); /* Fully opaque white */
  background-color: #39b54a;
  background-color: rgba(57, 181, 74, 0.5); /* Background color with desired opacity */
}

/*Mobile*/
@media only screen and (max-width: 767px) {
  #heroImage .text-hero {
    bottom: 0.6rem;
    left: 0.6rem;
  }

  #heroImage .text-hero div {
    margin: 0.2rem;
    padding: 0.4rem;
  }
  
  #heroImage .text-hero div h2 {
    font-size: 1.5rem;
  }
}

/*Tablet*/
@media only screen and (min-width: 768px) {
  #heroImage .text-hero {
    bottom: 4rem;
    left: 6rem;
  }
  #heroImage .text-hero div {
    margin: 0.3rem;
    padding: 0.5rem;
  }

  #heroImage .text-hero div h2 {
    font-size: 2rem;
  }
}

/*Desktop*/
@media only screen and (min-width: 1024px) {
  #heroImage .text-hero {
    bottom: 10rem;
    left: 15rem;
  }
  #heroImage .text-hero div {
    margin: 0.6rem;
    padding: 0.6rem;
  }

  #heroImage .text-hero div h2 {
    font-size: 3rem;
  }
}





/*--------------------------------------------------------------
# Pages Title
--------------------------------------------------------------*/

.page_title {
  margin-top: 100px;
  text-align: center;
  background: #39b54a;
  padding: 30px 0;
  color: #fff;
}


.ecoac-green{
  color: #39b54a;  
}

.ecoac-grey{
  color: #939598;  
}

a.ecoac-green {
  color: #39b54a;
  text-decoration: none;
}


a.ecoac-blue {
  color: #2ca1db;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Product page
--------------------------------------------------------------*/
h2.subtitle {
  display: inline-block;
  border-bottom: 4px solid #39b54a;
  padding-bottom: 4px;
}
.card-body {
  background-color: rgba(240, 240, 240, 1);
}

.card-img-top {
  background-color: rgba(240, 240, 240, 1);
}

tr.tableheader {
  background-color: #2ca1db; 
  text-align: left; 
  vertical-align: middle; 
  height: 36px;
  font-weight: bold; 
  color:#ffffff;
}

tr.tablecontent {
  height: 1.2rem;
  font-size: 1rem;
}

a.roundedbutton {
  border-radius:100px;
  background-color: #2ca1db;
  color: #FFFFFF!important;
  padding-top: 10px!important;
  padding-right: 30px!important;
  padding-bottom: 10px!important;
  padding-left: 30px!important;  
  text-decoration:none;
}

.thumbnail-container {
  border: 1px solid #d3d3d3;
  width: 200px !important;
  height: 200px !important;
  border-radius: 0.5rem !important;  
  overflow: hidden; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.5rem; /* Rounded corners for the image */
}

/*--------------------------------------------------------------
# Thank you page
--------------------------------------------------------------*/
.thank-you-message {
    margin-top: 100px;
    text-align: center;
  }
  
  .form-group label.required:after {
    content:"*";color:red;
  }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f9faf9;
}

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

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

#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: 2px;
  color: #39b54a;
  font-size: 18px;
  line-height: 1;
}

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

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

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

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #39b54a;
}

#footer {
  color: #37423b;
  font-size: 1.2rem;
  background: #eef0ef;
}

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

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