.faq__cont-wrap {
    margin: 35px auto;
}

.faq__cont-wrap .faq-wrap {
    margin-bottom: 8px;
}

.faq__cont-wrap .question-wrap {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
   /* border: 2px solid #f68121;  */
    border-bottom: 1px solid #000000;
    padding: 17px 75px 17px 25px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.faq__cont-wrap .question-wrap .question__text {
    font-size: -webkit-calc((100vw - 320px) / (1920 - 320) * (15 - 13) + 16px);
    font-size: calc((100vw - 320px) / (1920 - 320) * (15 - 13) + 16px);
    font-weight: bold;
}

.faq__cont-wrap .question-wrap .question__arrow-square {
    position: absolute;
    right: 0;
  /*  top: 0;  */
    height: 50px;
    background-color: #EAF7FF;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    cursor: pointer;
    border-radius: 100px;
}

.faq__cont-wrap .question-wrap .question__arrow-square img {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.faq__cont-wrap .question-wrap.clicked .question__arrow-square img {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.faq__cont-wrap .answer-wrap {
    display: none;
    padding: 17px 25px 17px 25px;
    width: 90%;
}