@font-face {
	font-family: 'Heading-font';
	src: url('../fonts/Schnyder-L-Bold.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'georgia';
	src: url('../fonts/georgia.ttf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

body {
	font-size: 16px;
	overflow-x: hidden;
}

:root {
	--primary-col: #0086CA;
	--primary-col-rgba: rgba(0, 134, 202, .5);
	--secondary-col: #E2E3E2;
	--secondary-col-rgba: rgba(226, 227, 226, .5);
	--black-col: #000000;
	--lightblack-col: #212529;
	--black-col-rgba: rgba(0, 0, 0, .5);
	--white-col: #ffffff;
	--white-col-rgba: rgba(255, 255, 255, .5);
}

li,
ul {
	list-style: none;
}

a:active,
a:focus,
a:hover,
button:active {
	text-decoration: none;
	outline: 0;
	color: var(--thm-color);
}

a {
	color: var(--black-col);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Heading-font', sans-serif;
	margin: 0;
	padding: 0;
}

h2 {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.8;
	padding: 10px 0;
	color: var(--lightblack-col);

}

p {
	font-family: 'georgia', sans-serif;
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	color: #212529;
	transition: 0.5s all ease-in;
}

section {
	padding: 50px 0;
	position: relative;
	clear: both;
	scroll-behavior: smooth !important;

}

.page-heading {
	margin-bottom: 1rem;
}

header {
	position: relative;
	top: 0;
	z-index: 9;
	width: 100%;
}

.btn-primary {
	background-color: var(--primary-col);
	border-color: var(--primary-col);
	color: var(--white-col);
	border-radius: 3px;
	font-size: 1rem;
	padding: .5rem 1.25rem;
}

.top-bar {
	background: var(--black-col);
	border-bottom: 1px solid var(--secondary-col-rgba);

	a {
		font-size: 14px;
		color: var(--white-col);
		/* 
		&:not(.current) {
			opacity: 50%;
		} */
	}
}

.primary-btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: var(--lightblack-col);
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	border-radius: .25rem;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	border-radius: 3px;
	font-size: 1rem;
	padding: .75em 1.5em;
	color: #f8f9fa;
	border-color: #f8f9fa;
	z-index: 5;
	position: relative;

	&.black {
		color: var(--lightblack-col);
		border-color: var(--lightblack-col);
	}

	&:hover {
		transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
		color: #000;
		background-color: #f8f9fa;
		border-color: #f8f9fa;

		&.black {
			color: #fff;
			background-color: var(--lightblack-col);
			border-color: var(--lightblack-col);
		}
	}
}

.sec-btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: var(--black-col);
	background-color: var(--secondary-col);
	border: 1px solid transparent;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: .375rem .75rem;
	font-size: 1rem;
	border-radius: .25rem;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	border-radius: 3px;
	font-size: 1rem;
	padding: .75em 1.5em;
	color: var(--lightblack-col);
	border-color: #f8f9fa;
	z-index: 5;
	position: relative;

	&.black {
		color: var(--lightblack-col);
		border-color: var(--lightblack-col);
	}

	&:hover {
		transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
		color: #ffffff;
		background-color: transparent;
		border-color: var(--secondary-col);
		/* 
		&.black {
			color: var(--lightblack-col);
			background-color: transparent;
			border: 1px solid transparent;
		} */
	}
}

.hero {
	padding: 0;
	height: 100vh;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	z-index: 5;

	&::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .5);
		top: 0;
		z-index: 0;
	}

	h1 {
		position: relative;
		z-index: 9;
		font-size: 64px;
		max-width: 60%;
		color: var(--white-col);
		margin-bottom: 30px;
	}

	p {
		position: relative;
		color: var(--white-col);
		margin-bottom: 50px;
		max-width: 55%;
	}

	.hero-video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: -1;
	}
}


.herobtn {
	gap: 30px;
}

ul.list-dots .dots-i {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 1em;
}

ul.list-dots .dots-i::before {
	content: "";
	display: block;
	position: absolute;
	width: 0.5em;
	height: 0.5em;
	left: 0;
	top: 0.5em;
	background-color: #0086CA;
	border-radius: 50%;
}

span.typed-text {
	font-weight: normal;
	color: var(--primary-col);
}

span.cursor {
	display: inline-block;
	background-color: #ccc;
	margin-left: 0.1rem;
	width: 3px;
	animation: blink 1s infinite;
}

span.cursor.typing {
	animation: none;
}

@keyframes blink {
	0% {
		background-color: #ccc;
	}

	49% {
		background-color: #ccc;
	}

	50% {
		background-color: transparent;
	}

	99% {
		background-color: transparent;
	}

	100% {
		background-color: #ccc;
	}
}

.underline-btn {
	color: #333;
	font-size: 1rem;
	text-decoration: underline;
	text-underline-offset: 4px;
	-webkit-text-decoration-color: #0086CA;
	text-decoration-color: #0086CA;
	text-decoration-thickness: 2px;
	margin-bottom: 4px;
	font-weight: 500;
	display: inline-block;
}

.about-us {
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.success-story {
	min-height: 100vh;
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	-webkit-clip-path: polygon(calc(50vw - calc(660px - calc(3rem + 14px))) 100px, calc(50vw + calc(660px - calc(3rem + 14px))) 100px, calc(50vw + calc(660px - calc(3rem + 14px))) calc(100% - 100px), calc(50vw - calc(660px - calc(3rem + 14px))) calc(100% - 100px));
	clip-path: polygon(calc(50vw - calc(660px - calc(3rem + 14px))) 100px, calc(50vw + calc(660px - calc(3rem + 14px))) 100px, calc(50vw + calc(660px - calc(3rem + 14px))) calc(100% - 100px), calc(50vw - calc(660px - calc(3rem + 14px))) calc(100% - 100px));
	-webkit-transition: all 1s;
	transition: all 1s;

	&:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(45deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .5) 100%);
		-webkit-transition: opacity 2s;
		transition: opacity 2s;
		-webkit-transition-delay: 2s;
		transition-delay: 2s;
		opacity: 1;
		z-index: 1;
	}

	.img-wrapper {
		position: absolute;
		width: 100%;
		height: 100%;


		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}

	.success-content {
		z-index: 9;
		position: relative;
		max-width: 58%;
	}

	.quote .quote-text {
		font-family: "Georgia", serif;
		font-style: italic;
		font-size: 1.125rem;
		line-height: 1.6;
		padding-top: 20px;
		position: relative;
	}

	.quote .quote-source {
		position: relative;
		border-left: 2px solid #0086CA;
		padding-left: 1rem;
	}

	.quote-steve .quote-source .quote-source-name {
		font-size: 1.75rem;
		font-weight: 700;
	}

	&.scrolled {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		-webkit-transition: all 1s;
		transition: all 1s;
	}
}

.about-tabs {
	background-color: rgb(248 249 250);

	.tab-content {
		background-color: var(--white-col);
	}

	.nav-tabs {
		background-color: var(--white-col);
	}

	.nav-link {
		padding: 20px 80px;
	}

	.nav-tabs .nav-link.active {
		border-top: none !important;
		border-left: none !important;
		border-right: 1px solid #E2E3E2 !important;
		border-bottom: 4px solid #0086CA !important;
		border-style: inset;

	}

	.author-image {
		width: 100%;

	}
}

.platform {
	background-image: url(../images/bg-map.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--black-col);
	padding: 100px 0;

	.counter {
		text-align: center;
	}

	.count-up {
		h3 {
			color: var(--white-col);
			font-size: 20px;
		}
	}

	.counter-count {
		font-size: 40px;
		font-weight: bold;
		position: relative;
		color: var(--white-col);
		text-align: center;
		display: inline-block;

	}

	.stat-divider {
		width: 50px;
		height: 1px;
		background-color: #0086CA;
		display: block;
		margin: 1rem auto;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transition: all 2s ease;
		transition: all 2s ease;
	}
}

.heading-divider {
	position: relative;
	overflow: hidden
}

.heading-divider .heading-divider-text {
	display: inline-block;
	letter-spacing: .175em;
	color: #333;
	text-transform: uppercase;
	font-size: .75rem;
	line-height: .875em;
	width: auto;
	padding: 0 1.5em;
	position: relative;
	margin: 0 auto;
	border-left: 1px solid #0086CA;
	border-right: 1px solid #0086CA
}

.heading-divider .heading-divider-text::before,
.heading-divider .heading-divider-text::after {
	content: "";
	position: absolute;
	background: #0086CA;
	height: 1px;
	width: 100vw;
	left: 0;
	top: 50%
}

.heading-divider .heading-divider-text::before {
	left: 0;
	transform: translateX(-100%)
}

.heading-divider .heading-divider-text::after {
	left: auto;
	right: 0;
	transform: translateX(100%)
}

.testimonial-section {

	.swiper-pagination-bullets.swiper-pagination-horizontal {
		bottom: 0 !important;
	}

	.swiper-pagination-bullet {
		width: 14px;
		height: 14px;
		background-color: transparent;
		border-radius: 50%;
		border: 2px solid var(--primary-col) !important;
		border-color: var(--primary-col);

	}

	.swiper-pagination-bullet-active {
		background-color: var(--primary-col);
	}

	.testimonial-content {
		i {
			color: var(--primary-col) !important;
			font-size: 4.5rem !important;
		}

		p {
			font-style: italic;
			font-size: 1.125rem;
			line-height: 1.6;
			padding-top: 20px;
			position: relative;
			font-weight: 400;
			color: var(--black-col);
		}


	}

	.user-info {
		h6 {
			color: var(--primary-col);
			transition: all 0.5s;
			font-size: 1.50rem;
			border-bottom: 2px solid var(--primary-col);
			display: inline-flex;
		}

		small {
			font-size: 1rem;
			display: flex;
			padding-top: 5px;
		}
	}
}

.footer {
	margin-top: 100px;
	padding-top: 100px;
	background-color: var(--black-col) !important;

	.footer-brand {
		display: flex;
		align-items: flex-start;
		flex-direction: column;

		img {
			filter: invert(1);
		}
	}

	a {
		color: var(--white-col);
		font-size: 14px;
		text-decoration: none;
	}

	.footer-menu {
		h5 {
			margin-bottom: 20px;
			font-size: 16px;
		}

		ul li {
			margin-bottom: 10px;
		}
	}

	.footer-btm {
		p {
			font-size: 14px;
			color: var(--white-col);
		}

		a {
			text-decoration: underline;
			text-underline-offset: .25em;
			text-decoration-color: #0086CA;
			text-decoration-thickness: 2px;
			transition: all 0.5s;
		}
	}
}

.book-experience {
	.img-color-overlay {
		height: 325px;
		width: 100%;
		overflow: hidden;

		.img-fit-wrapper {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;

			.img-fit {
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				object-fit: cover;
			}
		}

		.img-hover-overlay {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, .25);
			-webkit-transition: all 0.4s;
			transition: all 0.4s;
		}

		a {
			font-size: 1.5rem;
			color: #fff;
			line-height: 1.4;
			width: 65%;
			z-index: 1;
		}

		h3 {
			color: #fff;
			margin-bottom: 0;
			position: relative;
			text-align: center;
			line-height: 1.5;
			font-size: 30px;
		}

		&:hover {
			.img-hover-overlay {
				background: rgba(30, 127, 188, .85);
			}
		}
	}

	.stretched-link::after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
		content: "";
	}
}

.about-hero {
	.img-sub-content {
		h2 {
			font-size: 2rem;
			line-height: 1.3;
		}
	}
}
.about-hero.dark-bg {
	background-color: var(--black-col);
	color: var(--white-col);
	
}

.process {
	.timeline-with-icons {
		border-left: 2px solid var(--primary-col);
		position: relative;
		list-style: none;
		padding-left: 3rem;
	}

	.process-ul {
		padding-top: 80px;
	}

	.timeline-with-icons .timeline-item {
		position: relative;
	}

	.timeline-with-icons .timeline-item:after {
		position: absolute;
		display: block;
		top: 0;
	}

	.timeline-with-icons .timeline-icon {
		position: absolute;
		left: -85px;
		background-color: var(--white-col);
		color: hsl(217, 88.8%, 35.1%);
		border-radius: 50%;
		height: 70px;
		width: 70px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--primary-col);

	}
}

.h-8 {
	width: 50%;
}

.ebook-publish {

	background-color: var(--black-col);

	.img-product-publishing-why-wrapper {
		width: 50%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		align-items: center;
		display: flex;
	}

	.img-product-publishing-why-wrapper::before {
		content: "";
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(#121212));
		background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000000 100%)
	}
}

.publishing-programs {
	h2 {
		/* font-size: 2rem; */
		line-height: 1.3;
	}
}

.about-last-img {
	img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

.our-services {
	background-color: var(--secondary-col);

	.service-box {
		p {
			margin-top: 20px;
		}

		img {
			border-radius: 10px;
			height: 300px;
		}
	}


	.row-divider {
		height: 2px;
		background-color: #dfdfdf;
		width: 100%;
	}
}

.flip-box {
	perspective: 1000px;
}

.flip-box-inner {
	position: relative;
	width: 100%;
	height: 300px;
	/* Set a fixed height */
	transform-style: preserve-3d;
	transition: transform 0.6s;
}

.flip-box:hover .flip-box-inner {
	transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	backface-visibility: hidden;
	overflow: hidden;
}

.flip-box-front {
	z-index: 2;

	.front-content {
		font-size: 30px;
		letter-spacing: 3px;
		text-transform: uppercase;
	}
}

.flip-box-back {
	background-color: #f8f9fa;
	transform: rotateY(180deg);
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;

	p {
		padding: 1rem 0;
		letter-spacing: 1px;
	}

	h5 {
		letter-spacing: 2px;
	}
}

.nav-link {
	color: var(--black-col);
}

.partner-logo {
	.swiper-wrapper {
		-webkit-transition-timing-function: linear !important;
		-o-transition-timing-function: linear !important;
		transition-timing-function: linear !important;
	}

	.swiper-slide {
		width: 180px;
		height: auto;
		display: flex;
		align-items: center;
	}
}

.partner-logo .logo-wrapper {
	width: 180px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
}

.partner-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.request-consult {
	overflow: hidden;
	height: 100vh;

	.image {
		width: 100%;
		height: 100vh;
		position: absolute;
		left: 0;
		top: 0;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		&:after {
			content: "";
			display: block;
			position: absolute;
			width: 100%;
			height: 100%;
			left: 0;
			top: 0;
			background: -webkit-gradient(linear, left top, left bottom, color-stop(50vh, rgba(0, 0, 0, .8)), color-stop(100vh, #121212));
			background: linear-gradient(to bottom, rgba(0, 0, 0, .8) 50vh, #121212 100vh);
		}
	}
}

.qualify-content {
	width: calc(1320px / 2);
	margin-left: auto;

	p {
		color: var(--white-col);
	}

	.list-qualify {
		list-style-type: none;
		padding-left: 0;

		.list-qualify-item {
			padding-left: 2rem;
			position: relative;

			&:not(:last-of-type) {
				margin-bottom: 3rem;
			}

			&::before {
				content: "";
				width: .75rem;
				height: 1rem;
				left: 0;
				top: .25rem;
				position: absolute;
				display: block;
				background-color: #0086CA;
				-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
				clip-path: polygon(0 0, 100% 50%, 0 100%);
			}
		}
	}
}

.marquee-text {
	display: block;
	animation: marquee 20s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-100%);
	}
}

.chart-img {
	max-width: 80%;
	margin: 50px auto;
	display: block;
}

.independent-publishing {
	background-color: #f5f6f7;
}


.form-wrapper {
	width: 75%;
	margin: auto;

	h2 {
		font-size: 35px;
		text-transform: capitalize;
		color: #868484;
		font-weight: 700;
		text-align: center;
		margin-bottom: .5em;
	}

	input,
	textarea {
		width: 100%;
		border: 0;
		margin-bottom: 10px;
		padding: 10px;
		border-radius: 5px;
		background-color: #ffffff29;
		height: 55px;
		color: #fff;
	}

	.form-control::placeholder {
		color: var(--default-color);
	}

	.form-control:focus {
		background-color: #ad7a42;
		box-shadow: 0 0 5px var(--thm-color);
	}

	.call-now-btn {
		border-radius: 50px;
		width: 75%;
		background-color: var(--thm-color);

		&:hover {
			background-color: transparent;
			border: 1px solid var(--thm-color);
			color: var(--thm-color) !important;
		}
	}
}

.form-wrapper form {
	padding: 40px 30px 30px;
	position: relative;
	background: linear-gradient(#0334486b 100%, #03344885 20%);
	background: #3e5a6194;
	box-shadow: 0px 0px 10px #000000;
	border-radius: 15px;
	/* border: 1px solid #0F2851; */
}

.set-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.h-100 {
	height: 100% !important;
}

.p-lg-4 {
	padding: 1.5rem !important;
}

.shadow {
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: var(--white-col);
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: .25rem;
}

.budget-select {
	width: 100%;
	border: 0;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 5px;
	background-color: #ffffff29;
	height: 55px;
	color: var(--white-col);

	option {
		color: var(--black-col);
	}
}

.error {
	color: red;
}

a.nav-item.nav-link {
	@media (max-width: 1800px) and (min-width: 1100px) {
		font-size: 12px;
	}
}


.news-letter {
	display: flex;

	.form-control {
		width: 100%;
		border: 0;
		padding: 10px;
		border-radius: 5px;
		background-color: #ffffff29;
		height: 50px;
		color: #fff;

		&::placeholder {
			color: var(--default-color);
		}
	}

	.email-group {
		width: 100%;
	}

	.sec-btn {
		width: 100%;
	}
}

.navbar {
	.hidden-xl {
		display: none;
	}
}

.blog-hero {
	background: #fdfdfd;
	border-bottom: 1px solid #eee;
}

.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--primary-col) !important;
	color: var(--white-col) !important;
}
.legal-document{
	h2{
		font-size: 3rem;
	}
}

.blog-hero h1 {
	font-size: 4em !important;
}

.blog-hero h2 {
	font-size: 2em;
	padding-bottom: 0px;
}

.blog-hero img {
	width: 100%;
	height: 700px !important;
	object-fit: cover !important;
}

.blog-hero .sub-text {
	font-size: 0.9em;
}

.blog-text li::before {
	content: "\f00c";
	font-family: "FontAwesome";
	margin-right: 10px;
}