@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Playfair+Display:wght@700&display=swap');
*{
	scroll-behavior: smooth;
}
html{
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	font-family: Roboto;
	scroll-behavior: smooth;
	/* overflow: hidden; */
}

header {
	/* width: 100vw; */
	overflow: hidden;
	height: 130vh;
}

.top-img{
	position: absolute;
	z-index: 10;
	height: 80vh;
	top: 150px;
	width: 100%;
	pointer-events: none;
}
.vid-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 130vh;
	object-fit: cover;
	opacity: 1;
	/* scale: 1.1; */
}
/*background: rgba(0, 0, 0, 0.551);*/
.nav-area {
	/* margin-top: 10px; */
	background: rgba(0, 0, 0, 0);
	height: 130vh;
	position: absolute;
	width: 100%;
}

.logo-area {
	margin-top: 40px;
	width: 100%;
	/* background-color: red; */
	display: flex;
	justify-content: center;
}

.logo-area img {
	height: 200px;
	width: 200px;
}

nav {
	margin: 30px;
	margin-top: 50px;
	/* background-color: red; */
	display: flex;
	justify-content: center;
}

.nav-row {
	/*width: 75%;*/
	width: 100%;
	/* background-color: #000; */
	display: flex;
	justify-content: center;
}

.list-items {
	display: flex;
	/* background-color: rgb(93, 0, 255); */
}

.nav-links {
	text-decoration: none;
	height: 40px;
	padding: 10px 13px;
	color: #fff;
	cursor: pointer;
	/* font-weight: bold; */
	font-size: 15px;
}

.nav-links:hover {
	/*color: lawngreen;*/
	color: black;
}

.nav-links.active .kaki, .nav-links.active {
	/*color: lawngreen;*/
	color: black;
}

.nav-links i {
	margin-left: 3px;
	font-size: 12px;
}

.sub-nav,
.page-nav {
	margin-left: -80px;
	transition: 0.7s;
	margin-top: 40px;
	border-radius: 2px;
	width: 230px;
	background-color: #fff;
	position: absolute;
	z-index: 100;
	color: #000;
	opacity: 0;
	pointer-events: none;
	border-bottom: 4px solid #88B44E;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.page-nav {
	width: 70%;
	margin-left: -45%;
}

.sub-nav-link {
	width: 230px;
	height: 50px;
	/* background-color: red; */
	display: flex;
	text-decoration: none;
	align-items: center;
	padding: 10px;
	color: #000;
	padding-left: 30px;
}

.sub-nav-link:hover, .kaki:hover {
	/*color: #88B44E;*/
	color:black;
	background-color: aquamarine;
}

.nav-links:hover .sub-nav,
.nav-links:hover .page-nav {
	margin-top: 5px;
	pointer-events: initial;
	opacity: 1;
	transition: 0.7s;
}

.nav-links:hover .nav-i {
	transition: 0.6s;
	transform: rotate(90deg);
}

.mobile-logos{
	display: none;
}

.kaki{
	color: #fff;
	text-decoration: none;
	/*color:black;*/
	/*background-color: aquamarine;*/
}

.hehes{
	display: flex;
	align-items: center;
	margin-right: 5px;
}

.hehes i {
	background-color: #252C30 !important;
	margin-right: 5px;
}

.shes{
	display: flex;
	align-items: center;
}

@media screen and (max-width: 1080px) {
	.hamburger{
		top: 100px;
		position: absolute;
		width: 50px;
		height: 50px;
		/* background-color: red; */
		display: flex;
		align-items: center;
		justify-content: center;
		right: 7%;
		flex-direction: column;
		cursor: pointer;
		z-index: 99;
	}
	.line{
		margin: 2.5px 0;
		height: 3px;
		width: 30px;
		background-color: #88B44E;
		transition: 0.5s;
	}
	.hamburger:hover .line{
		transition: 0.5s;
		background-color: #fff;
	}
	.hamburger:hover .line:nth-child(2){
		/* transition: ; */
		width: 26px;
	}
	.hamburger:hover .line:nth-child(3){
		/* transition: ; */
		width: 16px;
	}
	nav{
		width: 0px;
		overflow: hidden;
		transition: 0.5s;
		transition: 0.5s;
		display: flex;
		position: absolute;
		z-index: 100;
		top: -40px;
		
		background-color: #252C30;
		min-height: calc(100vh - 30px);
		height: auto;
		right: -20px;
		padding: 0;
		/* margin: 0; */
		justify-content: left;
	}
	nav.active{
		width: 55%;
		border-radius: 10px;
	}
	.nav-row{
		width: 100%;
		padding: 0 20px;
	}
	.list-items{
		/* margin-left: 20px; */
		/* background-color: lawngreen; */
		width: 100%;
		flex-direction: column;
		color: #fff;
		justify-content: left;
		align-items: left;
		/* font-size: 20px; */
	}
	
	.nav-links{
		position: relative;
		font-size: 20px;
		height: 62px;
		background-color: #252C30;
		/* margin-top: 10px; */
		/* border-radius: 30px; */
		/* padding-top: 20px; */
		padding-left: 40px;
		z-index: 100;
		/* height: auto; */
		/* margin-top: 20px; */
	}

	.nav-links.h-auto{
		transition: 0.6s;
		height: auto;
		/* min-height: 100px; */
	}

	.nav-links:hover{
		background-color: #88B44E;
		color: #fff;
	}
	.nav-links:hover .nav-i{
		transform: initial;
	}
	.sub-nav, .page-nav{
		display: none;
		/* display: flex; */
		flex-direction: column;
		opacity: 1;
		margin-top: 10px;
		margin-left: 0;
		position: relative;
		width: 100%;
		z-index: 100;
		background-color: #252C30;
		/* background-color: #000; */
		color: #88B44E;
		box-shadow: none;
		border: none;
		transition: 0.6s;
	}

	.nav-links.h-auto .sub-nav, .nav-links.h-auto .page-nav {
		transition: 0.6s;
		display: flex;
	}
	.sub-nav-link{
		color: #88B44E;
	}
	.nav-links.active {
		background-color: #88B44E;
		color: #fff;
		
	}

	.mobile-logos{
		margin-bottom: 20px;
		margin-top: 10px;
		width: 100%;
		/* background-color: blue; */
		display: flex;
		justify-content: space-between;
	}
	#closeBtn{
		font-size: 35px;
		font-weight: bold;
		cursor: pointer;
	}
	.m-logo img{
		width: 220px;
	}
	.nav-links:hover{
		background-color: #252C30;
	}
	.kaki{
		width: 100%;
		display: flex;
		align-items: center;
		height: 45px;
		padding-left: 15px;
		justify-content: space-between;
		border-radius: 25px;
		padding-right: 20px;
	}
	.kaki i{
		background-color: #ffffff;
		border-radius: 50%;
		width: 20px;
		height: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #88B44E;
		/* font-weight: bold; */
		/* margin-right: 20px; */
	}

	.nav-links.h-auto .nav-i {
		transition: 0.6s;
		transform: rotate(90deg);
	}
	.nav-links.active{
		background-color: #252C30;
	}
	.nav-links.active .kaki{
		background-color: #88B44E;
		
	}
}

@media screen and (max-width: 898px) {
	nav.active{
		width: 95%;
	}
	.nav-row{
		padding: 0;
	}
	.mobile-logos{
		padding: 10px;
	}
	.nav-area{
		overflow: hidden;
	}
	.top-img{
		top: 250px;
		height: 190px;
		width: 80%;
		margin-left: 10%;
	}
}

/* search  */
.next-box {
	display: flex;
	align-items: center;
}

.search-box {
	width: fit-content;
	height: fit-content;
	position: relative;
}

.input-search {
	height: 30px;
	width: 30px;
	border-style: none;
	padding: 10px;
	font-size: 14px;
	letter-spacing: 2px;
	outline: none;
	border-radius: 50%;
	transition: all .5s ease-in-out;
	background-color: #22a6b3;
	/* padding-right: 40px; */
	color: #fff;
}

.input-search::placeholder {
	color: rgba(255, 255, 255, 1);
	font-size: 18px;
	letter-spacing: 2px;
	font-weight: 100;
}

.btn-search {
	width: 30px;
	height: 30px;
	border-style: none;
	font-size: 14px;
	font-weight: bold;
	outline: none;
	cursor: pointer;
	border-radius: 50%;
	position: absolute;
	right: 0px;
	color: #ffffff;
	background-color: transparent;
	pointer-events: painted;
}

.btn-search:focus~.input-search {
	width: 300px;
	border-radius: 0px;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.input-search:focus {
	width: 300px;
	border-radius: 0px;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

/* end search  */
.logo {

	margin: 0 50px;
	height: 60px;
	float: left;
	color: #fff;
	font-size: 35px;
	text-transform: capitalize;
	font-weight: bold;
	letter-spacing: 2px;
}

.menu-area {
	float: right;
	list-style: none;
	margin: 20px;

}

.menu-area li {
	display: inline-block;
	margin: 0 5px;

}

.menu-area li a {

	text-decoration: none;
	color: #fff;
	padding: 5px 10px;
	letter-spacing: 2px;
}

.menu-area li a:hover {
	color: green;
}

.banner-text {
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.banner-text h1 {
	color: #fff;
	font-size: 75px;
	margin-top: 0px;
}

.banner-text h2 {
	color: #fff;
	margin-top: 0px;
	font-size: 65px;
}

.banner-text p {
	color: #fff;
	font-size: 18px;
	margin: 0;
	font-weight: bold;

}

.btn {
	display: inline-block;
	margin-top: 5%;
	background: #fff;
	border: 0;
	font-size: 15px;
	text-decoration: none;
	border: 10px sloid #000;
	padding: 10px 25px;
	color: #000;
	border-radius: 25px;
}

.btn-t {
    display: inline-block;
    /*margin-top: 5%;*/
    margin-top: 0%;
    background: #fff;
    border: 0;
    font-size: 15px;
    text-decoration: none;
    border: 10px sloid #000;
    /*padding: 10px 10px;*/
    color: #000;
    border-radius: 34px;
}

.btn-1 {
	display: inline-block;
	margin-top: 5%;
	background: green;
	border: 0;
	font-size: 15px;
	text-decoration: none;
	border: 10px sloid #fff;
	padding: 10px 25px;
	color: #fff;
	border-radius: 25px;
}

.btn-1:hover {
	background-color: rgb(8, 91, 8);
	font-weight: 900;
	transition: 0.6s;
	color: #fff;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	right: 0;
	/* background-color: #9f9f9; */
	min-width: 160px;

	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color: #3e8e41;
}

.cl-w {
	color: #ffffff !important;
}




/* products */
#products,
#Online,
#testimonials {
	padding: 80px 0;
	background-color: #f5f8f2;
	/* overflow: hidden; */
}

#testimonials {
	position: relative;
	background-color: #0007 !important;
}

.haish {
	position: fixed;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: -1;
	background-size: cover;
}


#Online {
	background-color: #ffffff;
}

.product-content {
	width: 100%;
	text-align: center;
}

.product-content h6 {
	font-family: 'Dancing Script', cursive;
	font-weight: bold;
	color: #88B44E;
	font-size: 24px;
}


.product-content h2 {
	margin-top: 10px;
	font-size: 40px;
	font-family: 'Playfair Display', serif;
}

.slidex {
	background-color: rgb(0, 255, 174) !important;
	padding: 0 !important;
	margin: 0px;
}

/* swiper  */
.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #f5f8f2;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.square {
	position: relative;
	width: 100%;
	height: 80%;
	background-color: blue;
	display: flex;
	justify-content: center;
}

.square img {
	height: 100%;
	width: 100%;
}

.rect {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 130px;
	width: 85%;
	background-color: #fff;
	margin-top: 200px;
	border-radius: 5px;
	color: #000;
}

.swiper {
	width: 100%;
	height: 340px;
}

.swiper-2 {
	height: auto;
}

.slide-navigation {
	width: 100%;
	/* background-color: red; */
	height: 70px;
	margin-top: 30px;
	display: flex;
	justify-content: center
		/* position: absolute; */
}

.slide-navx {
	transition: 0.6s;
	height: 50px;
	width: 50px;
	background-color: #88B44E;
	border-radius: 50%;
	margin: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.slide-navx:hover {
	background-color: #ffffff;
	transition: 0.6s;
	color: #000;
}

.swiper-pagination-bullet {
	width: 50px !important;
	height: 50px !important;
	text-align: center;
	/* line-height: 20px; */
	font-size: 12px;
	color: #000;
	opacity: 1 !important;
	background: rgba(0, 0, 0, 0.2);
	border: 2px solid green;
}

.swiper-pagination-bullet:nth-child(1) {
	background-image: url(img/logo.png);
	background-size: 100% 100%;
}

.swiper-pagination-bullet:nth-child(2) {
	background-image: url(img/logo.png);
	background-size: 100% 100%;
}

.swiper-pagination-bullet:nth-child(3) {
	background-image: url(img/logo.png);
	background-size: 100% 100%;
}

.swiper-pagination-bullet-active {
	/* margin-top: 40px; */
	transition: 0.3s ease-in-out;
	height: 65px !important;
	width: 65px !important;
	color: #fff;
	border: 2px solid #fff;
	/* background: #007aff; */
}

.kk {
	margin-top: 30px;
	font-size: 18px;
}

.slide {
	margin-top: 60px;
}

.view-div {
	display: flex;
	justify-content: center;
}

.shit {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	position: relative;
}


/* end swiper  */
.o-products {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	/* background-color: red; */
	align-items: center;
	background-color: #ffffff;
}

.heh {
	transform: rotate(90deg);
}

.o-img {
	height: 350px;
	width: 100%;
}

.stars {
	/* text-decoration: none; */
	color: yellow;
	letter-spacing: 5px;
	/* margin-top: 10px; */
	font-size: 30px;
	font-weight: bold;
}

.hola h3 {
	color: #000;
}

.o-products p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 16px;
	color: #000;
	margin: 10px 30px;
}

.price i {
	font-size: 20px;
}

.price {
	font-size: 24px;
	color: #88B44E;
	/* margin-left: 10px; */
}

/* end products */
/* info */
#info {
	/* height: 100vh; */
	background-image: url(img/bg-2.png);
	background-color: #88B44E;
	padding: 100px 0;
}

#info h1 {
	font-size: 38px;
	font-weight: 900;
}

#info h1 span {
	color: #fff;
}

.box-4 {
	margin-top: 50px;
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.boxes {
	display: flex;
	height: 70px;
	width: calc(100% / 2);
	/* background-color: rgb(150, 19, 19); */
	align-items: center;
}

.circle {
	height: 50px;
	width: 50px;
	background-color: #fff;
	border-radius: 50%;
	/* margin-left: 10px; */
}

.circle img {
	height: 100%;
	width: 100%;
}

.boxes p {
	font-size: 16px;
	margin-left: 10px;
	color: #000;
	margin-top: 10px;
	font-size: 600;
}

.ff-2 {
	font-family: 'Dancing Script', cursive;
}

.ff-3 {
	font-family: 'Playfair Display', serif;
}

.hah {
	font-family: 'Dancing Script', cursive;
	font-size: 28px;
	margin-top: 30px;
	color: #fff;
}

.btn-2,
.btn-3 {
	margin-top: 30px;
	transition: 0.6s;
	background-color: #000;
	display: flex;
	width: 140px;
	align-items: center;
	justify-content: center;
	height: 45px;
	text-decoration: none;
	color: #fff;
	/* text-transform: capitalize; */
	font-weight: bold;
	border-radius: 30px;
	font-family: 'Playfair Display', serif;
}

.btn-2 i,
.btn-3 i {
	margin-left: 10px;
	margin-top: 2px;
}

.btn-2:hover {
	transition: 0.6s;
	background-color: #fff;
	color: #000;
}

.btn-3 {
	background-color: #88B44E;
}

.btn-3 i {
	color: #000;
}

.btn-3:hover {
	background-color: #000;
	color: #fff;
}

.btn-3:hover .b3-i {
	color: #88B44E;
}

.btn-4 {
	width: 200px;
	font-size: 16px;
}

.hola a {
	text-decoration: none;
}

.hola a:hover .rect h2,
.hola a:hover .o-name {
	color: #88B44E;
}



@media screen and (max-width: 668px) {
	.boxes {
		width: 100%;
	}

	#header {
		height: 100vh;
	}
}

@media screen and (max-width: 548px) {
	#info h1 {
		text-align: center;
		font-size: 30px;
	}

	.hah {
		text-align: center;
		font-size: 24px;
	}
}

/* end info */

/* contact  */
#contacts {
	padding: 30px 0;
	background-color: #70953f;
}

.bar {
	height: 2px;
	width: 100%;
	background-color: #0008;
	margin-top: 15px;
}

.shh {
	font-size: 22px;
	color: #ffffff;
}

.btn-5 {
	margin-top: 10px;
}

.hmmh {
	display: flex;
	justify-content: center;
	align-items: center;
}

.wh-num {
	margin-top: 10px;
	margin-left: 20px;
	font-size: 25px;
	color: #fff;
	font-weight: bold;
}

.wh-i {
	font-size: 50px;
}

.mdn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mySwiper-3 {
	height: auto;
}

.shitx {
	/* height: auto; */
	padding: 30px !important;
	border-radius: 3px;
	flex-direction: column;
}

.shit-name {
	font-size: 20px;
	color: #88B44E;
	text-transform: capitalize;
}

.shit-pos {
	font-size: 16px;
}

.shitx p {
	margin-top: 20px;
	font-size: 22px;
}

.si-i i {
	margin-top: 20px;
	color: #88B44E;
	font-size: 40px;
}

@media screen and (max-width: 998px) {
	.bar {
		display: none;
	}

	.shh {
		text-align: center;
		padding-bottom: 10px;
	}

	.mdn {
		display: none;
	}
}

/* end contact  */

/* blog post  */
#blogPost {
	padding: 80px 0;
	background-color: #f5f8f2;
}

.mySwiper-4 {
	margin-top: -30px !important;
	height: auto;
	/* background-color: #ffffff; */
	/* background-color: red; */
	/* padding: 10px; */
}

.blog-div {
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 3px;
	width: 97%;
	overflow: hidden;
	background-color: #ffffff;
	height: auto;
	/* height: 550px; */
	/* border: ; */
	border-bottom: 4px solid #0001;
	transition: 0.6s;
}

.blog-div:hover {
	transition: 0.6s;
	border-bottom: 5px solid #88B44E;
}

.bg-w {
	background-color: #ffffff;
}

.blog-img {
	width: 100%;
	height: 300px;
}

.blog-img:hover {
	transition: 0.5s;
	scale: 1.05;
}

.blog-content {
	width: 100%;
	padding: 30px;
	background-color: #ffffff;
}

.cl-2 {
	font-size: 16px;
	display: flex;
	color: #88B44E;
	text-align: left;
	width: 50%;
	text-transform: capitalize;
	/* background-color: red; */
}

.cl-2:hover {
	color: #000;
}

.cl-3 {
	display: flex;
	text-align: left;
	width: 100%;
	margin-top: 10px;
	/* font-size: bold; */
}

.cl-3 h3:hover {
	color: #88B44E;
}

.cl-3 h3 {
	font-weight: bold;
}

.blog-para {
	margin-top: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	font-size: 13px;
	color: #0009;
	/* margin: 10px 30px; */
	text-align: left;
}

.bar-1 {
	margin-top: 30px;
	width: 100%;
	height: 1px;
	background-color: #0002;
}

.blog-output {
	margin-top: 10PX;
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	color: #0009;
}

.commt-w {
	display: flex;
}

.cmt {
	text-decoration: none;
	color: #0009;
	font-size: 14px;
	margin-right: 20px;
}

.cmt:hover {
	color: #0009;
}

.cmt i {
	color: #88B44E;
	font-size: 13px;
	/* margin-top: 10px; */
	margin-right: 2px;
}

.wat i {
	color: #88B44E;
	margin-right: 2px;
}

/* end blog post  */

#brandLogos {
	padding: 60px 0;
	overflow: hidden;
	background-color: #ffffff;
}

.brand-logo {
	display: flex;
	width: 100%;
	/* background-color: red; */
	flex-wrap: wrap;
}

.log-boxes {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	width: calc(100% / 6);
	flex-direction: column;
	height: 112px;
	overflow: hidden;
	transition: 0.6s;
	/* background-color: blue; */
}

.log-img-1 {
	margin-top: -100px;
	transition: 0.6s;
}

.log-boxes:hover .log-img-1 {
	transition: 0.6s;
	margin-top: 0px;
}

.log-in {
	margin-right: 5px;
	color: lawngreen;
}

@media screen and (max-width: 768px) {
	.log-boxes {
		width: calc(100% / 3);
		margin: 10px 0;
	}
}

/* video  */
#video {
	position: relative;
	height: 110vh;
	padding: 80px 0;
	background-color: #f5f8f2;
	/* background-image: url(/site.mp4/img/video-leafs.png); */
	background-image: url(img/video_parallax.jpg);
	color: #fff;
	/* overflow-x: hidden; */
}

.video-img {
	position: absolute;
	top: 0;
	z-index: 9;
	width: 100%;
}

.video-img img {
	width: 100%;
}


.dhur {
	position: relative;
	z-index: 10;
	/* position: ; */
}

#video h1 {
	font-size: 50px;
}

#video h1 span {
	color: #88B44E;
}

#video h2 {
	margin-top: 20px;
}

#video iframe {
	width: 100%;
	height: 550px;
}

/* happy client  */
#happyClient {
	position: relative;
	background-color: #fff;
	overflow: hidden;
	height: 130vh;
	display: flex;
	align-items: center;
}

#happyClient img {
	position: absolute;
	top: 0;
	width: 110%;
	height: 100%;
	z-index: 1;
}

.hala {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* justify-content: center; */
	position: relative;
	width: 100%;
	/* height: 500px; */
	background-image: url(img/customers-bg.png);
	color: #000;
	z-index: 2;
	background-repeat: no-repeat;
	background-position: center;
	/* background-color: red; */
	/* margin-top: 100px; */
}

.big-num {
	font-size: 90px;
	color: #88B44E;
	font-weight: bold;
}

.hap-name {
	font-size: 55px;
}

.h-para {
	margin-top: 30px;
	width: 70%;
	text-align: center;
	font-size: 24px;
}

/* end happy client  */

@media screen and (max-width: 768px) {
	#video {
		height: 500px;
	}

	#video iframe {
		height: 300px;
	}

	#happyClient {
		margin-top: 80px;
		height: 100vh;
	}
}


@media screen and (max-width: 568px) {
	#video {
		height: 360px;
	}

	#video h1 {
		font-size: 30px;
	}

	#video iframe {
		height: 230px;
	}

	.hap-name {
		font-size: 28px;
	}

	/* #ha */
}

/* end video  */


/* footer  */
#upperFooter {
	background-image: url(img/footer-1-bg.png);
	/* height: 160px; */
	background-color: #252C30;
	background-repeat: no-repeat;
	background-position: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.19);
	/* display: flex; */

}

.up-f {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 160px;
	/* background-color: red; */
}

.logo-por img {
	width: 170px;
	height: 170px;
}

.fus {
	color: #fff;
	font-size: 16px;
	margin-right: 10px;
	margin-top: 10px;
}


.social-por {
	display: flex;
	align-items: center;
	height: 160px;
	/* background-color: red; */
}

.social-link {
	text-decoration: none;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #88B44E;
	color: #fff;
	font-size: 20px;
	margin: 10px;
}

@media screen and (max-width: 768px) {

	.up-f {
		flex-direction: column;
		justify-content: center;
	}

	.social-por {
		margin-top: 20px;
	}

	.fus {
		display: none;
	}

	#upperFooter {
		padding: 50px 0;
	}
}

#footer {
	background-image: url(img/footer-2-bg.png);
	height: auto;
	background-color: #252C30;
	/* color: #ffffff; */
}

#lowerFooter {
	/* padding: 20px 0; */
	background-color: #000;
	height: 70px;
}

.low-f {
	/* margin-top: 10px; */
	display: flex;
	justify-content: space-between;
	color: #fff;
	text-transform: capitalize;
	font-size: 13px;
	height: 70px;
	align-items: center;
}

.low-f span {
	color: #88B44E;
}

.s-cir {
	height: 35px;
	width: 35px;
	border-radius: 50%;
	background-color: #fff;
	color: #000;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.4s;
}

.s-cir:hover {
	background-color: #88B44E;
	color: #fff;
	transition: 0.4s;
}

/* end footer  */

.animator {
	position: fixed;
	bottom: 40px;
	z-index: 99;
	/* background-color: red; */
	right: 60px;
	cursor: pointer;
	height: 50px;
}

#downIndicator {
	animation-duration: 0.6s;
	animation-iteration-count: infinite;
	animation-name: slideup;
	box-shadow: rgba(0, 0, 0, 0.45) 0px 100px 100px, rgba(0, 0, 0, 0.32) 0px -12px 30px, rgba(0, 0, 0, 0.32) 0px 4px 6px, rgba(0, 0, 0, 0.37) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#downIndicator.d-none{
	display: none;
}


@keyframes slideup {
	from {
		bottom: 40px;
		/* width: 300%; */
	}

	to {
		margin-top: 3px;
		/* width: 100%; */
	}
}


@media screen and (max-width: 548px) {
	.animator{
		right: 30px;
		bottom: 25px;
	}
}


.flipbookkk
    {
        margin-top: 0vh !important;
        margin-bottom: 0vh !important;
    }

    .flipbookkk-title{
        color: #ffa200;
        text-align: center;
        font-size: 5vw !important;
        font-family: "Poppins", Sans-serif;
        font-weight: 900;
        line-height: 75px;
       text-shadow: 1px 3px 0px #373737;
    }

    @media(min-width: 768px){
        .flipbookkk-title{
        font-size: 2.5vw !important;
    }

    }