.mgFAQ { max-width: 960px; }

.mgFAQ h2 { text-align: center; }

.mgFAQ .question {
    position: relative;
}

.mgFAQ .question hr {
    border: none;
    margin: 0;
    position: absolute;
    width: 7px;
    height: 2px;
    background-color: #292254;
    transition: width .5s ease, transform .5s ease;
    top: 20px;
}

.mgFAQ .question hr:nth-child(1) {
    right: 23px;
    transform: rotate(45deg);
}

.mgFAQ .question hr:nth-child(2) {
    right: 18px;
    transform: rotate(-45deg);
}

.mgFAQ .question.show hr {
    width: 6px;
    transform: rotate(0deg);
}

.mgFAQ .question { border-bottom: 2px solid #e3e3e3; }

.mgFAQ .question>h4 {
    font-weight: normal;
    margin: 0;
    padding: 12px 36px 12px 16px;
    cursor: pointer;

}

.mgFAQ .question .answer {
    overflow: hidden;
    height: 0;
}

.mgFAQ .question .answer .content {
    padding: 0 16px 12px 16px;
}

@media all and (max-width: 1000px) {
    .mgFAQ { margin: 40px 20px; }
}

@media all and (min-width: 1001px) {
    .mgFAQ { margin: 40px auto; }
}