.wrapper {
width: 100%;
margin-top: 10rem
}

h1 {
margin-bottom: 20px;
}

.faq_container {
background-color: white;
color: black;
border-radius: 20px;
box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
margin: 20px 0;
}

.faq_question {
font-size: 1.2rem;
font-weight: 600;
padding: 20px 80px 20px 20px;
position: relative;
display: flex;
align-items: center;
cursor: pointer;
color: #F28705;
}

.faq_question::after {
content: "\002B";
font-size: 2.2rem;
position: absolute;
right: 20px;
transition: 0.2s;
color: #c4720e;
}

.faq_question.active::after {
transform: rotate(45deg);
}

.answercont {
max-height: 0;
overflow: hidden;
transition: 0.3s;
}

.faq_answer {
padding: 10px 20px 20px;
line-height: 1.5rem;
}

.faq_question.active + .answercont {
}

@media screen and (max-width: 790px){
html {
font-size: 14px;
}
.wrapper {
width: 80%;
}
}
