.faq_component { 
    max-width: 1000px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 70px auto 0 auto;
}
.faq_component h2 {
    margin: 0 0 30px;
    font-size: 26px;
    font-weight: 600;
}
.faq_component .faq_inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
 }
 .faq_component .faq_inner .tr_item {
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1), inset 0 0 0 0 rgba(0,0,0,.15);
    box-shadow: 0 1px 2px rgba(0,0,0,.1), inset 0 0 0 0 rgba(0,0,0,.15);
    border: 1px solid #f3f4f6;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
 }
 .faq_component .faq_inner .tr_item:hover {
    -webkit-box-shadow: -3px 10px 50px rgba(0,0,0,.1), inset 0 0 0 0 rgba(0,0,0,.15);
    box-shadow: -3px 10px 50px rgba(0,0,0,.1), inset 0 0 0 0 rgba(0,0,0,.15);
 }

 .faq_component .faq_inner .tr_item.active .faq_tit{ border-left: 2px solid #0d0f33;}
 .faq_component .faq_inner .tr_item.active .faq_tit::after { transform: rotate(-45deg) translateZ(0); }

 .faq_tit {
    font-weight: 500;
    border-left: 2px solid #f0f2f5;
    padding: 20px 40px 20px 20px;
    margin: 0;
    cursor: pointer;
    font-size: 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
 }
 .faq_tit:hover { border-left: 2px solid #0d0f33; }
 .faq_tit::after {
    content: '';
    background: url(./imgs/puls.png) no-repeat center;
    width: 15px;
    height: 15px;
    background-size: 18px;
    position: absolute;
    top: 23px;
    right: 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
 }

 .faq_item_content {
   line-height: 1.1;
   overflow: hidden;
 }
 
 .faq_item_content p {
   border-top: 2px solid #f0f2f5;
   padding: 20px;
   margin: 0;
 }

 .btn a{
    width: 100%;
   text-align: center;
   margin-top: 30px;
   padding: 20px 40px 20px 20px;
   box-sizing: border-box;
   -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1), inset 0 0 0 0 rgba(0,0,0,.15);
   box-shadow: 0 1px 2px rgba(0,0,0,.1), inset 0 0 0 0 rgba(0,0,0,.15);
   border: 1px solid #f3f4f6;
 }
.tr_item.more_active {display: none;}