.accordion-body {
  background: rgb(25,25,25);
}

.accordion-button {
  position: relative;
  display: inline;
  width: 100%;
  padding: 15px 50px 15px 15px;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  text-align: left;
  background-color: #b40000;
  border: 0;
  border-radius: 5px;
  overflow-anchor: none;
  transition: all .3s ease-in-out;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.accordion-button:hover {
  background-color: #ff0000;
}

.accordion-body p {
  font-size: 18px;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
}

@media (min-width: 992px) {
  .accordion-body p {
    font-size: 20px;
  }
}

.accordion-button .svg-inline--fa {
  font-size: 24px;
  margin-right: 10px;
}

.accordion-button .fas {
  font-size: 24px;
  margin-right: 10px;
}

.accordion-item {
  border-radius: .25rem;
  border-width: 0;
  margin-bottom: 10px;
  background-color: rgb(25,25,25);
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #ff0000;
  box-shadow: none;
}

.accordion-button::after {
  position: absolute;
  right: 10px;
  top: 15px;
  width: 39px;
  height: 30px;
  content: "";
  background-image: url("../../assets/img/arrow.svg");
  background-repeat: no-repeat;
  background-size: 40px;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../../assets/img/arrow.svg");
  transform: rotate(-180deg);
}

.accordion-button:focus {
  z-index: 3;
  border: none;
  outline: 0;
  box-shadow: none;
}

