.block-faq {
  max-width: 100%;
}
.block-faq .container {
  padding: 4rem 0rem;
}
@media (max-width: 1518px) {
  .block-faq .container {
    padding: 2rem;
  }
}
.block-faq .container .faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1rem;
}
.block-faq .container .faq-item h3 {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  margin: 0;
  cursor: pointer;
  font-size: 1.2rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-faq .container .faq-item h3 .plus-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 20px;
  height: 20px;
}
.block-faq .container .faq-item h3:hover {
  color: #666;
}
.block-faq .container .faq-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 2rem 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.block-faq .container .faq-item.active h3 .plus-icon {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.block-faq .container .faq-item.active p {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 1.5rem;
}