  /* Accordion */
  hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    margin: 2em 0 !important;
    padding: 0;
  }
  
  .transition, .answer, ul li i:before, ul li i:after {
    transition: all 0.25s ease-in-out;
   }
   
   .flipIn, h1, ul li {
    animation: flipdown 0.5s ease both;
   }
   
   .no-select, h3 {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
   }
   
   .accordionBox span {
    color: black;
    font-size: 20px;
    line-height: 34px;
    font-weight: bold;
    display: block;
    margin: 0;
    cursor: pointer;
    padding-right:20px;
   }
   
   .accordionBox .answer {
    color: black;
    /* line-height: 26px; */
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translate(0, 0);
    margin-bottom: 14px;
    z-index: 2;
   }
   
   .accordionBox {
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: 0;
   }
   .accordionBox .faq {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    padding-top: 18px;
    border-top: 1px dotted #dce7eb;
   }
   .accordionBox .faq:nth-of-type(1) {
    animation-delay: 0.5s;
   }
   .accordionBox .faq:nth-of-type(2) {
    animation-delay: 0.75s;
   }
   .accordionBox .faq:nth-of-type(3) {
    animation-delay: 1s;
   }
   .accordionBox .faq:nth-of-type(4) {
    animation-delay: 1.25s;
   }
   .accordionBox .faq:nth-of-type(5) {
    animation-delay: 1.5s;
   }
   .accordionBox .faq:nth-of-type(6) {
    animation-delay: 1.75s;
   }
   .accordionBox .faq:nth-of-type(7) {
    animation-delay: 2s;
   }
   .accordionBox .faq:nth-of-type(8) {
    animation-delay: 2.25s;
   }
   .accordionBox .faq:nth-of-type(9) {
    animation-delay: 2.5s;
   }
   .accordionBox .faq:nth-of-type(10) {
    animation-delay: 3s;
   }
   .accordionBox .faq:last-of-type {
    padding-bottom: 0;
   }
   .accordionBox .faq i {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    right: 0;
   }
   .accordionBox .faq i:before, ul .faq i:after {
    content: "";
    position: absolute;
    background-color: #222;
    width: 3px;
    height: 9px;
   }
   .accordionBox .faq i:before {
    transform: translate(-2px, 0) rotate(45deg);
   }
   .accordionBox .faq i:after {
    transform: translate(2px, 0) rotate(-45deg);
   }
   .accordionBox .faq input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
   }
   .accordionBox .faq input[type=checkbox]:checked ~ .answer {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
   }
   .accordionBox .faq input[type=checkbox]:checked ~ i:before {
    transform: translate(2px, 0) rotate(45deg);
   }
   ul .faq input[type=checkbox]:checked ~ i:after {
    transform: translate(2px,-5px) 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);
    }
   }