
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

.container {
  margin: 0 auto;
  
  width: 98%;
  margin: auto;
}

.accordion .accordion-item {
  
  padding: 8px;
  
}
.accordion .accordion-item button[aria-expanded=true] {
  
  
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 98%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 0.8rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  margin: auto;
  box-shadow: none;
  
  
}
.accordion button:hover, .accordion button:active {
  cursor: pointer;
  color: darkblue;

  
}
.accordion button:hover::after, .accordion button:active::after {
  cursor: pointer;
  color: darkblue;
  border: 1px solid darkblue; background: none;
  outline: none;
  margin: auto;
  box-shadow: none;
  
  
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-size: 1em;
  
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: darkblue;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
  
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 59em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
	
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 0.7rem;
  font-weight: 300;
  line-height: 28px;
  width: 95%;
  margin: auto;
  margin: 2em 0em 0em 0.5em;
  color: #2f2f2f;
  
  
}
