* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img {
	max-width: 100%;
}
body {
	font-family: "Ubuntu", sans-serif;
}

/*--------------------------------------------------
[0. Framework]
--------------------------------------------------*/
.mb-40 {
	margin-bottom: 40px;
}

/*--------------------------------------------------
[1. Start Navbar]
--------------------------------------------------*/
.logo {
	max-height: 70px;
}
.navbar {
	padding: 10px 0;
	background: linear-gradient(
		135deg,
		rgba(22, 37, 43, 0) 0%,
		rgba(22, 37, 43, 0) 100%
	);
}
.navbar .nav-item {
	margin: 0;
	padding: 0;
}
.navbar .nav-item .nav-link {
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	padding: 0;
	margin-left: 35px;
	transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
	transform: translateY(-3px);
	color: #719f2a;
}

/*--------------------------------------------------
[2. Start Slidert]
--------------------------------------------------*/
.slider {
	background: url("../img/hero.jpg") center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	height: 100vh;
	position: relative;
}
.slider .content {
	z-index: 999;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slider .content span {
	font-size: 25px;
	font-weight: 300;
	color: #719f2a;
}
.slider .content h1 {
	font-size: 65px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.slider .content p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0 0 30px;
}
.slider .content .btn-blue {
	background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
	box-shadow: 3px 3px 51px 0 rgba(0, 0, 0, 0.2);
	color: #ffffff;
	padding: 15px 50px;
	border-radius: 50px;
	display: inline-block;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}
.slider .content .btn-blue:hover {
	transform: translateY(-7px);
}
#particles-js {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

/*--------------------------------------------------
[3. Start About]
--------------------------------------------------*/
.about {
	padding: 120px 0;
	background: url("../img/bg/about.png") center center no-repeat;
	background-size: cover;
}
.about .heading {
	margin-bottom: 60px;
}
.about .heading h2 {
	font-size: 30px;
	font-weight: 700;
	color: #313e4b;
	margin-bottom: 20px;
}
.about .heading h2 span {
	font-weight: 300;
	color: #719f2a;
	margin: 0;
}
.about .heading p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
}
.about .box {
	background: #ffffff;
	border-radius: 15px;
	padding: 50px 30px;
	box-shadow: 1px 1px 40px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease-in-out;
}
.about .box:hover {
	transform: translateY(-15px);
}
.about .box h3 {
	font-size: 18px;
	font-weight: 500;
	color: #4c5b6a;
	margin: 25px 0 0;
}
.about .box span {
	font-size: 13px;
	font-weight: 300;
	color: #929899;
	display: inline-block;
	margin-bottom: 15px;
}
.about .box p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
}

/*--------------------------------------------------
[4. Start Services]
--------------------------------------------------*/
#services {
	padding: 120px 0;
}
#services .heading {
	margin-bottom: 60px;
}
#services .heading h2 {
	font-size: 30px;
	font-weight: 700;
	color: #313e4b;
	margin-bottom: 20px;
}
#services .heading h2 span {
	font-weight: 300;
	color: #719f2a;
	margin: 0;
}
#services .heading p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
}

#services .box {
	background: #f7f7f7;
	padding: 10px;
	border-radius: 100px;
	border: 1px solid #f5f5f5;
	margin-bottom: 15px;
}
#services .box h3 {
	font-size: 16px;
	color: #313e4b;
	font-weight: 500;
	margin: 0 0 0 20px;
}
#services .box .icon {
	background: #4caf50;
	border-radius: 50%;
	font-size: 17px;
	color: #ffffff;
	width: 50px;
	height: 50px;
	transition: all 0.3s ease-in-out;
	border: 1px solid #8bc34a;
}
.img-services__icon {
	max-width: 28px;
}
#services .box:hover .icon {
	/* border: 1px solid #719f2a;
	color: #719f2a; */
	background: #009688;
}

/* Pulse Animation */
.pulse {
	animation: pulse 1s infinite;
	animation-duration: 2s;
}

/* Keyframes */
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
	}
	70% {
		-moz-box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

/*--------------------------------------------------
[4. Start Get-started]
--------------------------------------------------*/
.get-started {
	background: url("../img/bg/get-started.png") center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding: 120px 0;
}
.get-started .heading {
	margin-bottom: 30px;
}
.get-started .heading h2 {
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
}
.get-started .heading h2 span {
	font-weight: 300;
	color: #719f2a;
	margin: 0;
}
.get-started .heading p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #ffffff;
}
.get-started .btn-blue {
	background: linear-gradient(135deg, #719f2a 0%, #55791f 100%);
	box-shadow: 3px 3px 51px 0 rgba(0, 0, 0, 0.2);
	color: #ffffff;
	padding: 15px 50px;
	border-radius: 50px;
	display: inline-block;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}
.get-started .btn-blue:hover {
	transform: translateY(-7px);
}

/*--------------------------------------------------
[6. Start Our Mission]
--------------------------------------------------*/
.mission {
	padding: 120px 0;
}
.mission .text h2 {
	font-size: 30px;
	font-weight: 700;
	color: #313e4b;
	margin-bottom: 20px;
}
.mission .text h2 span {
	color: #719f2a;
	font-weight: 300;
}
.mission .text p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
	margin: 0 0 35px;
	padding: 0;
}
.mission .text .btn-blue {
	background: linear-gradient(135deg, #719f2a 0%, #55791f 100%);
	box-shadow: 3px 3px 51px 0 rgba(0, 0, 0, 0.2);
	color: #ffffff;
	padding: 15px 50px;
	border-radius: 50px;
	display: inline-block;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}
.mission .text .btn-blue:hover {
	transform: translateY(-7px);
}

/*--------------------------------------------------
[7. Start Our Team]
--------------------------------------------------*/
.team {
	margin-top: 120px;
}
.team .box {
	box-shadow: 1px 1px 40px 0 rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}
.team .heading {
	margin-bottom: 60px;
}
.team .heading h2 {
	font-size: 30px;
	font-weight: 700;
	color: #313e4b;
	margin-bottom: 20px;
}
.team .heading h2 span {
	font-weight: 300;
	color: #719f2a;
	margin: 0;
}
.team .heading p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
}
.team .content h3 {
	font-size: 18px;
	margin: 0;
	font-weight: 500;
	color: #313e4b;
	margin-top: 30px;
}
.team .content span {
	font-size: 14px;
	font-weight: 300;
	color: #727f8c;
	margin-bottom: 30px;
	display: inline-block;
}
.team .box .social {
	position: absolute;
	left: -55px;
	opacity: 0;
	top: 20%;
	background: #ffffff;
	padding: 20px;
	border-radius: 0 20px 20px 0;
	box-shadow: 1px 1px 40px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease-in-out;
}
.team .box .social .icon {
	display: block;
	padding: 7px 0;
	font-size: 16px;
	color: #727f8c;
	transition: all 0.4s ease-in-out;
}
.team .box .social .icon:hover {
	color: #719f2a;
}
.team .box:hover .social {
	opacity: 1;
	left: 0;
}

/*--------------------------------------------------
[8. Start Some Facts]
--------------------------------------------------*/
.some-facts {
	background: url("../img/bg/some-facts.png") center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding: 120px 0;
}
.some-facts .items h3 {
	font-size: 35px;
	color: #ffffff;
	margin: 0;
	font-weight: 700;
	margin-top: 20px;
}
.some-facts .items h4 {
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	margin: 5px 0 0;
}

/*--------------------------------------------------
[10. Start Why Us]
--------------------------------------------------*/
.why-us .left {
	background: url("http://placehold.jp/950x630.png") center center no-repeat;
	background-size: cover;
	height: 632px;
}
.why-us .right {
	background: #f8f8f8;
}
.why-us .right .content {
	padding: 80px 50px;
}
.why-us .right .content span {
	font-size: 16px;
	font-weight: 400;
	color: #719f2a;
	display: inline-block;
	margin-bottom: 5px;
}
.why-us .right .content h2 {
	font-size: 25px;
	font-weight: 500;
	color: #313e4b;
	margin: 0;
}
.why-us .right .content p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
	margin-top: 15px;
	margin-bottom: 40px;
}
.why-us .right .content .box {
	background: #ffffff;
	padding: 10px;
	border-radius: 100px;
	border: 1px solid #f5f5f5;
	margin-bottom: 30px;
}
.why-us .right .content .box h3 {
	font-size: 16px;
	color: #313e4b;
	font-weight: 500;
	margin: 0 0 0 20px;
}
.why-us .right .content .box .icon {
	background: #719f2a;
	border-radius: 50%;
	font-size: 17px;
	color: #ffffff;
	width: 50px;
	height: 50px;
	transition: all 0.3s ease-in-out;
	border: 1px solid #719f2a;
}
.why-us .right .content .box:hover .icon {
	border: 1px solid #719f2a;
	color: #719f2a;
	background: #ffffff;
}

/*--------------------------------------------------
[11. Testimonials]
--------------------------------------------------*/
.testimonials {
	padding: 120px 0 80px;
}
.testimonials .heading {
	margin-bottom: 60px;
}
.testimonials .heading h2 {
	font-size: 30px;
	font-weight: 700;
	color: #313e4b;
	margin-bottom: 20px;
}
.testimonials .heading h2 span {
	font-weight: 300;
	color: #719f2a;
	margin: 0;
}
.testimonials .heading p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
}
.testimonials .box {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	padding: 40px;
	border-radius: 15px;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
}
.testimonials .box h3 {
	font-size: 18px;
	font-weight: 500;
	color: #313e4b;
}
.testimonials .box:hover {
	transform: translateY(-10px);
}
.testimonials .box h3 span {
	font-size: 13px;
	font-weight: 400;
	color: #719f2a;
	margin-left: 10px;
}
.testimonials .box p {
	font-size: 15px;
	font-weight: 300;
	line-height: 24px;
	margin: 0;
	color: #727f8c;
	margin-bottom: 20px;
	margin-top: 10px;
	padding-right: 20px;
}
.testimonials .box .image img {
	width: 200px;
	border-radius: 50%;
	margin: 0;
	padding: 0;
	display: inline-block;
}
.testimonials .box .icon {
	border: 1px solid #eee;
	color: #777777;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.testimonials .box .icon:hover {
	color: #ffffff;
	border: 1px solid #719f2a;
	background: #719f2a;
}

/*--------------------------------------------------
[12. Blog]
--------------------------------------------------*/
.blog {
	padding: 0 0 80px;
}
.blog .heading {
	margin-bottom: 60px;
}
.blog .heading h2 {
	font-size: 30px;
	font-weight: 700;
	color: #313e4b;
	margin-bottom: 20px;
}
.blog .heading h2 span {
	font-weight: 300;
	color: #719f2a;
	margin: 0;
}
.blog .heading p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
}
.blog .box {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border-radius: 15px;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}
.blog .box:hover .cat {
	left: 0;
	opacity: 1;
}
.blog .image {
	position: relative;
}
.blog .image .cat {
	position: absolute;
	background: #719f2a;
	top: 50px;
	color: #ffffff;
	left: -90px;
	padding: 5px 30px 5px 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	border-top-right-radius: 35px;
	border-bottom-right-radius: 35px;
	transition: all 0.4s ease-in-out;
	opacity: 0;
}
.blog .box .text {
	padding: 40px 30px;
}
.blog .box .text h3 a {
	font-size: 20px;
	font-weight: 500;
	color: #313e4b;
	margin: 0;
	padding: 0;
	text-decoration: none;
}
.blog .box .text span {
	font-size: 13px;
	font-weight: 300;
	color: #adadad;
}
.blog .box .text p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #727f8c;
	margin-top: 10px;
}

/*--------------------------------------------------
[13. Contact]
--------------------------------------------------*/
.contact {
	background: url("../img/bg/contact.png") center center no-repeat;
	background-size: cover;
	padding: 120px 0;
}
.contact .heading {
	margin-bottom: 60px;
}
.contact .heading h2 {
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
}
.contact .heading h2 span {
	font-weight: 300;
	color: #719f2a;
	margin: 0;
}
.contact .heading p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	margin: 0;
	color: #ffffff;
}
.contact .form-control {
	padding: 25px;
	font-size: 13px;
	margin-bottom: 10px;
	background: #ffffff;
	border: 0;
	border-radius: 10px;
}

.contact button.btn {
	box-shadow: 0 15px 51px 0 rgba(0, 0, 0, 0.24);
	padding: 10px 45px;
	border-radius: 45px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.4s ease-in-out;
	padding: 10px;
	border-radius: 10px;
	font-size: 15px;
	background: linear-gradient(135deg, #719f2a 0%, #55791f 100%);
	color: #ffffff;
}

/*--------------------------------------------------
[14. Start Footer]
--------------------------------------------------*/
.footer {
	background: #232834;
	padding: 40px 0;
}
.footer h2 {
	font-size: 15px;
	font-weight: 500;
	margin: 20px 0 0;
}

/*--------------------------------------------------
[15. Start Page Loading]
--------------------------------------------------*/
.no-js #loader {
	display: none;
}
.js #loader {
	display: block;
	position: absolute;
	left: 100px;
	top: 0;
}
.se-pre-con {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url("../img/loader/preloader.svg") center no-repeat #fff;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.navbar {
		background: #353c4d !important;
		padding: 30px;
	}
	.navbar .nav-item {
		margin: 0;
		padding: 0;
		margin: 10px 0;
	}
	.navbar .nav-item .nav-link {
		margin: 0;
	}
	.slider {
		height: 800px;
		text-align: center;
	}
	.about {
		padding: 120px 0 80px 0;
	}
	.about .box {
		margin-bottom: 40px;
	}
	.services .right {
		margin-top: 40px;
	}
	.team .box {
		margin-bottom: 40px;
	}
	.mission {
		padding: 80px 0 120px 0;
	}
	.mission .text {
		margin-top: 40px;
	}
	.some-facts {
		padding: 120px 0 70px 0;
	}
	.some-facts .items {
		margin-bottom: 50px;
	}
	.price {
		padding: 120px 0 80px 0;
	}
	.price .cards {
		margin-bottom: 40px;
	}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.navbar {
		background: #353c4d !important;
		padding: 30px;
	}
	.navbar .nav-item {
		margin: 0;
		padding: 0;
		margin: 10px 0;
	}
	.navbar .nav-item .nav-link {
		margin: 0;
	}
	.slider {
		height: 900px;
		text-align: center;
	}
	.about {
		padding: 120px 0 80px 0;
	}
	.about .box {
		margin-bottom: 40px;
	}
	.services .right {
		margin-top: 40px;
	}
	.team .box {
		margin-bottom: 40px;
	}
	.mission {
		padding: 80px 0 120px 0;
	}
	.mission .text {
		margin-top: 40px;
	}
	.some-facts {
		padding: 120px 0 70px 0;
	}
	.some-facts .items {
		margin-bottom: 50px;
	}
	.price {
		padding: 120px 0 80px 0;
	}
	.price .cards {
		margin-bottom: 40px;
	}
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
	.navbar {
		background: #353c4d !important;
		padding: 30px;
	}
	.navbar .nav-item {
		margin: 0;
		padding: 0;
		margin: 10px 0;
	}
	.navbar .nav-item .nav-link {
		margin: 0;
	}
	.slider {
		height: 900px;
		text-align: center;
	}
	.about {
		padding: 120px 0 80px 0;
	}
	.about .box {
		margin-bottom: 40px;
	}
	.services .right {
		margin-top: 40px;
	}
	.team .box {
		margin-bottom: 40px;
	}
	.mission {
		padding: 80px 0 120px 0;
	}
	.mission .text {
		margin-top: 40px;
	}
	.some-facts {
		padding: 120px 0 70px 0;
	}
	.some-facts .items {
		margin-bottom: 50px;
	}
	.price {
		padding: 120px 0 80px 0;
	}
	.price .cards {
		margin-bottom: 40px;
	}
}

.rounded-check-mark i.fa {
	background-color: #8bc34a;
	border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	-webkit-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	-moz-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	-ms-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	-o-border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	padding: 5px;
	color: white;
	font-size: 0.75rem;
	transition: all 500ms linear;
	margin-bottom: 5px;
}
.rounded-check-mark p:hover i.fa {
	background-color: #4caf50;
	color: white;
}
.rounded-check-mark li:hover i.fa {
	background-color: #4caf50;
	color: white;
}

html {
	scroll-behavior: smooth;
}
