@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}

:root {
	--main-color: #f58b01;
	--main-color-rgba: rgba(0, 134, 202, .5);
	--secondary-col: #E2E3E2;
	--secondary-col-rgba: rgba(226, 227, 226, .5);
	--black-col: #000000;
	--lightblack-col: #0d0d0d;
	--black-col-rgba: rgba(0, 0, 0, .7);
	--white-col: #ffffff;
	--white-col-rgba: rgba(255, 255, 255, .5);
}

.primary-color {
	color: var(--main-color) !important;
}

.text-white {
	color: var(--white-col) !important;
}

h1 {
	color: var(--white-col);
	font-weight: 700 !important;
	font-size: 40px;
	line-height: 42px;
	text-transform: capitalize;
}

h2 {
	font-size: 33px;
	line-height: 32px;
	font-weight: 700 !important;
	text-transform: uppercase;
}

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);
}


img {
	max-width: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}

p {
	font-weight: 400;
	font-size: 16px;
	margin: 0;
	color: #252525;
	transition: 0.5s all ease-in;
}

section {
	padding: 50px 0;
	position: relative;
	clear: both;
	scroll-behavior: smooth !important;

}

.content-wrapper {
	position: relative;
	z-index: 2;
	color: var(--white-col);

	p {
		color: var(--white-col);
		padding: 10px 0;
	}
}

.home-hero {
	background-image: url("/assets/images/home/banner-bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 150px 0 100px;
	z-index: 2;

	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--black-col-rgba);
		z-index: -1;
	}
}

.text-h2 {
	color: var(--secondary-col-rgba);
	font-size: 40px;
	font-weight: 700;
}

.form-wrapper {
	position: relative;
	background: linear-gradient(#17181c8c 0%, #17181c 25%);
	border-radius: 12px;
	border-top: 2px solid var(--main-color);
	padding: 50px 40px !important;
	margin: auto;

	h2 {
		font-size: 35px;
		line-height: 23px;
		text-transform: capitalize;
		color: var(--secondary-col-rgba);
		font-weight: 700;
		padding: 20px 0;
		text-align: center;
	}

	.form-control {
		background-color: #40454f !important;
		border: 1px solid #40454f !important;
		color: #ffffff !important;
		margin-bottom: 20px !important;
	}

	.form-control:focus {
		border-color: var(--main-color) !important;
		box-shadow: 0 0 0 .25rem rgb(243 138 1 / 5%) !important;
	}

	.form-check-label {
		font-size: 10px;
	}

}

label {
	color: var(--white-col);
	font-size: 14px;
	margin-bottom: 10px;
}

.main-btns {
	gap: 20px;

	a {
		text-decoration: none;
	}
}

.main-btn {
	color: #fff;
	font-size: 15px;
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 4px;
	padding: 7px 20px;
	margin-top: 10px;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
	position: relative;
	overflow: hidden;

	i {
		padding-right: 5px;
		position: relative;
		z-index: 2;
	}

	span {
		position: relative;
		z-index: 2;
		color: var(--white-col);
	}

	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(120deg, rgba(0, 0, 0, 0.589) 0%, rgba(65, 65, 65, 0.623) 100%);
		transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 0;
		pointer-events: none;
	}

	&:hover::before {
		left: 0;
	}

	&:hover {
		color: var(--secondary-col);
	}

}

.main-btn-2 {
	color: #fff;
	font-size: 15px;
	background-color: var(--black-col);
	border: 1px solid var(--secondary-col);
	border-radius: 4px;
	padding: 7px 20px;
	margin-top: 10px;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
	position: relative;
	overflow: hidden;

	i {
		padding-right: 5px;
		position: relative;
		z-index: 2;
	}

	span {
		position: relative;
		z-index: 2;
		color: var(--white-col);
	}

	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(120deg, rgba(247, 150, 24, 0.74) 0%, rgb(245 139 1) 100%);
		transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 0;
		pointer-events: none;
	}

	&:hover::before {
		left: 0;
	}

}



.header {
	position: absolute;
	z-index: 5;
	width: 100%;
	top: 0;

	&.sticky {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 99;
		transition: all 0.3s ease-in-out;
		background: var(--black-col-rgba);
		color: var(--white-col);
		animation: header-animation 1s;
		-webkit-animation: header-animation 1s;
		-moz-animation: header-animation 1s;
	}

	.logo-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
}

@keyframes header-animation {
	0% {
		transform: translateY(-106px);
	}

	100% {
		transform: translateY(0);
	}
}

.navbar-light .navbar-toggler-icon {
	background-image: none;
}

.navbar-light .navbar-toggler {
	color: transparent;
	border-color: transparent;
}

.navbar-brand {
	width: 200px;
}

.nav-link {
	color: var(--white-col);
}

.partner-logo {
	padding-bottom: 50px;

	.swiper-wrapper {
		-webkit-transition-timing-function: linear !important;
		-o-transition-timing-function: linear !important;
		transition-timing-function: linear !important;
	}

	.swiper-slide {
		width: 200px;
		height: auto;
		display: flex;
		align-items: center;
	}

	.swiper-pagination-bullet-active {
		background-color: var(--main-color);
	}
}

.publisher-logo {
	.partner-logo .logo-wrapper {
		width: 200px;
		height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 30px;
	}

	.partner-logo img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

.service-card {
	position: relative;

	.service-img {
		max-width: 100%;
		border-radius: 20px 0 20px;
		width: 100%;
	}

	.image-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: auto;
		opacity: 0;
		border-radius: 20px 0 20px;
		background-image: linear-gradient(to bottom, rgba(22, 22, 22, 0.6) 40%, #ec6400 100%);
		transition: opacity 0.5s ease;
	}

	.overlay-text {
		color: var(--white-col);
		font-size: 22px;
		font-weight: bold;
	}

	&:hover {
		.image-overlay {
			opacity: 1;
			cursor: pointer;
		}
	}
}

a#goto-top {
	position: fixed;
	bottom: 70px;
	right: 30px;
	background: #f58b01;
	color: #0A1A2F;
	width: 46px;
	height: 46px;
	font-size: 22px;
	border-radius: 50px;
	z-index: 999;
	transition: 0.5s all !important;
	opacity: 0;
	visibility: hidden;

	i {
		padding-bottom: 3px;
		font-weight: 600;
		animation: bounce 4s linear infinite;
		-webkit-animation: bounce 4s linear infinite;
		-moz-animation: bounce 4s linear infinite;
	}
}

a#goto-top.show {
	opacity: 1;
	visibility: visible;
}

@keyframes bounce {

	0%,
	20%,
	53%,
	80%,
	100% {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translateZ(0);
	}

	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}

.book-marketing {
	background-color: #242424;
	color: var(--white-col);
	padding: 80px 0;

	p {
		font-size: 17px;
		padding: 20px 0;
	}

	.swiper {
		padding-bottom: 20px;
	}

	.swiper-slide {
		display: flex;
		justify-content: center;

		p {
			font-weight: 600;
		}
	}

	.service-card {
		background: #fff;
		border-radius: 10px;
		padding: 20px;
		width: 260px;
		text-align: center;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		height: 300px;
		align-content: center;
	}

	.service-card img {
		width: 100%;
		height: auto;
		border-radius: 8px;
	}

	.swiper-pagination-bullet {
		background: #ff9500;
		opacity: 0.5;
	}

	.swiper-pagination-bullet-active {
		background: #ff9500;
		opacity: 1;
	}
}

.consult-section {
	background: url('../images/home/bannerimage.jpg') center/cover no-repeat;
	background-color: #1e2129;
	position: relative;
	padding-top: 70px;
	margin-bottom: 120px;

	p {
		font-size: 18px;
		font-weight: 400;
		color: var(--white-col);
	}

	.form-wrapper {
		max-width: 1100px;
		background: transparent;
		border: 0;
		padding: 0 !important;
	}

	.form-wrapper h2 {
		display: none;
	}

	.leadform {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		justify-content: center;
	}

	.leadform .form-group {
		flex: 1 1 250px;
		min-width: 250px;

		&:nth-child(4) {
			display: none;
		}
	}

	.form-wrapper .form-control {
		border-radius: 8px;
		padding: 12px 15px;
		border: none;
		background-color: #fff !important;
		color: #333;
		font-size: 15px;
		margin-bottom: 0 !important;
		color: #000 !important;
	}

	.main-btn {
		padding: 12px 15px;
		min-width: 150px;
	}

	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--black-col-rgba);
		z-index: 0;
	}
}

.bg-overlay {
	background: url("/assets/images/home/cta-bg.png") center/cover no-repeat;
	background-color: rgba(0, 0, 0, 0.6);
	background-blend-mode: multiply;
	margin-bottom: -150px;
	position: relative;
	z-index: 2;
}

.portfolio {
	img {
		transition: 0.5s ease;
		object-fit: cover;
	}

	img:hover {
		transform: scale(0.9);
		opacity: 1;
	}
}

.no-horizontal-gutter>* {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

#bg-video {
	height: 600px !important;
	width: 100%;
	object-fit: cover;
}

.video-sec {
	align-items: center;
	justify-content: center;
}

.bg-video {
	position: relative;
}

.bg-video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	pointer-events: none;
}

.for-con {
	font-size: 20px;
	font-weight: 700;
}

.faq-section {
	.accordion-button:not(.collapsed) {
		color: var(--main-color);
		background-color: #ffc9823b;
		box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
	}

	.accordion-button:focus {
		box-shadow: 0 0 0 .25rem rgb(255 152 0 / 22%);
	}

	h5 {
		font-size: 16px;
		margin-bottom: 0;

	}
}

.before-footer {
	.form-wrapper h2 {
		display: none;
	}

	form {
		display: flex;
		flex-wrap: wrap;
		gap: 0 15px;
	}

	.form-group {
		width: 32.5%;

		&:nth-last-child(3) {
			width: 100% !important;
		}
	}

	color: var(--white-col);
}


footer {
	background-color: var(--black-col);

	p {
		font-size: 14px;
	}

	.bg-color {
		background-color: var(--main-color);
	}

	ul li {
		font-size: 15px;
		margin-bottom: 10px;
	}
}

.img-amz-book {
	max-width: 60% !important;
}

.player-section {
	.audio-player {
		margin-bottom: 20px;
	}

	.player-col {
		display: flex;
		gap: 50px;
	}
}

.book-publishing {
	background: url("/assets/images/book-pub.png") no-repeat center;
	background-size: cover;
	border-radius: 12px;
	padding: 50px;
	width: 70%;
	margin: auto;
	margin-bottom: 40px;
}

.nav-link:focus,
.nav-link:hover {
	color: var(--white-col);
}

.accordion-flush .accordion-item {
	margin-bottom: 20px;
}

.swiper-pagination-bullet {
	background: #ccc;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--main-color);
}

.testimonial-section {
	.swiper-pagination {
		margin-bottom: 70px;
	}
}

.icon-circle {

	width: 80px;
	height: 80px;
	background-color: #f28c00;
	color: white;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
}

.for-flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.generic-modal {
	display: none;
	max-width: 40%;
	padding: 0;
	background-color: #f9f9f9;
	overflow: hidden;
	border-radius: 10px;
	border: solid 2px var(--thm-base);

	p {
		font-size: 14px;
	}

	h2 {
		font-size: 30px;
	}

	.left-wrapper {
		display: block;
		background: rgba(255, 255, 255, 0);
		background-image: url("../images/modal.webp");
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: cover;
		padding: 2em;
		color: #fff;
		height: 100%;
	}

	.right-wrapper {
		padding: 2em 3em 2em 3em;
	}

	.form-control {
		margin-bottom: .5rem;
		padding: .85rem .85rem;
	}

	.btn-style-two {
		padding: 1rem;
		margin-top: 10px;
	}

	.form-wrapper {
		background: transparent;

		h2,
		label,
		a {
			color: var(--black-col) !important;
		}

		.form-control {
			background-color: transparent !important;
			color: var(--black-col) !important;
		}
	}
}

.fancybox__content>.f-button.is-close-btn {
	top: 10px;
	right: 10px;
}

.f-button svg {
	stroke: var(--black-col) !important;

}

.style-ul li {
	list-style: square !important;
}

.dropdown-item.active,
.dropdown-item:active {

	background-color: var(--main-color);
}