.red {
    color: red;
}
.wrap-faq .question{
    position: relative;
    border: none;
    border-top: 1px solid #C6C6C6;
    padding: 10px;
    margin: 0;
}
.wrap-faq .question:hover {
    cursor: pointer;
}
.wrap-faq .question::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-top: 3px solid #C6C6C6;
    border-right: 3px solid #C6C6C6;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) rotate(130deg);
    transition: all 0.9s;
}
.wrap-faq .icon-rotate::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.wrap-faq .border-bottom {
    border-bottom: 1px solid #C6C6C6;
}
.wrap-faq .answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
    transition-delay: 0s;
    padding-left: 10px;
    border-top: 1px solid #C6C6C6;
    margin: 0;
}
.wrap-faq .answer p {
    margin-block-start: 10px;
    margin-block-end: 10px;
}
.wrap-faq .answer.active {
    opacity: 1;
    max-height: 10000px;
}
.wrap-faq .wrap-box {
    /*width: 985px;*/
}
.wrap-box h2 {
    text-align: center;
    font-size: 22px;
}
.wrap-box h2 span {
    font-weight: normal;
    font-size: calc(19.2em/22);
    position: relative;
}
.wrap-box h2 span::before {
    left: -1rem;
    transform: rotate(-25deg);
}
.wrap-box h2 span::after {
    right: -1rem;
    transform: rotate(25deg);
}
.wrap-box h2 span::before, .wrap-box h2 span::after {
    content: "";
    width: 1px;
    height: 80%;
    background: #FF6A62;
    position: absolute;
    bottom: 0;
}
.wrap-box .box-content {
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
}
.wrap-box .box-link {
    margin-right: 20px;
    margin-bottom: 10px;
    background-image: url(../../../img/icon_search_arrow.gif);
    background-repeat: no-repeat;
    background-position: 5px 20px;
    padding: 5px 0 5px 20px;
    border: 1px solid #FFD595;
    width: 145px;
    background-color: #FEFFEE;
    display: table;
}
.wrap-box .box-link a {
    display: table-cell;
    vertical-align: middle; 
}
.show-more {
    text-align: center;
    margin-top: 10px;
}