body {
  background: #f4f4f4;
  display: flex;
}

article {
	width: 100%;
}

#faq {
  max-width: 1000px;
  margin: auto;
  padding: 0 0px;
  text-align: center;
}

section.faq {
  padding-top: 2em;
  padding-bottom: 3em;
}

#faq > ul {
  text-align: left;
}
.transition, p, ul li i:before, ul li i:after {
  transition: all 0.3s;
}

#faq .no-select, #faq h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

#faq h1 {
  color: #cd1424;
  margin-bottom: 30px;
  margin-top: 0;
}

#faq h2 {
  color: #cd1424;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
  padding: 15px 35px 15px 15px;
  text-transform: none;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  transition: .2s;
}

#faq p {
  color: #333;
  text-align: left;
  font-family: 'hm_light', sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
  position: relative;
  overflow: hidden;
  max-height: 550px;
  will-change: max-height;
  contain: layout;
  display: inline-block;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 50px 0 15px;
  transition: .3s opacity, .6s max-height;
  hyphens: auto;
  z-index: 2;
}

#faq > ul > li ul {
  list-style: disc;
  padding-left: 1.7rem;
  margin-bottom: 1rem;
}

#faq > ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
#faq > ul > li {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  /*padding-bottom: 4px;*/
  /*padding-top: 18px;*/
  background: #fff;
  box-shadow: 0 3px 10px -2px rgba(0,0,0,0.1);
  -webkit-tap-highlight-color: transparent;
}
#faq > ul > li + li {
  margin-top: 15px;
}
#faq > ul li:last-of-type {
  padding-bottom: 0;
}
#faq > ul > li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 24px;
  right: 15px;
}
#faq > ul > li i:before, #faq > ul > li i:after {
  content: "";
  position: absolute;
  background-color: #cc071e;
  width: 3px;
  height: 9px;
}
#faq > ul > li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#faq > ul > li i: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;
  touch-action: manipulation;
}
#faq > ul > li input[type=checkbox]:checked ~ h2 {
  color: #000;
}
#faq > ul > li input[type=checkbox]:checked ~ p,
#faq > ul > li input[type=checkbox]:checked ~ ul {
  display: none;
  margin: 0px;
  /*margin-top: 0;*/
  max-height: 0;
  transition: .3s;
  opacity: 0;
  /*transform: translate(0, 50%);*/
}
#faq > ul > li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#faq > ul > li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}











* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

a,
a:visited,
a:focus,
a:active,
a:link {
  text-decoration: none;
  outline: 0;
}

a {
  color: currentColor;
  transition: .2s ease-in-out;
}

h1, h2, h3, h4 {
  margin: .3em 0;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  vertical-align: middle;
  height: auto;
  width: 100%;
}