/* ----------------
Fonts
---------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');
																													
/* ----------------
Global Css
---------------- */
:root {
	--main-color: rgb(120, 87, 254);
	--color-1: #e91e63;
	--color-2: #f5ae10;
	--color-3: #09d69c;
	--bg-dark: #2b2e2f;
	--main-to-dark-color: var(--main-color);
	--dark-to-main-color: var(--bg-dark);
	--shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
	--shadow-black-300: 0 5px 15px rgba(0, 0, 0, 0.3);
	--black-900: #000;
	--black-400: #555;
	--black-100: #f7f7f7;
	--black-000: #fff;
	--black-alpha-100: rgba(0, 0, 0, 0.05);
}

* {
	margin: 0;
	padding: 0;
	outline: none!important;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

ul {
	list-style-type: none;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	overflow-x: hidden;
	background-color: #fff;
	line-height: 1.5;
}

body.dark {
	background-color: var(--bg-dark);
	--black-100: var(--bg-dark);
	--black-000: var(--bg-dark);
	--main-to-dark-color: var(--bg-dark);
	--dark-to-main-color: var(--main-color);
	--black-alpha-100: rgba(255, 255, 255, 0.05);
	--shadow-black-100: var(--shadow-black-300);
	--black-900: #fff;
	--black-400: #bbb;
}
h3 {
	margin: 20px 0;
	font-size: 22px;
	font-weight: 500;
	color: var(--black-900);
	text-transform: capitalize;
}

p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	color: var(--black-400);
}

.btn-1 {
	background-color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 30px;
	color: var(--main-color);
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.5s ease;
	box-shadow: var(--shadow-black-300);
	font-weight: 500;
}
.btn-1:focus {	
	box-shadow: var(--shadow-black-300);
}
.btn-1:hover {
	color: #fff;
	background-color: var(--main-color);
}

.btn-2 {
	background-color: var(--main-color);
	padding: 12px 30px;
	border: none;
	border-radius: 30px;
	color: #fff;
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.5s ease;
	box-shadow: var(--shadow-black-100);
	font-weight: 500;
}
.btn-2:focus {	
	box-shadow: var(--shadow-black-100);
}
.btn-2:hover {
	color: var(--main-color);
	background-color: #fff;
}

@keyframes spin_01 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes bounceTop_01 {
	0%,100% {
		transform: translateY(-30px);
	}
	50% {
		transform: translateY(0px);
	}
}

@keyframes pulse_01 {
	0% {
		transform: scale(.94);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);

	}
	100% {
		transform: scale(.94);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.effectWrap .effect {
	position: absolute;
	z-index: -1;
}

.effectWrap .effect-1 {
	left: 20%;
	top: 20%;
	font-size: 20px;
	color: var(--color-2);
	animation: spin_01 5s linear infinite;
}

.effectWrap .effect-2 {
	right: 5%;
	top: 10%;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.5);
	animation: spin_01 5s linear infinite;
}

.effectWrap .effect-3 {
	left: 5%;
	bottom: 30%;
	font-size: 20px;
	color: var(--color-3);
	animation: bounceTop_01 5s linear infinite;
}
.space80 {
	padding: 80px 0;
}

.sectionTitle {
	margin-bottom: 60px;
}

.sectionTitle h2 {
	font-size: 40px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--black-900);
	text-align: center;
	margin: 0;
}

.sectionTitle h2 span {
	color: var(--main-color);
}

.owl-carousel .owl-dots {
	padding: 0 15px;
	text-align: center;
	margin-top: 20px;
}
.owl-carousel button.owl-dot {
	height: 6px;
	width: 25px;
	display: inline-block;
	background-color: #ddd;
	margin: 0 4px;
	border-radius: 10px;
}
.owl-carousel button.owl-dot.active {
	background-color: var(--main-color);
}

/* ----------------
Navbar Css
---------------- */
.navbar {
	background-color: transparent;
	padding: 20px 0;
	transition: all 0.5s ease;
}
.navbar.navbarShrink {
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	background-color: var(--main-color);
	padding: 10px 0;
}
.navbar > .container {
	padding: 0 15px;
}
.navbar .navbar-brand {
	font-size: 30px;
	font-weight: 500;
	color: #fff;
	text-transform: capitalize;
}
.navbar .nav-item {
	margin-left: 40px;
}
.navbar .nav-item .nav-link {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	padding: 5px 0;
	position: relative;
}
.navbar .nav-item .nav-link::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	right: 0;
	background: #fff;
	transition: all 0.5s ease;
	transform: scale(0);
}
.navbar .nav-item .nav-link.active::before,
.navbar .nav-item .nav-link:hover::before {
	transform: scale(1);
}

/* ----------------
Home Css
---------------- */
.home {
	min-height: 100vh;
	padding: 150px 0;
	background-color: var(--main-to-dark-color);
	border-radius: 0 0 200px 0;
	position: relative;
	z-index: 1;
}
.homeText h1 {
	font-size: 45px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px;
}
.homeText p {
	font-size: 18px;
	margin: 0;
	color: #fff;
}
.home .homeBtn {
	margin-top: 30px;
}
.home .homeBtn .videoPlayBtn {
	margin-left: 20px;
	height: 50px;
	width: 50px;
	padding: 0;
	animation: pulse_01 2s ease infinite;
}
.home .homeBtn .videoPlayBtn i {
	line-height: 50px;
}
.home .homeBtn .videoPlayBtn:hover {
	animation: none;
	box-shadow: var(--shadow-black-300);
}
.homeImg img {
	max-width: 250px;
	width: 100%;
	box-shadow: var(--shadow-black-100);
	border-radius: 32px;
	animation: bounceTop_01 3s ease infinite;
}

.homeImg {
	position: relative;
}
.homeImg .circle {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 400px;
	width: 400px;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.homeImg .circle::before {
	content: '';
	position: absolute;
	height: 60px;
	width: 60px;
	left: 30px;
	top: 30px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	transform-origin: 170px 170px;
	animation: spin_01 10s linear infinite;
}

.videoPopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1999;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5 ease;
}
.videoPopup__open {
	opacity: 1;
	visibility: visible;
}

.videoPopup__inner {
	width: 100%;
	max-width: 900px;
	position: relative;
}

.videoPopup .videoPopup__close {
	position: absolute;
	right: 0;
	top: -30px;
	height: 30px;
	width: 30px;
	line-height: 30px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	cursor: pointer;
}

.videoPopup .iframeBox {
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.videoPopup #playerOne {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Features Area Style start */
.features .features__item {
	margin: 15px;
	box-shadow: var(--shadow-black-100);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.features .features__item::before,
.features .features__item::after {
	position: absolute;
	content: '';
	z-index: -1;
	border-radius: 50%;
	transition: all 0.5s ease;
	opacity: 0;
}
.features .features__item::before {
	height: 20px;
	width: 20px;
	left: -20px;
	top: 40%;
	background-color: var(--color-1);
}
.features .features__item::after {
	height: 30px;
	width: 30px;
	right: -30px;
	top: 80%;
	background-color: var(--color-2);
}
.features .features__item:hover::before {
	left: 10px;
	opacity: 1;
}
.features .features__item:hover::after {
	right: -15px;
	opacity: 1;
}
.features .features__item .icon{
	height: 60px;
	width: 60px;
	text-align: center;
	margin: 0 auto 30px;
	font-size: 30px;
	color: var(--main-color);
	position: relative;
	z-index: 1;
}

.features .features__item:hover .icon {
	color: #fff;
	font-size: 20px;
}
.features .features__item .icon::before {
	left: 100%;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	content: '';
	background-color: var(--main-color);
	transition: all .5s ease;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
}
.features .features__item:hover .icon::before {
	left: 0;
	border-radius: 50%;
	opacity: 1;
	visibility: visible;
}
.features .features__item .icon i {
	line-height: 60px;
}
.features .features__item h3{
	font-size: 22px;
	font-weight: 500;
	color: var(--black-900);
	text-transform: capitalize;
	margin: 0 0 10px;
}
.features .features__item p {
	margin: 0 0 15px;
}

/* Fun Facts Style */
.funFacts {
	background-color: var(--black-100);
}

.funFacts__img img {	
	max-width: 250px;
	width: 100%;
	box-shadow: var(--shadow-black-100);
	border-radius: 32px;
	animation: bounceTop_01 3s ease infinite;
}
.funFacts .sectionTitle {
	margin-bottom: 20px;
}
.funFacts .sectionTitle h2 {
	text-align: left;
}
.funFacts__text p {
	margin: 0 0 15px;
}
.funFacts__item {
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
	margin-top: 40px;
}

.funFacts__item h3 {
	font-size: 40px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #fff;
}
.funFacts__item span {
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 300;
	margin: 0;
	line-height: 26px;
	display: block;
}
.funFacts__item.style_1 {
	background-color: var(--color-1);
}
.funFacts__item.style_2 {
	background-color: var(--color-2);
}
.funFacts__item.style_3 {
	background-color: var(--color-3);
}
.funFacts__item.style_4 {
	background-color: var(--main-color);
}

/* App Screenshots Style */
.screenshots__item {
	margin: 15px;
}
.screenshots__item img {
	max-width: 250px;
	width: 100%;
	display: block;
	margin: 0 auto;
}

/* App Download style */
.appDownload {
	background: linear-gradient(rgba(120, 87, 256, .8), rgba(120, 87, 256, .8)), url('../img/download-app-bg.jpg')fixed no-repeat center top / cover;
}
.appDownload .sectionTitle h2 {
	color: #fff;
}
.appDownload__item {
	padding: 30px;
	text-align: center;
	border-radius: 10px;
	background-color: var(--black-000);
	box-shadow: var(--shadow-black-100);
}

.appDownload__item i {
	font-size: 30px;
	color: var(--main-color);
	display: inline-block;
}
.appDownload__item h3 {
	font-size: 22px;
	margin: 20px 0;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--black-900);
}
.appDownload__item p {
	margin: 0 0 30px;
}

/* How It Work Style */
.howItWork__item {
	padding: 30px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.howItWork__item.lineRight::before {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	left: 50%;
	top: 60px;
	background-color: var(--main-color);
	z-index: -1;
}
.howItWork__item .step {
	display: inline-block;
	height: 60px;
	width: 60px;
	font-size: 30px;
	text-align: center;
	line-height: 60px;
	border-radius: 50%;
	background-color: var(--main-color);
	color: #fff;
	font-weight: 500;
	margin: 0 0 15px;
}
.howItWork__item p {
	margin: 0;
}

/* Testimonial Section Style */
.testimonials {
	background-color: var(--black-100);
}
.testimonial__item {
	margin: 15px;
	padding: 30px;
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
	text-align: center;
}
.testimonial__item .imgBox {
	height: 100px;
	width: 100px;
	display: inline-block;
	margin-bottom: 30px;
	border: 4px solid var(--main-color);
	border-radius: 50%;
	position: relative;
}
.testimonial__item .imgBox img {
	border-radius: 50%;
	width: 100%;
}
.testimonial__item .imgBox i{
	position: absolute;
	left: calc(100% - 15px);
	top: calc(50% - 15px);
	background-color: var(--main-color);
	height: 30px;
	width: 30px;
	font-size: 12px;
	color: #fff;
	line-height: 30px;
	border-radius: 50%;
	text-align: center;
}
.testimonial__item p{
	margin-bottom: 20px;
}
.testimonial__item h3{
	font-size: 18px;
}
.testimonial__item span{
	display: block;
	font-weight: 300;
	color: var(--black-400);
	font-size: 16px;
}
.testimonial__item .rating {
	margin-top: 10px;
}
.testimonial__item .rating i {
	display: inline-block;
	font-size: 16px;
	color: var(--color-2);
}

/* PricingPlan Style */
.pricingPlan {
	box-shadow: var(--shadow-black-100);
	border-radius: 10px;
}

.pricingPlan .pricing__header {
	padding: 20px 30px;
	text-align: center;
	border-bottom: 1px solid var(--black-alpha-100);
}
.pricingPlan .pricing__header h3 {
	text-align: center;
	font-size: 30px;
}
.pricingPlan .pricing__Price {
	padding: 30px 40px;
	display: flex;
	justify-content: center;
	line-height: 0.7;
}
.pricingPlan .pricing__Price .currency{
	font-size: 16px;
	font-weight: 300;
	margin-right: 5px;
	align-self: flex-start;
	color: var(--black-400);
}
.pricingPlan .pricing__Price .price{
	font-size: 80px;
	font-weight: 700;
	color: var(--main-color);
}
.pricingPlan .pricing__Price .period{
	font-size: 14px;
	font-weight: 300;
	margin-right: 5px;
	align-self: flex-end;
	text-transform: uppercase;
	color: var(--black-400);
}
.pricingPlan .pricing__body {
	padding: 0 30px;
}
.pricingPlan .pricing__body ul li {
	font-size: 14px;
	font-weight: 300;
	color: var(--black-400);
	padding: 10px 0 10px 30px;
	border-bottom: 1px solid var(--black-alpha-100);
	line-height: 26px;
	position: relative;
}
.pricingPlan .pricing__body ul li:last-child {
	border-bottom: none;
}
.pricingPlan .pricing__body ul li i {
	color: var(--main-color);
	position: absolute;
	left: 0;
	top: 12px;
}
.pricingPlan .pricing__footer {
	padding: 20px 30px 30px;
	text-align: center;
}

/* Team Section Style */
.team {
	background-color: var(--black-100);
}
.team__item {
	margin: 15px;
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow-black-100);
}
.team__item h3 {
	font-size: 18px;
	margin: 15px 0 8px;
}
.team__item span {
	display: block;
	font-size: 16px;
	font-weight: 300;
	color: var(--black-400);
	text-transform: capitalize;
}

/* faq section style */
.faq .accordion__item:not(:last-child) {
	margin-bottom: 20px;	
}
.faq .accordion-header {
	box-shadow: var(--shadow-black-100);
	padding: 18px 30px;
	transition: all 0.5s ease;
	cursor: pointer;
	position: relative;
}
.faq .accordion-header::before {
	content: '\f067';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	width: 30px;
	height: 30px;
	right: 10px;
	top: 50%;
	font-size: 16px;
	text-align: center;
	line-height: 30px;
	color: var(--black-400);
	transform: translateY(-50%);
	transition: all 0.5s ease;
}
.faq .accordion-header:not(.collapsed)::before {
	content: '\f068';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;	
}
.faq .accordion-header:not(.collapsed) {
	background-color: var(--main-color);
	box-shadow: none;
}

.faq .accordion-header:not(.collapsed) h3{
	color: #fff;
}
.faq .accordion-header h3 {
	font-size: 18px;
	margin: 0;
	transition: all 0.5s ease;
}

.faq .accordion-body {
	padding: 20px 30px;
	background-color: var(--black-100);
}

/* Contact Style */
.contact {
	background-color: var(--black-100);
}
.contact__info__item {
	position: relative;
	padding-left: 55px;
	margin-bottom: 3px;
}
.contact__info__item i {
	position: absolute;
	height: 40px;
	width: 40px;
	font-size: 16px;
	border-radius: 50%;
	color: var(--main-color);
	border: 1px solid var(--main-color);
	text-align: center;
	line-height: 40px;
	left: 0;
	top: 0;
}
.contact__info__item h4 {
	font-size: 18px;
	font-weight: 400;
	margin: 0 0 10px;
	color: var(--black-900);
}
.contact__form .form-group {
	margin-bottom: 25px;
}
.contact__form .form-control {
	height: 52px;
	border: 1px solid transparent;
	box-shadow: var(--shadow-black-100);
	border-radius: 8px;
	padding: 0 24px;
	color: var(--black-900);
	background-color: var(--black-000);
	transition: all 0.5s ease;
}
.contact__form .form-control:focus {
	border-color: var(--main-color);
}

.contact__form textarea.form-control {
	height: 140px;
	padding: 15px 25px;
	resize: none;
}

.footer {
	background-color: var(--main-color);
	padding: 50px 0 0;
}
.footer__col h3 {
	font-size: 20px;
	margin: 0 0 25px;
	color: #fff;
}
.footer__col p {
	color: rgba(255, 255, 255, 0.9);
}
.footer__col ul {
	margin: 0;
}
.footer__col ul li:not(:last-child) {
	margin-bottom: 10px;
}

.footer__col ul li a {
	font-size: 16px;
	font-weight: 300;
	display: block;
	color: rgba(255, 255, 255, 0.9);
	text-transform: capitalize;
	text-decoration: none;
	transition: all 0.5s ease;
}

.footer__col ul li a:hover {
	padding-left: 5px;
}

.footer .copyright p {
	margin-top: 50px;
	padding: 20px 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Toggle Theme */
.toggle__theme {
	position: fixed;
	right: 0;
	top: calc(50% - 20px);
	height: 40px;
	width: 40px;
	background-color: var(--dark-to-main-color);
	z-index: 1200;
	color: #fff;
	font-size: 16px;
	text-align: center;	
	cursor: pointer;
	border-radius: 50%;
	box-shadow: var(--shadow-black-300);
}
.toggle__theme i {
	line-height: 40px;
}


/* Responsive CSS=================== */
@media(max-width: 991px) {
	.navbar-toggler {
		background-color: var(--dark-to-main-color);
		box-shadow: var(--shadow-black-300);
		color: #fff;
		height: 34px;
		width: 44px;
		font-size: 16px;
		color: #fff;
	}
	.navbar-nav {
		background-color: var(--dark-to-main-color);
		box-shadow: var(--shadow-black-300);
	}
	.navbar .nav-item {
		margin: 0;
		padding: 5px 15px;
	}
	.navbar.navbarShrink .navbar-toggler,
	.navbar.navbarShrink .navbar-nav {
		background-color: var(--main-color);
	}
	.homeImg .circle {
		height: 320px;
		width: 320px;
	}
	.homeImg .circle::before {
		left: 18px;
		top: 18px;
		transform-origin: 142px 142px;
	}
	.homeText h1 {
		font-size: 40px;
	}
	.howItWork__item,
	.appDownload__item,
	.pricingPlan {
		margin-bottom: 30px;
	}
	.howItWork__item.lineRight::before {
		content: none;
	}
	.howItWork__item {
		box-shadow: var(--shadow-black-100);
		border-radius: 10px;
	}
}

@media(max-width: 767px) {
	.homeText {
		margin-bottom: 80px;
	}
	.funFacts__img {
		margin-bottom: 30px;
	}
	.contact__form {
		margin-top: 30px;
	}
	.footer__col {
		margin-bottom: 30px;
	}
	.sectionTitle {
		font-size: 35px;
	}
	.funFacts .sectionTitle h2 {
		text-align: center;
	}
}

@media(max-width: 575px) {
	.homeText h1 {
		font-size: 30px;
	}
	.homeText p {
		font-size: 16px;
	}
	.sectionTitle {
		font-size: 30px;
	}
}