.accordbutton{
	align-content: center;
	margin-top:5px;
	margin-bottom:5px;
	background-color: #e8edee;
	border: none;
	border-radius: 7px;
	height: 60px;
    color: #003790 !important;
}
.set{
  position: relative;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  margin-top: 5px;
  margin-bottom:0px;
}
.set > a{
  display: block;
  padding: 15px 17px;
  text-decoration: none;
  color: #555;
  font-weight: 600;
  border-bottom: none;
  background-image: url(../images/accordion_arrow_down.svg);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: top 50% right 20px;
  -webkit-transition:all 0.1s linear;
  -moz-transition:all 0.1s linear;
  transition:all 0.1s linear;
}
.set > a i{
  float: right;
  margin-top: 2px;
}
.set > a.active{
  background-color: #e8edee;
  color: #fff;
  background-image: url(../images/accordion_arrow_up.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 20px;
}
.content{
  background-color: #fff;
  border-left: 1px solid #d4dedf;
  border-right: 1px solid #d4dedf;
  border-bottom: 1px solid #d4dedf;
  border-top: 10px solid #e8edee;
  border-radius: 7px;
  position: relative;
  top: -22px;
  display:none;
  padding-left: 17px;
  padding-right: 15px;
  padding-top: 1px;
  padding-bottom: 8px;
}
.content p{
  padding-top: 4px;
  padding-bottom: 8px;
  margin: 0;
  color: #2d3840;
}

@media screen and (max-width: 991px) {

.set > a{
  padding: 17px 15px;
}

}

@media screen and (max-width: 767px) {

.set > a{
  background-image: url(../images/accordion_arrow_down.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 18px;
}

.set > a.active{
  background-image: url(../images/accordion_arrow_up.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 18px;
}

}
