@charset "UTF-8";

/* Sticky Header Styles - Working with original Bootstrap classes */
.header-sticky {
	position: sticky !important; /* Changed to sticky to stay on top when scrolling */
	top: 0 !important;
	left: auto !important;
	right: auto !important;
	z-index: 1030 !important;
	background-color: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px) !important;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
	transition: all 0.3s ease !important;
	width: 100% !important;
}

/* Keep original navbar styling but ensure it works with sticky header */
.header-sticky .navbar {
	background-color: rgba(255, 255, 255, 0.95) !important;
	padding: 15px 0 !important;
	width: 100% !important;
}

/* Position breadcrumbs correctly below header */
.breadcrums {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: auto !important;
	background-color: #e8f2ff !important;
	padding: 18px 0 !important;
}

/* Ensure the header stays above other content */
.header-sticky {
	animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {

	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Mobile responsive sticky behavior */
@media (max-width: 992px) {

	.header-sticky {
		background-color: rgba(255, 255, 255, 0.98) !important;
	}

	.header-sticky .navbar {
		background-color: rgba(255, 255, 255, 0.98) !important;
	}

	.breadcrums {
		margin-top: 0 !important; /* No margin on mobile */
	}
}

.howitworks-section {
	background: #f6f7f9;
	padding: 4rem 1.5rem;
}

@media (max-width: 768px) {

	.howitworks-section {
		padding: 3rem 1rem;
	}
}

.howitworks-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.howitworks-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 4rem;
	color: #1c1c1e;
}

@media (max-width: 768px) {

	.howitworks-title {
		font-size: 1.5rem;
		margin-bottom: 3rem;
	}
}

.howitworks-steps {
	display: flex;
	flex-direction: column;
	gap: 8rem;
}

@media (max-width: 768px) {

	.howitworks-steps {
		gap: 4rem;
	}
}

.howitworks-step {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8rem;
}

.howitworks-step.reverse {
	flex-direction: row-reverse;
}

@media (max-width: 768px) {

	.howitworks-step {
		flex-direction: column;
		gap: 2rem;
	}

	.howitworks-step.reverse {
		flex-direction: column;
	}
}

.howitworks-step-number {
	width: 100%;
}

.howitworks-step-number span {
	display: inline-block;
	width: 40px;
	height: 40px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #2c4cff;
	background: #e7f0ff;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
}

.howitworks-step-content {
	flex: 1 1 48%;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.howitworks-step-content h2 {
	font-size: 1.5rem;
	color: #1c1c1e;
}

@media (max-width: 768px) {

	.howitworks-step-content h2 {
		font-size: 1.25rem;
	}
}

.howitworks-step-content p {
	font-size: 1rem;
	color: #737b8b;
	line-height: 1.7;
}

@media (max-width: 768px) {

	.howitworks-step-content p {
		font-size: 0.95rem;
	}
}

@media (max-width: 768px) {

	.howitworks-step-content {
		text-align: center;
	}
}

.howitworks-step-image {
	flex: 1 1 48%;
}

.howitworks-step-image img {
	width: 100%;
	height: auto;
	border-radius: 1rem;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
	background: linear-gradient(145deg, #f0f4ff, #fff);
	padding: 0.5rem;
}

@media (max-width: 768px) {

	.howitworks-step-image {
		text-align: center;
	}

	.howitworks-step-image img {
		max-width: 100%;
	}
}

.replace-marketers {
	background: #1d3f6e;
	padding: 4rem;
}

.replace-marketers-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.replace-marketers-heading h2 {
	color: white;
	text-align: center;
}

.replace-marketers-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	justify-items: center;
}

.replace-marketers-cards > *:nth-child(n+4) {
	grid-column: span 1;
}

.replace-marketers-cards > *:nth-child(4) {
	grid-column: 1/span 1;
	justify-self: end;
	margin-right: 1rem;
}

.replace-marketers-cards > *:nth-child(5) {
	grid-column: 2/span 1;
	justify-self: start;
	margin-left: 1rem;
}

@media (max-width: 992px) {

	.replace-marketers-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.replace-marketers-cards > *:nth-child(n+4) {
		grid-column: auto;
		justify-self: center;
		margin: 0;
	}

	.replace-marketers-cards > *:nth-child(4),
	.replace-marketers-cards > *:nth-child(5) {
		grid-column: auto;
		justify-self: center;
		margin: 0;
	}
}

@media (max-width: 576px) {

	.replace-marketers-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.replace-marketers-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.replace-marketers-card h6 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1c1c1e;
}

.replace-marketers-card p {
	font-size: 1rem;
	color: #737b8b;
	line-height: 1.7;
}

.socialmedia-ai-agent {
	padding: 8rem 4rem 4rem 4rem;
}

@media (max-width: 992px) {

	.socialmedia-ai-agent {
		padding: 6rem 2rem 3rem 2rem;
	}
}

@media (max-width: 768px) {

	.socialmedia-ai-agent {
		padding: 4rem 1.5rem 2rem 1.5rem;
	}
}

.socialmedia-ai-agent-container {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-container {
		gap: 3rem;
	}
}

@media (max-width: 576px) {

	.socialmedia-ai-agent-container {
		gap: 2rem;
	}
}

.socialmedia-ai-agent {
	background: #fff;
}

.socialmedia-ai-agent-content {
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

@media (max-width: 992px) {

	.socialmedia-ai-agent-content {
		gap: 4rem;
	}
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-content {
		gap: 3rem;
	}
}

.socialmedia-ai-agent-content h2 {
	color: black;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	font-weight: 600;
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-content h2 {
		font-size: 1.75rem;
	}
}

@media (max-width: 576px) {

	.socialmedia-ai-agent-content h2 {
		font-size: 1.5rem;
	}
}

.socialmedia-ai-agent-card {
	background: linear-gradient(90deg, #1e3264 0%, #b33456 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	gap: 4rem;
	align-items: center;
	padding: 2.5rem 4rem;
	border-radius: 1rem;
	flex-direction: row;
}

@media (max-width: 992px) {

	.socialmedia-ai-agent-card {
		gap: 3rem;
		padding: 2rem 3rem;
	}
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-card {
		flex-direction: column !important;
		gap: 2rem;
		padding: 2rem;
	}
}

@media (max-width: 576px) {

	.socialmedia-ai-agent-card {
		padding: 1.5rem;
		gap: 1.5rem;
	}
}

.socialmedia-ai-agent-card.reverse {
	flex-direction: row-reverse;
}

.socialmedia-ai-agent-card .ai-agent-card-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-card .ai-agent-card-text {
		width: 100%;
	}
}

.socialmedia-ai-agent-card .ai-agent-card-text h3 {
	color: white !important;
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-card .ai-agent-card-text h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {

	.socialmedia-ai-agent-card .ai-agent-card-text h3 {
		font-size: 1.25rem;
	}
}

.socialmedia-ai-agent-card .ai-agent-card-text p {
	max-width: 80%;
	color: #dedede;
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-card .ai-agent-card-text p {
		max-width: 100%;
		font-size: 0.95rem;
	}
}

.socialmedia-ai-agent-card .ai-agent-card-image {
	flex: 1;
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-card .ai-agent-card-image {
		width: 100%;
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-card .ai-agent-card-image img {
		max-width: 100%;
		height: auto;
	}
}

.socialmedia-ai-agent-card .ai-agent-bg-box {
	position: absolute;
	top: 8%;
	z-index: 0;
	width: 150px;
	height: 150px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}

@media (max-width: 992px) {

	.socialmedia-ai-agent-card .ai-agent-bg-box {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 768px) {

	.socialmedia-ai-agent-card .ai-agent-bg-box {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 576px) {

	.socialmedia-ai-agent-card .ai-agent-bg-box {
		width: 80px;
		height: 80px;
	}
}

.socialmedia-ai-agent-card.bg-top-left .ai-agent-bg-box {
	left: 8%;
}

@media (max-width: 576px) {

	.socialmedia-ai-agent-card.bg-top-left .ai-agent-bg-box {
		left: 5%;
	}
}

.socialmedia-ai-agent-card.bg-top-right .ai-agent-bg-box {
	right: 8%;
}

@media (max-width: 576px) {

	.socialmedia-ai-agent-card.bg-top-right .ai-agent-bg-box {
		right: 5%;
	}
}

.socialmedia-ai-agent-card .ai-agent-card-text,
.socialmedia-ai-agent-card .ai-agent-card-image {
	position: relative;
	z-index: 1;
}

.loved-section {
	padding: 8rem 2rem 4rem 2rem;
}

@media (max-width: 768px) {

	.loved-section {
		padding: 4rem 1.5rem 3rem 1.5rem;
	}
}

.loved-content {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

@media (max-width: 768px) {

	.loved-content {
		gap: 2.5rem;
	}
}

.loved-content-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

.loved-content-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

@media (max-width: 992px) {

	.loved-content-content {
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {

	.loved-content-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.loved-content-card {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

	.loved-content-card {
		padding: 1.5rem;
	}
}

.star-rating {
	display: flex;
	gap: 2px;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.star-rating .star-img {
	width: 15px !important;
	height: 15px !important;
	object-fit: cover !important;
}

.cta-relative {
	position: relative;
	overflow: hidden;
}

.cta-product-image {
	margin-top: 4rem;
	width: 100%;
	height: auto;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}

@media (max-width: 768px) {

	.cta-product-image {
		margin-top: 2rem;
	}
}

.cta-image-box-1 {
	position: absolute;
	top: 10%;
	left: 5%;
	width: 150px;
	height: 150px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.cta-image-box-1 {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 768px) {

	.cta-image-box-1 {
		width: 80px;
		height: 80px;
		top: 8%;
		left: 3%;
	}
}

.cta-image-box-2 {
	position: absolute;
	top: 15%;
	right: 8%;
	width: 120px;
	height: 120px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.cta-image-box-2 {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 768px) {

	.cta-image-box-2 {
		width: 70px;
		height: 70px;
		top: 12%;
		right: 5%;
	}
}

.cta-image-box-3 {
	position: absolute;
	bottom: 20%;
	left: 12%;
	width: 100px;
	height: 100px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.cta-image-box-3 {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 768px) {

	.cta-image-box-3 {
		width: 60px;
		height: 60px;
		bottom: 15%;
		left: 8%;
	}
}

.cta-image-box-4 {
	position: absolute;
	bottom: 10%;
	right: 15%;
	width: 130px;
	height: 130px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.cta-image-box-4 {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 768px) {

	.cta-image-box-4 {
		width: 70px;
		height: 70px;
		bottom: 8%;
		right: 10%;
	}
}

.cta-image-box-5 {
	position: absolute;
	top: 40%;
	left: 80%;
	width: 80px;
	height: 80px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.cta-image-box-5 {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 768px) {

	.cta-image-box-5 {
		width: 50px;
		height: 50px;
		top: 35%;
		left: 75%;
	}
}

.cta-image-box-6 {
	position: absolute;
	top: 25%;
	left: 20%;
	width: 110px;
	height: 110px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.cta-image-box-6 {
		width: 90px;
		height: 90px;
	}
}

@media (max-width: 768px) {

	.cta-image-box-6 {
		width: 65px;
		height: 65px;
		top: 22%;
		left: 15%;
	}
}

.cta-image-box-7 {
	position: absolute;
	bottom: 30%;
	right: 25%;
	width: 90px;
	height: 90px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.cta-image-box-7 {
		width: 75px;
		height: 75px;
	}
}

@media (max-width: 768px) {

	.cta-image-box-7 {
		width: 55px;
		height: 55px;
		bottom: 25%;
		right: 20%;
	}
}

.card-link {
	display: block;
	text-decoration: none;
	transition: all 0.3s ease;
}

.card-link:hover .replace-marketers-card {
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.1s ease, box-shadow 0.2s ease;
	border-color: #e8e8e8;
}

.card-link:active .replace-marketers-card {
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.site-header {
	background-color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 100;
}

.main-navigation-container {
	position: relative;
}

.main-navigation-container .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-branding .site-title {
	margin: 0;
	font-size: 1.5rem;
}

.site-branding .site-title a {
	color: #333;
	text-decoration: none;
	font-weight: bold;
}

.site-branding .site-title a:hover {
	color: #0073aa;
}

.main-navigation {
	display: flex;
	position: relative;
	width: 100%;
}

.main-navigation .container {
	width: 100%;
}

.main-navigation .menu-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

@media (max-width: 1024px) {

	.main-navigation .menu-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {

	.main-navigation .menu-container {
		display: flex;
		flex-direction: column;
	}
}

.main-navigation .menu-column {
	padding: 20px 0;
}

@media (min-width: 769px) and (max-width: 1024px) {

	.main-navigation .menu-column {
		padding: 15px;
		border-bottom: 1px solid #eaeaea;
		margin-bottom: 0;
	}

	.main-navigation .menu-column:nth-child(odd):last-child {
		grid-column: 1/-1;
	}
}

@media (max-width: 768px) {

	.main-navigation .menu-column {
		padding: 10px 15px;
		border-bottom: 1px solid #eaeaea;
	}

	.main-navigation .menu-column:last-child {
		border-bottom: none;
	}
}

.main-navigation .menu-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 15px;
	color: #333;
	position: relative;
}

.main-navigation .menu-title.secondary-title {
	margin-top: 20px;
}

.main-navigation .sub-menu {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.main-navigation .sub-menu li {
	margin-bottom: 10px;
}

.main-navigation .sub-menu li:last-child {
	margin-bottom: 0;
}

.main-navigation .sub-menu a {
	color: #737b8b;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s ease;
	display: block;
}

.main-navigation .sub-menu a:hover {
	color: #0073aa;
}

@media (max-width: 1024px) {

	.site-header .container {
		flex-wrap: wrap;
	}

	.site-header .site-branding {
		width: 100%;
		justify-content: center;
		margin-bottom: 15px;
	}

	.site-header .main-navigation {
		width: 100%;
		margin-top: 15px;
		border-top: 1px solid #eaeaea;
	}

	.site-header .main-navigation .container {
		padding: 0 20px;
	}
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.pricingSec {
	margin-top: 120px;
	text-align: center;
}

.segmented-control-wrapper {
	display: flex;
	justify-content: center;
	margin: 2rem 0;
}

.segmented-control {
	display: flex;
	background: linear-gradient(to right, #3b82f6, #d6336c);
	border-radius: 6px;
	padding: 4px;
	width: 280px;
}

.segmented-option {
	position: relative;
	padding: 6px 12px;
	cursor: pointer;
	border-radius: 3px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.segmented-option span {
	font-weight: 500;
	font-size: 0.8rem;
	color: #fff;
	transition: color 0.3s ease;
}

.segmented-option.active {
	background-color: #fff;
}

.segmented-option.active span {
	color: #374151;
	font-weight: 600;
}

.segmented-option:not(.active) {
	background-color: transparent;
}

.segmented-option:not(.active) span {
	color: #fff;
}

.segmented-option:hover:not(.active) {
	background-color: rgba(255, 255, 255, 0.1);
}

.tab-scroll-wrapper {
	margin-top: 4rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.tab-container {
	display: flex;
	flex-wrap: nowrap;
	gap: 1.5rem;
	border-bottom: 1px solid #f0f0f0;
	min-width: max-content;
}

.tab {
	white-space: nowrap;
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 10px 10px 0 0;
	cursor: pointer;
	font-weight: 500;
	color: #111;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.tab.active {
	background-color: #eef4ff;
}

.tab.active::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 3px;
	width: 100%;
	background-color: #3b82f6;
	border-radius: 2px;
}

/* Content box */
.tab-content {
	background-color: #eef4ff;
	border: 1px solid #3b82f6;
	border-radius: 12px;
	padding: 1.25rem;
	max-width: 600px;
	font-family: sans-serif;
	margin-top: 2rem;
}

.tab-content h3 {
	margin-top: 0;
	font-size: 1.2rem;
	color: #111;
}

.tab-content p {
	color: #555;
	margin-bottom: 0;
}

.tab-content {
	text-align: center;
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

.billing-toggle-wrapper {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.billing-toggle {
	display: flex;
	background-color: #f8c1b7;
	padding: 0.5rem;
	border-radius: 24px;
	border: 2px solid #f8c1b7;
	width: fit-content;
	font-family: sans-serif;
}

.billing-option {
	cursor: pointer;
	padding: 0.9rem 2rem;
	font-weight: 500;
	color: #111;
	border-radius: 18px;
	transition: all 0.3s ease;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.billing-option.active {
	background-color: white;
	box-shadow: inset 0 0 0 2px #f8c1b7;
}

.label-group {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.divider {
	color: #e2e8f0;
}

.save {
	font-size: 0.95rem;
	font-weight: 700;
	background: linear-gradient(90deg, #3b82f6 0%, #be185d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.billing-save-pill {
	padding: 0;
	border: none;
	border-radius: 0;
	background: none;
}

.plan-panel {
	display: none;
}

.plan-panel.active {
	display: block;
}

.billing-content {
	margin-top: 1rem;
	text-align: center;
	font-family: sans-serif;
}

.pricing-card-wrapper.highlight {
	background: linear-gradient(to bottom right, #3b82f6, #be185d);
	padding: 2px;
	border-radius: 16px;
	margin-bottom: 2rem;
}

.pricing-card-wrapper:not(.highlight) {
	margin-bottom: 2rem;
}

.pricing-card-wrapper .pricing-card {
	background-color: #fff;
	border-radius: 14px;
	padding: 1.5rem;
	font-family: sans-serif;
	border: 1.5px solid #ddd;
}

.pricing-card .card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

.pricing-card .price-amount-mobile {
	font-size: 2.5rem;
	font-weight: 700;
}

.pricing-card .price-amount-mobile sup {
	font-size: 0.875rem;
	font-weight: 400;
	margin-right: 0.25rem;
}

.pricing-card .price-amount-mobile .price-unit {
	font-size: 0.875rem;
	font-weight: 400;
	color: #58616d;
}

.pricing-card .subtitle {
	color: #58616d;
	font-size: 0.875rem;
}

.pricing-card .badge {
	background: linear-gradient(to right, #3b82f6, #be185d);
	color: white;
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-weight: 600;
}

.pricing-card .cta-outline {
	background: white;
	border: 1px solid #3b82f6;
	color: #3b82f6;
	border-radius: 999px;
	padding: 0.6rem 1.2rem;
	font-weight: 600;
	width: 100%;
	margin-top: 1rem;
	text-align: center;
	display: block;
	width: 100%;
	margin: 1rem 0;
}

.pricing-card .cta-gradient {
	background: linear-gradient(to right, #3b82f6, #be185d);
	color: white;
	border: none;
	border-radius: 999px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	width: 100%;
	margin-top: 1rem;
	text-align: center;
	display: block;
	width: 100%;
	margin: 1rem 0;
}

.pricing-card .features-toggle {
	margin-top: 1.25rem;
	font-weight: 400;
	cursor: pointer;
	text-align: center;
}

.pricing-card .features {
	list-style: none;
	padding: 0;
	margin-top: 1rem;
	width: 100%;
}

.pricing-card .features li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	font-size: 0.9rem;
	color: #333;
	border-bottom: none !important;
}

.pricing-card .features strong {
	font-weight: 500; /* Semi-bold instead of full bold */
}

.pricing-card .features span {
	text-align: right;
}

.plan-card-list {
	background-color: white;
	max-width: 400px;
}

.why-section {
	background-color: #1d3f6e;
	color: #0f172a;
	padding: 3rem 1.5rem;
	text-align: center;
}

.why-section .why-container {
	max-width: 1200px;
	margin: 0 auto;
}

.why-section .why-heading {
	color: white;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.why-section .why-icon {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #edf0f4;
	margin-bottom: 1rem;
}

.why-section .why-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.why-section .why-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {

	.why-section .why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {

	.why-section .why-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.why-section .why-card {
	background-color: white;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: flex-start;
}

.why-section .why-card .why-icon {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.why-section .why-card .why-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.why-section .why-card .why-desc {
	font-size: 0.95rem;
	color: #475569;
}

.why-section .why-cta {
	margin-top: 2.5rem;
}

.why-section .why-button {
	display: inline-block;
	background-color: #f97362;
	color: white;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.why-section .why-button:hover {
	background-color: #f9624e;
}

.faq-section {
	background-color: #f9fafb;
	padding: 3rem 1.5rem;
}

.faq-section .faq-container {
	max-width: 720px;
	margin: 0 auto;
	text-align: left;
}

.faq-section .faq-heading {
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.faq-section .faq-item {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-section .faq-item.active {
	background-color: #eef4ff;
	border-color: #3b82f6;
}

.faq-section .faq-item.active .faq-question {
	font-weight: 600;
}

.faq-section .faq-item.active .arrow {
	transform: rotate(180deg);
}

.faq-section .faq-item .faq-question {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 1.25rem;
	font-size: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-section .faq-item .arrow {
	transition: transform 0.3s ease;
	font-size: 1rem;
}

.faq-section .faq-item .faq-answer {
	padding: 0 1.25rem 1.25rem 1.25rem;
	font-size: 0.95rem;
	color: #475569;
	display: none;
}

.faq-section .faq-item.active .faq-answer {
	display: block;
}

.faq-section .faq-footer {
	text-align: center;
	margin-top: 3rem;
}

.faq-section .faq-footer .faq-subheading {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.faq-section .faq-footer .faq-note {
	font-size: 0.95rem;
	color: #475569;
	margin-bottom: 1.5rem;
}

.faq-section .faq-footer .faq-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background-color: #1e3a8a;
	color: white;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}

.faq-section .faq-footer .faq-button:hover {
	background-color: #15358a;
}

@media screen and (min-width: 768px) {

	.hide-on-desktop {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {

	.hide-on-mobile {
		display: none !important;
	}
}

.agent-selector-desktop {
	display: none;
}

@media (min-width: 1024px) {

	.agent-selector-desktop {
		margin-top: 4rem;
		display: flex;
		width: 100%;
	}
}

.agent-selector-desktop .agent-card {
	border-radius: 12px 12px 0 0;
	padding: 1.5rem;
	text-align: center;
	cursor: pointer;
	border-bottom: 3px solid #dcdce6;
	transition: all 0.3s ease;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.5rem;
}

.agent-selector-desktop .agent-card .agent-icon {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	background-color: #e6efff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

.agent-selector-desktop .agent-card .agent-icon svg {
	width: 28px;
	height: 28px;
	fill: #1e3a8a;
}

.agent-selector-desktop .agent-card .agent-icon img {
	max-width: 28px;
	max-height: 28px;
	object-fit: contain;
}

.agent-selector-desktop .agent-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0.5rem;
	line-height: 1.2 !important;
}

.agent-selector-desktop .agent-card p {
	font-size: 0.875rem;
	color: #58616d;
}

.agent-selector-desktop .agent-card p span {
	font-weight: 600;
}

.agent-selector-desktop .agent-card.active {
	background-color: #eaf2ff;
	border-bottom: 3px solid #3b82f6;
}

.agent-selector-desktop .agent-card:hover {
	background-color: #f1f5f9;
}

.pricing-comparison-wrapper {
	overflow-x: auto;
	padding: 4rem 0 4rem 0;
	overflow: visible;
}

.pricing-comparison-wrapper .pricing-row {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	align-items: flex-start;
	min-width: 100%;
}

.pricing-comparison-wrapper .pricing-features {
	border: 1px solid transparent;
	flex-shrink: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pricing-comparison-wrapper .pricing-features .feature-labels-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.pricing-comparison-wrapper .pricing-features .feature-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	overflow: visible;
	height: 30px;
}

.pricing-comparison-wrapper .pricing-features .feature-label p {
	color: #121417;
	font-size: 0.9rem;
	margin-bottom: 0;
}

.pricing-comparison-wrapper .pricing-plans-scroll {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 1rem;
	padding-bottom: 1rem;
	justify-content: flex-start;
}

.pricing-comparison-wrapper .pricing-plans-scroll.two-cards {
	justify-content: space-between;
	max-width: 100%;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card {
	flex-shrink: 0;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 0 1.5rem;
	width: 300px;
	flex-shrink: 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 1.5rem;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card.wider-card {
	width: 450px;
	flex-grow: 1;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-header {
	margin-top: 1rem;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-header .plan-header-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: space-between;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-header .plan-subtitle {
	width: 70%;
	font-size: 0.875rem;
	color: #58616d;
	margin-top: 0.25rem;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-header .badge {
	display: inline-block;
	background: #fef3c7;
	color: #b45309;
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 8px;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-price {
	width: 100%;
	margin: 1rem 0;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-price .price-amount {
	font-size: 44px;
	font-weight: bold;
	display: block;
	color: #111;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-price .price-amount sup {
	font-size: 0.9rem;
	margin-right: 0.25rem;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-price .price-amount .price-unit {
	font-size: 14px;
	font-weight: 400;
	color: #58616d;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-price .billed-note {
	font-size: 14px;
	color: #121417;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-cta {
	margin: 1rem 0;
	padding: 0.6rem 1.2rem;
	font-weight: 600;
	border-radius: 999px;
	border: 1px solid #d6336c;
	color: #d6336c;
	background-color: transparent;
	cursor: pointer;
	transition: background-color 0.3s;
	width: 100%;
	display: block;
	text-align: center;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-cta:hover {
	background-color: #fff0f5;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-cta.featured-cta {
	background: linear-gradient(to right, #3b82f6, #d6336c);
	color: white;
	border: none;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-row-border {
	width: 100%;
	height: 1px;
	background-color: #dcdce6;
	margin: 1rem 0;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-features {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-features li {
	color: #121417;
	text-align: center;
	font-size: 0.9rem;
	height: 30px;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card .plan-features li:first-child {
	border-top: none;
}

.pricing-comparison-wrapper .pricing-plans-scroll .pricing-plan-card.featured {
	border: 2px solid #3b82f6;
}

.tooltip-wrapper {
	position: relative;
	display: inline-block;
}

.tooltip-wrapper .info-icon {
	cursor: pointer;
}

.tooltip-wrapper .tooltip {
	position: absolute;
	bottom: 125%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #111;
	color: #fff;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	white-space: normal;
	max-width: 240px;
	width: max-content;
	line-height: 1.4;
	text-align: center;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tooltip-wrapper .tooltip-arrow {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #111;
}

.tooltip-wrapper:hover .tooltip {
	opacity: 1;
	visibility: visible;
}

.pricing-table-header {
	height: 350px;
}

.plan-toggle-wrapper {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
}

.plan-toggle {
	display: flex;
	background-color: #f9d7c5;
	gap: 5px;
	border-radius: 6px;
	padding: 3px;
	width: 100%;
	max-width: 320px;
	font-family: sans-serif;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.plan-option {
	flex: 1;
	font-size: 0.95rem;
	font-weight: 600;
	color: #111;
	background-color: transparent;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	padding: 0.5rem 1rem;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.plan-option.active {
	background-color: white;
}

.plan-label-group {
	display: flex;
	align-items: center;
	padding: 0 0.25rem;
	gap: 0.4rem;
	white-space: nowrap;
}

.plan-divider {
	color: #bbb;
}

.plan-save {
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	background: linear-gradient(90deg, #3b82f6 0%, #be185d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.pricing-container {
	padding: 0 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.bundle-interface {
	padding: 2rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	background: #fff;
	max-width: 700px;
	margin: 0 auto;
	box-shadow: 0 0 0 1px #f3f4f6;
	margin-bottom: 2rem;
}

.bundle-interface h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.bundle-interface p {
	margin-bottom: 1rem;
	font-size: 0.95rem;
	color: #374151;
}

.bundle-interface form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.bundle-interface .bundle-agent-selectors {
	display: grid;
	gap: 1rem;
}

.bundle-interface .bundle-agent-selectors .bundle-agent {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.bundle-interface .bundle-agent-selectors .bundle-agent label {
	font-weight: 500;
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.bundle-interface .bundle-agent-selectors .bundle-agent label input[type="checkbox"] {
	transform: scale(1.1);
}

.bundle-interface .bundle-agent-selectors .bundle-agent select.tier-select {
	flex: 1;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	border: 1px solid #d1d5db;
	border-radius: 0.5rem;
	background: #f9fafb;
}

.bundle-interface .bundle-agent-selectors .bundle-agent select.tier-select:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.bundle-interface .bundle-summary {
	padding-top: 0.5rem;
	border-top: 1px solid #e5e7eb;
	font-weight: 600;
	font-size: 1rem;
}

.bundle-interface .bundle-summary #bundle-price {
	font-weight: 700;
	color: #111827;
}

.bundle-interface .bundle-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.bundle-interface .bundle-actions .bundle-cta {
	background: linear-gradient(to right, #7f1d1d, #be123c);
	color: white;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.bundle-interface .bundle-actions .bundle-cta:hover {
	transform: scale(1.02);
	background: linear-gradient(to right, #991b1b, #dc2626);
}

.bundle-selectors {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.bundle-selectors .bundle-heading {
	font-size: 1.25rem;
	margin-bottom: 1rem !important;
	font-weight: 600;
}

@media (min-width: 768px) {

	.bundle-selectors {
		margin-top: 4rem;
	}

	.bundle-selectors .bundle-heading {
		margin-bottom: 0.25rem !important;
	}
}

.bundle-selectors .bundle-options {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.bundle-selectors .bundle-options .bundle-option {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	width: 80%;
	margin: 0 auto;
}

.bundle-selectors .bundle-options .bundle-option .bundle-checkbox {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.bundle-selectors .bundle-options .bundle-option span {
	width: 100%;
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	border: 2px solid #f15540;
	border-radius: 4px;
	background-color: #fff;
	color: #f15540;
	font-size: 0.875rem;
	transition: background-color 0.3s, color 0.3s, border 0.3s;
	user-select: none;
}

.bundle-selectors .bundle-options .bundle-option span::before {
	content: "";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	margin-right: 0.5rem;
	border: 2px solid #f15540;
	border-radius: 2px;
	background-color: #fff;
	color: transparent;
	font-weight: bold;
	transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.bundle-selectors .bundle-options .bundle-option span:hover {
	background-color: #ffe9e5;
}

.bundle-selectors .bundle-options .bundle-option .bundle-checkbox:checked + span {
	border-color: #f15540;
	background-color: #ffe9e5;
	color: black;
}

.bundle-selectors .bundle-options .bundle-option .bundle-checkbox:checked + span::before {
	content: "✓";
	background-color: #f15540;
	border-color: #f15540;
	color: #fff;
}

.bundle-selectors .bundle-options .bundle-option .bundle-checkbox:checked + span:hover {
	background-color: #ffe9e5;
}

@media (min-width: 768px) {

	.bundle-option {
		width: auto !important;
		margin: unset;
	}

	.bundle-option span {
		width: auto !important;
	}
}

.bundle-selectors .bundle-heading {
	display: inline-flex;
	align-items: center;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 0.25rem;
}

.bundle-selectors .bundle-heading .bundle-badge {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(90deg, #f3f4f6 0%, #fee2e2 100%);
	border-radius: 11px;
	padding: 0.3rem 0.6rem;
	margin-left: 0.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bundle-selectors .bundle-heading .bundle-badge .bundle-count-2 {
	font-size: 0.9rem;
	font-weight: 500;
	color: #1f2937;
	line-height: 1.2;
}

.bundle-selectors .bundle-heading .bundle-badge .bundle-discount {
	font-size: 0.9rem;
	font-weight: 600;
	color: #dc2626;
	margin-left: 0.5rem;
	line-height: 1.2;
}

.single_tag {
	color: #ee3610;
	margin-bottom: 10px;
	display: inline-block;
}

.twoColumnBnrSec {
	background-color: #fbfcfe;
}

.twoColumnBnrSec .container {
	padding-top: 60px;
	padding-bottom: 60px;
}

.twoColumnBnrSec .bnr_content {
	background-color: #fbfcfe;
}

.blogContentSec {
	background-color: #fff;
	margin-bottom: 60px;
	position: relative;
}

.blog-sidebar-sticky {
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	will-change: position, top, width, transform, opacity;
}

.blog-sidebar-sticky.sticky {
	position: fixed;
	top: 100px;
	z-index: 100;

	/* Ensure no size changes when sticky */
	box-sizing: border-box;
}

.blog-sidebar-sticky.sliding-out {
	transform: translateY(20px);
	opacity: 0;
}

.sticky-placeholder {
	display: block;
	width: 100%;
}

@media (min-width: 992px) {

	.blog-sidebar-sticky {
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}

	.blog-sidebar-sticky::-webkit-scrollbar {
		width: 4px;
	}

	.blog-sidebar-sticky::-webkit-scrollbar-track {
		background: #f1f1f1;
		border-radius: 2px;
	}

	.blog-sidebar-sticky::-webkit-scrollbar-thumb {
		background: #c1c1c1;
		border-radius: 2px;
	}

	.blog-sidebar-sticky::-webkit-scrollbar-thumb:hover {
		background: #a8a8a8;
	}
}

@media (max-width: 991px) {

	.blog-sidebar-sticky {
		position: static !important;
		top: auto !important;
		width: auto !important;
		z-index: auto !important;
	}

	.sticky-placeholder {
		display: none !important;
	}
}

.blogContentSec .singlePost_content {
	background-color: #fff;
	padding-right: 40px;
}

.singlePost_content h1 {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #121417;
	margin-bottom: 24px;
	margin-top: 32px;
	border-bottom: 3px solid #f36649;
	padding-bottom: 16px;
	position: relative;
}

.singlePost_content h1::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 60px;
	height: 3px;
	background: #f36649;
}

.singlePost_content h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #374151;
	margin-bottom: 20px;
	margin-top: 28px;
	padding-left: 16px;
	border-left: 4px solid #e5e7eb;
	background: linear-gradient(90deg, rgba(243, 102, 73, 0.05) 0%, transparent 100%);
	padding: 12px 16px;
	border-radius: 0 8px 8px 0;
}

@media (max-width: 768px) {

	.singlePost_content h1 {
		font-size: 32px;
		line-height: 1.3;
		margin-bottom: 20px;
		margin-top: 24px;
		padding-bottom: 12px;
	}

	.singlePost_content h1::before {
		width: 40px;
	}

	.singlePost_content h2 {
		font-size: 24px;
		line-height: 1.4;
		margin-bottom: 16px;
		margin-top: 20px;
		padding: 10px 12px;
		border-left-width: 3px;
	}
}

@media (max-width: 480px) {

	.singlePost_content h1 {
		font-size: 28px;
		line-height: 1.4;
		margin-bottom: 16px;
		margin-top: 20px;
		padding-bottom: 10px;
	}

	.singlePost_content h1::before {
		width: 30px;
	}

	.singlePost_content h2 {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 12px;
		margin-top: 16px;
		padding: 8px 10px;
	}
}

.cta_component {
	margin-top: 24px;
	background: #f8f8f8;
	border-radius: 12px;
	padding: 20px;
}

.cta_image {
	margin-bottom: 16px;
}

.cta_image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.cta_content h4 {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #121417;
	margin-bottom: 8px;
	line-height: 1.4;
}

.cta_description {
	text-align: center;
	font-size: 14px;
	color: #6f7a8a !important;
	margin-bottom: 16px;
	line-height: 1.5;
}

.cta_content_subtitle {
	text-align: center;
	font-size: 14px;
	color: white !important;
	margin-bottom: 16px;
	line-height: 1.5;
}

.cta_button {
	display: inline-flex;
	align-items: center;
	background: #f36649;
	color: #fff;
	padding: 12px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: background-color 0.2s;
	width: 100%;
}

@media (max-width: 768px) {

	.cta_button {
		width: 100%;
		display: block;
		text-align: center;
	}
}

.cta_button:hover {
	background: #e55a3d;
	color: #fff;
	text-decoration: none;
}

.cta_button .arrow {
	margin-left: 8px;
	font-size: 16px;
}

.custom_share_buttons {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.share_button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e5e7eb;
	color: #374151;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.share_button:hover {
	background: #f9fafb;
	border-color: #d1d5db;
	color: #111827;
	text-decoration: none;
}

.share_button svg {
	width: 16px;
	height: 16px;
}

@media (max-width: 768px) {

	.blogContentSec .singlePost_content {
		padding-right: 0;
	}

	.twoColumnBnrSec .bnr_content {
		text-align: center;
	}

	.twoColumnBnrSec .bnr_content h3 {
		text-align: center;
	}

	.twoColumnBnrSec .bnr_content .single_tag {
		text-align: center;
		display: block;
	}

	.twoColumnBnrSec .bnr_content .meta_box {
		justify-content: center;
		text-align: center;
	}
}

.custom-share-links {
	margin-top: 20px;
}

.share-icons {
	display: flex;
	gap: 12px;
	align-items: center;
}

.share-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e5e7eb;
	color: #374151;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.share-icon:hover {
	background: #f9fafb;
	border-color: #d1d5db;
	color: #111827;
	transform: translateY(-1px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.share-icon.copied {
	background: #10b981;
	border-color: #10b981;
	color: #fff;
}

.share-icon svg {
	width: 16px;
	height: 16px;
}

.share-icon.linkedin:hover {
	background: #0077b5;
	border-color: #0077b5;
	color: #fff;
}

.share-icon.x-twitter:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}

.share-icon.whatsapp:hover {
	background: #25d366;
	border-color: #25d366;
	color: #fff;
}

.share-icon.copy-link:hover {
	background: #6b7280;
	border-color: #6b7280;
	color: #fff;
}

.share-icon.copying {
	background: #f59e0b;
	border-color: #f59e0b;
	color: #fff;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {

	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}

	100% {
		transform: scale(1);
	}
}

body .toast-container {
	position: fixed !important;
	top: 20px !important;
	right: 20px !important;
	z-index: 99999 !important;
	pointer-events: none !important;
}

body .toast-notification {
	background: #fff !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
	margin-bottom: 12px !important;
	max-width: 350px !important;
	min-width: 300px !important;
	opacity: 0 !important;
	transform: translateX(100%) !important;
	transition: all 0.3s ease !important;
	pointer-events: auto !important;
	border-left: 4px solid #10b981 !important;
}

body .toast-notification.show {
	opacity: 1 !important;
	transform: translateX(0) !important;
}

body .toast-notification.toast-error {
	border-left-color: #ef4444 !important;
}

body .toast-notification.toast-success {
	border-left-color: #10b981 !important;
}

body .toast-content {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 16px !important;
}

body .toast-message {
	color: #374151 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	margin-right: 12px !important;
}

body .toast-close {
	background: none !important;
	border: none !important;
	color: #9ca3af !important;
	cursor: pointer !important;
	font-size: 18px !important;
	font-weight: bold !important;
	line-height: 1 !important;
	padding: 0 !important;
	width: 20px !important;
	height: 20px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: color 0.2s ease !important;
}

body .toast-close:hover {
	color: #6b7280 !important;
}

@media (max-width: 768px) {

	body .toast-container {
		top: 10px !important;
		right: 10px !important;
		left: 10px !important;
	}

	body .toast-notification {
		max-width: none !important;
		min-width: auto !important;
	}
}

body .share-tooltip {
	position: fixed !important;
	background: #1f2937 !important;
	color: white !important;
	padding: 8px 12px !important;
	border-radius: 6px !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	white-space: nowrap !important;
	z-index: 100000 !important;
	pointer-events: none !important;
	opacity: 0 !important;
	transform: translateY(8px) !important;
	transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

body .share-tooltip.show {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

body .share-tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 4px solid transparent;
	border-top-color: #1f2937;
}

@media (max-width: 768px) {

	.share-icons {
		gap: 8px;
	}

	.share-icon {
		width: 36px;
		height: 36px;
	}

	.share-icon svg {
		width: 14px;
		height: 14px;
	}
}

.tip-box {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: #fef0ed;
	border: 1px solid #f9b9ac;
	border-radius: 8px;
	padding: 16px;
	margin: 24px 0;
}

.tip-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.tip-content p {
	margin: 0;
	color: #121417;
	font-size: 14px;
	line-height: 1.5;
}

.cta-button-container {
	text-align: center;
	margin: 32px 0;
}

.cta-button-primary {
	display: inline-block;
	background: #f36649;
	color: #fff;
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: background-color 0.2s ease;
}

.cta-button-primary:hover {
	background: #e55a3d;
	color: #fff;
	text-decoration: none;
}

.related-article {
	margin: 24px 0;
}

.related-label {
	display: inline;
	font-size: 14px;
	color: #121417;
	margin-right: 8px;
}

.related-link-container {
	display: inline-block;
	width: 100%;
}

.related-link {
	display: inline-block;
	color: #237bdb;
	text-decoration: none;
	font-size: 14px;
	padding: 8px 12px;
	background: #f6fdff;
	border-radius: 6px;
	border: 1px solid #b8d6ff;
	transition: all 0.2s ease;
	width: 100%;
}

.related-link:hover {
	background: #e6f3ff;
	color: #1d4ed8;
	text-decoration: none;
}

.content-tip-cta-container {
	max-width: 720px;
	margin: 0 auto;
}

.author-bio-container {
	max-width: 720px;
	margin: 0 auto;
}

.author-bio {
	margin: 40px 0;
	padding: 24px;
	background: #fff;
	border-radius: 12px;
}

.author-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px 0;
}

.author-content {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.author-avatar {
	flex-shrink: 0;
}

.author-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	object-fit: cover;
}

.author-info {
	flex: 1;
}

.author-name {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 4px 0;
	line-height: 1.3;
}

.author-role {
	font-size: 14px;
	color: #f36649;
	font-weight: 600;
	margin: 0 0 8px 0;
	line-height: 1.4;
}

.author-description {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 16px 0;
}

.author-description p {
	margin: 0 0 12px 0;
}

.author-description p:last-child {
	margin-bottom: 0;
}

.author-social {
	display: flex;
	gap: 12px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e5e7eb;
	color: #374151;
	text-decoration: none;
	transition: all 0.2s ease;
}

.social-link:hover {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #111827;
	text-decoration: none;
}

.social-link.linkedin:hover {
	background: #0077b5;
	border-color: #0077b5;
	color: #fff;
}

.social-link.twitter:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}

.social-link.website:hover {
	background: #6b7280;
	border-color: #6b7280;
	color: #fff;
}

.related-articles-section {
	background-color: #f8f8f8;
	padding: 80px 0;
}

.related-articles-header {
	margin-bottom: 40px;
}

.related-articles-title {
	font-size: 28px;
	font-weight: 700;
	color: #121417;
	margin: 0;
	line-height: 1.3;
}

.related-articles-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.related-article-card {
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: row;
}

.related-article-card:hover {
	transform: translateY(-2px);
}

.article-image {
	flex: 0 0 120px;
	position: relative;
	overflow: hidden;
	border-radius: 8px 0 0 8px;
}

.article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.related-article-card:hover .article-image img {
	transform: scale(1.05);
}

.placeholder-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.placeholder-text {
	font-size: 24px;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.article-content {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.article-title {
	font-size: 16px;
	font-weight: 700;
	color: #121417;
	margin: 0 0 12px 0;
	line-height: 1.4;
}

.article-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.article-title a:hover {
	color: #f36649;
}

.article-excerpt {
	font-size: 14px;
	color: #525760;
	line-height: 1.5;
	margin: 0 0 16px 0;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	font-size: 12px;
}

.article-category {
	color: #ee3610;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.article-author,
.article-date {
	color: #525760;
}

.article-author::after {
	content: "•";
	margin-left: 8px;
	color: #d1d5db;
}

.article-date::after {
	content: "•";
	margin-left: 8px;
	color: #d1d5db;
}

.article-date:last-child::after {
	display: none;
}

@media (max-width: 768px) {

	.related-articles-section {
		padding: 40px 0;
	}

	.related-articles-title {
		font-size: 24px;
	}

	.related-articles-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.related-article-card {
		flex-direction: column;
	}

	.article-image {
		width: 100%;
		height: 160px;
		border-radius: 12px;
		margin-bottom: 8px;
	}

	.article-content {
		padding: 0;
		gap: 6px;
	}

	.article-title {
		font-size: 15px;
	}

	.article-excerpt {
		font-size: 13px;
	}

	.article-meta {
		font-size: 11px;
		gap: 6px;
	}

	.article-category::after,
	.article-author::after {
		content: "|";
		margin-left: 8px;
		color: #d1d5db;
	}
}

.signup-banner {
	background: linear-gradient(135deg, #1d3f6e 36%, #eb4441 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.signup-banner__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.signup-banner__left {
	position: relative;
}

.signup-banner__marketing {
	color: #fff;
}

.signup-banner__subtitle {
	color: #f4775d;
	font-size: 16px;
	font-weight: 400;
	margin: 0 0 20px 0;
	line-height: 1.4;
}

.signup-banner__title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
	line-height: 1.2;
	text-transform: capitalize;
}

.signup-banner__description {
	font-size: 18px;
	color: #dedede;
	margin: 0;
	line-height: 1.5;
	font-weight: 300;
}

.signup-banner__right {
	position: relative;
	z-index: 1;
}

.signup-banner__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	z-index: 1;
}

.signup-banner__form-group {
	position: relative;
}

.signup-banner__form-group input {
	width: 100%;
	padding: 16px 20px;
	border: none;
	border-radius: 8px;
	background: #fff;
	font-size: 16px;
	color: #374151;
	transition: all 0.2s ease;
	position: relative;
	z-index: 2;
}

.signup-banner__form-group input::placeholder {
	color: #6f7a8a;
}

.signup-banner__form-group input:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.signup-banner__button {
	background: #f4775d;
	color: #fff;
	border: none;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-top: 8px;
	position: relative;
	z-index: 2;
}

.signup-banner__button:hover {
	background: #e05a47;
}

.signup-banner__button:disabled {
	cursor: not-allowed;
	background: #f4775d !important;
	color: #fff !important;
}

.signup-banner__message {
	margin: 12px 0;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
}

.signup-banner__message--success {
	color: #4caf50;
}

.signup-banner__message--error {
	color: #f44336;
}

.signup-banner__disclaimer {
	color: #fff;
	font-size: 14px;
	font-style: italic;
	margin: 16px 0 0 0;
	text-align: center;
	opacity: 0.9;
}

.signup-banner-cube-1 {
	position: absolute;
	top: 10%;
	left: 5%;
	width: 150px;
	height: 150px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.signup-banner-cube-1 {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 768px) {

	.signup-banner-cube-1 {
		width: 80px;
		height: 80px;
		top: 8%;
		left: 3%;
	}
}

.signup-banner-cube-2 {
	position: absolute;
	top: 15%;
	right: 8%;
	width: 120px;
	height: 120px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.signup-banner-cube-2 {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 768px) {

	.signup-banner-cube-2 {
		width: 70px;
		height: 70px;
		top: 12%;
		right: 5%;
	}
}

.signup-banner-cube-3 {
	position: absolute;
	bottom: 20%;
	left: 12%;
	width: 100px;
	height: 100px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.signup-banner-cube-3 {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 768px) {

	.signup-banner-cube-3 {
		width: 60px;
		height: 60px;
		bottom: 15%;
		left: 8%;
	}
}

.signup-banner-cube-4 {
	position: absolute;
	bottom: 10%;
	right: 15%;
	width: 130px;
	height: 130px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.signup-banner-cube-4 {
		width: 100px;
		height: 100px;
	}
}

@media (max-width: 768px) {

	.signup-banner-cube-4 {
		width: 70px;
		height: 70px;
		bottom: 8%;
		right: 10%;
	}
}

.signup-banner-cube-5 {
	position: absolute;
	top: 40%;
	left: 80%;
	width: 80px;
	height: 80px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.signup-banner-cube-5 {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 768px) {

	.signup-banner-cube-5 {
		width: 50px;
		height: 50px;
		top: 35%;
		left: 75%;
	}
}

.signup-banner-cube-6 {
	position: absolute;
	top: 25%;
	left: 20%;
	width: 110px;
	height: 110px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.signup-banner-cube-6 {
		width: 90px;
		height: 90px;
	}
}

@media (max-width: 768px) {

	.signup-banner-cube-6 {
		width: 65px;
		height: 65px;
		top: 22%;
		left: 15%;
	}
}

.signup-banner-cube-7 {
	position: absolute;
	bottom: 30%;
	right: 25%;
	width: 90px;
	height: 90px;
	background-image: url("/wp-content/themes/distribution-ai/assets/images/distribution-box.png");
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

@media (max-width: 992px) {

	.signup-banner-cube-7 {
		width: 75px;
		height: 75px;
	}
}

@media (max-width: 768px) {

	.signup-banner-cube-7 {
		width: 55px;
		height: 55px;
		bottom: 25%;
		right: 20%;
	}
}

@media (max-width: 768px) {

	.signup-banner {
		padding: 60px 0;
	}

	.signup-banner__content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.signup-banner__title {
		font-size: 28px;
	}

	.signup-banner__description {
		font-size: 16px;
	}

	.signup-banner__subtitle {
		font-size: 14px;
	}

	.signup-banner__form-group input {
		padding: 14px 16px;
		font-size: 14px;
	}

	.signup-banner__button {
		padding: 14px 24px;
		font-size: 14px;
	}

	.signup-banner__cube {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 768px) {

	.content-tip-cta-container {
		padding: 32px 16px;
	}

	.tip-box {
		padding: 16px;
		margin: 16px 0;
		background: #feece9;
		border: 1px solid #f9b9ac;
		border-radius: 8px;
		display: flex;
		align-items: flex-start;
		gap: 12px;
	}

	.tip-icon {
		flex-shrink: 0;
		margin-top: 2px;
	}

	.tip-content p {
		font-size: 14px;
		line-height: 1.5;
		color: #121417;
		margin: 0;
	}

	.cta-button-container {
		text-align: center;
		margin: 24px 0;
	}

	.cta-button-primary {
		display: block;
		width: 100%;
		background: #f26a4f;
		color: #fff;
		padding: 14px 20px;
		border-radius: 50px;
		text-decoration: none;
		font-weight: 600;
		font-size: 14px;
		text-align: center;
		transition: background-color 0.2s ease;
	}

	.cta-button-primary:hover {
		background: #e55a3d;
		color: #fff;
		text-decoration: none;
	}

	.related-article {
		margin: 24px 0;
	}

	.related-link-container {
		display: block;
		width: 100%;
	}

	.related-link {
		display: block;
		color: #237bdb;
		text-decoration: none;
		font-size: 14px;
		padding: 12px 16px;
		background: #f6fdff;
		border-radius: 8px;
		border: 1px solid #b8d6ff;
		transition: all 0.2s ease;
		width: 100%;
		line-height: 1.4;
	}

	.related-link:hover {
		background: #e6f3ff;
		color: #1d4ed8;
		text-decoration: none;
	}

	.related-label {
		display: inline;
		font-size: 14px;
		color: #121417;
		margin-right: 8px;
	}

	.author-content {
		flex-direction: column;
		gap: 16px;
	}

	.author-avatar {
		width: 100%;
		text-align: center;
	}

	.author-avatar img {
		width: 100%;
		height: auto;
		max-width: 200px;
		border-radius: 12px;
		object-fit: cover;
	}

	.author-bio {
		padding: 16px;
		margin: 24px 0;
	}

	.author-name {
		font-size: 16px;
	}

	.author-role {
		font-size: 13px;
	}

	.author-description {
		font-size: 13px;
	}

	.social-link {
		width: 32px;
		height: 32px;
	}
}

.banner_section {
	padding: 80px 0 60px;
	background: #fff;
	text-align: center;
}

.banner_section .container {
	max-width: 800px;
	margin: 0 auto;
}

@media (max-width: 768px) {

	.banner_section {
		padding: 60px 0 40px;
		margin-bottom: 20px;
	}
}

@media (max-width: 576px) {

	.banner_section {
		padding: 40px 0;
		margin-bottom: 30px;
	}
}

.banner-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #121212;
	margin-bottom: 32px;
	line-height: 1.2;
}

@media (max-width: 768px) {

	.banner-title {
		font-size: 2rem;
		line-height: 1.3;
		margin-bottom: 28px;
	}
}

@media (max-width: 576px) {

	.banner-title {
		font-size: 1.75rem;
		margin-bottom: 24px;
	}
}

.banner-subtitle {
	font-size: 1.125rem;
	color: #525760;
	margin-bottom: 40px;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {

	.banner-subtitle {
		font-size: 1rem;
		margin-bottom: 36px;
	}
}

@media (max-width: 576px) {

	.banner-subtitle {
		font-size: 0.95rem;
		margin-bottom: 32px;
		padding: 0 15px;
	}
}

.subscribe-btn {
	background-color: #f36649;
	color: #fff;
	border: none;
	padding: 14px 36px;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.subscribe-btn:hover {
	background-color: rgb(239.8453608247, 61.7783505155, 25.1546391753);
	transform: translateY(-2px);
}

@media (max-width: 768px) {

	.subscribe-btn {
		padding: 12px 28px;
		font-size: 0.95rem;
	}
}

@media (max-width: 576px) {

	.subscribe-btn {
		padding: 10px 24px;
		font-size: 0.9rem;
	}
}

.featured-post-wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.featured-post-image {
	width: 100% !important;
	height: 320px !important;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 24px !important;
	position: relative;
}

@media (max-width: 768px) {

	.featured-post-image {
		height: 260px !important;
		margin-bottom: 20px !important;
	}
}

@media (max-width: 576px) {

	.featured-post-image {
		height: 220px !important;
	}
}

.featured-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.featured-post-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.featured-post-content .post-category {
	color: #f36649;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px !important;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {

	.featured-post-content .post-category {
		font-size: 12px;
		margin-bottom: 6px !important;
	}
}

.featured-post-content .post-title {
	margin-bottom: 6px !important;
}

@media (max-width: 768px) {

	.featured-post-content .post-title {
		margin-bottom: 4px !important;
	}
}

.featured-post-content .post-title h2,
.featured-post-content .post-title h4 {
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: #121212;
}

@media (max-width: 768px) {

	.featured-post-content .post-title h2,
	.featured-post-content .post-title h4 {
		font-size: 15px !important;
		line-height: 1.3 !important;
	}
}

@media (max-width: 576px) {

	.featured-post-content .post-title h2,
	.featured-post-content .post-title h4 {
		font-size: 14px !important;
	}
}

.featured-post-content .post-title h2 a,
.featured-post-content .post-title h4 a {
	color: #121212;
	text-decoration: none;
}

.featured-post-content .post-title h2 a:hover,
.featured-post-content .post-title h4 a:hover {
	color: #f36649;
}

.featured-post-content .post-excerpt {
	margin-bottom: 12px !important;
	color: #525760;
	line-height: 1.5;
	font-size: 14px !important;
}

@media (max-width: 768px) {

	.featured-post-content .post-excerpt {
		margin-bottom: 10px !important;
		font-size: 13px !important;
	}
}

.featured-post-content .post-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px !important;
	color: #6c757d;
	margin-bottom: 10px !important;
}

@media (max-width: 768px) {

	.featured-post-content .post-meta {
		font-size: 11px !important;
		gap: 4px;
		margin-bottom: 8px !important;
	}
}

.featured-post-content .post-meta .meta-item {
	color: #6c757d;
}

.featured-post-content .post-meta .meta-separator {
	color: #dee2e6;
}

.featured-posts-sidebar {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}

.twoColomnBlogsSec .row {
	align-items: stretch !important;
}

.twoColomnBlogsSec .col-lg-6 {
	display: flex !important;
	flex-direction: column !important;
}

.featured-posts-header {
	margin-bottom: 8px !important;
}

@media (max-width: 768px) {

	.featured-posts-header {
		margin-bottom: 6px !important;
	}
}

.featured-posts-header h4 {
	font-size: 18px;
	font-weight: 600;
	color: #121212;
	margin-bottom: 0;
	padding-bottom: 4px !important;
	border-bottom: 1px solid #dee2e6;
}

@media (max-width: 768px) {

	.featured-posts-header h4 {
		font-size: 16px;
		padding-bottom: 3px !important;
	}
}

.featured-posts-list {
	flex: 1;
}

.featured-posts-list .featured-post-item {
	padding: 8px 0 !important;
	border-bottom: 1px solid #dee2e6;
}

@media (max-width: 768px) {

	.featured-posts-list .featured-post-item {
		padding: 6px 0 !important;
	}
}

.featured-posts-list .featured-post-item:last-child {
	border-bottom: none;
}

.featured-posts-list .featured-post-item .post-category {
	color: #f36649;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {

	.featured-posts-list .featured-post-item .post-category {
		font-size: 12px;
		margin-bottom: 6px;
	}
}

.featured-posts-list .featured-post-item .post-title {
	margin-bottom: 8px;
}

@media (max-width: 768px) {

	.featured-posts-list .featured-post-item .post-title {
		margin-bottom: 6px;
	}
}

.featured-posts-list .featured-post-item .post-title h2,
.featured-posts-list .featured-post-item .post-title h6 {
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: #121212;
	margin-bottom: 0;
}

@media (max-width: 768px) {

	.featured-posts-list .featured-post-item .post-title h2,
	.featured-posts-list .featured-post-item .post-title h6 {
		font-size: 15px !important;
		line-height: 1.3 !important;
	}
}

.featured-posts-list .featured-post-item .post-title h2 a,
.featured-posts-list .featured-post-item .post-title h6 a {
	color: #121212;
	text-decoration: none;
}

.featured-posts-list .featured-post-item .post-title h2 a:hover,
.featured-posts-list .featured-post-item .post-title h6 a:hover {
	color: #f36649;
}

.featured-posts-list .featured-post-item .post-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #6c757d;
}

@media (max-width: 768px) {

	.featured-posts-list .featured-post-item .post-meta {
		font-size: 12px;
		gap: 4px;
	}
}

.featured-posts-list .featured-post-item .post-meta .meta-item {
	color: #6c757d;
}

.featured-posts-list .featured-post-item .post-meta .meta-separator {
	color: #dee2e6;
}

.read-playbook-cta {
	padding: 0 !important;
	margin-top: 8px !important;
}

@media (max-width: 768px) {

	.read-playbook-cta {
		margin-top: 6px !important;
	}
}

.read-playbook-cta .read-playbook-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #1d3f6e;
	color: #fff;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.read-playbook-cta .read-playbook-btn:hover {
	background-color: rgb(18.3597122302, 39.8848920863, 69.6402877698);
	transform: translateY(-1px);
}

@media (max-width: 768px) {

	.read-playbook-cta .read-playbook-btn {
		padding: 10px 20px;
		font-size: 13px;
	}
}

.read-playbook-cta .read-playbook-btn svg {
	width: 14px;
	height: 14px;
}

@media (max-width: 768px) {

	.read-playbook-cta .read-playbook-btn svg {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 991px) {

	.twoColomnBlogsSec .row {
		row-gap: 40px;
	}

	.twoColomnBlogsSec .col-lg-6 {
		margin-bottom: 0;
	}

	.featured-post-wrapper {
		margin-bottom: 0;
	}

	.featured-posts-sidebar {
		margin-top: 0;
	}
}

@media (max-width: 768px) {

	.twoColomnBlogsSec .row {
		row-gap: 30px;
	}

	.featured-post-image {
		height: 250px;
	}

	.featured-post-content .post-title h2,
	.featured-post-content .post-title h4 {
		font-size: 20px;
	}

	.featured-posts-header h4 {
		font-size: 18px;
	}
}

.twoColHorizontalCardSec .blog_card .post-category {
	color: #f36649;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

.twoColHorizontalCardSec .blog_card h6 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #121212;
	margin-bottom: 12px;
}

.twoColHorizontalCardSec .blog_card h6 a {
	color: #121212;
	text-decoration: none;
}

.twoColHorizontalCardSec .blog_card h6 a:hover {
	color: #f36649;
}

.twoColHorizontalCardSec .blog_card p {
	color: #525760;
	line-height: 1.6;
	margin-bottom: 12px;
}

.twoColHorizontalCardSec .blog_card .post-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #525760;
}

.twoColHorizontalCardSec .blog_card .post-meta .meta-item {
	color: #525760;
}

.twoColHorizontalCardSec .blog_card .post-meta .meta-separator {
	color: #e5e5e8;
}

.main-blog-content {
	padding: 60px 0;
}

.main-blog-content .row:first-child {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.main-blog-content .row:first-child .blog-posts-header {
	margin-bottom: 0;
	display: flex;
	align-items: center;
}

.main-blog-content .row:first-child .blog-posts-header h2 {
	font-size: 32px;
	font-weight: 600;
	color: #121212;
	margin-bottom: 0;
}

.main-blog-content .row:first-child .search-container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.main-blog-content .row:first-child .search-container .search-form {
	display: flex;
	align-items: center;
	position: relative;
}

.main-blog-content .row:first-child .search-container .search-input {
	width: 200px;
	padding: 12px 40px 12px 16px;
	border: 1px solid #e5e5e8;
	border-radius: 25px;
	font-size: 14px;
	background: #fff;
}

.main-blog-content .row:first-child .search-container .search-input:focus {
	outline: none;
	border-color: #f36649;
}

.main-blog-content .row:first-child .search-container .search-button {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	color: #525760;
	cursor: default; /* purely visual icon */
	pointer-events: none; /* disable hover/click */
}

.main-blog-content .blog-posts-header {
	margin-bottom: 20px;
}

.main-blog-content .blog-posts-header h2 {
	font-size: 32px;
	font-weight: 600;
	color: #121212;
	margin-bottom: 0;
}

.main-blog-content .search-row {
	margin-bottom: 40px;
	display: flex;
	justify-content: flex-end;
}

.main-blog-content .search-row .search-container .search-form {
	display: flex;
	align-items: center;
	position: relative;
}

.main-blog-content .search-row .search-container .search-input {
	width: 200px;
	padding: 12px 40px 12px 16px;
	border: 1px solid #e5e5e8;
	border-radius: 25px;
	font-size: 14px;
	background: #fff;
}

.main-blog-content .search-row .search-container .search-input:focus {
	outline: none;
	border-color: #f36649;
}

.main-blog-content .search-row .search-container .search-button {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	color: #525760;
	cursor: pointer;
}

.main-blog-content .search-row .search-container .search-button:hover {
	color: #f36649;
}

.main-blog-content .search-container {
	position: relative;
}

.main-blog-content .search-container .search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e5e5e8;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 400px;
	overflow-y: auto;
	display: none;
	margin-top: 4px;
}

.main-blog-content .search-container .search-results .search-result-item {
	border-bottom: 1px solid #f6f7f9;
	transition: background-color 0.2s ease;
}

.main-blog-content .search-container .search-results .search-result-item:last-child {
	border-bottom: none;
}

.main-blog-content .search-container .search-results .search-result-item:hover,
.main-blog-content .search-container .search-results .search-result-item.active {
	background-color: #f6f7f9;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-link {
	display: flex;
	padding: 12px 16px;
	text-decoration: none;
	color: inherit;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-link:hover {
	text-decoration: none;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-thumbnail {
	flex: 0 0 60px;
	margin-right: 12px;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-thumbnail img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-content {
	flex: 1;
	min-width: 0;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-content .search-result-title {
	font-size: 14px;
	font-weight: 600;
	color: #121212;
	margin-bottom: 4px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-content .search-result-excerpt {
	font-size: 12px;
	color: #525760;
	margin-bottom: 6px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-content .search-result-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: #737b8b;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-content .search-result-meta .search-result-author {
	font-weight: 500;
}

.main-blog-content .search-container .search-results .search-result-item .search-result-content .search-result-meta .search-result-date {
	color: #737b8b;
}

.main-blog-content .search-container .search-results .search-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #525760;
	font-size: 14px;
}

.main-blog-content .search-container .search-results .search-loading .search-spinner {
	margin-right: 8px;
	color: #f36649;
}

.main-blog-content .search-container .search-results .search-no-results {
	padding: 20px;
	text-align: center;
	color: #525760;
	font-size: 14px;
}

.main-blog-content .search-container .search-results .search-error {
	padding: 20px;
	text-align: center;
	color: #dc3545;
	font-size: 14px;
}

.main-blog-content .blog-posts-list .blog-post-item {
	margin-bottom: 40px;
}

.main-blog-content .blog-posts-list .updated-post-layout {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

@media (max-width: 768px) {

	.main-blog-content .blog-posts-list .updated-post-layout {
		flex-direction: column;
	}
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-thumbnail {
	flex: 0 0 400px;
}

@media (max-width: 768px) {

	.main-blog-content .blog-posts-list .updated-post-layout .updated-post-thumbnail {
		flex: none;
	}
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-thumbnail img {
	width: 100%;
	height: auto;
	max-height: 250px;
	object-fit: contain;
	border-radius: 8px;
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content {
	flex: 0 0 calc(100% - 420px);
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content .post-category {
	color: #f36649;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content h2,
.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content h4 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #121212;
	margin-bottom: 12px;
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content h2 a,
.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content h4 a {
	color: #121212;
	text-decoration: none;
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content h2 a:hover,
.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content h4 a:hover {
	color: #f36649;
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content .post-excerpt {
	color: #525760;
	line-height: 1.6;
	margin-bottom: 12px;
	font-size: 14px;
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content .post-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #525760;
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content .post-meta .meta-item {
	color: #525760;
}

.main-blog-content .blog-posts-list .updated-post-layout .updated-post-content .post-meta .meta-separator {
	color: #e5e5e8;
}

@media (max-width: 991px) {

	.main-blog-content .cta-sidebar {
		margin-top: 40px;
	}
}

.main-blog-content .load-more-container {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 40px;
}

@media (max-width: 768px) {

	.main-blog-content .load-more-container {
		margin-top: 30px;
		margin-bottom: 30px;
	}
}

.main-blog-content .load-more-btn {
	background-color: #1d3f6e;
	color: #fff;
	border: none;
	padding: 12px 32px;
	border-radius: 32px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 140px;
	justify-content: center;
}

.main-blog-content .load-more-btn:hover:not(:disabled) {
	background-color: rgb(18.3597122302, 39.8848920863, 69.6402877698);
	transform: translateY(-2px);
}

.main-blog-content .load-more-btn:disabled {
	background-color: #6c757d;
	cursor: not-allowed;
	transform: none;
	opacity: 0.7;
}

@media (max-width: 768px) {

	.main-blog-content .load-more-btn {
		padding: 10px 24px;
		font-size: 14px;
		min-width: 120px;
	}
}

.main-blog-content .load-more-btn .btn-text {
	transition: opacity 0.3s ease;
}

.main-blog-content .load-more-btn .loading-spinner svg {
	animation: spin 1s linear infinite;
}

.main-blog-content .load-more-btn.loading .btn-text {
	opacity: 0;
}

.main-blog-content .load-more-btn.loading .loading-spinner {
	display: inline-block !important;
}

@keyframes spin {

	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.blog-categories-section {
	background-color: #f8f8f8;
	padding: 20px 0;
	margin-bottom: 60px;
}

.blog-categories-section .container {
	max-width: 1200px;
	margin: 0 auto;
}

.blog-categories-section .categories-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	overflow-x: auto;
	white-space: nowrap;
	padding: 0 20px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

.blog-categories-section .categories-row::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

@media (max-width: 768px) {

	.blog-categories-section .categories-row {
		gap: 30px;
		padding: 0 15px;
	}
}

@media (max-width: 576px) {

	.blog-categories-section .categories-row {
		gap: 25px;
		padding: 0 10px;
	}
}

.blog-categories-section .category-link {
	color: #3e444d;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 8px 0;
	position: relative;
	flex-shrink: 0;
}

.blog-categories-section .category-link:hover {
	color: #f36649;
}

.blog-categories-section .category-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #f36649;
	transition: width 0.3s ease;
}

.blog-categories-section .category-link:hover::after {
	width: 100%;
}

@media (max-width: 768px) {

	.blog-categories-section .category-link {
		font-size: 15px;
	}
}

@media (max-width: 576px) {

	.blog-categories-section .category-link {
		font-size: 14px;
	}
}

.lead-magnet-cta {
	background-color: #1d3f6e;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 40px;
}

.lead-magnet-cta .lead-magnet-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
}

@media (max-width: 768px) {

	.lead-magnet-cta .lead-magnet-wrapper {
		flex-direction: column;
		text-align: center;
		gap: 24px;
	}
}

.lead-magnet-cta .lead-magnet-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: 100%;
	text-align: center;
}

.lead-magnet-cta .lead-magnet-visual {
	flex: 0 0 auto;
	width: 100%;
}

.lead-magnet-cta .lead-magnet-visual .book-cover {
	position: relative;
	width: 100%;
}

.lead-magnet-cta .lead-magnet-visual .book-cover img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	object-fit: contain;
}

.lead-magnet-cta .lead-magnet-text h2 {
	color: white;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 0;
}

@media (max-width: 768px) {

	.lead-magnet-cta .lead-magnet-text h2 {
		font-size: 18px;
	}
}

.lead-magnet-cta .lead-magnet-button {
	width: 100%;
}

.lead-magnet-cta .lead-magnet-button .lead-magnet-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 8px;
	background-color: #f36649;
	color: white;
	border: 2px solid #f36649;
	border-radius: 8px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.lead-magnet-cta .lead-magnet-button .lead-magnet-btn img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
	flex-shrink: 0;
}

.lead-magnet-cta .lead-magnet-button .lead-magnet-btn:hover {
	background-color: transparent;
	color: #f36649;
}

.lead-magnet-cta .lead-magnet-button .lead-magnet-btn:hover img {
	filter: none;
}

@media (max-width: 768px) {

	.lead-magnet-cta .lead-magnet-button .lead-magnet-btn {
		padding: 10px 16px;
		font-size: 12px;
	}

	.lead-magnet-cta .lead-magnet-button .lead-magnet-btn img {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 576px) {

	.banner_section {
		padding: 40px 0;
	}

	.banner-title {
		font-size: 1.75rem;
		line-height: 1.3;
		margin-bottom: 24px;
	}

	.banner-subtitle {
		font-size: 0.95rem;
		margin-bottom: 32px;
		padding: 0 15px;
	}

	.subscribe-btn {
		padding: 10px 24px;
		font-size: 0.9rem;
	}

	.featured-post-image {
		height: 200px;
		margin-bottom: 16px;
	}

	.featured-post-content .post-category {
		font-size: 11px;
		margin-bottom: 10px;
	}

	.featured-post-content .post-title h4 {
		font-size: 18px;
		line-height: 1.3;
	}

	.featured-post-content .post-excerpt {
		font-size: 13px;
		margin-bottom: 12px;
	}

	.featured-post-content .post-meta {
		font-size: 11px;
		gap: 6px;
		margin-bottom: 12px;
	}

	.featured-posts-header h4 {
		font-size: 16px;
		padding-bottom: 8px;
	}

	.featured-posts-list .featured-post-item {
		padding: 12px 0;
	}

	.featured-posts-list .featured-post-item .post-category {
		font-size: 10px;
		margin-bottom: 4px;
	}

	.featured-posts-list .featured-post-item .post-title h6 {
		font-size: 14px;
		line-height: 1.2;
	}

	.featured-posts-list .featured-post-item .post-meta {
		font-size: 11px;
		gap: 4px;
	}

	.blog-categories-section {
		padding: 15px 0;
		margin-bottom: 40px;
	}

	.blog-categories-section .categories-row {
		gap: 15px;
		padding: 0 15px;
	}

	.blog-categories-section .category-link {
		font-size: 14px;
		padding: 6px 0;
	}

	.twoColomnBlogsSec {
		margin-bottom: 40px;
	}

	.twoColomnBlogsSec .row {
		row-gap: 20px;
	}
}

@media (max-width: 768px) {

	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.twoColomnBlogsSec .container {
		max-width: 100%;
	}
}

@media (max-width: 768px) {

	.featured-post-content .post-title a,
	.featured-posts-list .featured-post-item .post-title a {
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.read-playbook-btn {
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

@media (max-width: 480px) {

	.banner_section {
		padding: 25px 0;
	}

	.banner-title {
		font-size: 1.4rem;
		line-height: 1.3;
		margin-bottom: 0.5rem;
	}

	.banner-subtitle {
		font-size: 0.85rem;
		margin-bottom: 1rem;
		padding: 0 10px;
		line-height: 1.5;
	}

	.subscribe-btn {
		padding: 7px 18px;
		font-size: 0.8rem;
	}

	.featured-post-image {
		height: 180px;
		margin-bottom: 14px;
	}

	.featured-post-content .post-category {
		font-size: 10px;
		margin-bottom: 8px;
	}

	.featured-post-content .post-title h4 {
		font-size: 16px;
		line-height: 1.2;
	}

	.featured-post-content .post-excerpt {
		font-size: 12px;
		margin-bottom: 10px;
		line-height: 1.4;
	}

	.featured-post-content .post-meta {
		font-size: 10px;
		gap: 4px;
		margin-bottom: 10px;
	}

	.featured-posts-header h4 {
		font-size: 15px;
		padding-bottom: 6px;
	}

	.featured-posts-list .featured-post-item {
		padding: 10px 0;
	}

	.featured-posts-list .featured-post-item .post-category {
		font-size: 9px;
		margin-bottom: 3px;
	}

	.featured-posts-list .featured-post-item .post-title h6 {
		font-size: 13px;
		line-height: 1.1;
	}

	.featured-posts-list .featured-post-item .post-meta {
		font-size: 10px;
		gap: 3px;
	}

	.blog-categories-section {
		padding: 12px 0;
		margin-bottom: 30px;
	}

	.blog-categories-section .categories-row {
		gap: 12px;
		padding: 0 10px;
	}

	.blog-categories-section .category-link {
		font-size: 13px;
		padding: 4px 0;
	}

	.twoColomnBlogsSec {
		margin-bottom: 30px;
	}

	.twoColomnBlogsSec .row {
		row-gap: 15px;
	}
}

@media (max-width: 991px) {

	.twoColomnBlogsSec .row {
		margin: 0;
	}

	.twoColomnBlogsSec .col-lg-6 {
		padding: 0 15px;
	}
}

@media (max-width: 768px) {

	.twoColomnBlogsSec .row {
		margin: 0 -15px;
	}

	.twoColomnBlogsSec .col-lg-6 {
		padding: 0 15px;
	}
}

@media (max-width: 768px) {

	.featured-post-content .post-excerpt {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.featured-posts-list .featured-post-item .post-title h2,
	.featured-posts-list .featured-post-item .post-title h6 {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (max-width: 768px) {

	.featured-post-content .post-title a,
	.featured-posts-list .featured-post-item .post-title a {
		padding: 8px 0;
		margin: -8px 0;
	}

	.read-playbook-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {

	.twoColHorizontalCardSec .row {
		margin: 0;
	}

	.twoColHorizontalCardSec .row .col-lg-6 {
		width: 100%;
		padding: 0;
		margin-bottom: 24px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout {
		flex-direction: column;
		margin: 0;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-image-col {
		order: 1;
		margin-bottom: 16px;
		width: 100%;
		padding: 0;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-image-col .mobile-blog-image {
		width: 100%;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-image-col .mobile-blog-image img {
		width: 100%;
		height: 200px;
		object-fit: cover;
		border-radius: 12px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col {
		order: 2;
		width: 100%;
		padding: 0;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card {
		padding: 0;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-category {
		color: #f36649;
		font-size: 12px;
		font-weight: 600;
		margin-bottom: 8px;
		text-transform: capitalize;
		letter-spacing: 0.5px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-title {
		font-size: 16px;
		font-weight: 600;
		line-height: 1.4;
		color: #121212;
		margin-bottom: 12px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-title a {
		color: #121212;
		text-decoration: none;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-title a:hover {
		color: #f36649;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-excerpt {
		color: #525760;
		line-height: 1.6;
		margin-bottom: 12px;
		font-size: 14px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-meta {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 13px;
		color: #525760;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-meta .meta-item {
		color: #525760;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-meta .meta-separator {
		color: #e5e5e8;
	}
}

@media (max-width: 576px) {

	.twoColHorizontalCardSec .row {
		margin: 0;
	}

	.twoColHorizontalCardSec .row .col-lg-6 {
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-image-col {
		margin-bottom: 12px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-image-col .mobile-blog-image img {
		height: 180px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-category {
		font-size: 11px;
		margin-bottom: 6px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-title {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-excerpt {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.twoColHorizontalCardSec .mobile-vertical-layout .mobile-content-col .mobile-blog-card .mobile-post-meta {
		font-size: 12px;
		gap: 6px;
	}
}

@media (max-width: 768px) {

	.main-blog-content .container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.main-blog-content .row:first-child .col-lg-8 {
		width: 100% !important;
		padding: 0 !important;
	}

	.main-blog-content .row:first-child .col-lg-4 {
		display: none !important;
	}

	.main-blog-content .blog-posts-header {
		margin-bottom: 20px !important;
	}

	.main-blog-content .blog-posts-header h2 {
		font-size: 20px !important;
		margin-bottom: 0 !important;
		line-height: 1.3 !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item {
		margin-bottom: 24px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout {
		flex-direction: column !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-thumbnail {
		flex: none !important;
		margin-bottom: 16px !important;
		display: flex !important;
		justify-content: center !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-thumbnail img {
		width: 100% !important;
		height: 240px !important;
		object-fit: cover !important;
		border-radius: 12px !important;
		max-width: 100% !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content {
		flex: 1 !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-category {
		color: #f36649 !important;
		font-size: 12px !important;
		font-weight: 600 !important;
		margin-bottom: 8px !important;
		text-transform: capitalize !important;
		letter-spacing: 0.5px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-title {
		font-size: 16px !important;
		font-weight: 600 !important;
		line-height: 1.4 !important;
		color: #121212 !important;
		margin-bottom: 12px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-title a {
		color: #121212 !important;
		text-decoration: none !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-title a:hover {
		color: #f36649 !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-excerpt {
		color: #525760 !important;
		line-height: 1.6 !important;
		margin-bottom: 12px !important;
		font-size: 14px !important;
		display: -webkit-box !important;
		-webkit-line-clamp: 2 !important;
		-webkit-box-orient: vertical !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-meta {
		display: flex !important;
		align-items: center !important;
		gap: 8px !important;
		font-size: 13px !important;
		color: #525760 !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-meta .meta-item {
		color: #525760 !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-meta .meta-separator {
		color: #e5e5e8 !important;
	}

	.main-blog-content .cta-sidebar {
		margin-top: 40px !important;
	}
}

@media (max-width: 576px) {

	.main-blog-content .container {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.main-blog-content .blog-posts-header {
		margin-bottom: 16px !important;
	}

	.main-blog-content .blog-posts-header h2 {
		font-size: 18px !important;
		line-height: 1.2 !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item {
		margin-bottom: 20px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-thumbnail {
		margin-bottom: 12px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-thumbnail img {
		height: 220px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-category {
		font-size: 11px !important;
		margin-bottom: 6px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-title {
		font-size: 15px !important;
		margin-bottom: 10px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-excerpt {
		font-size: 13px !important;
		margin-bottom: 10px !important;
	}

	.main-blog-content .blog-posts-list .mobile-blog-post-item .mobile-post-layout .mobile-post-content .mobile-post-meta {
		font-size: 12px !important;
		gap: 6px !important;
	}
}

.lead-magnet-cta {
	background: #1d3f6e;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(29, 63, 110, 0.15);
}

@media (max-width: 768px) {

	.lead-magnet-cta {
		padding: 24px 20px;
	}
}

.lead-magnet-cta__image {
	margin-bottom: 24px;
}

.lead-magnet-cta__image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.lead-magnet-cta__content {
	position: relative;
	z-index: 2;
}

.lead-magnet-cta__title {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 24px;
	text-align: center;
}

@media (max-width: 768px) {

	.lead-magnet-cta__title {
		font-size: 16px;
		margin-bottom: 20px;
	}
}

.lead-magnet-cta__button {
	background: #f36649;
	color: #fff;
	border: none;
	padding: 14px 24px;
	border-radius: 32px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	justify-content: center;
}

.lead-magnet-cta__button:hover {
	background: #e15538;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(243, 102, 73, 0.3);
}

.lead-magnet-cta__button img {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	filter: brightness(0) invert(1);
}

@media (max-width: 768px) {

	.lead-magnet-cta__button {
		padding: 12px 20px;
		font-size: 13px;
	}
}

.editor-picks-background {
	background-color: #f8f8f8;
}

.editors-picks-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

@media (max-width: 768px) {

	.editors-picks-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 30px;
	}
}

@media (max-width: 576px) {

	.editors-picks-grid {
		gap: 20px;
		margin-bottom: 24px;
	}
}

.editors-pick-card {
	display: flex;
	flex-direction: column;
	background: transparent;
	overflow: hidden;
	transition: all 0.3s ease;
}

.editors-pick-card:hover {
	transform: none;
}

@media (max-width: 768px) {

	.editors-pick-card {
		flex-direction: column;
		border: none;
	}

	.editors-pick-card:hover {
		transform: none;
	}
}

.editors-pick-image {
	width: 100%;
	max-height: 320px;
	overflow: hidden;
	position: relative;
	border-radius: 12px;
	margin-bottom: 16px;
}

@media (max-width: 768px) {

	.editors-pick-image {
		height: 240px;
		margin-bottom: 16px;
	}
}

@media (max-width: 576px) {

	.editors-pick-image {
		height: 220px;
		margin-bottom: 12px;
	}
}

.editors-pick-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
}

.editors-pick-image:hover img {
	transform: none;
}

.editors-pick-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

@media (max-width: 768px) {

	.editors-pick-content {
		padding: 16px;
	}
}

@media (max-width: 576px) {

	.editors-pick-content {
		padding: 12px;
	}
}

.editors-pick-category {
	color: #f36649;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {

	.editors-pick-category {
		font-size: 11px;
		margin-bottom: 6px;
	}
}

.editors-pick-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #121212;
	margin-bottom: 12px;
}

@media (max-width: 768px) {

	.editors-pick-title {
		font-size: 15px;
		margin-bottom: 10px;
	}
}

@media (max-width: 576px) {

	.editors-pick-title {
		font-size: 14px;
		margin-bottom: 8px;
	}
}

.editors-pick-title a {
	color: #121212;
	text-decoration: none;
}

.editors-pick-title a:hover {
	color: #f36649;
}

.editors-pick-excerpt {
	color: #525760;
	line-height: 1.6;
	margin-bottom: 12px;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 768px) {

	.editors-pick-excerpt {
		font-size: 13px;
		margin-bottom: 10px;
		-webkit-line-clamp: 2;
	}
}

@media (max-width: 576px) {

	.editors-pick-excerpt {
		font-size: 12px;
		margin-bottom: 8px;
	}
}

.editors-pick-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #525760;
	margin-top: auto;
}

@media (max-width: 768px) {

	.editors-pick-meta {
		font-size: 11px;
		gap: 4px;
	}
}

@media (max-width: 576px) {

	.editors-pick-meta {
		font-size: 10px;
		gap: 3px;
	}
}

.editors-pick-meta .meta-item {
	color: #525760;
}

.editors-pick-meta .meta-item a {
	color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
	text-decoration: none;
}

.editors-pick-meta .meta-item a:hover {
	color: rgba(var(--bs-link-hover-color-rgb), var(--bs-link-opacity, 1));
}

.editors-pick-meta .meta-separator {
	color: #e5e5e8;
}

.category-page .banner_section {
	padding: 120px 0 60px;
	background: #fff;
	text-align: center;
	margin-bottom: 40px;
}

.category-page .banner_section .container {
	max-width: 800px;
	margin: 0 auto;
}

.category-page .banner_section h1,
.category-page .banner_section h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #121212;
	margin-bottom: 32px;
	line-height: 1.2;
}

.category-page .banner_section p {
	font-size: 1.125rem;
	color: #525760;
	margin: 0 auto;
	line-height: 1.6;
	max-width: 600px;
	text-align: center;
}

@media (max-width: 768px) {

	.category-page .banner_section {
		padding: 60px 0 40px;
		margin-bottom: 20px;
	}

	.category-page .banner_section h1,
	.category-page .banner_section h2 {
		font-size: 2rem;
		line-height: 1.3;
		margin-bottom: 28px;
	}
}

@media (max-width: 576px) {

	.category-page .banner_section {
		padding: 40px 0;
		margin-bottom: 30px;
	}

	.category-page .banner_section h1,
	.category-page .banner_section h2 {
		font-size: 1.75rem;
		margin-bottom: 24px;
	}

	.category-page .banner_section p {
		font-size: 0.95rem;
		padding: 0 15px;
	}
}

.category-page .twoColomnBlogsSec .featured-post-wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-image {
	width: 100% !important;
	height: 320px !important;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 24px !important;
	position: relative;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-image {
		height: 260px !important;
		margin-bottom: 20px !important;
	}
}

@media (max-width: 576px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-image {
		height: 220px !important;
	}
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-category {
	color: #f36649;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px !important;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-category {
		font-size: 12px;
		margin-bottom: 6px !important;
	}
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title {
	margin-bottom: 6px !important;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title {
		margin-bottom: 4px !important;
	}
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h2,
.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h4 {
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: #121212;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h2,
	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h4 {
		font-size: 15px !important;
		line-height: 1.3 !important;
	}
}

@media (max-width: 576px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h2,
	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h4 {
		font-size: 14px !important;
	}
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h2 a,
.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h4 a {
	color: #121212;
	text-decoration: none;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h2 a:hover,
.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-title h4 a:hover {
	color: #f36649;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px !important;
	color: #6c757d;
	margin-bottom: 10px !important;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-meta {
		font-size: 11px !important;
		gap: 4px;
		margin-bottom: 8px !important;
	}
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-meta .meta-item {
	color: #6c757d;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-meta .meta-item a {
	color: #6c757d;
	text-decoration: none;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-meta .meta-item a:hover {
	color: #f36649;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .post-meta .meta-separator {
	color: #dee2e6;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .read-playbook-cta {
	margin-top: auto;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .read-playbook-cta .read-playbook-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1d3f6e;
	color: #fff;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .read-playbook-cta .read-playbook-btn:hover {
	background: rgb(18.3597122302, 39.8848920863, 69.6402877698);
	transform: translateY(-2px);
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .read-playbook-cta .read-playbook-btn svg {
	transition: transform 0.3s ease;
}

.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .read-playbook-cta .read-playbook-btn:hover svg {
	transform: translateX(4px);
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper .featured-post-content .read-playbook-cta .read-playbook-btn {
		padding: 10px 20px;
		font-size: 13px;
	}
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar {
	height: 100%;
	display: flex;
	flex-direction: column;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-header {
	margin-bottom: 8px !important;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-header {
		margin-bottom: 6px !important;
	}
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-header h4 {
	font-size: 18px;
	font-weight: 600;
	color: #121212;
	margin-bottom: 0;
	padding-bottom: 4px !important;
	border-bottom: 1px solid #dee2e6;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-header h4 {
		font-size: 16px;
		padding-bottom: 3px !important;
	}
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list {
	flex: 1;
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item {
	padding: 8px 0 !important;
	border-bottom: 1px solid #dee2e6;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item {
		padding: 6px 0 !important;
	}
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item:last-child {
	border-bottom: none;
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-category {
	color: #f36649;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-category {
		font-size: 12px;
		margin-bottom: 6px;
	}
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title {
	margin-bottom: 8px;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title {
		margin-bottom: 6px;
	}
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title h2,
.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title h6 {
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: #121212;
	margin-bottom: 0;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title h2,
	.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title h6 {
		font-size: 15px !important;
		line-height: 1.3 !important;
	}
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title h2 a,
.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title h6 a {
	color: #121212;
	text-decoration: none;
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title h2 a:hover,
.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-title h6 a:hover {
	color: #f36649;
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px !important;
	color: #6c757d;
}

@media (max-width: 768px) {

	.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-meta {
		font-size: 11px !important;
		gap: 4px;
	}
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-meta .meta-item {
	color: #6c757d;
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-meta .meta-item a {
	color: #007bff;
	text-decoration: none;
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-meta .meta-item a:hover {
	color: #f36649;
}

.category-page .twoColomnBlogsSec .featured-posts-sidebar .featured-posts-list .featured-post-item .post-meta .meta-separator {
	color: #dee2e6;
}

.category-page .twoColomnBlogsSec .row {
	align-items: stretch !important;
}

.category-page .twoColomnBlogsSec .col-lg-6 {
	display: flex !important;
	flex-direction: column !important;
}

.category-page .breadcrums {
	background: #f8f9fa;
	padding: 20px 0;
	margin-bottom: 40px;
}

.category-page .breadcrums ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.category-page .breadcrums ul li {
	color: #666;
}

.category-page .breadcrums ul li a {
	color: #007bff;
	text-decoration: none;
	font-weight: 500;
}

.category-page .breadcrums ul li a:hover {
	text-decoration: underline;
}

.category-page .breadcrums ul li:not(:last-child)::after {
	content: ">";
	margin-left: 10px;
	color: #ddd;
}

.category-page .fourColumnSec .d-sm-flex h3 {
	font-size: 2rem;
	font-weight: 700;
	color: #333;
	margin: 0;
}

.category-page .fourColumnSec .d-sm-flex .blog_filter .post_filter {
	padding: 10px 15px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	background: #fff;
	font-size: 1rem;
	color: #333;
	cursor: pointer;
}

.category-page .fourColumnSec .d-sm-flex .blog_filter .post_filter:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.category-page .fourColumnSec .blog_card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.category-page .fourColumnSec .blog_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-page .fourColumnSec .blog_card .blog_image {
	position: relative;
	overflow: hidden;
}

.category-page .fourColumnSec .blog_card .blog_image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.category-page .fourColumnSec .blog_card .blog_image:hover img {
	transform: scale(1.05);
}

.category-page .fourColumnSec .blog_card h6 {
	padding: 20px 20px 15px;
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
}

.category-page .fourColumnSec .blog_card h6 a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.category-page .fourColumnSec .blog_card h6 a:hover {
	color: #007bff;
}

.category-page .fourColumnSec .blog_card p {
	padding: 0 20px 15px;
	margin: 0;
	color: #666;
	font-size: 0.9rem;
	line-height: 1.5;
}

.category-page .fourColumnSec .blog_card .meta_box {
	padding: 0 20px 20px;
	font-size: 0.8rem;
	color: #666;
}

.category-page .fourColumnSec .blog_card .meta_box .border-end {
	border-right: 1px solid #e9ecef;
}

.category-page .categorySec .blog_card {
	text-align: center;
	padding: 30px 20px;
}

.category-page .categorySec .blog_card .blog_icon img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 auto;
}

.category-page .categorySec .blog_card h6 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	margin: 15px 0;
}

.category-page .categorySec .blog_card p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.5;
}

.category-page .categorySec .blog_card .navyBlue_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #036;
	color: #fff;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.category-page .categorySec .blog_card .navyBlue_btn:hover {
	background: #024;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

.category-page .categorySec .blog_card .navyBlue_btn img {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

.category-page .categorySec .blog_card .navyBlue_btn:hover img {
	transform: translateY(-2px);
}

@media (max-width: 991px) {

	.category-page .twoColomnBlogsSec .featured-post-wrapper {
		margin-bottom: 30px;
	}

	.category-page .twoColomnBlogsSec .featured-posts-sidebar {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {

	.category-page .fourColumnSec .d-sm-flex {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start !important;
	}

	.category-page .fourColumnSec .d-sm-flex h3 {
		font-size: 1.5rem;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--orange: #f36649;
	--black: #000;
	--black700: #121212;
	--white: #fff;
	--grey300: #dcdcdc;
	--navyBlue: #1d3f6e;
	--paraColor: #737b8b;
	--paraColor2: #525760;
	--cardBgColor: #f6f7f9;
	--box-shadow: 0 10px 20px 0 #08071c1f;
	--transition: all 0.2s linear;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: var(--white);
	padding-top: 0; /* Remove padding to prevent header cutoff */
}

a,
a:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

ul,
ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--black);
}

h1 span,
h2 span,
h3 span {
	color: var(--orange);
}

h1 {
	font-size: 56px;
	font-weight: 600;
	line-height: 67.2px;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 48px;
	font-weight: 600;
	line-height: 58.8px;
	letter-spacing: -0.5px;
}

h3 {
	font-size: 40px;
	font-weight: 600;
	line-height: 48px;
	letter-spacing: -0.5px;
}

h4 {
	font-size: 28px;
	font-weight: 600;
	line-height: 33.6px;
	color: var(--black700);
}

h5 {
	font-size: 24px;
	font-weight: 600;
	line-height: 28.8px;
}

h6 {
	font-size: 22px;
	font-weight: 600;
	line-height: 33px;
}

h4 > a,
h5 > a,
h6 > a {
	color: var(--black700);
}

p {
	font-size: 16px;
	font-weight: 400;
	line-height: 25.6px;
	color: var(--paraColor2);
}

/* components */
.orange_btn {
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 20px 30px;
	color: var(--white);
	border-radius: 190px;
	transition: var(--transition);
	background: var(--orange);
}

.orange_btn:hover {
	transform: scale(1.05);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.navyBlue_btn {
	font-size: 14px;
	font-weight: 500;
	line-height: 13px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	color: var(--white);
	border-radius: 190px;
	transition: var(--transition);
	background: var(--navyBlue);
}

.navyBlue_btn:hover {
	transform: scale(1.05);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.navyBorder_btn {
	font-size: 14px;
	font-weight: 500;
	line-height: 13px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	color: var(--navyBlue);
	border-radius: 190px;
	transition: var(--transition);
	border: 2px solid var(--navyBlue);
}

.navyBorder_btn:hover {
	transform: scale(1.05);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.navyBlue_light_btn {
	font-size: 14px;
	font-weight: 500;
	line-height: 13px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	color: var(--navyBlue);
	border-radius: 190px;
	transition: var(--transition);
	background: rgba(29, 63, 110, 0.0784313725);
}

.navyBlue_light_btn:hover {
	transform: scale(1.05);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.navyBlue_btn_border {
	font-size: 14px;
	font-weight: 500;
	line-height: 13px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	color: var(--navyBlue);
	border-radius: 190px;
	transition: var(--transition);
	background: transparent;
	border: 2px solid var(--navyBlue);
}

.navyBlue_btn_border:hover {
	transform: scale(1.05);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.black_btn {
	font-size: 14px;
	font-weight: 500;
	line-height: 13px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	color: var(--white);
	border-radius: 190px;
	transition: var(--transition);
	border: 2px solid var(--black);
	background-color: var(--black);
}

.black_btn:hover {
	transform: scale(1.05);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.px-lg-6 {
	padding-inline: 112px;
}

.px-lg-20 {
	padding-inline: 200px;
}

.py-100 {
	padding-block: 100px;
}

.pt-60 {
	padding-top: 60px;
}

.pb-60 {
	padding-bottom: 60px;
}

.my-100 {
	margin-block: 100px;
}

.mt-100 {
	margin-top: 100px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mt-80 {
	margin-top: 80px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mt-60 {
	margin-top: 60px;
}

.mb-60 {
	margin-bottom: 60px;
}

.bgColor-1 {
	background-color: var(--cardBgColor);
}

/* header css - Sticky styles moved to _nav.scss */
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu {
	max-width: 1296px;
	margin: 0 auto;
}

.navigation_wrapper {
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	justify-content: flex-start !important;
}

.desktop-search-container {
	display: flex !important;
	align-items: center !important;
	margin-left: 8px !important; /* small gap after menu */
	margin-right: 8px !important; /* small gap before buttons */
}

.desktop-search-container .search-container {
	position: relative;
}

.desktop-search-container .search-container .search-form {
	display: flex;
	align-items: center;
	position: relative;
}

.desktop-search-container .search-container .search-input {
	width: 160px;
	padding: 8px 36px 8px 16px;
	border: 1px solid #e5e5e8;
	border-radius: 32px;
	font-size: 14px;
	background: #fff;
	transition: all 0.2s ease;
	height: 40px;
	box-sizing: border-box;
}

.desktop-search-container .search-container .search-input:focus {
	outline: none;
	border-color: #f36649;
	box-shadow: 0 0 0 3px rgba(243, 102, 73, 0.1);
}

.desktop-search-container .search-container .search-input::placeholder {
	color: #737b8b;
}

.desktop-search-container .search-container .search-button {
	position: absolute;
	right: 6px;
	background: none;
	border: none;
	color: #525760;
	cursor: default; /* purely visual icon */
	pointer-events: none; /* disable hover/click */
	padding: 3px;
	border-radius: 50%;
	transition: none;
}

.desktop-search-container .search-container .search-button svg {
	width: 14px;
	height: 14px;
}

.desktop-search-container .search-container .search-results {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	background: #fff;
	border: 1px solid #e5e5e8;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 400px;
	overflow-y: auto;
	display: none;
	margin-top: 4px;
}

.desktop-search-container .search-container .search-results .search-result-item {
	border-bottom: 1px solid #f6f7f9;
	transition: background-color 0.2s ease;
}

.desktop-search-container .search-container .search-results .search-result-item:last-child {
	border-bottom: none;
}

.desktop-search-container .search-container .search-results .search-result-item:hover,
.desktop-search-container .search-container .search-results .search-result-item.active {
	background-color: #f6f7f9;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-link {
	display: flex;
	padding: 12px 16px;
	text-decoration: none;
	color: inherit;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-link:hover {
	text-decoration: none;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-thumbnail {
	flex: 0 0 60px;
	margin-right: 12px;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-thumbnail img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-content {
	flex: 1;
	min-width: 0;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-content .search-result-title {
	font-size: 14px;
	font-weight: 600;
	color: #121212;
	margin-bottom: 4px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-content .search-result-excerpt {
	font-size: 12px;
	color: #525760;
	margin-bottom: 6px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-content .search-result-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: #737b8b;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-content .search-result-meta .search-result-author {
	font-weight: 500;
}

.desktop-search-container .search-container .search-results .search-result-item .search-result-content .search-result-meta .search-result-date {
	color: #737b8b;
}

.desktop-search-container .search-container .search-results .search-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #525760;
	font-size: 14px;
}

.desktop-search-container .search-container .search-results .search-loading .search-spinner {
	margin-right: 8px;
	color: #f36649;
}

.desktop-search-container .search-container .search-results .search-no-results {
	padding: 20px;
	text-align: center;
	color: #525760;
	font-size: 14px;
}

.desktop-search-container .search-container .search-results .search-error {
	padding: 20px;
	text-align: center;
	color: #dc3545;
	font-size: 14px;
}

header .max-mega-menu,
header .navbar-nav {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

header .max-mega-menu .mega-menu-item .mega-menu-link,
header .max-mega-menu .mega-menu-item .menu-image-title-after,
header .navbar-nav .nav-link,
header .navbar-nav .nav-link.active,
header .navbar-nav .nav-link.show {
	color: var(--black700) !important;
	transition: var(--transition) !important;
	position: relative !important;
	display: inline-block;
	font-size: 16px !important;
}

header .max-mega-menu .mega-menu-item .mega-menu-link::after,
header .navbar-nav .nav-link.active::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	border-radius: 20px;
	background-color: var(--grey300);
}

.full_width_header .navbar-collapse {
	justify-content: flex-end;
}

.full_width_header .mega-menu-wrap {
	display: flex !important;
	justify-content: flex-start !important;
	width: auto !important;
	margin-right: auto !important; /* push following items (search + buttons) to the right */
}

.mega-menu-wrap li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu {
	border-top: 1px solid var(--paraColor) !important;
	transform: translate(0, 20px) !important;
	box-shadow: 0 20px 20px rgba(115, 123, 139, 0.2) !important;
}

.full_width_header .mega-sub-menu li {
	margin-bottom: 14px !important;
}

.full_width_header .mega-block-title {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: var(--black) !important;
	opacity: 0.5;
}

header .max-mega-menu .mega-menu-item .menu-image {
	width: 45px !important;
	background-color: #f6f7f9;
	padding: 10px;
	border-radius: 50%;
}

header .max-mega-menu .mega-menu-item a.menu-image-title-after {
	width: 100%;
	padding: 10px;
	border-radius: 12px;
	transition: var(--transition);
}

.btns_wrapper {
	display: flex !important;
	align-items: center !important;
	column-gap: 12px !important;
	width: auto !important;
	justify-content: flex-start !important; /* sit immediately after search */
	margin-left: 0 !important;
}

.btns_wrapper a {
	white-space: nowrap !important;
}

.menu-explore-by-category-container ul li a {
	padding: 10px;
	border-radius: 8px;
	display: block;
	transition: var(--transition);
}

.menu-explore-by-category-container ul li a:hover {
	background-color: #edf0f3;
}

.menu-explore-by-category-container ul li a .menu-image {
	padding: 0 !important;
	border-radius: 5px !important;
	margin-bottom: -20px;
}

.menu-core-features-container ul li a .menu-image {
	margin-bottom: -20px;
}

.menu-core-features-container ul li .menu-item-description,
.menu-explore-by-category-container ul li .menu-item-description {
	display: block;
	line-height: normal;
}

#menu-core-features,
#menu-explore-by-category {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

#menu-core-features .menu-item,
#menu-explore-by-category .menu-item {
	width: 48% !important;
	border-radius: 12px;
}

#menu-explore-by-topic .menu-item a {
	color: var(--navyBlue);
	font-weight: 500;
}

.widget_custom_html .custom-html-widget {
	text-align: center;
}

.mobile-burger-menu {
	display: none !important;
}

#menu-core-features .menu-item a,
.menu-solutions-by-agent-menu-container ul li.menu-item a,
.menu-solutions-by-industry-container ul li.menu-item a {
	padding: 10px;
	transition: var(--transition);
}

#menu-core-features .menu-item:hover,
.menu-solutions-by-agent-menu-container ul li.menu-item a:hover,
.menu-solutions-by-industry-container ul li.menu-item a:hover {
	background-color: #edf0f3;
}

.slide-menu {
	position: fixed;
	width: 450px;
	max-width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	display: none;
	overflow: hidden;
	box-sizing: border-box;
	transform: translateX(100%);
	overflow-y: auto;
	z-index: 1000;
	padding: 20px;
	background-color: var(--white);
}

.slide-menu,
.slide-menu .slide-menu__slider {
	transition: transform 0.3s ease-in-out;
	will-change: transform;
}

.slide-menu .slide-menu__slider {
	width: 100%;
	transform: translateX(0);
}

.slide-menu ul {
	position: relative;
	width: 100%;
	margin: 0;
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 10px;
}

.slide-menu ul li {
	width: 100%;
}

.slide-menu ul li a {
	color: var(--black700);
}

.slide-menu ul ul {
	position: absolute;
	top: 0;
	left: 100%;
	display: none;
}

.slide-menu__slider .sub-menu li {
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}

.slide-menu ul a {
	display: block;
}

.slide-menu a {
	cursor: pointer;
}

.nav-logo {
	width: 150px;
}

.slide-menu .controls.clear {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-left: auto;
}

.nav-left-arrow {
	display: none;
}

.slide-menu__backlink {
	width: 30px;
	height: 30px;
	font-size: 0;
	border-radius: 50%;
	background-color: var(--cardBgColor);
	background-image: url(../images/icon/arrow-narrow-left.svg);
	background-size: 25px;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 10px;
}

.nav-close.slide-menu__control {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: var(--cardBgColor);
}

#menu-item-733,
#menu-item-734,
#menu-item-735 {
	padding-left: 60px;
}

.menu-item-has-children {
	background-image: url(../images/icon/chevron-right.svg);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 95% center;
}

.slide-menu__slider .menu-image {
	width: 45px !important;
	background-color: #f6f7f9;
	padding: 10px;
	border-radius: 50%;
}

.slide-menu__slider ul li#menu-item-649 a .menu-image {
	padding: 0 !important;
	border-radius: 5px !important;
	margin-bottom: -20px;
}

.menu-core-features-container ul li a .menu-image {
	margin-bottom: -20px;
}

.menu-item-description {
	color: #737b8b;
	font-size: 14px;
	padding-left: 55px;
}

main {
	margin-top: 0; /* Remove negative margin to prevent overlap with sticky header */
	padding-top: 0; /* Remove padding since breadcrumbs handle positioning */
}

/* banner section css */
.banner_section {
	padding: 120px 0 60px; /* Reduced top padding since header is now sticky */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.home_pg {
	padding-bottom: 0;
	margin-bottom: 100px;
}

.home_pg .bnr_content {
	padding-bottom: 100px;
}

.home_pg::before {
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 400px;
	background-color: var(--white);
}

.dashboard_img {
	position: relative;
	margin-top: 80px;
	text-align: center;
	border-radius: 16px;
}

.bnr_content {
	max-width: 700px;
	margin-inline: auto;
}

.bnr_content .orange_btn {
	margin-top: 20px;
}

.home_pg p {
	font-size: 12px;
	font-weight: 400;
	line-height: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.banner_tab_sec {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.banner_tab_sec::before {
	content: "";
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 400px;
	background-color: var(--white);
}

.dist-ai-dashboard__container {
	position: relative;
	border: 6px solid var(--white);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	border-radius: 30px;
	overflow: hidden;
	width: 100%;
	column-gap: 20px;
}

.dist-ai-dashboard__sidebar {
	width: 280px;
	padding: 20px;
	background: transparent;
}

.dist-ai-dashboard__content {
	flex: 1;
	padding: 40px;
	background: white;
	border-radius: 24px;
	margin: 20px 20px 20px 0;
}

.dist-ai-dashboard__menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	margin-bottom: 10px;
	border-radius: 8px;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	transition: all 0.3s;
}

.dist-ai-dashboard__menu-item.active {
	background: #000;
	color: white;
}

.dist-ai-dashboard__menu-item.active img {
	filter: brightness(2);
}

.dist-ai-dashboard__menu-icon {
	width: 24px;
	height: 24px;
}

.dist-ai-dashboard__screen {
	display: none;
	max-width: 800px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.dist-ai-dashboard__screen.active {
	display: block;
}

.dist-ai-dashboard__logo-container {
	margin-bottom: 40px;
	padding: 0;

	/* Remove padding to align with menu items */
	padding-left: 16px;

	/* Match menu item padding */
	display: flex;
}

.dist-ai-dashboard__logo {
	height: 36px;

	/* Slightly larger from 24px */
	width: auto;
}

@media (max-width: 768px) {

	.dist-ai-dashboard__container {
		flex-direction: column;
	}

	.dist-ai-dashboard__sidebar {
		width: auto;
		padding: 20px;
	}

	.dist-ai-dashboard__content {
		padding: 20px;
		margin: 0 20px 20px;
	}

	.dist-ai-dashboard__menu-item {
		padding: 8px 12px;
		margin-bottom: 8px;
	}

	.dist-ai-dashboard__logo-container {
		padding-left: 12px;
		margin-bottom: 20px;
	}

	.dist-ai-dashboard__screen {
		width: 100%;
		height: auto;
	}
}

/* Extra small devices */
@media (max-width: 480px) {

	.dist-ai-dashboard__menu-item {
		font-size: 13px;
	}
}

.moreEffective_sec {
	padding: 60px 0;
}

@media (max-width: 768px) {

	.moreEffective_sec {
		padding: 40px 0;
	}
}

.moreEffective_sec h2 {
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 25px;
}

@media (max-width: 768px) {

	.moreEffective_sec h2 {
		font-size: 32px;
		line-height: 1.2;
	}
}

@media (max-width: 576px) {

	.moreEffective_sec h2 {
		font-size: 28px;
	}
}

.moreEffective_sec .row {
	row-gap: 40px;
}

.moreEffective_sec .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 40px;
	max-width: 350px;
	height: 100%;
	margin-inline: auto;
	border-radius: 20px;
	box-shadow: var(--box-shadow);
}

.moreEffective_sec .col-md-4:nth-child(1) .item {
	border: 1px solid #ffc6da;
	box-shadow: 0 0 29px 4px rgba(255, 224, 235, 0.3882352941);
}

.moreEffective_sec .col-md-4:nth-child(2) .item {
	border: 1px solid #c7c2ff;
	box-shadow: 0 0 29px 4px rgba(119, 111, 236, 0.168627451);
}

.moreEffective_sec .col-md-4:nth-child(3) .item {
	border: 1px solid #ffd6c6;
	box-shadow: 0 0 29px 4px rgba(237, 130, 89, 0.168627451);
}

.twoColumnSec {
	padding-block: 100px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.row_loop .row {
	align-items: center;
	margin-bottom: 80px;
}

.row_loop .row:last-child {
	margin-bottom: 0;
}

.row_loop .row:nth-child(even) {
	flex-direction: row-reverse;
}

.howItWorks_content_wrapper {
	display: flex;
	column-gap: 20px;
	align-items: flex-start;
}

.idx {
	font-size: 52px;
	font-weight: 600;
	line-height: 40px;
	margin-bottom: 0;
	text-align: center;
	color: var(--grey300);
}

.socialPostSec {
	padding: 100px 0 50px;
}

.socialPostSec .row {
	row-gap: 20px;
	justify-content: center;
}

.post_card {
	column-gap: 20px;
	height: 100%;
	display: flex;
	align-items: flex-start;
	padding: 25px;
	border-radius: 20px;
	box-shadow: var(--box-shadow);
}

.post_icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--grey300);
	background-color: #e8f2ff;
}

.post_content {
	width: 70%;
}

.post_content .link {
	font-size: 17px;
	color: var(--black);
}

.carousalCard_wrapper .owl-stage-outer,
.review_card_wrapper .owl-stage-outer {
	padding-block: 50px;
}

.fullCarousalSec {
	position: relative;
}

.fullCarousalSec::before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100px;
	top: 0;
	left: 0;
	z-index: 10;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 10%, rgba(255, 255, 255, 0) 50%);
}

.fullCarousalSec::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100px;
	top: 0;
	right: 0;
	z-index: 10;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.75) 90%);
}

.carousal_card {
	padding: 100px 80px;
	border-radius: 20px;
	background-image: url(../images/banner-img.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	box-shadow: var(--box-shadow);
}

.carousal_card .row {
	align-items: center;
}

.carousalCard_wrapper .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 250px;
	margin-inline: auto;
	margin-bottom: -38px;
}

.carousalCard_wrapper .owl-prev,
.carousalCard_wrapper .owl-next {
	width: 50px;
	height: 50px;
	transition: var(--transition);
	border-radius: 50% !important;
	background-color: #f8f8f8 !important;
}

.carousalCard_wrapper .owl-prev:hover,
.carousalCard_wrapper .owl-next:hover {
	transition: var(--transition);
	color: var(--orange) !important;
	background-color: var(--grey300) !important;
}

.carousalCard_wrapper .owl-prev {
	background-image: url(../images/icon/chevron-left.svg) !important;
	background-size: 30px !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.carousalCard_wrapper .owl-next {
	background-image: url(../images/icon/chevron-right.svg) !important;
	background-size: 30px !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.owl-prev span,
.owl-next span {
	font-size: 0 !important;
	line-height: 38px;
}

.lovedSec {
	padding-block: 100px;
}

.review_card {
	padding: 30px;
	border-radius: 20px;
	background: #f8f8f8;
}

.profile_wrapper {
	column-gap: 10px;
	display: flex;
	align-items: center;
}

.review_card .star {
	width: 100px !important;
}

.profile_wrapper img {
	width: 50px !important;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.profile_wrapper p {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 19.2px;
	letter-spacing: -0.5px;
	color: var(--black);
}

.review_card_wrapper .owl-prev:hover,
.review_card_wrapper .owl-next:hover {
	transform: scale(1.05);
	transition: var(--transition);
	background-color: var(--orange) !important;
}

.review_card_wrapper .owl-prev {
	background-image: url(../images/icon/long-left-arrow.svg) !important;
	background-size: 20px !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.review_card_wrapper .owl-next {
	background-image: url(../images/icon/long-right-arrow.svg) !important;
	background-size: 20px !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.lovedMarketerSec {
	margin-block: 100px;
}

.lovedMarketerCard {
	padding: 32px;
	text-align: center;
	border-radius: 16px;
	background-color: var(--cardBgColor);
}

.profile_img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-inline: auto;
	margin-bottom: 40px;
}

.lovedMarketerCard p {
	margin-bottom: 0;
	display: inline;
}

.lovedMarketerCard span {
	color: var(--paraColor2);
}

.prfile_info {
	column-gap: 10px;
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lovedMarketerCard_wrapper .owl-stage-outer {
	padding-block: 40px;
}

.lovedMarketerCard_wrapper .owl-prev span {
	background-image: url(../images/icon/navyblue-arrow-left.svg) !important;
	background-size: 25px !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	display: block;
}

.lovedMarketerCard_wrapper .owl-next span {
	background-image: url(../images/icon/navyblue-arrow-right.svg) !important;
	background-size: 25px !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	display: block;
}

.lovedMarketerCard_wrapper .owl-prev:hover,
.lovedMarketerCard_wrapper .owl-next:hover {
	transform: scale(1.05);
	transition: var(--transition);
	background-color: var(--navyBlue) !important;
}

.lovedMarketerCard_wrapper .owl-prev:hover span,
.lovedMarketerCard_wrapper .owl-next:hover span {
	filter: invert(1) brightness(2);
}

.ctaSec {
	padding-top: 75px;
	background: linear-gradient(265.03deg, #eb4441 -17.1%, #254377 84%);
}

.cta_content {
	max-width: 1200px;
	margin-inline: auto;
}

.cta_footer_description {
	color: var(--white) !important;
}

.top_footer {
	padding-block: 40px;
}

.top_footer .row {
	row-gap: 20px;
	align-items: center;
	justify-content: space-between;
}

.top_footer .footer_link {
	column-gap: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.top_footer .footer_link .footer_menu {
	display: flex;
	align-items: center;
}

.top_footer .footer_link .footer_menu li {
	position: relative;
	padding-left: 50px;
}

.top_footer .footer_link .footer_menu li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 20%;
	width: 5px;
	height: 5px;
	border-radius: 20px;
	background-color: var(--orange);
}

.top_footer .footer_link .footer_menu li:first-child::before {
	position: relative;
}

.top_footer .footer_link .footer_menu li a {
	color: var(--black);
}

.social_links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.social_links img:hover {
	transform: scale(1.1);
	transition: var(--transition);
}

.btm_footer {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 100px;
}

.solutionImg_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 80px;
	border-bottom: 1px solid var(--grey300);
}

.solutionImg {
	width: 20%;
	padding-inline: 10px;
}

.solutionImg img {
	width: 100%;
}

.solutionsCardSec {
	padding-block: 100px;
}

.solutionsCardSec .row {
	row-gap: 30px;
	justify-content: center;
}

.solutions_card {
	height: 100%;
	padding: 32px;
	position: relative;
	border-radius: 16px;
	box-shadow: var(--box-shadow);
	background-color: var(--cardBgColor);
}

.solution_icon {
	width: 80px;
	height: 80px;
	padding: 24px;
	margin-bottom: 32px;
	border-radius: 50%;
	background-color: var(--white);
}

.solutions_card p {
	color: var(--paraColor);
}

.industrySec {
	background-color: var(--navyBlue);
}

.twoColumnBnrSec .row {
	row-gap: 40px;
}

.twoColumnBnrSec span.tag_bg {
	padding: 6px 15px;
	border-radius: 20px;
	background-color: #f5f5f5;
	margin-bottom: 20px;
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	line-height: 19.5px;
	letter-spacing: 1px;
	color: var(--navyBlue);
}

.twoColumn_content h4 {
	font-size: 32px;
	font-weight: 600;
	line-height: 38.4px;
	color: var(--black700);
}

.twoColumn_content ul {
	margin-top: 24px;
}

.twoColumn_content p {
	margin-top: 24px;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.2px;
	color: var(--paraColor);
}

.twoColumn_content ul li {
	margin-bottom: 20px;
	padding-left: 30px;
	position: relative;
	font-size: 18px;
	font-weight: 400;
	line-height: 28.8px;
	letter-spacing: 0.24px;
	color: var(--paraColor);
}

.twoColumn_content ul li::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 5px;
	left: 0;
	background-image: url(../images/icon/star-Icon.svg);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

.row_loop .row .twoColumn_content {
	padding-right: 60px;
}

.row_loop .row:nth-child(even) .twoColumn_content {
	padding-left: 60px;
}

.featureCardSec {
	margin-block: 56px;
}

.featureCardSec .row {
	row-gap: 30px;
	margin-bottom: 56px;
	justify-content: center;
}

.featureCard {
	height: 100%;
	padding: 32px;
	display: block;
	border-radius: 16px;
	background-color: var(--cardBgColor);
}

.feature_img {
	height: 240px;
	overflow: hidden;
	border-radius: 16px;
	margin-bottom: 32px;
}

.feature_img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.featureAiSec {
	position: relative;
	background: linear-gradient(265.03deg, #eb4441 -17.1%, #254377 84%);
}

.featureAiSec::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 420px;
	top: 0;
	background-color: var(--white);
}

.toolWorkingSec {
	padding-block: 100px;
	background-color: var(--cardBgColor);
}

.step_item_wrapper {
	column-gap: 40px;
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
}

.step_item_wrapper:last-child {
	margin-bottom: 0;
}

.step_idx {
	font-size: 18px;
	font-weight: 600;
	line-height: 21.6px;
	color: var(--paraColor);
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	position: relative;
	border-radius: 50%;
	border: 1px solid var(--paraColor);
	background-color: var(--white);
	transition: var(--transition);
}

.step_item_wrapper .step_idx::after {
	content: "";
	position: absolute;
	width: 2px;
	height: 150%;
	bottom: -86px;
	left: 50%;
	transition: var(--transition);
	transform: translateX(-50%);
	border-left: 2px dashed var(--paraColor);
}

.step_item_wrapper:last-child .step_idx::after {
	position: relative;
	border-left: 0;
}

.step_item_wrapper.active .step_idx::after {
	border-color: var(--navyBlue);
}

.step_item_wrapper .step_item {
	width: 82%;
}

.step_item_wrapper .step_item h4,
.step_item_wrapper .step_item p {
	color: var(--paraColor);
	opacity: 0.5;
	transition: var(--transition);
}

.step_item_wrapper.active .step_idx {
	color: var(--white);
	background-color: var(--navyBlue);
}

.step_item_wrapper.active .step_item h4 {
	opacity: 1;
	color: var(--navyBlue);
}

.step_item_wrapper.active .step_item p {
	opacity: 1;
}

.toolWorking_img {
	opacity: 0;
	transition: var(--transition);
}

.toolWorking_img.show {
	opacity: 1;
	transition: var(--transition);
}

.toolWorking_img_wrapper {
	position: relative;
	z-index: 3;
}

.toolWorking_img_wrapper .toolWorking_img {
	position: absolute;
}

.largePost_thumbnail {
	width: 100%;
	height: 460px;
	overflow: hidden;
	border-radius: 16px;
}

.largePost_thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.three_line_para {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	margin-bottom: 32px;
}

.meta_box {
	margin-top: 16px;
}

.meta_box span {
	font-size: 14px;
	font-weight: 400;
	line-height: 22.4px;
	letter-spacing: 0.24px;
	color: var(--paraColor2);
}

.featurePost_item {
	padding-block: 24px;
	border-bottom: 1px solid #e5e5e8;
}

.featurePost_item:first-child {
	padding-top: 0;
}

.featurePost_item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.row_wrapper .row {
	padding-block: 24px;
	border-bottom: 1px solid #e5e5e8;
}

.row_wrapper .row {
	padding-bottom: 0;
	border-bottom: 0;
}

.fourColumnSec .row {
	row-gap: 30px;
}

.blog_card .blog_image {
	width: 100%;
	height: 230px;
	overflow: hidden;
	border-radius: 16px;
	margin-bottom: 20px;
}

.blog_card .blog_image img {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 16px;
	object-fit: cover;
}

.blog_card h6 {
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
}

.blog_card p {
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.24px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

.see_all_links {
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: var(--navyBlue);
	text-decoration: underline;
}

.small_blog_image {
	width: 100%;
	height: 150px;
	overflow: hidden;
	border-radius: 16px;
}

.small_blog_image img {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 16px;
	object-fit: cover;
}

.twoColHorizontalCardSec .row {
	row-gap: 60px;
}

.twoColHorizontalCardSec .blog_card p {
	letter-spacing: 0.24px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}

.downloadsec .row_outer {
	padding: 60px;
	border-radius: 24px;
	background: linear-gradient(85.02deg, #294376 0%, #eb4441 130.13%);
}

.downloadsec .row_outer .row {
	row-gap: 30px;
	align-items: center;
}

.downloadsec h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 43.2px;
	color: var(--white);
	margin-bottom: 32px;
}

.subcriberSec {
	padding-block: 100px;
	background-color: var(--navyBlue);
}

.subcriberSec h3 {
	color: var(--white);
}

.subcriberSec p {
	opacity: 0.8;
	color: var(--white);
}

div.tnp-subscription,
form.tnp-subscription,
form.tnp-profile {
	max-width: 600px !important;
}

.tnp-subscription form,
.subcriber_form {
	gap: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tnp-subscription label,
.tnp-profile label {
	display: none !important;
}

.tnp-subscription .tnp-field-email {
	width: 100%;
	margin-bottom: 0 !important;
}

.tnp-subscription .tnp-field-email .tnp-email,
.subcriber_form .form-control {
	width: 100%;
	height: 56px;
	padding: 0 24px 0 24px;
	border-radius: 100px;
	margin-bottom: 0;
	background-color: var(--white);
}

.tnp-subscription .tnp-field-button {
	margin-bottom: 0 !important;
	height: 56px;
}

.tnp-subscription input.tnp-submit {
	font-size: 16px !important;
	font-weight: 600 !important;
	height: 100% !important;
	line-height: 16px !important;
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
	padding: 20px 30px !important;
	color: var(--white) !important;
	border-radius: 190px !important;
	transition: var(--transition) !important;
	background: var(--orange) !important;
}

.post_filter {
	width: 210px;
	height: 56px;
	padding: 0 10px;
	gap: 10px;
	border-radius: 100px;
	border: 1px solid var(--grey300);
	background: #edf0f3;
	border: 1px solid #1d3f6e;
}

.categorySec .blog_card {
	padding: 12px;
	border-radius: 16px;
	background-color: var(--cardBgColor);
}

.categorySec .blog_card .blog_image {
	height: 200px;
}

.nav-links,
.wp-pagenavi {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.nav-links .page-numbers {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	color: var(--navyBlue);
	background: var(--cardBgColor);
}

.nav-links .page-numbers.current {
	color: var(--white);
	background: var(--navyBlue);
}

.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
	font-size: 0;
}

.nav-links .page-numbers.prev {
	background-image: url(../images/icon/navyblue-arrow-left.svg);
	background-size: 20px;
	background-position: center center;
	background-repeat: no-repeat;
}

.nav-links .page-numbers.next {
	background-image: url(../images/icon/navyblue-arrow-right.svg);
	background-size: 20px;
	background-position: center center;
	background-repeat: no-repeat;
}

.nav-links .nav-next a {
	color: var(--navyBlue);
}

.breadcrums {
	padding-block: 18px;
	background-color: #e8f2ff;
}

.breadcrums ul {
	column-gap: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrums ul li {
	font-weight: 500;
	color: var(--black700);
}

.breadcrums ul li a {
	color: var(--navyBlue);
}

@media (max-width: 768px) {

	.breadcrums ul {
		flex-wrap: nowrap;
		overflow: hidden;
	}

	.breadcrums ul li {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 150px;
	}

	.breadcrumb-title-desktop {
		display: none;
	}

	.breadcrumb-title-mobile {
		display: inline;
	}
}

@media (min-width: 769px) {

	.breadcrumb-title-desktop {
		display: inline;
	}

	.breadcrumb-title-mobile {
		display: none;
	}
}

.article_links,
.share_links {
	padding: 16px;
	border-radius: 12px;
	border: 1px solid #e5e5e8;
}

.widget_title {
	font-size: 14px;
	opacity: 0.6;
	font-weight: 500;
	color: var(--paraColor2);
}

.article_links ul li a {
	font-size: 15px;
	font-weight: 500;
	opacity: 0.6;
	display: block;
	margin-bottom: 8px;
	color: var(--navyBlue);
	transition: var(--transition);
}

.article_links ul li:last-child a {
	margin-bottom: 0;
}

.article_links ul li a:hover {
	opacity: 1;
	transition: var(--transition);
}

.share_links ul {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.share_links ul li a {
	width: 45px;
	height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition);
	background-color: var(--cardBgColor);
}

.share_links ul li a:hover {
	transform: scale(1.08);
	transition: var(--transition);
}

.singlePost_content :where(h1, h2, h3, h4, h5, h6) {
	margin-bottom: 20px;
}

.singlePost_content ul {
	list-style: disc;
	padding-left: 20px;
}

.singlePost_content ol {
	list-style: decimal;
	padding-left: 20px;
}

.singlePost_content ul li,
.singlePost_content ol li {
	margin-bottom: 20px;
}

.singlePost_content p {
	color: var(--paraColor2);
}

.singlePost_content strong {
	font-weight: 600;
}

.copyright_wrap {
	text-align: left;
}

.footer__btm_menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.footer__btm_menu li {
	padding-left: 20px;
	margin-left: 20px;
	border-left: 1px solid var(--paraColor);
}

.footer__btm_menu li:first-child {
	padding-left: 0;
	margin-left: 0;
	border-left: 0;
}

.footer__btm_menu li a {
	color: var(--black);
}

.error_bnr {
	height: 600px;
	background-position: center top;
}

.error_bnr .container {
	height: 100%;
}

.error_bnr .container .bnr_content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.bottom_tab_sec .dist-ai-dashboard__container {
	border-bottom: 0;
	border-radius: 30px 30px 0 0;
}

.pricingSec th,
.pricingSec td {
	padding: 20px !important;
}

.price_table {
	margin-bottom: 0 !important;
}

.pricingSec h1 {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.pricingSec p {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.pricingSec thead th {
	font-size: 20px;
	font-weight: 500;
	background-color: transparent !important;
}

.column-1,
.td_bg {
	background-color: #ffedd5 !important;
}

.td_bg_dark {
	background-color: #fed7aa !important;
}

.bg_light_pink {
	background-color: #f3e8ff !important;
}

@media (min-width: 1921px) {

	header .mega-menu-item-has-children > .mega-sub-menu {
		padding-inline: 60% !important;
	}

	h1 {
		font-size: 45px;
		line-height: 54px;
	}

	h2 {
		font-size: 38px;
		line-height: 46px;
	}

	h3 {
		font-size: 32px;
		line-height: 38px;
	}

	h4 {
		font-size: 22px;
		line-height: 26px;
	}

	h5 {
		font-size: 19px;
		font-weight: 600;
		line-height: 28.8px;
	}

	h6 {
		font-size: 17px;
		font-weight: 600;
		line-height: 33px;
	}

	p {
		font-size: 14px;
		line-height: 20px;
	}

	img {
		max-width: 100%;
	}

	.banner_section {
		padding: 112px 0 0;
	}

	.home_pg {
		padding-bottom: 0;
	}

	.moreEffective_sec {
		padding-block: 80px;
	}

	.moreEffective_sec,
	.twoColumnSec,
	.socialPostSec,
	.lovedSec,
	.solutionsCardSec {
		padding-block: 80px;
	}

	.row_loop .row {
		margin-bottom: 64px;
	}

	.idx {
		font-size: 42px;
	}

	.post_content .link {
		font-size: 13px;
	}
}

@media (max-width: 1600px) {

	.moreEffective_sec .item {
		max-width: 400px;
	}
}

@media (max-width: 1200px) {

	.post_card {
		row-gap: 20px;
		flex-direction: column;
	}

	.post_content {
		width: 100%;
	}

	.carousal_card {
		padding: 60px;
	}

	.banner_tab_sec::before {
		height: 300px;
	}

	.dist-ai-dashboard__content {
		padding: 20px;
	}
}

@media (max-width: 992px) {

	.slide-menu {
		padding-top: 0;
		padding-bottom: 0;
	}

	.slide-menu .controls.clear {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.nav-main-cont {
		height: calc(100vh - 153px);
		overflow: auto;
		padding-top: 20px !important;
	}

	.slide-menu .mt-60 {
		padding-block: 20px;
		margin-top: 0;
	}

	h1 {
		font-size: 48px;
		line-height: 60px;
	}

	h2 {
		font-size: 40px;
		line-height: 45px;
	}

	h3 {
		font-size: 36px;
		line-height: 40px;
	}

	h4 {
		font-size: 24px;
		line-height: 30px;
	}

	h5 {
		font-size: 20px;
		line-height: 24px;
	}

	h6 {
		font-size: 18px;
		line-height: 24px;
	}

	p {
		font-size: 16px;
		line-height: normal;
	}

	.px-lg-6 {
		padding-inline: 60px;
	}

	.px-lg-20 {
		padding-inline: 80px;
	}

	.navigation_wrapper {
		width: 70%;
		column-gap: 20px;
		justify-content: flex-end;
	}

	.full_width_header .mega-menu-wrap {
		width: 10% !important;
		order: 3;
	}

	.btns_wrapper {
		width: 45%;
	}

	.mega-menu-wrap .mega-menu-toggle {
		border: 2px solid var(--navyBlue);
		background-color: transparent !important;
	}

	.mega-menu-wrap .mega-toggle-animated-inner,
	.mega-menu-wrap .mega-toggle-animated-inner::before,
	.mega-menu-wrap .mega-toggle-animated-inner::after {
		background-color: var(--navyBlue) !important;
	}

	.menu-item-description {
		display: block;
	}

	.btns_wrapper {
		width: 100%;
		justify-content: center;
	}

	.navigation_wrapper {
		display: none !important;
	}

	.desktop-search-container {
		display: none !important;
	}

	.mobile-burger-menu {
		width: 50px;
		height: 50px;
		display: block !important;
	}

	.full_width_header .mega-menu-wrap .mega-menu-toggle + .mega-menu-horizontal {
		background: #fff !important;
	}

	.full_width_header .mega-menu-horizontal {
		padding: 25px !important;
		row-gap: 10px !important;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start !important;
	}

	.mega-menu-wrap .mega-menu-horizontal > li.mega-menu-item {
		width: 100% !important;
	}

	.mega-menu-wrap .mega-menu-horizontal > li.mega-menu-item > a.mega-menu-link {
		width: 100% !important;
	}

	.mega-menu-wrap .mega-menu-horizontal > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link {
		background-color: transparent !important;
	}

	.mega-menu-wrap li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu {
		transform: translate(0, 0) !important;
		box-shadow: none !important;
		padding: 0 !important;
	}

	.mega-menu-wrap .mega-menu-horizontal li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
		padding: 0 !important;
	}

	.mega-menu-wrap .mega-menu-horizontal li.mega-menu-megamenu .menu-image-title-after {
		display: flex !important;
		align-items: center;
	}

	.mega-menu-wrap .mega-menu-horizontal .mega-sub-menu li.mega-menu-row,
	.mega-menu-wrap .mega-menu-horizontal .mega-sub-menu li.mega-menu-column {
		margin-bottom: 0 !important;
	}

	.home_pg {
		margin-bottom: 60px !important;
	}

	.banner_tab_sec::before {
		height: 200px;
	}

	.post_content .link {
		font-size: 15px;
	}

	.carousal_card .row {
		row-gap: 40px;
	}

	.dashboard_img {
		margin-top: 40px;
	}

	.moreEffective_sec,
	.twoColumnSec,
	.socialPostSec,
	.lovedSec,
	.solutionsCardSec {
		padding-block: 40px;
	}

	.lovedMarketerSec {
		margin-block: 40px;
	}

	.twoColumnSec .row {
		row-gap: 20px;
		margin-bottom: 30px;
	}

	.howItWorks_img_wrapper {
		text-align: center;
	}

	.carousalCard_wrapper .owl-stage-outer,
	.review_card_wrapper .owl-stage-outer {
		padding-block: 30px;
	}

	.top_footer .footer_link {
		row-gap: 20px;
		flex-wrap: wrap;
	}

	.prfile_info {
		flex-direction: column;
	}

	.row_loop .row .twoColumn_content {
		padding-right: 0;
	}

	.row_loop .row:nth-child(even) .twoColumn_content {
		padding-left: 0;
	}

	.solutionImg_wrapper {
		padding-block: 40px;
	}

	.twoColHorizontalCardSec .row {
		row-gap: 20px;
	}

	.downloadsec h2 {
		font-size: 32px;
	}

	.toolWorkingSec {
		padding-block: 50px;
		height: 1280px;
	}
}

@media (max-width: 768px) {

	.py-100 {
		padding-block: 60px;
	}

	.pt-60 {
		padding-top: 30px;
	}

	.pb-60 {
		padding-bottom: 30px;
	}

	.my-100 {
		margin-block: 60px;
	}

	.mt-100 {
		margin-top: 60px;
	}

	.mb-100 {
		margin-bottom: 60px;
	}

	.mt-80 {
		margin-top: 40px;
	}

	.mb-80 {
		margin-bottom: 40px;
	}

	.mt-60 {
		margin-top: 30px;
	}

	.mb-60 {
		margin-bottom: 30px;
	}

	.px-lg-20 {
		padding-inline: 0;
	}

	.px-lg-6 {
		padding-inline: 0;
	}

	.home_pg {
		margin-bottom: 40px !important;
	}

	.banner_tab_sec::before {
		height: 400px;
	}

	.moreEffective_sec .row {
		justify-content: center;
	}

	.top_footer .footer_link {
		justify-content: flex-start;
	}

	.top_footer .footer_link .footer_menu li:first-child {
		padding-left: 0;
	}

	.solutionImg_wrapper .solutionImg {
		padding-inline: 5px;
	}

	.footer__btm_menu {
		justify-content: flex-start;
	}

	.toolWorkingSec {
		height: 1160px;
	}
}

@media (max-width: 743px) {

	.navigation_wrapper {
		width: 60%;
	}

	.full_width_header .mega-menu-wrap {
		width: 16% !important;
	}
}

@media (max-width: 576px) {

	.slide-menu {
		width: 350px;
	}

	h1 {
		font-size: 35px;
		line-height: 45px;
	}

	h2 {
		font-size: 32px;
		line-height: 40px;
	}

	h3 {
		font-size: 28px;
		line-height: 35px;
	}

	h4 {
		font-size: 22px;
		line-height: 30px;
	}

	h5 {
		font-size: 20px;
		line-height: 24px;
	}

	h6 {
		font-size: 18px;
		line-height: 24px;
	}

	p {
		font-size: 16px;
		line-height: normal;
	}

	.banner_section {
		padding: 120px 0 0;
	}

	.fullCarousalSec::before,
	.fullCarousalSec::after {
		position: relative;
	}

	.carousal_card .row {
		row-gap: 40px;
	}

	.post_content .link {
		font-size: 15px;
	}

	.post_card {
		flex-direction: row;
	}

	.post_content {
		width: 80%;
	}

	.twoColumnBnrSec .bnr_social {
		padding-left: 40px;
	}

	.bnr_social_img {
		left: -15px;
		width: 250px;
	}

	.twoColumn_content h4 {
		font-size: 26px;
		line-height: 35px;
	}

	.solutionImg_wrapper .solutionImg {
		padding-inline: 3px;
	}

	.tnp-subscription form,
	.subcriber_form {
		flex-wrap: wrap;
	}

	.tnp-subscription .tnp-field-email,
	.tnp-subscription .tnp-field-button,
	.subcriber_form .form-control,
	.subcriber_form .orange_btn {
		width: 90%;
	}

	.tnp-subscription .tnp-field-button .tnp-submit {
		width: 100%;
	}

	.post_filter {
		height: 40px;
	}

	.featureAiSec::before {
		height: 350px;
	}
}

@media (max-width: 481px) {

	.slide-menu {
		width: 100%;
	}

	.footer_logo {
		display: block;
		text-align: center;
	}

	.top_footer .footer_link .footer_menu,
	.top_footer .footer_link {
		row-gap: 20px;
		flex-direction: column;
	}

	.top_footer .footer_link .footer_menu li::before {
		position: relative;
	}

	.top_footer .footer_link .footer_menu li {
		padding-left: 0;
	}

	.bnr_social_img {
		width: 180px;
	}

	.largePost_thumbnail {
		height: 230px;
	}

	.downloadsec .row_outer {
		padding: 30px;
	}

	.step_item_wrapper {
		flex-direction: column;
		row-gap: 20px;
	}

	.step_item_wrapper .step_idx::after {
		height: 0;
	}

	.step_item_wrapper .step_item {
		width: 100%;
	}

	.toolWorkingSec {
		height: 1400px;
	}

	.copyright_wrap {
		text-align: center;
	}

	.footer__btm_menu {
		justify-content: center;
	}
}

@media (max-width: 400px) {

	.small_blog_image {
		height: 120px;
	}

	.three_line_para {
		margin-bottom: 15px;
	}

	.banner_tab_sec::before {
		height: 300px;
	}
}

@media (max-width: 361px) {

	.download_content .orange_btn {
		font-size: 14px;
		padding: 15px 20px;
	}

	.post_card {
		flex-direction: column;
	}

	.post_content {
		width: 100%;
	}

	.carousal_card {
		padding: 20px;
	}

	.howItWorks_content_wrapper {
		row-gap: 20px;
		flex-direction: column;
	}

	.bnr_social_img {
		width: 200px;
	}

	.small_blog_image {
		height: 100px;
	}

	.downloadsec h2 {
		font-size: 26px;
		line-height: 35px;
	}
}

@media (max-width: 320px) {

	.bnr_social_img {
		width: 160px;
	}

	.small_blog_image {
		height: 80px;
	}

	.toolWorkingSec {
		height: 1475px;
	}
}

@media screen and (max-width: 768px) {

	.distribution-container {
		width: 95%;
		padding: 15px;
	}

	.content-overlay {
		padding: 30px 15px 0;
	}

	.dashboard-image {
		width: 100%;
		margin-top: 25px;
	}
}

@media screen and (max-width: 480px) {

	.distribution-container {
		width: 100%;
		padding: 10px;
	}

	.content-overlay {
		padding: 20px 10px 0;
	}
}

/* Section Styling */
.section-description {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
	max-width: 700px;
	margin: 0 auto 40px;
	padding: 0 20px;
}

@media (max-width: 768px) {

	.section-description {
		font-size: 15px;
		margin-bottom: 30px;
	}
}

/* Card Styling */
.card-row {
	margin: 0 -15px;
}

@media (max-width: 768px) {

	.card-row {
		margin: 0 -10px;
	}
}

.feature-card {
	background-color: rgba(255, 251, 250, 0.8);
	border-radius: 12px;
	padding: 30px 25px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 1px solid #ffcaad;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

@media (max-width: 768px) {

	.feature-card {
		padding: 20px 15px;
		margin-bottom: 15px;
	}
}

.icon-wrapper {
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fff2f0;
	margin-bottom: 15px;
}

@media (max-width: 768px) {

	.icon-wrapper {
		width: 60px;
		height: 60px;
		margin-bottom: 12px;
	}
}

.feature-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 768px) {

	.feature-icon {
		width: 100%;
		height: 100%;
	}
}

.feature-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 0;
	color: #222;
}

@media (max-width: 768px) {

	.feature-title {
		font-size: 16px;
	}
}

/* Responsive adjustments */
@media (max-width: 991px) {

	.moreEffective_sec h2 {
		font-size: 36px;
	}

	.feature-card {
		padding: 25px 20px;
	}
}

@media (max-width: 767px) {

	.moreEffective_sec {
		padding: 40px 0 60px 0;
	}

	.moreEffective_sec h2 {
		font-size: 30px;
	}

	.section-description {
		font-size: 15px;
	}
}

.why-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f6f7f9;
	margin-bottom: 1rem;
}

.why-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

/* Prevent unstyled flash of the menu on load */

/* Native sticky fallback if JS is blocked */
@media (min-width: 992px) {

	.blog-sidebar-sticky {
		position: sticky;
		top: var(--sticky-top, 100px);
		align-self: flex-start;
	}
}

.template-page-container {
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
}

@media (max-width: 768px) {

	.template-page-container {
		padding: 0 15px;
	}
}

@media (max-width: 576px) {

	.template-page-container {
		padding: 0 10px;
	}
}

/* Template Banner Image Mobile Fixes - Generic Classes */
.template-banner-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

@media (max-width: 768px) {

	.template-banner-image {
		margin: 0 auto;
		text-align: center;
	}
}

.template-banner-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (max-width: 768px) {

	.template-banner-image img {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
}

@media (max-width: 576px) {

	.template-banner-image img {
		max-width: 350px;
	}
}

@media (max-width: 480px) {

	.template-banner-image img {
		max-width: 300px;
	}
}

@media (max-width: 400px) {

	.template-banner-image img {
		max-width: 280px;
	}
}

@media (max-width: 320px) {

	.template-banner-image img {
		max-width: 250px;
	}
}

/* Remove problematic existing mobile styles */
@media (max-width: 576px) {

	.bnr_social_img {
		left: unset !important;
		width: unset !important;
	}
}

@media (max-width: 481px) {

	.bnr_social_img {
		width: unset !important;
	}
}

@media (max-width: 361px) {

	.bnr_social_img {
		width: unset !important;
	}
}

@media (max-width: 320px) {

	.bnr_social_img {
		width: unset !important;
	}
}
