/*.container {
    max-width: 900px;
    margin: auto
}*/

.title {
    text-align: center;
    font-family: Arial;
    margin-top: 50px;
    margin-bottom: 50px
}

.accordion__item {
    margin-bottom: 25px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 28px;
}


.accordion .active > .accordion__item__header {
    border-bottom: 1px solid var(--text-orage);
    color: var(--text-orage);
}


.accordion__item__header {
    background-color: white;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    font-weight: 500 !important;
    font-family: var(--text-robo);
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    padding-right: 80px;
}

    .accordion__item__header::before {
        height: 15px;
        width: 15px;
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        transition: .5s all;
        font-weight: bold;
        background: url(/data/images/img/icon_plus.png);
    }

    .accordion__item__header.active {
        background-color: white;
        color: #333;
        transition: .4s;
        border-color: #f88721;
    }


.accordion .active > ::before {
    background: url(/data/images/img/icon_tru.png);
    width: 14px;
    height: 4px;
}


.accordion__item__content > p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}


.accordion__item__content {
    overflow-y: hidden;
    padding: 0;
    display: none;
    font-size: 14px;
    font-weight: 400;
    padding-top: 25px;
    line-height: 21px;
}

    .accordion__item__content p {
        line-height: 21px;
    }
