/* Begin FAQ */
.faq h2 {
  font-size: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .faq h2 {
    font-size: 30px;
  }
}
.faq .gradient-underline {
  display: block;
  margin: 5px auto 30px;
  max-width: 200px;
  height: 6px;
}
.faq .gradient-underline:before {
  height: 6px;
}
.faq .gradient-underline:after {
  height: 6px;
}
.faq .accordion-menu {
  position: relative;
  max-width: 960px;
  left: 50%;
  transform: translateX(-50%);
}
.faq h3 {
  font-size: 15px;
  line-height: 1.4;
  font-family: "MuseoSansRounded-700", Arial, Helvetica, sans-serif;
  display: block;
  margin: 0;
  cursor: pointer;
  color: #3b3b3b;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .faq h3 {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .faq h3 {
    font-size: 19px;
  }
}
.faq p {
  color: #3b3b3b;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  max-height: 800px;
  margin-top: 10px;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .faq p {
    font-size: 18px;
    line-height: 26px;
  }
}
.faq p:last-child {
  margin-bottom: 0;
}
.faq ul {
  list-style: none;
  padding: 0 20px 10px;
  margin: 0 auto;
  max-width: 960px;
  display: flex;
  flex-direction: column;
}
.faq ul li {
  position: relative;
  padding: 18px 20px 18px 0;
  margin: 0;
  border-top: 1px dotted #dce7eb;
  width: 100%;
  animation: flipdown 0.5s ease both;
}
@media (min-width: 600px) {
  .faq ul li {
    padding: 15px;
  }
}
.faq ul li:first-child {
  border: none;
}
.faq ul li:last-of-type {
  padding-bottom: 0;
}
.faq ul li .arrow {
  position: absolute;
  transform: translateX(-6px);
  margin-top: 10px;
  right: 0;
}
.faq ul li .arrow:before, .faq ul li .arrow:after {
  content: "";
  position: absolute;
  background-color: #3b3b3b;
  width: 3px;
  height: 9px;
  transition: all 0.25s ease-in-out;
}
.faq ul li .arrow:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.faq ul li .arrow:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.faq ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.faq ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(50%);
}
.faq ul li input[type=checkbox]:checked ~ .arrow:before {
  transform: translate(2px, 0) rotate(45deg);
}
.faq ul li input[type=checkbox]:checked ~ .arrow:after {
  transform: translate(-2px, 0) rotate(-45deg);
}
@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

/* END FAQ *//*# sourceMappingURL=faq-2026.css.map */