/*-------------------------
    Preloader Css
---------------------------*/
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background: #fff;
	justify-content: center;
}


.loader {
	width:100px;
	height:100px;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
}

.circle {
	position:absolute;
	width:0px;
	height:0px;
	border-radius:100%;
	background:#e85611;
	animation:radar 3s ease-out infinite;
}

.circle:nth-of-type(1){
	animation-delay:0.2s;
}

.circle:nth-of-type(2){
	animation-delay:0.6s;
}

.circle:nth-of-type(3){
	animation-delay:1s;
}

.circle:nth-of-type(4){
	animation-delay:1.4s;
}

.circle:nth-of-type(5){
	animation-delay:1.8s;
}

@keyframes radar {
	0% {}
	30% {
		width:50px;
		height:50px;
	}
	100% {
		width:50px;
		height:50px;
		opacity:0;
	}
}
/*---------------------------
** Main Menu  Area Start
---------------------------*/
.navigation {
	background: #e85611;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.navigation.innerpage {
	background: #fff;
	border-bottom: 0px;
}
.navigation.stiky-nav {
	background: #fff;
	border-bottom: 0px;
	border-bottom: 0px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}
.navigation.stiky-nav .navbar .navbar-brand img {
	filter: unset;
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link {
	color: #242424;
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link::before {
	background: #e85611;
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link:hover::before, .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link.active::before {
	background: #e85611;
}
.navigation .navbar {
	padding: 0px 0px 0px;
}
.navigation .navbar .navbar-brand {
	font-size: 30px;
	line-height: 50px;
	font-weight: 700;
	padding: 0px;
	margin-top: -2px;
	text-transform: uppercase;
	color: #242424;
}
.navigation .navbar .navbar-brand img {
	max-width: 170px;
	filter: brightness(0) invert(1);
}
.navigation .navbar #mainmenu ul .nav-item .nav-link {
	color: #fff;
	position: relative;
	padding: 25px 10px 25px;
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
}
.navigation .navbar #mainmenu ul .nav-item .nav-link::before {
	position: absolute;
	content: " ";
	width: 3px;
	height: 3px;
	left: 50%;
	border-radius: 50px;
	bottom: 0;
	opacity: 0;
	transform: translateX(-50%);
	background: #fff;
	transition: 0.5s;
}
.navigation .navbar #mainmenu ul .nav-item .nav-link:hover::before, .navigation .navbar #mainmenu ul .nav-item .nav-link.active::before {
	position: absolute;
	content: " ";
	width: 70%;
	height: 3px;
	left: 50%;
	transform: translate(-50%);
	bottom: 0px;
	opacity: 1;
	background: #fff;
}

.navigation .navbar #mainmenu ul .nav-item.dropdown .dropdown-menu {
	padding: 0px;
	margin-top: 0px;
	border: 0px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}
.navigation .navbar #mainmenu ul .nav-item.dropdown .dropdown-menu .menu-item .dropdown-item:hover{
	color: #e85611;
	background-color: transparent;
}
/*---------------------------
** Main Menu Area End
---------------------------*/

/*-----------------------------
** Hero Area Start
------------------------------*/
.hero-area {
	position: relative;
	padding: 365px 0px 291px;
	z-index: 2;
}


.hero-area .decor-element {
	content: '';
	display: block;
	width: 100%;
	background: url(../img/startup-overlay.png);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	height: 100%;
}


.hero-area .custom-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.hero-area .hero-inner {
	height: auto;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 3;
	padding-bottom: 180px;
}

.hero-area .bgimg {
	position: absolute;
	bottom: 0%;
	width: auto;
}
.hero-area .left-content .content .title {
	font-size: 46px;
	line-height: 66px;
	color: #fff;
	font-weight: 700;
}
.hero-area .left-content .content .subtitle {
	font-size: 18px;
	line-height: 28px;
	color: #ffff;
	margin-top: 26px;
}
.hero-area .left-content .content .links {
	margin-top: 42px;
	padding-right: 15px;
}
.hero-area .left-content .content .links a {
	margin-left: 0px;
}
.hero-area .right-img {
	text-align: center;
	position: relative;
}
.hero-area .right-img .discount-circle {
	position: absolute;
	left: 80px;
	top: -30px;
	z-index: 96;
}
.hero-area .right-img .discount-circle .discount-circle-inner {
	text-align: center;
}
.hero-area .right-img .discount-circle .discount-circle-inner .price {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	line-height: 30px;
	text-align: center;
}
.hero-area .right-img .discount-circle .discount-circle-inner .price span {
	display: block;
	margin-top: 0px;
	font-size: 20px;
	line-height: 20px;
}
.hero-area .right-img .img {
	position: absolute;
	top: 8px;
	left: -35px;
	max-width: 344px;
	width: auto;
	z-index: 9;
}