.faq__question {
	padding: 20px;
    font-size: 1.1em;
    border: 2px solid #d9c07e;
    border-radius: 0.5rem;
    margin-top: 20px;
    font-weight: 600;
}

.faq__arrow {
 	transform: rotate(-90deg);
	transition: all 0.25s;
	vertical-align: middle;
    margin-top: -2px;
}

.faq__answer {
	display: none;
	transition: all;
    padding: 10px 0;
}

.faq__answer--show {
	display: block;
}

.faq__arrow--rotate {
	transform: none;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}
