/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	font-family: "Poppins", sans-serif;
	color: #444444;
}

a {
	color: #84f9a7;
}

a:hover {
	color: #2a2af0;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
}

.back-to-top i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	background: #84f9a7;
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #00e4ff;
	color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 20px 0;
	background: #fff;
}

#header.header-scrolled,
#header.header-inner-pages {
	padding: 12px 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
	font-size: 32px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 2px;
	font-family: "Poppins", sans-serif;
}

#header .logo a {
	color: #84f9a7;
}

#header .logo img {
	max-height: 70px;
}

@media (max-width: 992px) {
	#header {
		padding: 12px 0;
	}
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu>ul {
	display: flex;
}

.nav-menu>ul>li {
	position: relative;
	white-space: nowrap;
	padding: 10px 0 10px 28px;
}

.nav-menu a {
	display: block;
	position: relative;
	color: #000;
	transition: 0.3s;
	font-weight: 600;
	font-size: 15px;
	font-family: "Poppins", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
color: #10a7d0;
}

.nav-menu .drop-down ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.nav-menu .drop-down li {
	min-width: 180px;
	position: relative;
}

.nav-menu .drop-down ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: #434175;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
	color: #84f9a7;
}

.nav-menu .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.nav-menu .drop-down .drop-down>a {
	padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
	content: "\eaa0";
	font-family: IcoFont;
	position: absolute;
	right: 15px;
}

@media (max-width: 1366px) {
	.nav-menu .drop-down .drop-down ul {
		left: -90%;
	}
	.nav-menu .drop-down .drop-down:hover>ul {
		left: -100%;
	}
	.nav-menu .drop-down .drop-down>a:after {
		content: "\ea9d";
	}
}


/* Get Startet Button */

.get-started-btn {
	color: #000;
	border-radius: 50px;
	padding: 7px 25px 8px 25px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 13px;
	display: inline-block;
	background-image: linear-gradient(to right, #92fe9d 0%, #00c9ff 100%);
	text-transform: uppercase;
	font-weight: 600;
}

.get-started-btn:hover {
	background-image: linear-gradient(to right, #434343 0%, black 100%);
	color: #92fe9d;
}

@media (max-width: 768px) {
	.get-started-btn {
	margin: 0 76px 0 0;
    padding: 6px 18px;
	}
	.mobile-nav-toggle {
    position: fixed;
    right: 40px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    cursor: pointer;
    text-align: right;
}
}


/* Mobile Navigation */

.mobile-nav-toggle {
	position: fixed;
	right: 50px;
	top: 15px;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	color: #434175;
}

.mobile-nav {
	position: fixed;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	z-index: 9999;
	overflow-y: auto;
	background: #fff;
	transition: ease-in-out 0.2s;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	padding: 10px 0;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #434175;
	padding: 10px 20px;
	font-weight: 500;
	outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	color: #84f9a7;
	text-decoration: none;
}

.mobile-nav .drop-down>a:after {
	content: "\ea99";
	font-family: IcoFont;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\eaa1";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(48, 47, 84, 0.6);
	overflow: hidden;
	display: none;
	transition: ease-in-out 0.2s;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
	width: 100%;
	background-image: url(../img/hero-bg.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right top;
	margin-top: 70px;
	padding: 60px 0;
}

#hero .container {
	padding-top: 80px;
}

#hero h1 {
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 56px;
	color: #000000;
	font-family: "Poppins", sans-serif;
}

#hero h2 {
	margin: 10px 0 0 0;
	font-size: 20px;
}

#hero ul {
	margin-top: 15px;
	list-style: none;
	padding: 0;
}

#hero ul li {
	padding: 10px 0 0 28px;
	position: relative;
}

#hero ul i {
	left: 0;
	top: 7px;
	position: absolute;
	font-size: 20px;
	color: #84f9a7;
}

#hero .btn-get-started,
#hero .btn-get-quote {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.5px;
	display: inline-block;
	padding: 8px 30px 9px 30px;
	margin-bottom: 15px;
	border-radius: 3px;
	transition: 0.5s;
	border-radius: 50px;
}

#hero .btn-get-started {
	background-image: linear-gradient(to right, #92fe9d 0%, #00c9ff 100%);
	color: #000;
	margin-right: 10px;
}

#hero .btn-get-started:hover {
	background-image: linear-gradient(to right, #434343 0%, black 100%);
	color: #84f9a7;
}

#hero .btn-get-quote {
	color: #fff;
	border: 2px solid #84f9a7;
}

#hero .btn-get-quote:hover {
	background: #84f9a7;
	color: #fff;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: fixed;
	}
}

@media (max-width: 991px) {
	#hero .hero-img {
		text-align: center;
	}
	#hero .hero-img img {
		width: 50%;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px;
	}
	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
	#hero .hero-img img {
		width: 70%;
	}
}

@media (max-width: 575px) {
	#hero {
		text-align: center;
	}
	#hero ul {
		text-align: left;
		font-size: 14px;
	}
	#hero .hero-img img {
		width: 80%;
	}
	#hero .btn-get-started,
	#hero .btn-get-quote {
		padding-left: 18px;
		padding-right: 18px;
		font-size: 14px;
	}
	#header .logo img {
		max-height: 50px;
	}
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
	padding: 60px 0;
}

.section-bg {
	background-color: #eeeef5;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	top: 10px;
	color: #000000;
}

.section-title h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: #84f9a7;
	bottom: 0;
	left: calc(50% - 25px);
}

.section-title p {
	margin-bottom: 0;
}


/*-- Services start ---*/

.serviceBox {
	text-align: center;
	padding: 70px 20px;
	float: left;
	transition: all 0.5s ease-in-out;
	height: 450px;
	width: 100%;
}

.serviceBox_one {
	background-image: linear-gradient(to right, #92fe9d 0%, #00c9ff 100%);
}

.serviceBox_two {
	background: linear-gradient(-180deg, #BCC5CE 0%, #929EAD 98%), radial-gradient(at top left, rgba(255, 255, 255, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
	background-blend-mode: screen;
}

.serviceBox_three {
	background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
}

.serviceBox_four {
	background-image: linear-gradient(to left, #BDBBBE 0%, #9D9EA3 100%), radial-gradient(88% 271%, rgba(255, 255, 255, 0.25) 0%, rgba(254, 254, 254, 0.25) 1%, rgba(0, 0, 0, 0.25) 100%), radial-gradient(50% 100%, rgba(255, 255, 255, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
	background-blend-mode: normal, lighten, soft-light;
}

.serviceBox .service-content h3 {
	color: hsl(0deg 0% 8%);
	font-size: 23px;
	;
}

@media screen and (max-width: 990px) {
	.serviceBox {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 767px) {
	.serviceBox {
		margin: 0 0 30px 0;
	}
}


/*-- Service end---*/


/*-- Features start ---*/

.triangle-icon-block-a {
	float: left;
	width: 100%;
	padding: 100px 0 0px;
}

.container {
	max-width: 1200px;
	margin: auto;
}

.border-title {
	text-align: center;
	float: left;
	width: 100%;
	margin-bottom: 40px;
}

.triangle-icon-block-a .icon_wrapper.icon-left {
	text-align: right;
	padding: 20px 20px 20px 0px;
}

.triangle-icon-block-a .icon_wrapper {
	position: relative;
	float: left;
	margin: 10px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.triangle-icon-block-a .icon_wrapper.icon-left .icon {
	right: 0;
}

.triangle-icon-block-a .icon_wrapper.icon-left .icon {
	float: right;
	text-align: right;
}

.triangle-icon-block-a .icon_wrapper.icon-right .icon {
	left: 0;
	text-align: left;
}

.triangle-icon-block-a .icon_wrapper .icon {
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	margin-bottom: 20px;
	float: left;
	text-align: center;
	border-radius: 50%;
	display: block;
	width: 100%;
}

img.auto,
.grid__item img,
.grid__item iframe {
	max-width: 100%;
}

.triangle-icon-block-a .triangle-icon-wrapper p {
	margin-bottom: 0;
}

.triangle-icon-block-a .center-block {
	text-align: center;
}

.bounceIn {
	animation-name: bounceIn;
}

.grid__item {
	float: left;
	min-height: 1px;
	vertical-align: top;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.triangle-icon-block-a .center-block img {
	display: block;
	padding: 0% 0px 0;
}

@media screen and (max-width: 767px) {
	.triangle-icon-block-a .icon_wrapper.icon-right {
		padding: 10px 0px 10px 20px;
		float: left;
	}
	img.auto, .grid__item img, .grid__item iframe {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
.triangle-icon-block-a .icon_wrapper.icon-left {
    text-align: center;
    padding: 20px 20px 20px 0px;
}
}

@media only screen and (min-width: 1200px) and (max-width: 5000px) {
	.wide--one-third {
		width: 33.333%;
	}
}


/*-- Features end---*/


/*--About section start --*/

#about {}

.about .content {
	padding: 40px;
}

.about h3 {
	font-size: 25px;
	font-weight: 700;
    color: #232323;
	text-transform: uppercase;
}

.about-img {
	position: relative;
}

.about-img img {
	width: 100%;
}

.about-img:before {
	position: absolute;
	content: '';
	top: -21px;
	right: -30px;
	background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.gx-0 {
	--bs-gutter-x: 0;
}

.about .content p {
	margin-bottom: 0px;
	line-height: 25px;
	font-size: 14px;
	text-align: justify;
	letter-spacing: 0.5px;
	color: #646464;
	font-family: 'Poppins', sans-serif;
}

.main-btn {
	display: inline-block;
	font-weight: 600;
	text-align: center;
	padding: 0 30px;
	line-height: 48px;
	color: #fff;
	transition: all .8s ease-out 0s;
	background-image: linear-gradient(to right, #92fe9d 0%, #00c9ff 100%);
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
}

.main-btn:hover {
	background: #333;
	color: #fff;
	border-color: #333;
	transition: all .8s ease-out 0s;
	text-decoration: none;
}

.naviya-head {
	color: #000 !important;
	font-weight: 600;
}

.about .btn-read-more {
	padding: 15px 40px;
	border-radius: 4px;
	transition: 0.5s;
	color: #000;
	background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
	box-shadow: 0px 5px 25px rgb(65 84 241 / 30%);
}

.product-head {
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 10px;
}


/* ---About Section end -->
/*--- why naviya section start ----*/

#whychoose {
	min-height: 600px;
	width: 100%;
	background-image: url(../img/naviyasec.png);
	background-size: cover;
	position: relative;
	background-repeat: no-repeat;
}

.whynaviya {
	width: 100%;
	background-image: url('../img/whynaviyabg.png');
	background-size: cover;
	background-position: center;
	position: relative;
}

.premium {
	position: relative;
	top: 96px;
	left: -35px;
}

.trust {
	position: relative;
	top: 120px;
	left: 44px;
}

.flexible {
	position: relative;
	top: 120px;
	left: 80px;
}

@media (max-width: 768px) {
	#whychoose {
		background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
		padding: 30px 0px;
	}
	.whynaviya {
		width: 100%;
		background-image: none;
	}
	.premium {
		position: relative;
		top: -10px;
	}
	.trust {
		position: relative;
		top: -19px;
		left: -45px;
	}
	.flexible {
		position: relative;
		top: -22px;
		left: -43px;
	}
}

@media (max-width: 565px) {
	#whychoose {
		background-image: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
		padding: 30px 0px;
	}
	.whynaviya {
		width: 100%;
		background-image: none;
	}
	.premium {
		position: relative;
		top: -10px;
		left: 2px;
	}
	.trust {
		position: relative;
		top: -19px;
		left: 2px;
	}
	.flexible {
		position: relative;
		top: -22px;
		left: 2px;
	}
}


/*-- Why us section start --*/

#products {
	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url(../img/cta-bg.jpg) fixed center center;
	background-size: cover;
	padding: 120px 0;
}

.howWeDoIt .howDivs {
	max-width: 1140px;
	margin: auto;
	position: relative;
}

.howWeDoIt img {
	padding: 0 5px;
	background: #fff;
	width: 100px;
}

.howWeDoIt .howDivs .step-header {
	margin: 3rem auto 1.5rem;
}

.howWeDoIt .howDivs p {
	max-width: 300px;
	text-align: center;
	margin: 15px auto;
}


/*---Why naviya end ----*/


/*---WE Are Hire start --*/

.howWeDoIt .section-header {
	margin: 2rem auto 6rem;
	color: #4af7b7;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
}

.howWeDoIt .howDivs::after {
	content: "";
	width: 60%;
	border-top: 1px dashed #bdbdbd;
	position: absolute;
	top: 25%;
	z-index: -1;
}

.howWeDoIt {
	margin-bottom: 5rem;
	position: relative;
	top:20px;
}
.gapbtn{
    position:relative;
    top:15px;
}
@media screen and (max-width: 767px) {
	.howWeDoIt.paddedSection {
		padding: 0 15px;
	}
	.howWeDoIt .howDivs {
		display: unset !important;
	}
	.howWeDoIt {
		margin-bottom: 20px;
	}
	.howWeDoIt .howDivs img {
		width: 117px;
		height: 117px;
	}
	.howWeDoIt .howDivs p {
		font-size: 12px;
		font-weight: 500;
		margin: 0 auto 2.5rem;
	}
	.howWeDoIt .howDivs .step-header {
		margin: 1rem auto 1.5rem;
		font-size: 16px;
		font-weight: 600;
	}
}


/*--We are End ----*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
	color: #444444;
	text-align: center;
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
	padding: 20px 0 30px 0;
	background: #fff;
}

.contact .info-box i {
	font-size: 32px;
	color: #84f9a7;
	border-radius: 50%;
	padding: 8px;
}

.contact .info-box h3 {
	font-size: 20px;
	color: #777777;
	font-weight: 700;
	margin: 10px 0;
}

.contact .info-box p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.contact .php-email-form {
	background: #fff;
	box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
	padding: 30px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br+br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	border-radius: 5px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: #84f9a7;
}

.contact .php-email-form input {
	padding: 20px 15px;
}

.contact .php-email-form textarea {
	padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
	background-image: linear-gradient(to right, #92fe9d 0%, #00c9ff 100%);
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
	background-image: linear-gradient(to right, #434343 0%, black 100%);
}

textarea {
	resize: none;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
	padding: 15px 0;
	background: #f1f1f7;
	min-height: 40px;
	margin-top: 68px;
}

.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 400;
	color: #434175;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #565396;
	content: "/";
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 60px;
	}
	.breadcrumbs .d-flex {
		display: block !important;
	}
	.breadcrumbs ol {
		display: block;
	}
	.breadcrumbs ol li {
		display: inline-block;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
	color: #ffffff;
	font-size: 14px;
	background: #051416;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo {
	width: 200px;
}

#footer .footer-top {
	padding: 60px 0 30px 0;
	background: #051416;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
	font-size: 28px;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	color: #84f9a7;
}

#footer .footer-top .footer-contact p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Raleway", sans-serif;
	color: #777777;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: bold;
	color: #8afba3;
	;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #84f9a7;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #777777;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #84f9a7;
}

#footer .footer-newsletter {
	font-size: 15px;
}

#footer .footer-newsletter h4 {
	font-size: 16px;
	font-weight: bold;
	color: #87faa4;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
	text-align: left;
	border: 1px solid #b9b9fa;
}

#footer .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px;
	background: #84f9a7;
	color: #fff;
	transition: 0.3s;
	border-radius: 50px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
	background: #7272f5;
}

#footer .credits {
	padding-top: 5px;
	font-size: 13px;
	color: #444444;
}

#footer .credits a {
	transition: 0.3s;
}

#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #deddec;
	color: #434175;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .social-links a:hover {
	background: #84f9a7;
	color: #fff;
	text-decoration: none;
}