.accordion {
  background: #f7f5f9;
}
.accordion-inner {
    max-width: 1200px;
    margin: auto;
    padding: 4em 1.5em 6em;
}
.accordion-content h3 {
  color: #110057;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25em;
  margin: 0 0 1.5em;
  text-align: center;
}

details {
  background: white;
  border-radius: 8px;
  padding: 1.5em 1.5em .75em;
  box-shadow: 0 2px 16px rgba(17,0,87,.05);
  margin-bottom: 1.5em;
  transition: all .3s ease-in-out;
}
details summary::-webkit-details-marker {
  display:none;
}
summary {
  font-size: 1.25em;
  color: #110057;
  margin: -8px -8px 0;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
summary::marker {
  color: #4a00e2;
}

.summary-icon {
  background: #f0eef4;
  border-radius: 3em;
  padding: 0.5em 0.5em;
  display: inline-flex;
  transition: all .3s ease-in-out;
}
.summary-icon svg {
    fill: #4a00e2;
}

details[open] {
  padding: 24px 24px 32px;
  color: #575758;
  line-height: 1.75em;
}
details[open] .summary-icon {
  transform: rotate(45deg);
}

details[open] summary {
  border-bottom: 1px solid #e7e6ee;
  margin: 0 -24px 24px;
  padding: 0 24px 16px;
}



/* Media Query Breakpoints */


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
}



