
* {
  box-sizing: border-box;
}

.wrapper {
  width: 100%;
  margin: auto;

}
@media (max-width: 768px) {
  .wrapper {
    width: auto;
    padding: 0 0.3rem;
  }
}

input[type=radio] {
  display: none;
}
input[type=radio]:checked + .item .title {
  background-color: #efefef;

}
input[type=radio]:checked + .item .title:after {
  transform: rotate(180deg);
}
input[type=radio]:checked + .item .content {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s, opacity 0.7s;
}

.item {
  display: block;
  margin-bottom: 0;
}

.title {
  padding: 0.1rem 0.3rem;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-radius: 50px;
  border: 1px solid #E0E0E0;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.10);
  padding: 6px 6px 6px 1rem;
  width: 100%;
  font-size: 18px;
  display: flex;
}


.title:hover{
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.30);

}
.title h4{
margin: 0 !important;
margin-right:1rem !important;
font-size: 21px;
font-weight: 600;

}
.title p{
  margin: 0 !important;
  margin-right: auto !important;
}
.title:after {
  content: "";
  display: inline-block;
  font-size: 12px;

  background:url(arrow-acordion.svg) no-repeat center center #ff1a36;
  border-radius: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
}
.title:hover:after {
  background:url(arrow-acordion.svg) no-repeat center center #212121;

}


.content {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto 0 2rem;
  padding: 1rem 0;
  line-height: 1.6;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
    font-size: 18px;

}

@media (max-width: 768px) {
.title {
  flex-direction: column;
  text-align: center;
}
.title p {
  margin: 0.5rem 0 !important;
  margin-right: 0;
}

}