button {
	border: none;
	padding: 11px;
	color: #fff;
	background: linear-gradient(#DF9713, #EABB68);
	border-radius: 20px;
	min-width: 130px;
}

h1 {
	font-size: 60px;
}

.topleft {
	position: absolute;
	left: -120px;
	top: 0px;
}

.ct-text-orange {
	color: #DF9713;
}

.tryitnow {
	background: linear-gradient(#DF9713, #EABB68);
}

.about-area .about-top-plant {
	left: 14%;
	top: 39%;
	z-index: 1;
}

.about-area .about-dot-bg-7 {
	position: absolute;
	right: 17%;
	top: 40%;
	z-index: 1;
}

.about-area .about-banner {
	margin: 0 0 0px;
}

.about-area .about-banner-contact {
	position: absolute;
	right: 22%;
	bottom: 15%;
}

.icon-box .icon {
	background: linear-gradient(#DF9713, #EABB68) !important;
	border-radius: 50%!important;
}

.section-title .title::after {
	background: #df972d;
}

header .header-container .main-menu ul li ul li a:hover,
header .header-container .main-menu ul li a:hover {
	color: #df972d;
}
footer .footer-top-area .fta-menu .menu li a{
    color: #df972d;
}
footer .footer-top-area .fta-menu .menu li a:hover{
    color: #df972d;
    opacity: 0.8;
    transform: scale(1.1);
}
.single-home5-why .icon-box .icon {
	box-shadow: 0px 16px 32px 0px rgb(231 178 96);
	-webkit-box-shadow: 0px 16px 32px 0px rgb(224 157 56);
	-moz-box-shadow: 0px 16px 32px 0px rgb(224 157 56);
	-o-box-shadow: 0px 16px 32px 0px rgb(224 157 56);
	height: 50px;
	width: 50px;
	line-height: 50px;
}

.single-home5-why .icon-box .icon::before {
	height: 90px;
	width: 90px;
}

.home5-pricing-area{
    background-image: linear-gradient(90deg, #DF9713 0%, #EABB68 100%);
}
.bg-btn{
    background-image: linear-gradient(90deg, #DF9713 0%, #EABB68 100%)!important;
}

.home5-single-pricing .type{
    color:#DF9713;
}

.home3-featuer-area {
	background-image: linear-gradient(90deg, #ffffff 0%, #ebc48a 100%);
	position: relative;
}

.home3-featuer-area .home5-choose-bg {
    position: absolute;
    text-align: right;
    right: -115px;
    bottom: 0;
    opacity: .5;
}
.home3-featuer-area .home3-device-bg{
    position: absolute;
    text-align: center;
    right: 0;
    top: 30px;
    left: 0;
}

.light{
    font-weight: 300;
    font-family: "Gilroy";
}

footer .footer-bottom-area .fba-social .social li a:hover{
    background-image: linear-gradient(90deg, #DF9713 0%, #EABB68 100%)!important;
}

footer .footer-bottom-area{
    background-image: linear-gradient(90deg, #fff8ef 0%, #ffe8c6 100%);
}

footer .footer-bottom-area .fba-social .social li a{
    border: 1px solid #ffd293;
}
footer .footer-top-area{
    background: #ffe4c1;
}

footer .footer-bottom-area .fba-social .social li a{
    color: #df972d;
}

h1, h2, h3, h4, h5, h6, .section-title-3 .title, .home3-single-feature .content .title, footer .footer-bottom-area .hba-newsletter .title{
    color: #171255;
}

header .header-container .main-menu ul li a{
    color: #171255;
}


/*=============================
	25. Preloader
===============================*/
#preloader {
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	margin-top: 0px;
	top: 0px;
	z-index: 999;
}

#loading-center {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: 75px;
	display: inline-block;
	vertical-align: middle;
}

	.loader .loader-outter {
		position: absolute;
		border: 4px solid #F68B21;
		border-left-color: transparent;
		border-bottom: 0;
		width: 100%;
		height: 100%;
		border-radius: 50%;
		-webkit-animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
		animation: loader-outter 1s cubic-bezier(.42, .61, .58, .41) infinite;
	}

	.loader .loader-inner {
		position: absolute;
		border: 4px solid #F68B21;
		border-radius: 50%;
		width: 40px;
		height: 40px;
		left: calc(50% - 20px);
		top: calc(50% - 20px);
		border-right: 0;
		border-top-color: transparent;
		-webkit-animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
		animation: loader-inner 1s cubic-bezier(.42, .61, .58, .41) infinite;
	}

@-webkit-keyframes loader-outter {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loader-outter {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes loader-inner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes loader-inner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}