* {
  margin: 0;
  padding: 0;
}

.accordion {
  margin: 0px;
  width: 100%;
  background: #ccc;
  cursor: pointer;
}
.accordion .item {
  height: 150px;
}
.accordion .item h3 {
  display: inline-grid;
  vertical-align: middle;
  height: 100%;
  color: #fff;
  padding-left: 20px;
  font-family: 'Asap', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 60px; 
}
.accordion .item img {
  padding-left: 15px;
  width: 90px;
  vertical-align: middle;
}
.accordion .item h3:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.accordion .item:first-of-type {
  background: #c6893b;
  color: #ffffff;
}
.accordion .item:nth-of-type(2) {
  background: #cb944c;
  color: #ffffff;
}
.accordion .item:nth-of-type(3) {
  background: #c6893b;
  color: #ffffff;
}
.accordion .item:nth-of-type(4) {
  background: #cb944c;
  color: #ffffff;
}
.accordion .item:last-of-type {
  background: #c6893b;
  color: #ffffff;
}
.accordion p {
  font-family: 'Asap', sans-serif;
  line-height: 30px;
  font-size: 20px;
  font-weight: 400;
  padding: 15px;
  display: none;
  margin-bottom: 0em !important;
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.2);
}
.accordion p:first-of-type {
  background: #c6893b;
  color: #ffffff;
  text-align: justify;
  padding: 50px;
}
.accordion p:nth-of-type(2) {
  background: #cb944c;
  color: #ffffff;
  text-align: justify;
  padding: 50px;
}
.accordion p:nth-of-type(3) {
  background: #c6893b;
  color: #ffffff;
  text-align: justify;
  padding: 50px;
}
.accordion p:nth-of-type(4) {
  background: #cb944c;
  color: #ffffff;
  text-align: justify;
  padding: 50px;
}
.accordion p:last-of-type {
  background: #c6893b;
  color: #ffffff;
  text-align: justify;
  padding: 50px;
}
