.faq-section .accordion-faq {
    max-width: 800px;
    margin: 45px auto 0;
}
.faq-block-title {
    text-align: center;
    color: #151515;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}
.faq-block-title.with_subtitle {
    margin-bottom:10px
}
.faq-block-subtitle {
    text-align: center;
    color: #151515;
    font-weight: 800;
    font-size: 18px;
    margin-bottom:40px
}
.faq-block {
    margin-bottom: 20px
}
.faq-block:last-child {
    margin-bottom:0
}

.question {
    position: relative;
    font-weight: 400;
    padding: 0 60px 0 22px;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
    height: auto;
    min-height: 60px;
    box-shadow: 0 0 16px rgba(222, 222, 222, 0.22);
    background-color: #dedede;
    color: #151515;
    transition: background-color .5s;
}
.question div {
    text-align: left;
}
.question:after {
    position: absolute;
    font-weight: 400;
    font-size: 30px;
    content: '\e912';
    font-family: 'icomoon';
    right:0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #b5b5b5;
    text-align: center;
    color: #0a0a0a;
    transition: background-color .5s;
}

.question:hover, .question[aria-expanded="true"] {
    background-color: #ff0000;
    color: #fff;
}

.question[aria-expanded="true"]:after, .question:hover:after {
    color:#fff;
    background-color: #ff0000;
    content: '\e913';
}
.answer {
    padding: 30px 35px;
    box-shadow: 0 0 16px rgba(222, 222, 222, 0.22);
    background-color: #ffffff;
}
.answer ul li, .answer ol li {
	margin-bottom: 10px
}
.answer ul li:last-child, .answer ol li:last-child {
	margin-bottom: 0
}
/* .answer > p {
    margin-bottom:10px
} */
.answer > *:last-child {
    margin-bottom:0
}
.answer img {
    margin-bottom:16px
}
@media only screen and (max-width: 767px) {
    .faq-block-title {
        font-size: 20px
    }
    .faq-block-subtitle {
        font-size: 16px
    }
    .question {
        padding: 0 40px 0 12px;
        font-size: 15px;
    }
    .question:after {
        width: 40px;
        font-size: 22px
    }
    .answer {
        padding: 15px 12px;
        font-size: 15px;
    }

}
@media only screen and (min-width:768px) and (max-width:991px) {
    .answer {
        padding: 15px 20px;
    }
}
