.accordeon {
  position: relative;
  top: 1.25rem;
}
@media screen and (max-width: 992px) {
  .accordeon {
    padding: 0 0.75rem;
  }
}
.accordeon .accordeon-item {
  position: relative;
  left: -3.5rem;
  width: calc(100% + 3.5rem);
  background-color: #ffffff;
  -webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: content-box !important; /* Firefox, other Gecko */
  box-sizing: content-box !important; /* Opera/IE 8+ */
}
.accordeon .accordeon-item:first-child {
  border-radius: 0.75rem 0.75rem 0 0;
}
.accordeon .accordeon-item:last-child {
  border-radius: 0 0 0.75rem 0.75rem;
}
.accordeon .accordeon-item .accordeon-item__header {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.accordeon .accordeon-item .accordeon-item__header h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.accordeon .accordeon-item .accordeon-item__header .accordeon-item__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  border-radius: 0.75rem 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--lybrae-color-secondary);
}
.accordeon .accordeon-item .accordeon-item__header .accordeon-item__button i.rotated {
  transform: rotate(90deg);
}
.accordeon .accordeon-item.open .accordeon-item__content {
  padding: 0 1.5rem 1.5rem 2.5rem;
  max-height: 300px;
  border-radius: 1rem;
  background: #ffffff;
  opacity: 1;
}
.accordeon .accordeon-item.open .accordeon-item__button i {
  transform: rotate(90deg);
}
.accordeon .accordeon__image {
  position: relative;
  top: -1.25rem;
  height: calc(100% + 2.5rem);
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 1rem;
}
.accordeon .accordeon-item__content {
  position: relative;
  background-color: #FFFFFF;
  overflow: hidden;
  -webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: content-box !important; /* Firefox, other Gecko */
  box-sizing: content-box !important; /* Opera/IE 8+ */
  max-height: 0;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  opacity: 0;
}
.accordeon .accordeon-item__content h3 {
  position: relative;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
}
.accordeon .accordeon-item__content h3::after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  width: 75px;
  background-color: var(--lybrae-color-secondary);
  height: 5px;
}

@media screen and (max-width: 768px) {
  .accordeon {
    margin: 2.5rem 0 2.5rem 0;
  }
  .accordeon .accordeon__image {
    position: static;
    height: 300px;
  }
  .accordeon .accordeon-item {
    position: static;
    width: 100%;
    left: auto;
  }
}
.accordeon-item__button i {
  transition: transform 0.3s ease;
}

.accordeon-item__button i.rotated {
  transform: rotate(90deg);
}

/*# sourceMappingURL=style.css.map */
