.faq-block .item-faq__title {
    font-family: 'PT Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 145%;
    color: #f2f2f2;
    margin-bottom: 17px;
}

.faq-block .item-faq {
    background: #ffffff;
    margin-bottom: 2px;
}
.faq-block .item-faq .faq-wrap {
    max-width: 857px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-block .item-faq .item-faq-wrap {
    transition: all .4s;
}
.faq-block .item-faq .item-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: all 0.4s;
    padding: 18px 36px 16px 33px;
    background-color: rgb(100%, 100%, 100%, 0.03);
}

.faq-block .item-faq .item-faq-header:hover {
    transition: all .5s;
    background-color: #c3c7cb;
}
.faq-block .item-faq .item-faq-header h3{
    margin-top: 0px;
    margin-bottom: 0px;
}

.faq-block .item-faq .item-faq-header p {
    margin: 0px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: black;
}
.faq-block .item-faq .panel {
    background-color: rgb(100%, 100%, 100%, 0.03);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.faq-block .item-faq .item-faq-wrap.active .panel{
    max-height: initial;
}
.faq-block .item-faq .item-faq-body {
    margin-bottom: 0px;
    padding-left: 33px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 145%;
}
.faq-block .item-faq .item-faq-header.active .dropdown-icon svg {
    transform: rotate(180deg);
    transition: all .5s;
}
