.transition, ul li i:before, ul li i:after, p {
  transition: all 0.25s ease-in-out;
}

.flipIn, ul li, h1 {
  animation: flipdown 0.5s ease both;
}

.no-select, h2 {
  -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;
}

html {
  overflow-y: scroll;
  font-family: "Roboto", sans-serif;
}

body {

}
@media (max-width: 550px) {
  .faq-dv-content body {
    box-sizing: border-box;
    transform: translate(0, 0);
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    left: 0;
  }
}

.faq-dv-content h1, h2 {
  color: #747474;
    font-family: "Roboto", sans-serif;
}

.faq-dv-content h1 {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
}

.faq-dv-content h2 {
  font-size: 20.38px;
  line-height: 23.5px;
  font-weight: 500;
  display: block;
  margin: 0;
  cursor: pointer;
}

.faq-dv-content p {
  color: #6E6E73;
  font-size: 20.38px;
  line-height: 23.5px;
  font-weight: 300;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
    font-family: "Roboto", sans-serif;
    width: 97%;
}

.faq-dv-content ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
.faq-dv-content ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 28px;
  padding-top: 28px;
  border-bottom: 0.78px solid #363636;
}
ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
ul li:nth-of-type(3) {
  animation-delay: 1s;
}
ul li:nth-of-type(4) {
  animation-delay: 1.25s;
}
ul li:nth-of-type(5) {
  animation-delay: 1.5s;
}
ul li:nth-of-type(6) {
  animation-delay: 1.75s;
}
ul li:nth-of-type(7) {
  animation-delay: 2s;
}
ul li:nth-of-type(8) {
  animation-delay: 2.25s;
}
ul li:nth-of-type(9) {
  animation-delay: 2.5s;
}
ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 8px;
  right: 0;
}
ul li i:before, ul li i:after {
  content: "";
  position: absolute;
  background-color: #86868B;
  width: 3px;
  height: 16px;
}
ul li i:before {
  transform: translate( -11px, 0) rotate(45deg);
}
ul li i:after {
  transform: translate( -1px, 0) rotate(-45deg);
}
ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
ul li input[type=checkbox]:checked ~ i:before {
  transform: translate( -4px, 0) rotate(45deg);
}
ul li input[type=checkbox]:checked ~ i:after {
  transform: translate( -14px, 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);
  }
}

@media only screen and (min-width:320px) and (max-width: 480px) {

  .faq-dv-content h2 {
    width: 90%;
  }
}