.faq {
   padding: 82px 0px;
}
.faq-title {
   color: #111;
   text-align: center;
   font-size: 36px;
   font-style: normal;
   font-weight: 500;
   line-height: 130%;
   margin-bottom: 44px;
}
.faq-item {
   padding-bottom: 32px;
   margin-bottom: 32px;
   border-bottom: 1px solid #E8E8E8;
   cursor: pointer;
}
.faq-item-question {
   position: relative;
   padding-left: 21px;
   color: #111;
   font-size: 20px;
   font-style: normal;
   font-weight: 500;
   line-height: 150%; 
   padding-right: 50px;
}
.faq-item-question:before {
   content:'';
   display: block;
   position: absolute;
   width: 8px;
   height: 8px;
   border-radius: 100%;
   top: 11px;
   left: 0px;
   background: #FFF337;
}
.faq-item-question:after {
   content:'';
   display: block;
   position: absolute;
   top: 0px;
   right: 0px;
   transform-origin: center;
   transition: 0.25s;
   background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMTJMMTYgMjBMMjQgMTIiIHN0cm9rZT0iIzExMTExMSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=");
   width: 32px;
   height: 32px;
   transition: 0.25s;
}
.faq-item-answer {
   overflow: hidden;
   max-height: 0px;
   transition: 0.25s;
   color: #888;
   font-size: 18px;
   font-style: normal;
   font-weight: 400;
   line-height: 150%;
   padding-left: 21px;
}
.faq-item-answer p {
   margin-bottom: 20px;
}
.faq-item-answer ul li {
   margin-bottom: 14px;
   padding-left: 25px;
   position: relative;
   list-style-type: none;
}
.faq-item-answer ul li:before {
   content:'';
   display: block;
   position: absolute;
   top: 10px;
   width: 4px;
   left: 8px;
   height: 4px;
   background: #888;
}
.faq-item-answer ul li:last-child {
   margin-bottom: 0px;
}


.faq-item.active .faq-item-question:after{
   transform: rotate(180deg);
}
.faq-item.active  .faq-item-answer{
   max-height: 1000px;
   padding-top: 20px;
}
@media screen and (max-width: 992px) {
   .faq {
      padding: 80px 0px;
   }
   .faq-title {
      font-size: 32px;
      font-style: normal;
      font-weight: 500;
      line-height: 130%;
      margin-bottom: 40px;
   }
   .faq-item-question {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 150%;
   }
   .faq-item .faq-item-answer {
      padding-left: 0px;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%; 
   }
}