
.content {
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.accordion_item {
  border-radius: 20px;
  background-color: #FFF;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.accordion_item:hover {
  opacity: 0.9;
}

.accordion_header {
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.accordion_content {
  margin-left: 50px;
  margin-right: 15px;
  overflow: hidden;
  height: 0;
  transition: all .5 ease;
  font-size: 14px;

}

.active {
  padding-bottom: 10px;
}



.icon {
  text-align: center;
  height: 25px;
  line-height: 20px;
  width: 25px;
  margin: 15px;
  background-color: #12285a;
  color: #FFF;
  border-radius: 50%;
  font-weight: 900;
  font-size: 20px;

}

span{
  color: #12285a;
  font-size: 32px;
}