*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  color:#222;
  background:#f5f5f5;
  font-family: 'Roboto', sans-serif;
}



/* HERO */
.hero{
  background:#053819;
  color:white;
  padding:70px 12%;
}

.logo{
  margin-left: -30px;
}

.hero h1{
  font-size:50px;
  font-weight:500;
}

.hero p{
  line-height:1.6;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero a{
  border: 1px solid #fff;
  background-color: #053819;
  color: #fff;
  padding:22px 52px;
  border-radius:30px;
  font-size: 14px;
  text-decoration:none;
  color: #fff;
}

.hero a:hover{
  transition: all 0.3s ease;
  background-color: #fff;
  color: #053819;
}



/* SERVICES */
.services{
  padding:70px 12%;
  background:white;
}

.services h2{
  font-size:28px;
  margin-bottom:30px;
  color: #053819;
}

.services span{
  color:#aaa;
  font-weight:normal;
}

.services h3{
  justify-content:space-between;
  align-items:left;
  font-weight:500;
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  margin-left: 15px;
}

.accordion .item{
  border-bottom:1px solid #000;
  padding:25px 0;
  width: 80%;
  cursor:pointer;
}

.accordion .content{
  max-height:0;
  overflow:hidden;
  color:#555;
  line-height: 1.7;
  padding-top: 0px;
  padding-left: 50px;
}

.accordion .item.active .content{
  max-height:100%;
}

.title{
  justify-content:space-between;
  align-items:left;
  font-weight:500;
  font-size: 22px;
}

.title .text{
  font-weight: 500;
  color: #000000;
  margin-left: 15px;
}

.title .icon{
  font-size:22px;
  width: 20px;
  transition:.25s;
  color: #053819;
}

li{
  margin-left: 25px;
}

a {
  text-decoration:none;
  color: #053819;
  font-weight:500;
  padding: 5px;
}

a:hover {
  width: 100%;
  height: 100%;
  background: #BDF9D5;
  transition: all 0.3s ease;
}



/* WHY */
.why{
  background-color: #111;
  padding:70px 12%;
  text-align:left;
  line-height:1.6;
}

.why h2{
  color: #d9d6d2
}

.why span{
  color: #333;
}

.why .text{
  color: #d9d6d2;
}

.why a{
  border: 1px solid #d9d6d2;
  background-color: #111;
  color: #d9d6d2;
  padding:22px 52px;
  border-radius:30px;
  margin-top: 20px;
  font-size: 14px;
}

.why a:hover{
  transition: all 0.3s ease;
  background-color: #d9d6d2;
  color: #000;
}
	


/* ABOUT */
.about{
  background:#d9d6d2;
  padding:70px 12%;
  text-align:left;
  line-height:1.6;
}

.about h2{
  margin-bottom:40px;
}

.about span{
  color:#aaa;
  font-weight:normal;
}

.about img{
  width:200px;
  height:200px;
  border: 0px solid #fff;
  border-radius: 100px;
}

.info{
  text-align:left;
  max-width:500px;
  padding-top:50px;
}

.info h3{
  margin-bottom:5px;
}

.company{
  margin:15px 0 10px;
  color:#444;
}

.company h3{
  margin-bottom:5px;
  font-size:15px;
}

.company p{
  font-size:12px;
}



/* RESPONSIVE */
@media(max-width:900px){
  .hero-content{
    flex-direction:column;
    text-align:center;
  }

  .hero-text{
    max-width:100%;
  }
}