.accordion .ac-card {
  overflow: hidden;
  border-top: 1px solid #c0c0c0;
  padding-right: 1.1rem;
}
.accordion .ac-card:last-child {
  border-bottom: 1px solid #c0c0c0;
}
.accordion .ac-card .ac-header {
  display: flex;
  justify-content: space-between;
  font-weight: 650;
  cursor: pointer;
  width: 100%;
  align-items: center;
  padding: 1.25rem 0 1.25rem 0;
  column-gap: 3rem;
}
.accordion .ac-card .ac-header .button {
  min-width: 45px;
  min-height: 45px;
  max-width: 45px;
  max-height: 45px;
  background-position-x: right;
  background-position-y: center;
  background-image: url("img/plus-big.svg");
  background-repeat: no-repeat;
}
.accordion .ac-card .ac-header:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.5em;
}
.accordion .ac-card .ac-header:hover .button {
  background-image: url("img/chevron-down-big.svg");
  background-repeat: no-repeat;
}
.accordion .ac-card .ac-body {
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  padding-right: 5rem;
  max-width: 1200px;
}
@media (max-width: 576px) {
  .accordion .ac-card .ac-body {
    padding-right: 0;
  }
}
.accordion .ac-card .ac-body .inner {
  padding-bottom: 1.6rem;
}
.accordion .ac-card .ac-body .ac-media .image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 2rem;
}
.accordion .ac-card .ac-body .ac-media .image img {
  object-fit: cover;
  width: 120%;
  height: auto;
}
.accordion .ac-card .ac-body .files-download {
  margin-top: 0px;
}
.accordion .ac-card.open .ac-header:hover .button {
  background-image: url("img/chevron-up-big.svg");
  background-repeat: no-repeat;
}
.accordion .ac-card.open .button {
  width: 50px;
  height: 50px;
  background-image: url("img/minus-big.svg");
  background-repeat: no-repeat;
}
.accordion .ac-card.open .ac-body {
  margin-top: 0rem;
}