/*
 * Colors
 */
/*
 * Breakpoints
 */
.faq {
  padding: 80px 0;
}
@media (min-width: 1024px) {
  .faq {
    padding: 100px 0;
  }
}
.faq .section-title {
  max-width: 194px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .faq .section-title {
    text-align: left;
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .faq .flex {
    align-items: flex-start;
  }
}
.faq .flex-left {
  width: 100%;
}
@media (min-width: 1200px) {
  .faq .flex-left {
    flex-basis: calc(100% - 480px);
  }
}
.faq .flex-right {
  display: none;
}
@media (min-width: 1200px) {
  .faq .flex-right {
    display: block;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  .faq .flex-right {
    flex-basis: 380px;
  }
}
@media (min-width: 1200px) {
  .faq .flex-right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 380/500;
  }
}
.faq-list {
  margin-top: 24px;
  border-top: 0.5px solid #e2e8ed;
  border-bottom: 0.5px solid #e2e8ed;
}
@media (min-width: 768px) {
  .faq-list {
    margin-top: 32px;
  }
}
@media (min-width: 1200px) {
  .faq-list {
    margin-top: 40px;
  }
}
.faq-list li {
  padding: 16px 12px;
  border-top: 0.5px solid #e2e8ed;
  border-bottom: 0.5px solid #e2e8ed;
}
@media (min-width: 768px) {
  .faq-list li {
    padding: 24px 20px;
  }
}
.faq-list li p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, margin-top 0.2s ease;
  padding-right: 25px;
  font-size: 14px;
  line-height: 20px;
  color: #5e6265;
}
@media (min-width: 768px) {
  .faq-list li p {
    font-size: 16px;
    line-height: 24px;
    padding-right: 40px;
  }
}
.faq-list li h4 {
  width: 100%;
  position: relative;
  padding-right: 32px;
  color: #5e6265;
  transition: color 0.5s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .faq-list li h4 {
    padding-right: 40px;
  }
}
.faq-list li h4:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: #e2e8ed;
}
.faq-list li h4:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 16px;
  height: 1px;
  background-color: #e2e8ed;
  transform-origin: center;
  transition: transform 0.5s, background-color 0.5s;
}
.faq-list li h4.active {
  color: #191e22;
}
.faq-list li h4.active:after {
  opacity: 0;
}
.faq-list li h4.active:before {
  transform: translateY(-50%) rotate(0);
  background-color: var(--accent);
}
.faq-list li h4.active + p {
  margin-top: 8px;
}
