/* Fonts - Colors - Scroll */
:root {
	/* Fonts */
	--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "Roboto", sans-serif;
	--font-secondary: "Work Sans", sans-serif;
	/* Colors */
	--color-default: #2b2b2b;
	--color-primary: #00d32e;
	--color-secondary: #376015;
	--color-blue: #000b87;
  	scroll-behavior: smooth;
  	scrollbar-width: thin !important;
  	print-color-adjust: exact !important
}

/* General */
body {
	font-family: var(--font-default);
	color: var(--color-default);
	overflow-x: hidden;
	font-size: 18px;
}
a {
	color: var(--color-secondary);
	text-decoration: none;
}
a:hover {
	color: #78d22e;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
	font-family: var(--font-primary);
}
.headicons img {
	height: 24px;
	margin-right: 10px;
}
.feedtog {
	cursor: pointer;
}
.feedtog:hover {
	cursor: crosshair !important;
}

/* Sections & Section Header */
section {
	padding: 80px 5px;
	overflow: hidden;
}
.section-bg {
	background-color: #f5f6f7;
}
.section-header {
	text-align: center;
	padding-bottom: 30px;
}
.section-header h2 {
	font-size: 32px;
	font-weight: 700;
	position: relative;
	color: #45485f;
}
.section-header h2:before, .section-header h2:after {
	content: "";
	width: 50px;
	height: 2px;
	background: var(--color-primary);
	display: inline-block;
}
.section-header h2:before {
	margin: 0 15px 10px 0;
}
.section-header h2:after {
	margin: 0 0 10px 15px;
}
.section-header p {
	margin: 0 auto 0 auto;
}

/* Scroll top button */
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}
.scroll-top i {
	font-size: 24px;
	color: var(--color-secondary);
	line-height: 0;
}
.scroll-top:hover {
	background: #32ffad;
	color: #fff;
}
.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/* Disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Header */
.header {
	z-index: 997;
	position: fixed;
	padding: 5px 0;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 0.5px solid rgb(177, 248, 212);
	background-image: linear-gradient(rgb(204, 255, 209),#9af0b2,#e9ffe9) !important;
	transition: all 0.3s;
}
.header .logo img {
	max-height: 47px;
	margin-right: 6px;
}
.header .logo h6 {
	font-weight: 600;
	color: rgb(1, 110, 113);
	margin-bottom: 0;
	margin-top:10px;
	font-family: var(--font-primary);
	line-height: 18px;
	max-width:90px;
}
.header .login-btn {
	margin-left: 15px;
	border-radius: 50%;
	color: navy;
	font-weight: 700;
}
.header .login-btn:hover {
	color: white;
}

/*  Desktop and Mobile Navigation */
@media (min-width: 900px) {
	.navbar {
		padding: 0;
		margin-right: 20px;
	}
	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}
	.navbar ul li {
		position: relative;
		white-space: nowrap;
    	padding: 7px 0 5px 20px;
	}
	.navbar a, .navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 3px;
		font-family: var(--font-primary);
		font-size: 16px;
		font-weight: 500;
    	color: var(--color-blue);
		text-transform: uppercase;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
	}
	.navbar a i, .navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}
	.navbar>ul>li>a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: -2px;
		left: 0;
		background-color: var(--color-primary);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}
	.navbar a:hover:before,	.navbar li:hover>a:before, .navbar .active:before {
		visibility: visible;
		width: 100%;
	}
	.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
		color: #fff;
		font-weight: 600;
	}
	.mobile-nav-show, .mobile-nav-hide {
		display: none;
	}
}
@media (max-width: 899px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 200px;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}
	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 50px 0 10px 0;
		margin: 0;
		background: rgba(0, 0, 0, 0.8);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}
	.navbar a, .navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-family: var(--font-primary);
		font-size: 15px;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.7);
		white-space: nowrap;
		transition: 0.3s;
	}
	.navbar a i, .navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}
	.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
		color: #fff;
	}
	.mobile-nav-show {
		position: relative;
		color: var(--color-blue);
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		z-index: 9999;
		padding-right: 10px;
	}
	.mobile-nav-hide {
		color: #fff;
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 9999;
	}
	.mobile-nav-active {
		overflow: hidden;
	}
	.mobile-nav-active .navbar {
		right: 0;
	}
	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(230, 255, 235, 0.261);
		z-index: 9996;
	}
}

/*  Hero Section */
.hero {
	overflow-x: hidden;
	padding: 0;
}
.hero .carousel {
	width: 100%;
	min-height: 100vh;
  	padding: 80px 0;
	margin: 0;
	position: relative;
}
.hero .carousel-item {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 1;
	transition-duration: 0.4s;
}
.hero .carousel-item::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	inset: 0;
}
.hero .info {
	position: absolute;
	inset: 0;
	z-index: 2;
}
.hero .info h2 {
	color: #fff;
	margin-bottom: 30px;
	padding-bottom: 30px;
	font-size: 56px;
	font-weight: 700;
	position: relative;
}
.hero .info h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 80px;
	height: 4px;
	background: var(--color-primary);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.hero .info h3 {
	color: #ebf9bc;
	font-size: 20px;
}
.hero .info p {
	color: rgba(255, 255, 255, 0.846);
	font-size: 18px;
	font-style: italic;
}
.hero .info .btn-get-started {
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px;
	color: #fff;
	border: 2px solid var(--color-primary);
}
.hero .info .btn-get-started:hover {
	background: var(--color-primary);
}
.hero .carousel-control-prev {
	justify-content: start;
}
.hero .carousel-control-next {
	justify-content: end;
}
.hero .carousel-control-next-icon,.hero .carousel-control-prev-icon {
	background: none;
	font-size: 26px;
	line-height: 0;
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
	border-radius: 50px;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero .carousel-control-prev,.hero .carousel-control-next {
	z-index: 3;
	transition: 0.3s;
}
.hero .carousel-control-prev:focus,.hero .carousel-control-next:focus {
	opacity: 0.5;
}
.hero .carousel-control-prev:hover,.hero .carousel-control-next:hover {
	opacity: 0.9;
}
.hero .carousel-indicators {
	padding-bottom: 47px
}
.hero .carousel-indicators li {
	cursor: pointer;
	background: #fff;
	overflow: hidden;
	border: 0;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	opacity: 0.6;
	transition: 0.3s
}
.hero .carousel-indicators li.active {
	opacity: 1;
	background: #5c9f24
}
@media (max-width: 768px) {
	.hero .info {
    	padding: 0 50px;
  	}
	.hero .info h2 {
		font-size: 25px;
	}
	.hero .info h3 {
		font-size: 15px;
	}
}
@media (min-width: 640px) {
	.hero .carousel-control-prev {
		padding-left: 15px;
	}
	.hero .carousel-control-next {
		padding-right: 15px;
	}
}

/* Footer */
.footer {
	color: #fff;
	background: url("../img/footer-bg.png") top center no-repeat;
	background-size: cover;
	font-size: 14px;
	padding: 15px 0;
	position: relative;
}
.footer:before {
	content: "";
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	inset: 0;
}
.footer .footer-content .footer-info {
	margin-bottom: 10px;
}
.footer .footer-content .footer-info h3 {
	font-size: 28px;
	margin: 0 0 10px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
}
.footer .footer-content .footer-info h3 span {
	color: var(--color-primary);
}
.footer .footer-content .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: var(--font-primary);
	color: #fff;
}
.footer .footer-content h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
}
.footer .footer-content .footer-links {
	margin-bottom: 0px;
	text-align: right;
}
.footer .footer-content .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer .footer-content .footer-links ul li {
	padding: 2px 0;
}
.footer .footer-content .footer-links ul li:first-child {
	padding-top: 0;
}
.footer .footer-content .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}
.footer .footer-content .footer-links ul a:hover {
	color: #fff;
}
.footer .footer-legal .copyright {
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer .footer-legal .credits {
	padding-top: 4px;
	font-size: 13px;
	color: #fff;
}
.footer .footer-legal .credits a {
	color: var(--color-primary);
}

/* Breadcrumbs */
.breadcrumbs {
	padding: 140px 0 60px 0;
	min-height: 30vh;
	position: relative;
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
}
.breadcrumbs:before {
	content: "";
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	inset: 0;
}
.breadcrumbs h2 {
	font-size: 35px;
	color: #fff;
	font-family: var(--font-secondary);
	padding-bottom: 0;
	margin-bottom: 0;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 5px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-primary);
}
.breadcrumbs ol a {
	color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
}
.breadcrumbs ol a:hover {
	color:#00ff37;
}
.breadcrumbs ol li+li {
	padding-left: 5px;
}
.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 5px;
	color: #fff;
	content: "/";
}

/* Preloader */
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: #fff;
	transition: all 0.5s ease-out;
}
#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fff;
	border-color: var(--color-primary) transparent var(--color-primary) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Stats Counter Section */
.stats-counter .stats-item {
	background: #fff;
	box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
	padding: 20px;
	border-radius: 20px;
}
.stats-counter .stats-item img {
	max-height: 70px;
	margin-right: 25px;
	margin-left: 5px;
}
.stats-counter .stats-item span {
	font-size: 36px;
	display: block;
	font-weight: 600;
	color: var(--color-secondary);
}
.stats-counter .stats-item p {
	padding: 0;
	margin: 0;
	font-family: var(--font-primary);
	font-size: 14px;
}

/* Our Team Section */
.team .member {
	position: relative;
}
.team .member .member-img {
	margin: 0 80px;
	border-radius: 10%;
	overflow: hidden;
	position: relative;
}
.team .member .member-img img {
	position: relative;
	z-index: 1;
}
.team .member .member-img img:hover {
	opacity: 0.9;
}
.team .member .member-info {
	margin-top: 30px;
}
.team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 6px;
	font-size: 18px;
	color: var(--color-secondary);
}
.team .member .member-info span {
	font-style: italic;
	display: block;
	font-size: 15px;
	color: #838893;
	margin-bottom: 10px;
}
.team .member .member-info p {
	margin-bottom: 0;
	font-size: 14px;
}
@media (max-width: 1024px) {
	.team .member .member-img {
		margin: 0 60px;
	}
}

/* Our Projects Section */
.projects .portfolio-flters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}
.projects .portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	margin: 0 10px;
	line-height: 1;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}
.projects .portfolio-flters li:hover,.projects .portfolio-flters li.filter-active {
	color: var(--color-primary);
}
.projects .portfolio-flters li:first-child {
	margin-left: 0;
}
.projects .portfolio-flters li:last-child {
	margin-right: 0;
}
.projects .portfolio-content {
	position: relative;
	overflow: hidden;
}
.projects .portfolio-content img {
	transition: 0.3s;
}
.projects .portfolio-content .portfolio-info {
	opacity: 0;
	position: absolute;
	inset: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	background: rgba(0, 0, 0, 0.6);
	padding: 0;
}
.projects .portfolio-content .portfolio-info h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background-color: var(--color-primary);
	text-align: center;
	padding: 10px 15px;
}
.projects .portfolio-content .portfolio-info p {
	position: absolute;
	bottom: 4px;
	text-align: center;
	left: 0;
	right: 0;
	font-size: 16px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
}
.projects .portfolio-content .portfolio-info .preview-link {
	position: absolute;
	left: calc(50% - 14px);
	font-size: 26px;
	top: calc(50% - 14px);
	color: #fff;
	transition: 0.3s;
	line-height: 1.2;
}
.projects .portfolio-content .portfolio-info .preview-link:hover {
	color: var(--color-primary);
}
.projects .portfolio-content:hover .portfolio-info {
	opacity: 0.9;
}
.projects .portfolio-content:hover img {
	transform: scale(1.1);
}
@media (max-width: 575px) {
	.projects .portfolio-flters li {
		font-size: 14px;
		margin: 0 5px;
	}
}

/*  Testimonials Section */
.testimonials .testimonial-wrap {
	padding-left: 50px;
}
.testimonials .testimonials-carousel,.testimonials .testimonials-slider {
	overflow: hidden;
}
.testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	margin: 0 15px 30px 0;
	min-height: 200px;
	box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
	position: relative;
	background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid #fff;
	position: absolute;
	left: -45px;
}
.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #000;
}
.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0;
}
.testimonials .testimonial-item .stars {
	margin: 10px 0;
}
.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,.testimonials .testimonial-item .quote-icon-right {
	color: #ffd565;
	font-size: 26px;
	line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #d5d7da;
	opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}
@media (max-width: 767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0;
	}
	.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
		overflow: hidden;
	}
	.testimonials .testimonial-item {
		padding: 30px;
		margin: 15px;
	}
	.testimonials .testimonial-item .testimonial-img {
		position: static;
		left: auto;
	}
}

/* Alt Services Section */
.alt-services .img-bg {
	padding: 10px;
	border-radius: 20px;
	max-width: 90%;
}
.alt-services h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.alt-services h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--color-primary);
	left: 0;
	bottom: 0;
}
.alt-services .icon-box {
	margin-top: 50px;
}
.alt-services .icon-box img {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
	font-size: 28px;
	width: 56px;
	height: 56px;
	border-radius: 4px;
	line-height: 0;
	box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
}
.alt-services .icon-box:hover img {
	font-size: 30px;
}
.alt-services .icon-box h4 {
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 18px;
}
.alt-services .icon-box h4 span {
	color: #000;
	transition: 0.3s;
}
.alt-services .icon-box h4 span:hover {
	color: var(--color-primary);
}
.alt-services .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

/* Contact Section */
.contact h5 {
	font-weight: 400;
}
.contact .info-item {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	padding: 20px;
	border-radius: 15px;
}
.contact .info-item img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	padding: 10px;
	color: var(--color-primary);
	border-radius: 20%;
	border: 3px dotted #ffd565;
}
.contact .info-item h3, .cont-msg h3 {
	font-size: 20px;
	color: #6c757d;
	font-weight: 700;
	margin: 10px 0;
	margin-bottom: 0;
}
.contact .info-item a {
	color: var(--color-default) !important;
	font-size: 16px;
}
.contact .info-item a:hover {
	color: var(--color-primary) !important;
}
.contact .php-email-form {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	padding: 30px;
}
.contact .php-email-form .form-group {
	padding-bottom: 20px;
}
.contact .php-email-form input,.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}
.contact .php-email-form input:focus,.contact .php-email-form textarea:focus {
	border-color: var(--color-primary);
}
.contact .php-email-form input {
	height: 44px;
}
.contact .php-email-form textarea {
	padding: 10px 12px;
}
@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@media (max-width: 575px) {
	.php-email-form {
		padding: 20px;
	}
}

/* Constructions Section */
.constructions .card-item {
	border: 3px;
	background: #f1faf6;
	position: relative;
	padding:3%;
	border-radius: 20px;
}
.constructions .card-item p {
	color: var(--color-secondary);
	margin: 0;
	padding-bottom: 5px;
}

/*  About Section */
.about h2 {
	font-size: 48px;
	font-weight: 700;
	font-family: var(--font-secondary);
	margin: 20px 0;
}
.about .our-story {
	padding: 30px;
	background-color: #f5f6f7;
}
.about .our-story h4 {
	text-transform: uppercase;
	font-size: 18px;
	color: #838893;
}
.about .our-story h3 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--color-secondary);
}
.about .our-story p:last-child {
	margin-bottom: 0;
}
.about ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}
.about ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}
.about ul i {
	font-size: 20px;
	margin-right: 4px;
	color: var(--color-primary);
}
.about .watch-video:hover a {
	color: var(--color-primary);
}
.about .about-img {
	min-height: 800px;
	background-size: cover;
	background-position: center;
}
@media (min-width: 991px) {
	.about h2 {
		max-width: 65%;
		margin: 0 0 50px 0;
	}
	.about .our-story {
		padding-right: 30%;
	}
}
@media (min-width: 992px) {
	.about .about-img {
		position: absolute;
		top: 0;
		right: 0;
	}
}

/* Servie Cards Section */
.services-cards h3 {
	font-weight: 700;
}
.services-cards p {
	font-size: 15px;
}
.services-cards ul li {
	display: flex;
	align-items: center;
	font-size: 14px;
	padding-top: 5px;
}
.services-cards ul li i {
	font-size: 16px;
	color: var(--color-primary);
	margin-right: 6px;
}
.services-cards img {
	max-width: 100%;
	border-radius: 20px;
}
.services-cards strong {
	color: #cb9503
}

/* Notification boxes */
.noteBox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 1100;
	background-color: rgba(73, 73, 73, 0.582);
	text-align: center !important
}
.noteBox .icone {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	margin-top: 50px;
	margin-bottom: 15px;
	background: rgb(242, 245, 242);
	border-radius: 50%;
	overflow: hidden;
	font-size: 2.4rem
}
.noteBoxBody {
	position: relative;
	width: fit-content;
	min-width: 30%;
	max-width: 95%;
	padding: 10px;
	height: auto;
	margin: 0 auto;
	line-height: 1.15;
	background-color: white;
	border: none;
	border-radius: 6px;
	box-shadow: 0 0 10px 5px rgba(104, 105, 103, 0.7)
}
.noteBoxBody p {
	padding: 0;
	margin: 0;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.25
}
.noteBox h4 {
	padding: 10px 20px;
	margin: 0;
	font-weight: 400;
	font-size: 1.05rem;
	line-height: 1.25
}
.noteBox button {
	margin-top: 2px;
	padding: 0.1rem 0.5rem;
	margin-right: 5px
}
.noteSuc {
	animation: 'fadeOut';
	animation-delay: 2s;
	animation-duration: 0.5s
}
.noteSuc .icone {
	color: rgb(5, 141, 0);
	box-shadow: 0 0 15px 10px rgba(0, 255, 0, 0.4)
}
.noteSuc h4 {
	color: rgb(9, 77, 7)
}
.noteErr {
	animation: 'fadeOut';
	animation-delay: 2s;
	animation-duration: 0.5s
}
.noteErr .icone {
	color: rgb(141, 5, 0);
	box-shadow: 0 0 15px 10px rgba(255, 8, 0, 0.4)
}
.noteErr h4 {
	color: rgb(153, 25, 8)
}
.noteErrOK, .noteCon {
	animation: 'fadeIn';
	animation-delay: 0s;
	animation-duration: 0.1s
}
.noteErrOK .icone {
	color: rgb(141, 5, 0);
	box-shadow: 0 0 15px 10px rgba(255, 8, 0, 0.4)
}
.noteErrOK h4 {
	color: rgb(141, 5, 0);
	width: 100%;
	padding-bottom: 3px
}
.noteErrOK label {
	color: rgb(141, 5, 0);
	width: 100%;
	padding-bottom: 5px
}
.noteCon .icone {
	color: rgb(141, 139, 0);
	box-shadow: 0 0 15px 10px rgba(141, 139, 0, 0.4)
}
.noteCon h4 {
	color: rgb(9, 77, 7)
}

/* Login page */
.h6title {
	color: #5c9f24;
	font-size: 600;
}
.h4title {
	color: #249f8f;
	font-weight: 500;
	font-size: 1.4rem
}
.login {
	max-width: 340px
}
.login input {
	font-size: 0.85rem;
	padding: 3px 7px
}
.login small {
	padding-top: 3px;
	font-size: 0.85rem;
	font-weight: 600
}
.passLog {
	padding-right: 30px !important;
}
.passLogIcon {
	color: #015f06;
	position: absolute;
	cursor: pointer;
	width: 18px;
	right: 8px;
	top: 3px
}