* {
  overflow-x: hidden;
}

body {
  background: #fafafa;
}

.list {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

.text-forest {
  color: #00796b;
}

.text-light-forest {
  color: #80cbc4;
}

.text-dark-forest {
  color: #004d40;
}

.navbar-brand {
  font-size: 30px;
  text-transform: uppercase;
}

.btn-forest {
  background-color: #00796b;
  color: #fff;
}

.btn-forest hover {
  background-color: #00796b;
  text: #fff;
}

.bg-forest {
  background-color: #00796b;
}

.bg-light-forest {
  background-color: #80cbc4;
}

.bg-dark-forest {
  background-color: #004d40;
}

.hero {
  min-height: 72vh;
}

.features {
  min-height: 62vh;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 45px;
  padding: 10px;
  color: #b0bec5;
}

.cards {
  display: flex;
  align-content: center;
  justify-content: space-between;
}

.card {
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  padding: 20px;
}
.card-img {
  height: 60px;
}

.grid_items{
  display: grid;
  grid-template-columns: auto auto ;
  padding: 30px 10px;
  gap: 10px;
}


.grid_items > h4 {
  flex:1;
  
}

.tia {
  padding: 20px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

.tia-content,
.swiss {
  padding: 10px;
  font-weight: 600;
  color: #b0bec5;
}

/* About Us  */

.title {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #00796b, #004d40);
  padding: 20px;
}

.services {
  min-height: 39vh;
}

.form {
  width: 80%;
}

.team_img{
  height: 400px;
  width: 400px;
  object-fit: cover;
  border: 3px solid teal;
  padding: 10px;
  border-radius: 10%;
}

footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list{
  font-size: 15px;
}

@media (max-width: 768px) {
  .enviro {
    display: flex;
    flex-direction: column;
  }

  .navbar-brand {
    font-size: 20px;
    text-transform: uppercase;
  }

  .hero {
    display: flex;
    flex-direction: column;
  }

  .features {
    flex-direction: column;
  }

  .cards {
    flex-direction: column;
  }

  .tia {
    flex-direction: column;
  }

  .grid_items{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  footer{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
