.page__picture {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 112px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page__text-wrap {
    margin-top: 24px;
}

.page__text {
    font-size: 16px;
    color: #000000;
    font-family: "Roboto-Regular";
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
}

.section__accordion {
    padding: 24px 0;
}

.accordion-card {
    border: none;
    margin-bottom: 12px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
}

.accordion-card:last-child {
    margin-bottom: 0;
}

.accordion-header {
    border-radius: 4px;
}

.question {
    font-size: 17px;
    font-family: "Roboto-Regular";
    font-weight: 400;
    font-style: normal;
    color: #000000;
}

.answer {
    font-size: 16px;
    font-family: "Roboto-Regular";
    font-style: normal;
    color: #000000;
}

.accordion-button {
    background-color: #fff;
    box-shadow: none;
    /*border-top: #292E34;*/
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #292E34;
    background-color: #fff;
    box-shadow: none;
}

.accordion-card-active {
    -webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.12);
}

.accordion-button::after {
    font-size: 18px;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

@media (max-width: 1024px) {
    .page__picture {
        height: 55px;
    }

    .page__text {
        font-size: 15px;
    }

    .question {
        font-size: 16px;
    }

    .answer {
        font-size: 15px;
    }

    .accordion-button, .accordion-body {
        padding: 14px;
    }
}

@media (max-width: 575px) {
    .page__picture {
        height: 40px;
    }

    .page__text {
        font-size: 14px;
    }

    .page__text-wrap {
        margin-top: 14px;
    }

    .section__accordion {
        padding: 24px 0;
    }

    .question {
        font-size: 14px;
    }

    .answer {
        font-size: 13px;
    }
}