.questions__title {
    text-align: center;
}
.questions__subtitle {
    text-align: center;
    max-width: 930px;
    margin: 30px auto 60px auto;
}
.questions__items {
    padding: 0;
    margin: 0;
    list-style: none;
}
.questions__item {
    padding: 55px calc(55px * 2 + 40px) 55px 55px;
}
.questions__item + .questions__item {
    margin: 35px 0 0 0;
}
.question {
    position: relative;
    box-shadow: 0px 4px 20px rgba(40, 40, 40, 0.07);
}
.question__title {
    font-size: 31px;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
}
.question__body {
    max-width: 875px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s;
}
.question__opener {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: calc(50% - (25px / 2));
    right: 75px;
    cursor: pointer;
    transition: bottom 0.4s;
    transform: rotate(0);
    transition: all 0.4s;
    height: 25px;
    width: 25px;
}

.question__opener {
    background-image: url("../images/icons/down_arrow.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.question:hover {
    box-shadow: 0px 4px 20px rgba(245, 212, 181, 0.45);
    transition: box-shadow 0.4s;
}
.question.open {
    box-shadow: 0px 4px 20px rgba(245, 212, 181, 0.45);
    transition: box-shadow 0.4s;
}
.question.open .question__title {
    color: #e21f25;
    font-weight: 900;
}
.question.open .question__body {
    max-height: 2000px;
    transition: max-height 2s;
}
.question.open .question__opener {
    bottom: 90px;
    transform: rotate(180deg);
    transition: all 0.4s;
}

@media (max-width: 1700px) {
    .questions__item {
        padding: 45px calc(45px * 2 + 31px) 45px 45px;
    }
    .question__title {
        font-size: 26px;
    }
    .question__opener svg {
        height: 20px;
    }
}
@media (max-width: 768px) {
    .question__opener {
        bottom: calc(50% - (20px / 2));
        right: 30px;
    }
    .question__opener svg {
        height: 20px;
    }
    .question.open .question__opener {
        bottom: 30px;
    }
}
@media (max-width: 568px) {
    .questions__subtitle {
        margin: 21px auto 31px auto;
    }
    .questions__item {
        padding: 21px;
    }
    .questions__item + .questions__item {
        margin: 25px 0 0 0;
    }
    .question__title {
        font-size: 20px;
        max-width: calc(100% - 30px - 18px - 16px);
    }
    .question__body {
        font-size: 14px;
        max-width: calc(100% - 30px - 18px - 16px);
    }
    .question__opener {
        bottom: calc(50% - 6px);
        height: 12px;
    }
}
