#hero .hero__content .hero__content-inner {
	text-align: center;
    margin: auto;
}

.faq-content {
    max-width: 1000px;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 50px;
}

.faq-topic-heading {
	line-height: 1.5;
    text-align: center;
    margin-bottom: 15px;
}
	
.faq-topic-wrapper {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    margin-left: -6px;
    margin-right: -6px;
}

.faq-topic {
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 600;
    color: #333333;
    text-align: center;
    padding: 5px 10px;
    margin: 0 5px 7px 0;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    background: rgba(0,0,0,0.05);
}

.faq-topic:hover {
	color: #2eb39f;
}
	
.topic-title {
	font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}
	
.faq-post {
	position: relative;
    display: block;
    font-size: 1rem;
	line-height: 1.5;
    font-weight: 600;
    color: #ffffff;
    background: #00a884;
    border-radius: 30px;
    padding: 0.6rem 1.25rem;
	padding-right: 55px;
    margin-bottom: 5px;
}

.faq-post:hover {
	color: #ffffff;
	text-decoration: none;
	opacity: 0.9;
}

.faq-post-icon {
	position: absolute;
	top: calc(50% - 24px/2);
	right: 24px;
	font-size: 1.5rem;
	line-height: 1;
}

@media (min-width: 992px) {
	#hero {
		padding: 80px 0;
	}

	#hero .hero__content h1 {
		font-size: 3.5rem;
		margin: 0;
	}
	
	#hero .hero-content {
		display: none;
	}
	
	.faq-topic-heading {
		display: none;
	}
	
	.faq-topic:not(:last-child) {
		border-right: 1px solid #333333;
		border: none;
	}
	
	.sidebar {
		padding-left: 50px;
		margin-top: 40px;
	}
}

@media (max-width: 992px) {
	#hero {
		padding-top: 100px;
	}
	
	.faq-content-wrapper {
		display: none;
	}

	.faqs-section {
		padding: 0;
	}

	.faq-topic-wrapper {
		margin: 0;
	}
	
	.faq-topic {
		color: #ffffff;
		background: #00a884;
		border-radius: 30px;
		padding: 7.5px 15px;
    	margin: 3px;
	}
	
	.faq-topic:hover {
		color: #ffffff;
		background: #fa4214;
		text-decoration: none;
	}
	
	.topic-title {
    	text-align: center;
	}
}
	
@media (max-width: 767px) {
	.faq-topic {
		width: calc(50% - 6px);
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.faq-post {
		padding-top: 1rem;
		padding-bottom: 1rem;
		margin-bottom: 8px;
	}
}