﻿.accordion {
  background-color: #fff;
  padding: 0;
}
    .accordion:active, .accordion:hover {
        background-color: #fff;
    }
.accordion li {
  border-bottom: 1px solid #d9e5e8;
  position: relative;
  list-style: none;
}
.accordion li p {
  display: none;
  padding: 10px 25px 30px;
  color: #414141;
}
.accordion a {
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 600;
  line-height: 3;
  font-size: 50px;
  font-size: 2rem;
  text-indent: 15px;
  user-select: none;
  color: #93b843;
}
.accordion a:after {
  width: 8px;
  height: 8px;
  border-right: 1px solid #4a6e78;
  border-bottom: 1px solid #4a6e78;
  position: absolute;
  right: 10px;
  content: " ";
  top: 17px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion p {
  font-size: 50px;
  font-size: 1.5rem;
  line-height: 2;
  padding: 10px;
}

a.active:after {
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
