.author-hero-section{
	height: 300px;
	width: 100%;
	position: relative;
	background: url("../images/contact-hero.webp") no-repeat center center;
	/* padding: 60px 0; */
	z-index: 1;
}
.author-hero-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.author-hero-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.author-hero-content-title {
	text-align: center;
	font-size: 45px;
	font-weight: bold;
}
.author-hero-content p {
	text-align: center;
	font-size: 20px;
	color: white;
}
.author-hero-content button {
	background-color: red;
	color: white;
	padding: 8px 30px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}

/* Responsive  */
@media (max-width: 992px) {
	.author-hero-section{
		height: auto;
		background-size: cover;
	}

	.author-hero-content-title {
		font-size: 32px;
	}
	.author-hero-content {
		padding: 30px 21px;
	}

	.author-hero-content p {
		font-size: 18px;
		margin: 10px 0;
		text-align: center;
	}

	.author-hero-content button {
		font-size: 16px;
		padding: 10px 25px;
	}
}

@media (max-width: 576px) {
	.author-hero-content-title {
		font-size: 24px;
	}

	.author-hero-content p {
		font-size: 16px;
	}

	.author-hero-content button {
		width: 100%;
		max-width: 280px;
		padding: 10px;
	}
}

.icons {
	margin-top: 20px;
	text-align: center;
}

.icons a {
	color: #124463;
	margin: 0 10px;
	font-size: 24px;
	text-decoration: none;
}

.icons a:hover {
	/* color: #000; */
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.author-image {
	text-align: center;
	margin-bottom: 20px;
}

.author-image img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



/* bread crumnb css  */
.breadcrumb {
	background: transparent;
	padding: 0;
	margin-bottom: 10px;
}

.breadcrumb-item + .breadcrumb-item::before {
	content: "›";
	color: white;
}

.breadcrumb-item a {
	text-decoration: none;
	color: white;
}

.breadcrumb-item.active {
	color: #ff0201;
}
.breadcrumb-title {
	display: inline-block;
	max-width: 700px; /* adjust as needed */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: bottom;
}

/* bread crumnb css  */
@media (max-width: 576px) {
	.breadcrumb {
		font-size: 12px;
	}
}
