.faq__question {
    font-family: "Cinzel", serif;
    font-size: 20px;

	padding: 10px 20px;
	border-bottom: 1px solid #bbbbbbb0;
	margin-top: 20px;
}

.faq__question:last-child {
    border-bottom: 0;
}

.faq__arrow {
 	transform: rotate(-90deg);
	transition: all 0.25s;
	vertical-align: middle;
    margin-top: -2px;
}

.faq__answer {
	display: none;
	transition: all;
    padding: 20px 40px;
    font-weight: 300 !important;
}

.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;
}


/* .custom_faq > div > div:last-child  .faq__question {
    border-bottom: 0;
} */