.b-faq {
    background: url("../img/question.svg") center 48px no-repeat;
}
.b-faq__wrapper {
    max-width: 1000px;
    margin: 40px auto 20px;
}
.mobile .b-faq__wrapper {
    max-width: 750px;
    width: 100%;
    padding: 0;
}
.b-faq__question {
    position: relative;
    margin-bottom: 8px;
    padding: 40px 96px;
    background: #2F3B4A url("../img/lamp.png") 32px 32px / 48px no-repeat;
    border-radius: 16px;
    font: 600 24px/32px 'Inter', sans-serif;
    color: #FFF;
    transition: height 600ms ease-in-out 0s,
                background-color 600ms linear 0s;
}
.mobile .b-faq__question {
    padding: 20px 40px 20px 50px;
    background: #2F3B4A url("../img/lamp.png") 10px 20px / 32px no-repeat;
    font: 600 20px/28px 'Inter', sans-serif;
}
.b-faq__question:after {
    content: "";
    display: block;
    position: absolute;
    width: 48px;
    height: 48px;
    right: 32px;
    top: 32px;
    background: url("../img/arrow-white.svg")  0 0 / 48px 48px;
    transition: transform 600ms ease-in-out 0s;
}
.mobile .b-faq__question:after {
    width: 32px;
    height: 32px;
    right: 12px;
    top: 20px;
    background: url("../img/arrow-white.svg")  0 0 / 32px 32px;
}
.b-faq__question:hover {
    background-color: #3D4E62;
}
.b-faq__question.open {
    background-color: #3D4E62;
}
.b-faq__question.open:after {
    transform: rotate(-180deg);
}
.b-faq__answer {
    display: none;
    overflow: hidden;
    font: 16px/24px 'Inter', sans-serif;
    color: #FFF;
    padding: 0;
    transition: padding 600ms ease-in-out 0s;
}
.mobile .b-faq__answer {
    font: 14px/22px 'Inter', sans-serif;
}
.b-faq__answer:before {
    content: "";
    display: block;
    height: 24px;
}
.mobile .b-faq__answer:before {
    height: 20px;
}
.b-faq__answer p{
    margin-bottom: 15px;
}
.b-faq__answer ol,
.b-faq__answer ul {
    padding: 1px 24px 16px;
}
.b-faq__answer li{
    padding-left: 4px;
}
.b-faq__answer a {
    color: #38b1fe;
    text-decoration: underline;
}
.b-faq>.b-section__description>a {
    color: #38b1fe;
    text-decoration: underline;
}