.faq-banner {
	background-image:url(../../img/pages/banner-questions.png);
	height:200px;
	width:100%;
	-webkit-background-size:cover;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-flow:column;
	color: #fff;
}

.btn-block::before {
	content: "\f0da";
	color: rgba(0,161,154,1);
	position: unset;
	font-family: "Font Awesome 5 Free";
	font-size: 1.5rem;
}

.btn-block[aria-expanded="true"]::before {
	content: "\f0d7";
}

.btn-block {
	height: 38px;
	font-size: 1.1rem;
	line-height: 18px;
	color: #707070;
}

.card-header {
	background-color: #e6e6e6 !important;
	border-radius: 30px !important;
	border: none;
}

.card-header .btn:hover, .card-header .btn:focus {
	text-decoration: none;
	color: #000;
}

.card {
	border: none;
	margin-bottom: 12px;
}

.card p {
	font-size: 1.1rem;
	font-weight: 300;
	font-style: italic;
	margin-bottom: 0;
}

.card p a {
	font-size: 1.1rem;
	font-weight: 400;
	font-style: italic;
	color: rgba(0,161,154,1);
	margin-right: 0;
}

.card p a:hover {
	text-decoration: none;
	color: rgb(0, 116, 110);
}

@media screen and (max-width: 478px) {
	.btn-block::before {
		font-size: 1.2rem
	}
	.btn-block, .card p, .card p a {
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 400px) {
	.btn-block::before {
		font-size: 1rem
	}
	.btn-block, .card p, .card p a {
		font-size: 0.68rem;
	}
	.btn-block {
		height: 20px;
		line-height: 5px;
	}
}

.categories {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.categories > a {
	padding: 5px 15px;
    background-color: #01A29C;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
	font-weight: 500;
    color: white;
	margin: 0px;
	font-size: 1.1rem;
}

.categories > a.active {
	color: #000;
	background-color: white;
}

.categories > a.active:hover {
	text-decoration: none;
}

.categories > a:not(.active):hover {
	text-decoration: none;
	background-color: #707070;
}