/* trst frequent question start */
.trst-frequent-questions-section {
    max-width: 920px;
    margin: 96px auto;
}

.trst-frequent-questions-title>h4 {
    color: #131A28;
    text-align: right;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.trst-frequent-questions-title>p {
    color: #475467;
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.trst-frequent-questions-items {
    margin-top: 64px;
}

.trst-frequent-questions-item {
    gap: 12px;
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    border-top: 1px solid #F2F4F7;
    cursor: pointer;
}

.trst-frequent-questions-item-que {
    color: #101828;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.trst-frequent-questions-item-answ {
    color: #475467;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.trst-frequent-questions-item:first-child {
    border-top: none;
}

.trst-frequent-questions-item-que {
    max-width: 90%;
}

.trst-frequent-questions-item-answ {
    max-width: 95%;
    display: none;
    animation: slide-down-2 0.2s ease-in;
}

@keyframes slide-down-2 {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trst-frequent-questions-plus-icon {
    position: absolute;
    top: 25px;
    left: 0;
}

.trst-frequent-questions-minus-icon {
    position: absolute;
    top: 25px;
    left: 0;
}

.answ-activated {
    display: block !important;
}

/* trst frequent question end */

@media screen and (max-width: 1199.98px) {

    /* trst frequent question section start */
    .trst-frequent-questions-section {
        margin: 64px 32px;
    }

    .trst-frequent-questions-title>h4 {
        font-size: 30px;
        line-height: 40px;
    }

    .trst-frequent-questions-item-que {
        max-width: 90%;
    }

    .trst-frequent-questions-item-answ {
        max-width: 95%;
    }

    .trst-frequent-questions-item-answ {
        font-size: 14px;
        line-height: 24px;
    }

    /* trst frequent question section end */
}

@media screen and (max-width: 767.98px) {

    /* trst frq mobile style start */
    .trst-frequent-questions-section {
        margin: 64px 0px;
    }

    .trst-frequent-questions-item-que {
        font-size: 16px;
        line-height: 26px;
    }

    .trst-frequent-questions-item-que {
        max-width: 90%;
    }

    .trst-frequent-questions-item-answ {
        max-width: 90%;
    }

    /* trst frq mobile style end */
}