.accordion {
  max-width: 66.666667%;
  margin: 0px auto;
  padding-right: 15px;
  padding-left: 15px;
}

.accordion .item:first-child .content{
  display:block;
}

.accordion .item {
  background-color: #fff;
  font-family: WorkSans-Regular;
  font-size: 16px;
  line-height: 19px;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: .25rem;
  padding: 1.5rem;
}

.accordion .content {
  display: none;
}

.accordion .title {
  justify-content: space-between;
  display: flex;
}

.accordion hr {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgb(222, 225, 231);
  height: 0;
}

.accordion .title img {
  user-select: none;
  transition-duration: 0.3s;
  transition-property: transform;
  width: 12px;
}

.accordion .open .title img {
  -webkit-transform: rotate( 180deg );
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate( 180deg );
  transition: transform .1s linear 0s;
}

.accordion ul {
  list-style: disc;
  padding-left: 30px;
  margin: 0;
  margin-bottom: 5px;
}


@media(max-width:1199px){

  .accordion {
    max-width: 100%;
  }

}