
/*-----------------
 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: #feb281;
    --color-1: #e91e63;
    --color-2: #f5ae10;
    --color-3: #09d69c;
    --color-4: #853400;
    --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-eee: #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-1{
		background-color: #ffffff;
		padding: 20px 30px;
		border: none;
		border-radius: 30px;
		color: var(--main-color);
		font-size: 16px;
		text-transform: capitalize;
		transform: all 0.5s ease;
		box-shadow: var(--shadow-black-300);
		font-weight: 500;
}
.btn-2{
		
}
.btn-1-focus{
		box-shadow: var(--shadow-black-300);
}
.btn-1: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 pulse-01{
		0%{
				transform: scale(0.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(0.94);
				box-shadow: 0 0 0 0 rgba(255,255,255,0);
		}
}
.effect-wrap .effect{
		position: absolute;
		z-index: 1;
}
.effect-wrap .effect-1{
		left: 20%;
		top: 24%;
		font-size: 20px;
		color: var(--color-4);
		animation: spin_01 5s linear infinite;
}
.effect-wrap .effect-2{
		right: 5%;
		top: 20%;
		font-size: 25px;
		color: var(--color-4);
		animation: spin_01 7s linear infinite;
}
.effect-wrap .effect-3{
		left: 5%;
		bottom: 30%;
		font-size: 25px;
		color: var(--color-4);
		animation: bounceTop_01 3s linear infinite;
}
.section-padding{
		padding: 80px 0;
}
.section-title{
		margin-bottom: 60px;
}
.section-title h2{
		font-size: 40px;
		color: var(--main-color);
		font-weight: 700;
		text-transform: capitalize;
		text-align: center;
		margin: 0;
}
.section-title h2 span{
		color: var(--color-4);
}
/*-----------------
 Navbar
-----------------*/
.navbar {
  background: var(--main-color);
  padding: 20px 0;
  transition: all 0.5s ease;
}
.navbar .navbar-shrink{
		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;
		color: #ffffff;
		font-weight: 500;
		text-transform: capitalize;
}
.navbar .nav-item{
		margin-left: 40px;
}
.navbar .nav-item .nav-link{
		color: #ffffff;
		font-size: 16px;
		font-weight: 400;
		padding: 5px 0;
		position: relative;
}
.navbar .nav-item .nav-link::before{
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		top: 0;
		right: 0;
		height: 1px;
		background-color: #ffffff;
		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 Section
-----------------*/
.home{
		min-height: 100vh;
		padding: 150px 0;
		background-color: var(--main-color);
		border-radius: 0 0 150px 0;
		position: relative;
		z-index: 1;
}
.home-text h1{
		font-size: 45px;
		font-weight: 700;
		color: var(--color-4);
		margin: 0 0 20px;
}
.home-text p{
		font-size: 18px;
		line-height: 28px;
		color: var(--color-4);
		margin: 0;
		font-weight: 300;
}
.home .home-btn{
		margin-top: 40px;
		height: 50px;
		width: 100px;
		padding: 0;
		font-size: 16px;
		box-shadow: var(--shadow-black-300);
		border-radius: 32px;
}
.home .home-btn .video-play-btn{
		margin-left: 30px;
		height: 50px;
		width: 50px;
		padding: 0;
		font-size: 16px;
		animation: pulse-01 2s ease infinite;
}
.home .home-btn .video-play-btn:hover{
		animation: none;
		box-shadow: var(--shadow-black-300);
}
.home .home-btn .video-play-btn i{
		line-height: 50px;
}
.home-img img{
		max-width: 250px;
		width: 100%;
		box-shadow: var(--shadow-black-100);
		border-radius: 32px;
		animation: bounceTop_01 3s ease infinite;
}
.home-img{
		position: relative;
}
.home-img .circle{
		position: absolute;
		z-index: 1;
		height: 400px;
		width: 400px;
		border: 1px solid rgba(255,255,255,0.5);
		border-radius: 50%;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
}
.home-img .circle::before{
		content: '';
		position: absolute;
		height: 60px;
		width: 60px;
		background-color: rgba(255,255,255,0.5);
		border-radius: 50%;
		left: 30px;
		top: 30px;
		transform-origin: 170px 170px;
		animation: spin_01 10s linear infinite;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
}
.about .content span{
		color: var(--color-4);
}
.about .content h2{
  font-weight: 600;
  font-size: 32px;
  color: var(--main-color);
}
.about .content ul{
  list-style: none;
  padding: 0;
}
.about .content ul li{
  padding-bottom: 10px;
}
.about .content ul i{
  font-size: 20px;
  padding-right: 8px;
  color: #2c4964;
}
.about .content p:last-child{
  margin-bottom: 0;
}
.about .content .read-more{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: var(--main-color);
  position: relative;
}
.about .content .read-more:hover{
  background: var(--color-4);
}
.about .content .read-more i{
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 10px;
  color: #2c4964;
}

/*-----------------
 Fun Facts
-----------------*/
.fun-facts{
		background-color: var(--black-100);
}
.fun-facts .section-title{
		margin-bottom: 20px;
}
.fun-facts .section-title h2{
		text-align: left;
}
.fun-facts img{
		max-width: 250px;
		width: 100%;
		box-shadow: var(--shadow-black-100);
		border-radius: 32px;
		animation: bounceTop_01 3s ease infinite;
}
.fun-facts-text p{
		font-size: 16px;
		line-height: 26px;
		color: var(--black-400);
		margin: 0 0 15px;
		font-weight: 300;
}
.fun-facts-item{
		padding: 40px 30px;
		text-align: center;
		box-shadow: var(--shadow-black-100);
		border-radius: 10px;
		margin-top: 10px;
}
.fun-facts-item h3{
		font-size: 40px;
		font-weight: 700;
		color: #ffffff;
		margin: 0 0 5px;
}
.fun-facts-item span{
		font-size: 16px;
		text-transform: uppercase;
		font-weight: 300;
		margin: 0;
		line-height: 36px;
		display: block;
		color: #ffffff;
}
.fun-facts-item.style-1{
		background-color: var(--color-1);
}
.fun-facts-item.style-2{
		background-color: var(--color-2);
}
.fun-facts-item.style-3{
		background-color: var(--color-3);
}
.fun-facts-item.style-4{
		background-color: var(--main-color);
}

/*-----------------
 Screenshots Section
-----------------*/
.screenshoots-item{
		margin: 15px;
}
.screenshoots-item img{
		width: 100px;
		max-width: 250px;
		display: block;
		margin: auto;
		box-shadow: var(--shadow-black-100);
		border-radius: 32px;
}

/*-----------------
 App Screenshots
-----------------*/
.contacts{
		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: 50px;
		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(--black-100);
		border-radius: 30px;
		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-top: 12px;
		resize: none;
}

/*-----------------
 Footer
-----------------*/
.footer{
		background-color: var(--main-color);
		padding: 50px 0 0;
}
.footer-col h3{
		font-size: 18px;
		font-weight: 500;
		color: #ffffff;
		margin: 0 0 25px;
		text-transform: capitalize;
}
.footer-col p{
		font-size: 16px;
		color: rgba(255,255,255,0.9);
		font-weight: 300;
		line-height: 26px;
		margin: 0;
}
.footer-col ul{
		margin: 0;
}
.footer-col ul li:not(:last-child){
		margin-bottom: 10px;
}
.footer-col ul li a{
		font-size: 16px;
		color: rgba(255,255,255,0.9);
		font-weight: 300;
		display: block;
		text-transform: capitalize;
		transition: all 0.5s ease;
		text-decoration: none;
}
.footer-col ul li a:hover{
		padding-left: 5px;
}
.footer .copyright-text{
		padding: 20px 0;
		text-align: center;
		font-size: 16px;
		color: rgba(255,255,255,0.9);
		font-weight: 300;
		margin: 50px 0 0;
		border-top: 1px solid rgba(255,255,255,0.2);
}
