/* Colors
#1D1E18
#6B8F71
#AAD2BA
#B9F5D8
#D9FFF5
*/
/* Header */
body {
    font-family: sans-serif;
}
header {
    background-color: #B9F5D8;
  }
  .what-we-do-wrapper{
    background-color: #B9F5D8;
  }
  .container {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    
  }
  
  .logo-section {
    width: 80px;
    height: 80px;
    
  }
  
  .logo-img {
    width: 100%;
    height: 100%;
  }
  
  .menu-section {
    width: 100%;
  }
  
  .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
  }
  
  .menu li {
    padding: 0 10px;
  }
  
  .menu a {
    color: #1D1E18;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
  }
  
  .hero-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    background-color: #6b8f71;
    color: #D9fff5;
    align-items: center;
  }
  
  .hero-left {
    width: 50%;
    padding: 0 10px;
    text-align: center;
    font-size: 24px;
  }
  
  .hero-right {
    width: 50%;
    padding: 0 10px;
    border-bottom: 10px solid #89FC00;
  }
  
  .hero-img {
    max-width: 100%;
  }
  .hero-button, .hero-button button{
    border-radius: 7px;
    border: none;
    display: block;
    margin: auto;
    text-decoration: none;
  }
  .hero-button button{
    padding: 15px 30px;
  }
  
  @media only screen and (max-width: 600px) {
    .container {
      flex-direction: column;
    }
    .menu{
      justify-content: center;
    }
   
    
    .logo-section {
      width: 80px;
      height: auto;
    }
  
    .hero-section {
      flex-direction: column;
    }
    
    .hero-left {
      width: 100%;
      padding: 2rem 0;
      /* padding: 0; */
    }
  
    .hero-right {
      width: 100%;
      padding: 0;
    }
  
  }

  /* About*/
  .about-container {
    width: 100%;
    padding: 2rem 20px;
    background-color: #D9FFF5;
    color: #F5B700;
    font-family: sans-serif;
    font-size: 1.2em;
    text-align: center;
  }
  .about-container h2{
    padding-top: 0;
  }
  
  #about-heading {
    font-size: 1.5em;
    font-weight: bold;
    color: #6B8F71;
    text-transform: uppercase;
  }
  
  .about-text {
    font-size: 1em;
    font-weight: normal;
    color: #1D1E18;
    line-height: 1.5;
    max-width: 600px;
    text-align: center;
    margin: auto;
  }
  
  @media (max-width: 768px) {
    .about-container {
      width: 100%;
      padding: 10px;
      color: #89FC00;
      font-size: 1em;
    }
  
    .about-heading {
      font-size: 1.2em;
      color: #F5B700;
    }
  
    .about-text {
      font-size: 0.8em;
    }
  }
.hero_title{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px){
  .hero_title{
    font-size: 1.8rem;
  }
}
/* What we Do */
h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1D1E18;
    text-align: center;
    line-height: 2;
    padding-top: 2rem;
  }
  
  .services {
    background-color: #B9F5D8;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 0;
  }
  
  .service {
    width: 350px;
    padding: 10px;
    text-align: center;
    margin: 15px;
    background-color: #6B8f71;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }
  
  .service h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #aad2ba;
    margin-bottom: 10px;
  }
  
  .service p {
    font-size: 1.2rem;
    font-weight: normal;
    color: #b9f5d8;
  }

  #wrapper-services {
    background-color: #B9F5D8;
  }
  
  
  @media (max-width: 600px) {
    .services {
      flex-direction: column;
    }
    .service {
      width: 80%;
      margin: 10px auto;
    }
  }

  /* Button */
  button {
        background-color: #fff;
        border-radius: 0px;
        color: #1D1E18;
        font-size: 32px;
        font-family: sans-serif;
        padding: 30px 100px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        cursor: pointer;
        /* font-weight: bold; */
    }

button:hover {
        background-color: #D9FFF5;
        
        box-shadow: 0px 1px 8px 0px #6B8F71;
    }

/* CTA */
    #cta {
        background-color: #383838;
        padding: 50px 0;
        text-align: center;
    } 

    #cta h2 {
        color: #6B8f71;
        font-size: 24px;
        font-family: 'Open Sans', sans-serif;
    }

    #cta p {
        color: #aad2ba;
        font-size: 16px;
        font-family: 'Open Sans', sans-serif;
        line-height: 1.5;
    }

    .cta-btn {
        background-color: #b9f5d8;
        border: none;
        color: #1D1E18;
        font-size: 16px;
        padding: 10px 30px;
        text-transform: uppercase;
        font-family: 'Open Sans', sans-serif;
        letter-spacing: 1px;
        transition: .3s ease-in-out;
    }

    .cta-btn:hover {
        background-color: #d9fff5;
    }