.agent-faq-tabs {
    padding: 40px 0 40px;
}

.agent-faq-tabs__title {
    font: 800 44px / 64px "Manrope";
    color: #292424;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.agent-faq-tabs__subtitle {
    max-width: 850px;
    margin: 0 auto 34px;
    text-align: center;
    font: 500 18px / 26px "Manrope";
    color: #292424;
}

.agent-faq-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.agent-faq-tabs__tab {
    border: 1px solid #e6e6ee;
    background: #fff;
    color: #0b0b0f;
    font: 700 16px / 1 'Manrope';
    padding: 20px 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.agent-faq-tabs__tab:hover {
    box-shadow: 0 2px 6px 2px rgba(0, 0, 0, .1);

}

.agent-faq-tabs__tab--active {
    border-color: #f04659;
    background: #f04659;
    color: #fff;
}

.agent-faq-tabs__tab--active:hover {
    box-shadow: 0 2px 6px 2px rgba(0, 0, 0, .1);
}

.agent-faq-tabs__panes {
    max-width: 1120px;
    margin: 0 auto;
}

.agent-faq-tabs__pane {
    display: none;
}

.agent-faq-tabs__pane--active {
    display: block;
}

.agent-faq-tabs__accordion {
    display: grid;
    gap: 18px;
}


.agent-faq-tabs__item {
    background: #fff;
    border: 2px solid #eeeef5;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, background .3s;
}

.agent-faq-tabs__item:hover {
    background: #f9fafb;
}

.agent-faq-tabs__item--open {
    border-color: #f04659;
}

.agent-faq-tabs__item--open:hover {
    background: #fff;
}

.agent-faq-tabs__item .agent-faq-tabs__head img {
    transition: .3s;
}

.agent-faq-tabs__item--open .agent-faq-tabs__head img {
    filter: brightness(0) invert(1);
}

.agent-faq-tabs__head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.agent-faq-tabs__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #f6f6fb;
    flex: 0 0 48px;
    transition: .3s;
    overflow: hidden;
}

.agent-faq-tabs__item--open .agent-faq-tabs__icon {
    background: #f04659;
}

.agent-faq-tabs__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.agent-faq-tabs__htext {
    font: 800 18px / 1.25 'Manrope';
    color: #0b0b0f;
}

.agent-faq-tabs__chev {
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #b7b7c6;
    border-bottom: 2px solid #b7b7c6;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .25s ease, border-color .25s ease;
}

.agent-faq-tabs__item--open .agent-faq-tabs__chev {
    transform: rotate(-135deg);
    border-color: #f04659;
}

.agent-faq-tabs__body {
    overflow: hidden;
    transition: max-height .28s ease;
}

.agent-faq-tabs__body-in {
    padding: 22px 22px 22px;
    border-top: 2px solid #f5f5f5;
}

.agent-faq-tabs__desc {
    font: 400 16px / 1.7 'Manrope';
    color: #333;
    margin-bottom: 22px;
}

.agent-faq-tabs__note {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 16px 16px;
}

.agent-faq-tabs__note-row {
    display: flex;
    align-items: center;
    gap: 13px;
}

.agent-faq-tabs__note-row+.agent-faq-tabs__note-row {
    margin-top: 10px;
}

.agent-faq-tabs__check {
    width: 18px;
    height: 18px;
    border-radius: 9px;
    background: #fff;
    border: 2px solid #f04659;
    position: relative;
    flex: 0 0 18px;
    margin-top: 2px;
}

.agent-faq-tabs__check:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border-right: 2px solid #f04659;
    border-bottom: 2px solid #f04659;
    transform: rotate(45deg);
}

.agent-faq-tabs__note-text {
    font: 800 14px / 1.45 'Manrope';
    color: #0b0b0f;
}

@media (max-width: 992px) {
    .agent-faq-tabs__title {
        font: 800 28px / 34px "Manrope";
    }

    .agent-faq-tabs__subtitle {
        font: 500 16px / 26px "Manrope";
        color: #444;
    }
}

@media (max-width: 768px) {
    .agent-faq-tabs {
        padding: 0px 0 60px;
    }

    .agent-faq-tabs__title {
        font: 800 34px / 1.1 'Manrope';
    }

    .agent-faq-tabs__subtitle {
        font: 400 16px / 1.7 'Manrope';
        margin-bottom: 22px;
    }

    .agent-faq-tabs__nav {
        gap: 10px;
    }

    .agent-faq-tabs__tab {
        font: 700 15px / 1 'Manrope';
        border-radius: 12px;
    }

    .agent-faq-tabs__head {
        padding: 16px 16px;
    }

    .agent-faq-tabs__body-in {
        padding: 10px 16px 18px;
    }
}

@media (max-width: 576px) {
    .agent-faq-tabs__nav {
        gap: 10px;
        flex-direction: column;
        margin-top: 40px;
    }

    .agent-faq-tabs__htext {
        font: 700 17px / 1.25 'Manrope';
        color: #222;
    }

    .agent-faq-tabs__note-text {
        font: 800 14px / 1.45 'Manrope';
        color: #444;
    }
}