.container {
    max-width: 1140px;
    margin: 0 auto;
}

.faq__item {
    background-color: white;
}

.faq__item:not(:last-child) {
    margin-bottom: 24px;
}

.faq__item-opener {
    background: rgba(51, 177, 207, 0.2);
    padding: 16px 24px;
    cursor: pointer;
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 25px;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    display: flex;
    align-items: center;
}

.faq__item-opener:before,
.faq__item-opener:after {
    content: "";
    display: block;
    position: absolute;
    right: 24px;
    height: 2px;
    width: 18px;
    background: black;
    transition: .2s transform;
}

.faq__item-opener:after {
    transform: rotate(90deg);
}

.faq__item.active .faq__item-opener:before {
    transform: rotate(45deg);
}

.faq__item.active .faq__item-opener:after {
    transform: rotate(135deg);
}

.faq__item-content {
    display: none;
    padding: 16px 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    background: #E5F1F2 url("/drupal_template/template/3/img/accordion-fon.svg") no-repeat 100% 110%;
}