.main-faq {
    padding: 60px;
    margin: 0 auto;
}

.main-faq h2 {
    font-size: 46px;
    color: #017505;
    font-weight: bold;
    padding-bottom: 45px;
}
.faq-accordion {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    line-height: 1.5;
    transition: box-shadow .3s ease-in-out;
    margin: 0 0 10px;
}
.faq-accordion__title {
    position: relative;
    cursor: pointer;
    padding: 20px 80px 20px 20px;
    color: #3FB7B0;
    font-size: 17px;
    font-weight: bold;
}
.faq-accordion__btn {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -17px;
    width: 34px;
    height: 34px;
    background: #f2f2f2;
    border-radius: 100%;
}

.faq-accordion__btn:before {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 12px;
    background: gray;
    margin: -6px 0 0 -1px;
    transition: opacity .3s ease-in-out;
}

.faq-accordion__btn:after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    height: 2px;
    width: 12px;
    background: gray;
    margin: -1px 0 0 -6px;
}
.faq-accordion__hidden {
    display: none;
    padding: 0 40px 40px;
   transition-timing-function: ease-out;

   transition: 0.25s;
}

.faq-accordion:hover{
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.faq-accordion.opened .faq-accordion__btn:before{
    opacity: 0;
}
.faq-accordion.opened .faq-accordion__hidden {
    display: block !important;
}










.faq-accordion table {
    width: 100%;
    border-collapse: collapse;
    color: #050237;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
margin:20px 0;
}


.faq-accordion thead tr {
    background: #E8E8E8;
    color: #696787;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    height: 24px;
}

.faq-accordion td {
    padding: 0 0px;
    border-right: 1px solid #E6E8F4;
    border-bottom: 1px solid #E6E8F4;
}


.faq-accordion td p {
    margin: 3px;
}

