    .faqs h2 {
        text-align: center;
    }

    .faq {
        max-width: 850px;
        margin: 0 auto;
    }

    .acc {
        padding: 20px 25px;
        border: 2px dotted var(--gray-color-2);
        margin-bottom: 6px;
        background-color: var(--white-color);
    }

    .accordion dt > a {
        display: block;
        text-decoration: none;
        color: var(--gray-color-4);
        font-weight: 500;
        -webkit-transition: background-color 0.5s ease-in-out;
    }

    .accordion dd {
    font-size: 1.3rem;
    line-height: 1.5em;
    color: var(--gray-color-3);
    }

    .accordion dd > p {
        padding: 0 5px;
        margin-top: 15px;
    }

    .accordion {
    position: relative;
    }

    .accordionTitle {
      font-size: 1.35rem;
    }

    .accordionTitle:before {
    content: "+";
    font-size: 1.5em;
    line-height: 0.5em;
    float: left;
    transition: transform 0.3s ease-in-out;
    margin-right: 13px;
    }

    .accordionTitleActive:before {
    transform: rotate(-225deg);
    margin-top: 6px;
    }

    .accordionItem {
    height: auto;
    overflow: hidden;
    }
    @media all {
    .accordionItem {
        /* max-height: 50em; */
        transition: max-height 1s;
    }
    }
    @media screen and (min-width: 48em) {
    .accordionItem {
        /* max-height: 15em; */
        transition: max-height 0.5s;
    }
    }

    .accordionItemCollapsed {
    max-height: 0;
    }

    .animateIn {
    -webkit-animation-name: accordionIn;
    -webkit-animation-duration: 0.65s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    -moz-animation-name: normal;
    -moz-animation-duration: 0.65s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: both;
    -moz-animation-delay: 0s;
    animation-name: accordionIn;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0s;
    }

    .animateOut {
    -webkit-animation-name: accordionOut;
    -webkit-animation-duration: 0.75s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    -moz-animation-name: accordionOut;
    -moz-animation-duration: 0.75s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: both;
    -moz-animation-delay: 0s;
    animation-name: accordionOut;
    animation-duration: 0.75s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0s;
    }
    @keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
    }
    @keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
  }