.accordion-item {
  width: 100%;
  border:0;
}
.accordion-item h3{
font-size:18px;
}
.accordion-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
  margin: 0.5rem 0;
  border: none;
  color: white;
  outline: none !important;
  text-align: right;
  border-radius: 8px;
  background-color: #ffb600;
  transition: all 0.3s linear;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.075);
}

.accordion-item-header .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  font-size: 1.25rem;
  font-weight: bolder;
  border-radius: 50%;
  background-color: white;
}

.accordion-item-header .icon::after {
  content: '\2212';
 
  color: #1E2575;
}

.collapsed .icon {
  background-color: black;
  transition: all 0.3s linear;
}
.collapsed .icon::after {
  content: '\002B';
  color: white;
}

.accordion-item-body {
  padding: 2rem;
  color: grey;
  font-size: 0.9rem;
}

.collapsed {
  color: black;
  background-color: white;
}