/* HERO: INFO */
#hero-info {
  height: 50vh;
  background-color: var(--secondary-color);
}

#hero-info .hero-content {
  align-items: flex-start;
}

/* SECTION: FAQ */
#section__faq .flex__container {
  flex-direction: column;
}

.faq {
  margin-bottom: 0.5rem;
  border-left: 0.4rem solid var(--primary-color);
  width: 100%;
}

.faq__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-family: var(--primary-font);
  font-size: 1.3rem;
  text-transform: uppercase;
  width: 100%;
  padding: 1.1rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.125);
  transition: all 0.2s ease;
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.faq__button i {
  font-size: 2rem;
  padding: 1rem;
  color: var(--primary-color);
}

.faq__button p {
  font-size: 1.3rem;
}

.faq__button.active + .faq__content {
  display: block;
  transition: 0.2s;
}

.faq__button.active {
  color: var(--light-color);
  background-color: var(--secondary-color);
}

.faq__button.active .open {
  display: none;
}

.faq__button .close {
  display: none;
}

.faq__button.active .close {
  display: block;
  color: var(--light-color);
}

.faq__content {
  display: none;
  overflow: auto;
  padding: 0 1.5rem;
  background-color: var(--primary-color);
}

.faq__content p {
  font-weight: 300;
}

#section__faq .btn {
  margin-top: 2rem;
}
