body > .page-wrapper {
    display: flex;
    flex-direction: column;
}

.head-title {
    text-align: center;
}

.faq-head-title {
    font-size: 32px;
    background: #fff;
    padding: 5px 15px;
    margin: 0 15px;
    line-height: 1.4;
    box-shadow: 0 3px 12px 2px #00000040;
    border-radius: 15px;
    text-align: center;
}

.faq-head-title .tlg {
    background: linear-gradient(355deg, #bd4b41 0%, #f48665 50.48%, #ffd977 100%);
}

.max-width-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;

    display: flex;
    flex-grow: 1;

    max-width: 1320px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.outer-bg {
    display: flex;
    flex-grow: 1;
    background-image: linear-gradient(360deg, #EB5649 0%, #FFF600 100%);
    padding: 1px;
    box-shadow: 0 3px 12px 2px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
}

.inner-bg {
    flex-grow: 1;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

/* startComp:FAQ */
.faq-block {
    margin-top: 25px;
}

.faq-block h2 {
    margin-bottom: 30px;
}

.faq-block--column p {
    margin-bottom: 24px;
}

.faq-list {

}

.faq-item {
    display: flex;
    position: relative;
    gap: 10px;
    flex-direction: column;
    background: var(--color-white);
    cursor: pointer;

    border-bottom: 1px solid #C2C2C2;
    border-radius: 0;

    --angle-delay: 0.4s;
    --angle-effect: scaleY(-1);
}

.faq-item:first-child {
    border-top: 1px solid #C2C2C2;
}

.faq-item.open {
    padding: 18px 0;
}

.faq-item--title {
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    padding: 18px 40px 17px 0;
}

.faq-item.open .faq-item--title {
    padding: 0;
}

.faq-item .faq-item--title::after {
    content: "\e90c";
    font-family: 'rt';
    font-weight: 400;
    position: absolute;
    font-size: 42px;
    color: #7C7E7F;
    top: 16px;
    right: 0;
    transition: transform var(--angle-delay);
}

.faq-item.open .faq-item--title::after {
    transform: var(--angle-effect);
}

.faq-item .faq-item--content {
    overflow: hidden;
    display: none;
    font-size: 12px;
    line-height: 24px;
}


@media screen and (max-width: 1199px) {
    .inner-bg {
        padding: 20px 0;
    }

    .faq-head-title {
        margin: 0;
        font-size: 14px;
    }

    .faq-block {
        margin: 0;
        padding: 0;
    }

    .faq-item--title {
        font-size: 13px;
        line-height: 20px;
        position: relative;
    }

    .faq-item .faq-item--title::after {
        top: calc(50% - 10px);
    }

    .faq-item.open .faq-item--title {
        padding-right: 24px;
    }

    .faq-item.open .faq-item--title::after {
        right: -2px;
    }

    .faq-block h2 {
        margin-bottom: 15px;
    }

    .faq-list {
        margin-top: -4px;
    }

    .faq-item {

    }

    .faq-item .faq-item--content {
        font-size: 13px;
        line-height: 20px;
    }
}

/* endComp:FAQ comp */