@charset "utf-8";

.question-accodion{
    border: 1px solid #272343;
    border-radius: 0;
}

.question-title{
    padding-left: 3rem;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.question-title:before{
    content: "";
    background: url("../images/icon/question.svg") no-repeat;
    background-size: contain;
    height: 30px;
    width: 2rem;
    position: absolute;
    left: 0;
}

.question-header[aria-expanded=false] .question-title:after{
    font-family: "Font Awesome 5 Free";
    content: '\f067';
    font-weight: 900;
    font-size: 1.1em;
    color: #EF831F;
    position: absolute;
    right: -35px;
    top: 0;
}

.question-header[aria-expanded=true] .question-title:after{
    font-family: "Font Awesome 5 Free";
    content: '\f067';
    font-weight: 900;
    font-size: 1.1em;
    color: #EF831F;
    position: absolute;
    right: -35px;
    top: 0;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.question-header{
    padding: 2rem 6rem 2rem 3rem;
    background: #ffffff;
    border-bottom: none
}

.answer-card{
    border: none;
    border-radius: 0;
    padding: 0 6rem 2rem;
    background: #ffffff;
}
