
/*-----------------
Fonts
------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/*-----------------
Global Css
------------------*/
:root {
	--main-color: #6838fe;
	--color-1: #e91e63;
	--color-2: #f5ae10;
	--color-3: #09d69c;
	--bg-dark: #2b2c2f;
	--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: #000000;
	--black-400: #555555;
	--black-100: #f7f7f7;
	--black-000: #ffffff;
	--black-alpha-100: rgba(0,0,0,0.05);
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	overflow-x: hidden;
	background-color: #ffffff;
	line-height: 1.5;
}

*{
	margin:0;
	padding: 0;
	outline:none!important;

}

img{
	max-width: 100%;
	vertical-align: middle;
}

ul {
	list-style: none;
}

.btn-download{
	margin-top: 0px;
	background-color: #ffffff;
	padding: 10px 0px;
	border: none;
	width: 135px;
	height: 30px;
}

.btn-privacy{
	background-color: #ffffff;
	padding: 2px 30px;
	border: none;
	border-radius: 30px;
	color: var(--main-color);
	font-size: 16p15
	text-transform: capitalize4
	transition: all 0.5s ease;
	font-weight: 500;
	width: 171px;
	height: 40px;
}

.btn-1{
	background-color: #ffffff;
	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: #ffffff;
	background-color: var(--main-color);
}


.btn-2{
	background-color: var(--main-color);
	padding: 12px 30px;
	border: none;
	border-radius: 30px;
	color: #ffffff;
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.5s ease;
	box-shadow: var(--shadow-black-300);
	font-weight: 500;
}


.btn-privacy:focus{
	/*box-shadow: var(--shadow-black-300);*/
}

.btn-privacy:hover{
	color: #ffffff;
	background-color: var(--main-color);
}

@keyframes spin_01{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

@keyframes bounceTop_01{
	0%,100%{
		transform: translateY(-30px);
	}
	50%{
		transform: translateY(0px);
	}
}

@keyframes zoomInOut_01{
	0%{
		transform: scale(0);
	}
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.section-padding{
	padding: 80px 0;
}

.section-title{
	margin-bottom: 60px;
}

.section-title h2{
	font-size: 40px;
	color: var(--black-900);
	font-weight: 700;
	text-transform: capitalize;
	text-align: center;
	margin: 0;
}

.section-title 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: 24px;
   	background-color: #dddddd;
   	display: inline-block;
   	margin: 0 4px;
   	border-radius: 5px;
}


.owl-carousel button.owl-dot.active{
	background-color: var(--main-color);
}

.owl-carousel .feature-item {
   background-color: #ffffff;
   text-align: center;
   height: 180px;
}

.owl-carousel .feature-item .feature-text-1 p{
	margin-top: 20px;
	font-size: 20px;	
}

.owl-carousel .feature-item .feature-text-2 p{
	margin-top: 30px;
	font-size: 20px;	
}

.owl-carousel .feature-item .feature-text-3 p{
	margin-top: 30px;
	font-size: 20px;	
}

.owl-carousel .feature-item .feature-text-4 p{
	margin-top: 0px;
	font-size: 20px;	
}

.owl-carousel .app-item {
   background-color: #ffffff;
   text-align: center;
   height: 180px;
}

.owl-carousel .app-item .app-text p{
	margin-top: 0px;
	font-size: 20px;	
}

/*-----------------
Navbar
------------------*/
.navbar{
	background-color: var(--main-color);
	height: 80px;
}


.navbar > .container{
	padding: 0 15px;
}

.navbar .navbar-brand{
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
    margin-top: 0px;  
}

.navbar-brand-name > {

  display: inline-block;
  float: left;

}

.navbar .nav-item{
	margin-left: 40px;
}

.navbar .nav-item .nav-link{
	color: #ffffff;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 400;
	padding: 5px 0;
	position: relative;
}

.navbar .nav-item .nav-link::before{
	content: '';
	position: absolute;;
	left: 0;
	bottom: 0;
	right: 0;
	height: 1px;
	background-color: #ffffff;
	transition: all 0.5s ease;
	transform: scale(0);
}

.navbar .nav-item .nav-link:hover::before{
	transform: scale(1);
}

 .logo-image{
    width: 240px;
    height: 60px;
    overflow: hidden;
}

/*-----------------
Home Section
------------------*/
.home{
	min-height: 100vh;
	padding: 80px 0;
	background-color: #ffffff;
	overflow-x: hidden;
}

.home-text h1{
	font-size: 45px;
	font-weight: 700;
	color: #03B250;
	margin: 0 0 20px;
}

.home-text p{
	font-size: 18px;
	line-height: 28px;
	color: #000000;
	margin: 0;
	font-weight: 300;
}

.home .home-btn{
	margin-top: 40px;
}

.home-img img{
	max-width: 250px;
	width: 100%;
	border-radius: 32px;
}

.home-img{
	position: relative;
}

/*-----------------
Features Section
------------------*/
.features, .apps  {
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #FFFFFF;
}

.features .feature-item{
	box-shadow: var(--shadow-black-100);
	margin: 15px;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.features .feature-item::before,
.features .feature-item::after{
	content: '';
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	transition: all 0.5s ease;
	opacity: 0;
}

.features .feature-item::before{
	height: 20px;
	width: 20px;
	background-color: #03B250;
	left: -20px;
	top: 40%;
}

.features .feature-item:hover::before{
	left: 10px;
	opacity: 1;
}

.features .feature-item:hover::after{
	opacity: 1;
	right: -15px;
}

.features .feature-item .icon{
	height: 60px;
	width: 60px;
	margin: 0 auto 30px;
	text-align: center;
	font-size: 30px;
	color: var(--main-color);
	position: relative;
	z-index: 1;
	transition: all 0.5s ease;
}

.features .feature-item .icon::before{
	content: '';
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	transition: all 0.5s ease;
	z-index: -1;
	opacity: 0;
}

.features .feature-item:hover .icon{
	color: #ffffff;
	font-size: 20px;
}

.features .feature-item:hover .icon::before{
	left: 0;
	border-radius: 50%;
	opacity: 1;
}

.features .feature-item .icon i{
	line-height: 60px;
}

.features .feature-item .icon h3{
	font-size: 22px;
	margin: 0 0 20px;
	color: var(--black-900);
	font-weight: 500;
	text-transform: capitalize;
}

.features .feature-item p{
	font-size: 16px;
	line-height: 26px;
	font-weight: 300;
	color: var(--black-400);
	margin: 0 0 15px;
}


/* Apps Section Styles */

.apps .app-item {
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.apps .app-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.apps .app-item p {
  font-size: 18px;
  color: #666;
}


/* 
-----
*/


.feature-item.app-item {
  background: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-item.app-item img {
  width: 100px;
  margin-bottom: 15px;
}

.feature-item.app-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.feature-item.app-item p {
  font-size: 1em;
  margin-bottom: 15px;
}

.feature-item.app-item .btn {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}




/*-----------------
Contact Section
------------------*/
.contact{
	background-color: var(--black-100);
}

.contact-info h3{
	font-size: 22px;
	color: var(--black-900);
	font-weight: 500;
	margin: 0 0 40px;
}

.contact-info-item{
	position: relative;
	padding-left: 55px;
	margin-bottom: 30px;
}

.contact-info-item i{
	position: absolute;
	height: 40px;
	width: 40px;
	left: 0;
	top: 0;
	border-radius: 50%;
	font-size: 16px;
	color: var(--main-color);
	border:1px solid var(--main-color);
	text-align: center;
	line-height: 38px;
}

.contact-info-item h4{
	font-size: 18px;
	font-weight: 400;
	margin: 0 0 10px;
	color: var(--black-900);
}

.contact-info-item p{
	font-size: 16px;
	font-weight: 300;
	margin: 0;
	line-height: 26px;
	color: var(--black-400);
}

.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: 30px;
	padding: 0 24px;
	color: var(--black-900);
	background-color: var(--black-000);
	transition: all 0.5s ease;
}

.contact-form textarea.form-control{
	height: 140px;
	padding-top: 12px;
	resize: none;
}
.contact-form .form-control:focus{
	border-color: var(--main-color);
}

/*-----------------
Privacy Policy 
------------------*/
.privacy-policy {
	margin-top: 125px;
	margin-bottom: 195px;
	background-color: #ffffff;
}

.privacy-policy .privacy-title {
	margin-top: 100px;
	margin-bottom: 50px;
	color: var(--main-color);
}

.privacy-policy span {
	color: #03B250;
}


/*-----------------
Footer 
------------------*/
.footer{
	background-color: var(--main-color);
	padding: 1px 0 0;
}

.footer .copyright-text{
	padding: 10px 0;
	text-align: center;
	font-size: 16px;
	color: rgba(255,255,255,0.9);
	font-weight: 300;
	margin: 10px 0 0;
}

/* FAQs Section */
.faqs {
  padding: 60px 0;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/*-----------------
Responsive 
------------------*/

@media(max-width: 991px) {
	.navbar-toggler{
		background-color: var(--dark-to-main-color);
		box-shadow: var(--shadow-black-300);
		height: 34px;
		width: 44px;
		padding: 0;
		font-size: 17px;
		color: #ffffff;
	}

	.navbar-nav{
		background-color: var(--dark-to-main-color);
		box-shadow: var(--shadow-black-300);
	}

	.navbar .nav-item{
		margin: 0;
		padding: 5px 15px;
	}

	.navbar.navbar-shrink .navbar-toggler,
	.navbar.navbar-shrink .navbar-nav{
		background-color: var(--main-color);
	}

	.home-text h1{
		font-size: 40px;
	}
}

@media(max-width: 767px){
	.home-text{
		margin-bottom: 80px;
	}

	.fun-facts-img{
		margin-bottom: 30px;
	}

	.contact-form{
		margin-top: 20px;
	}

	.footer-col{
		margin-bottom: 30px;
	}

	.section-title h2{
		font-size: 35px;
	}

	.func-facts .section-title h2{
		text-align: center;
	}
}


@media(max-width: 575px){
	.home-text h1{
		font-size: 30px;
	}

	.home-text p{
		font-size: 16px;
	}

	.section-title h2{
		font-size: 30px;
	}
}


