.questionAnswer .collapseContent {
    font-size: 16px;
    -webkit-transition: max-height .7s;
    -o-transition: max-height .7s;
    transition: max-height .7s;
    overflow: hidden;
    margin-bottom: 10px;
    height: 100%
}

.questionAnswer .collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #282420;
    color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    line-height: 140%;
    cursor: pointer
}

.questionAnswer .collapse h3 {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin: 0
}

.questionAnswer .hideCollapse .collapse h3 {
    color: #1d1d1d !important;
}

.questionAnswer .answerQuestion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid rgba(87, 87, 87, .25);
    margin-top: 10px;
}

.questionAnswer .answerQuestion .blockText {
    margin: 20px;
    width: auto
}

.questionAnswer .answerQuestion .blockText .p-18r {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.questionAnswer .answerQuestion .blockText .p-18r p {
    margin: 0 !important
}

.questionAnswer .collapseBlock.hideCollapse .arrowRotate {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    padding: 10px 5px;
    margin-left: 10px
}

.questionAnswer .collapseBlock.hideCollapse .collapse {
    background: #f0f0f0;
    padding: 20px 25px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s
}

.questionAnswer .collapseBlock.hideCollapse .collapse:hover {
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
    background: #f0f0f0
}

.questionAnswer .collapseBlock.hideCollapse .collapse:hover p {
    color: #1d1d1d;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s
}

.questionAnswer .collapseBlock.hideCollapse .collapse p {
    font-weight: 400;
    font-size: 20px;
    color: #333;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s
}

.questionAnswer .collapseBlock.hideCollapse .collapseContent {
    max-height: 0 !important
}

.questionAnswer .collapseBlock .arrowRotate {
    -webkit-transition: -webkit-transform .7s;
    transition: transform .7s;
    -o-transition: transform .7s;
    transition: transform .7s, -webkit-transform .7s;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    padding: 10px 5px
}

@media screen and (max-width:1200px) {
    .questionAnswer .answerQuestion {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media screen and (max-width:820px) {
    .questionAnswer .collapse h3 {
        font-size: 18px
    }
}

@media screen and (max-width:768px) {
    .questionAnswer .collapseContent {
        -webkit-transition: max-height .7s;
        -o-transition: max-height .7s;
        transition: max-height .7s
    }
}