html,
body {
	max-width: 100%;
}

#tabBar {
	display: flex;
	justify-content: center;
}

#tabBar button {
	background-color: transparent;
	color: #024172;
	padding: 10px 20px;
	margin: 5px;
	cursor: pointer;
	border: none;
	transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
	font-size: 16px;
	border-radius: 25px;
	/* Adjusted for a more "button-like" feel */
	position: relative;
	overflow: hidden;
}

#tabBar button i {
	margin-right: 10px;
	color: #21d0b3;
}
/* Hover effects */
#tabBar button:hover {
	background-color: #21d0b3;
	transform: scale(1.05);
}
#tabBar button:hover i {
	color: #292929;
}

/* Active state */
#tabBar button.active {
	/* background-color: #21D0B3; */
	border-bottom: 2px solid #21d0b3;
	transform: scale(1.05);
	color: #000;
}
#tabBar button.active i {
	color: #000;
}

#content {
	margin-top: 20px;
	padding: 20px;
	border: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
	#tabBar {
		flex-direction: column;
		align-items: center; /* Centers items when in a column layout */
	}
	#tabBar button {
		align-self: flex-start; /* Aligns buttons to the start when in a column layout */
	}
}
/* @media only screen and (max-width: 768px) {

	#tabBar {
		flex-direction: column;
	}
} */
/* Start Accordion */
/* img */
.image-banner {
	position: relative;
	width: 100%;
	height: 400px;
	/* Adjust as needed */
	overflow: hidden;
}
.image-banner::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 30%);
}

.image-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* This will ensure the image covers the div fully */
}

.image-caption {
	position: absolute;
	top: 44%;
	left: 30%;
	transform: translate(-50%, -50%);
	font-size: 3vw;
	font-weight: bolder;
	/* Adjust as needed */
	color: #fff;
	/* Adjust as needed */
	/* background-color: rgba(0, 0, 0, 0.6); */
	/* Semi-transparent background for better visibility */
	padding: 10px 20px;
	/* Adjust as needed */
	border-radius: 8px;
	/* Rounded corners */
}
/* img */
.faq-accordion__title {
	color: #21d0b3 !important;
	text-align: center;
	font-weight: bolder !important;
}
.faq-accordion {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 2px solid #ddd;
	padding: 20px;
}

.faq-accordion__container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
}
.faq-accordion__content {
	flex-basis: 50%;
	padding-right: 20px;
	position: relative;
}

.faq-accordion__content::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
	height: 120%;
	background-image: linear-gradient(0deg, #21d0b3 0%, #024172 100%);
}

.faq-accordion__accordion {
	flex-basis: 50%;
	padding-left: 20px;
}

.accordion__item {
	margin-bottom: 10px;
}

.accordion__item-title {
	cursor: pointer;
	/* border-bottom: 2px solid #ddd; */
	padding: 10px;
	background-color: #f8f8f8;
	position: relative;
	color: #21d0b3;
	font-weight: bolder;
}

.accordion__item-content {
	display: none;
	padding: 10px;
	color: #024172;
	font-size: larger;
}

/* Default active state */
.accordion__item.js--active .accordion__item-content {
	display: block;
}

.icon--chevron {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
/* End Accordion */

@media (max-width: 768px) {
	.faq-accordion,
	.faq-accordion__container {
		flex-direction: column;
	}

	.faq-accordion__content,
	.faq-accordion__accordion {
		flex-basis: 100%;
	}

	.faq-accordion__content::after {
		display: none;
	}
	.image-banner {
		height: 200px;
	}

	.accordion__item-title,
	.accordion__item-content {
		font-size: 14px;
	}
	.container {
		margin-top: 66px;
	}
}
