/*======================================================*/
/*--------------------------------------------------------

Usually, the font size in HTML is 16px or 1rem by default ( 16px = 1rem ).  
Here in HTML, I have given Font Size 10px by default and here I have used REM as a Unit.  
10px = 1rem.  

I will give some more examples of px and rem, for example:-------
1px   	=   .1rem
2px		=	.2rem
3px		=	.3rem
4px		=	.4rem
5px		=	.5rem
6px 	= 	.6rem
7px 	= 	.7rem
8px 	= 	.8rem
9px   	=   .9rem 
10px  	=   1rem 
15px 	=  	1.5rem 
18px 	=  	1.8rem 
20px 	= 	2rem
27px 	= 	2.7rem;
30px 	=  	3rem 
35px 	=  	3.5rem

----------------------------------------------------------*/
/*=========================================================*/


/*===================*/
/*-- VARIABLES --*/
/*===================*/
:root {
	--heading: 40px;
	--heading: 4rem;
	--ssub-heading: 25px;
	--ssub-heading: 2.5rem;
	--paragraph: 16px;
	--paragraph: 1.6rem;
	--primary-color: #00645c;
	--secondary-color: #000000;
	--toxic-color: rgb(255, 167, 85);
}

/*===================*/
/*-- VARIABLES --*/
/*===================*/

html {
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth;
}

body {
	background: #ffffff;
	font-family: 'Poppins', sans-serif;
	line-height: 1.8;
	overflow-x: hidden !important;
	
}

/*==============================*/
/*-- REUSEBLE COMPONENTS --*/
/*==============================*/
section {
	padding: 40px 0;
	padding: 4rem 0;
}

.bg-color {
	background: #FFEDEC;
}
h1,
h2,
h3,
h4,
h5,
h6
{
	font-family: 'Poppins', sans-serif;
}
h3 {
	font-size: 2em;
	color:#007178;
}
h4 {
	font-size: 2.5em;
	color:gray;
	font-weight: 100;
}



/*==============================*/
/*-- REUSEBLE COMPONENTS --*/
/*==============================*/


/*==============================*/
/*-- START HEADER SECTION --*/
/*==============================*/
nav{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 35px 0;
	padding: 3.5rem 0;
	/* position: relative; */
	z-index: 9900;
}

.logo a .logo-img {
	max-width: 200px;
	max-width: 5rem;
	border-radius: 100%;
	background: var(--primary-color);
}

.main-menu li a {
	color: var(--secondary-color);
	font-weight: 500;
	letter-spacing: 1px;
	letter-spacing: .1rem;
	font-size: var(--paragraph);
}

.main-menu li:last-of-type {
	position: relative;
	height: 21px;
	height: 2.1rem;
	line-height: 21px;
	line-height: 2.1rem;
	text-align: center;
	margin-top: 5px;
	margin-top: .5rem;
	margin-right: 0;
}

/*- HAMBURGER MENU ICON -*/
.menu-show-icon {
	display: none;
	cursor: pointer;
	position: relative;
	z-index: 9999999;
}

.bar1,
.bar2,
.bar3 {
	width: 35px;
	width: 3.5rem;
	height: 5px;
	height: .5rem;
	background: var(--secondary-color);
	margin: 6px 0;
	margin: .6rem 0;
}

.change .bar1 {
	-webkit-transform: rotate(-45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.change .bar3 {
	-webkit-transform: rotate(45deg) translate(-10px, -7px);
	transform: rotate(45deg) translate(-10px, -7px);
}

/*--- SEARCH BAR ---*/
.header-search-wrapper {
	position: relative;
}

.search-main > i,
.search-main span {
	font-size: 20px;
	font-size: 2rem;
	cursor: pointer;
	color: var(--secondary-color);
	display: none;
}

.search-main span {
	display: none;
}

.header-search-wrapper .search-form-main {
	-webkit-transform: scale(0);
	transform: scale(0);
	background: var(--secondary-color);
	box-shadow: 1px 1px 7px rgba(0, 0, 0, .15);
	border-top: 3px solid #d33;
	padding: 20px;
	padding: 2rem;
	position: absolute;
	right: 0;
	top: 230%;
	width: 350px;
	width: 35rem;
	z-index: 9999;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
}





/*-- STICKY MENU --*/
.sticky-menu {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #ffffff;
	z-index: 99999999999;
	padding-top: 20px;
	padding-bottom: 25px;
	box-shadow: 0px 10px 20px 0px rgb(79 35 35 / 8%);
}
.sticky-menu .bar1{
	background: var(--primary-color);
}
.sticky-menu .bar2{
	background: var(--primary-color);
}

.sticky-menu .bar3{
	background: var(--primary-color);
}

.sticky-menu .main-menu li a {
	color: var(--primary-color);
}

.sticky-menu .main-menu .search-main i {
	color: #d1ccc0;
}
.logo-2{
	display: none;
}
.sticky-menu .logo-2{
	display: block;
}
.sticky-menu .logo-1{
	display: none;
}

.sticky-menu .main-menu li a{
	color: rgb(0, 0, 0);
}
.primary-btn{
	background: var(--primary-color);
	color: white !important;
	padding: 8px 28px;
	-webkit-transition: .5s;
	transition: .5s;
	border: 2px solid var(--primary-color);
	border-radius: 2px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	box-shadow: 0px 10px 20px 0px rgb(11 176 112 / 30%);
}
.primary-btn:hover{
    background: rgba(0, 0, 0, 0);
	border: 2px solid var(--primary-color);
	color:var(--primary-color) !important;
	
}
/*==============================*/
/*-- END HEADER SECTION --*/
/*==============================*/


/*==============================*/
/*-- START BANNER SECTION --*/
/*==============================*/
header{
	background: rgb(255, 255, 255);
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-row-align: center;
        align-items: center;
    min-height: 950px;
    z-index: 999;
}

.banner-right img{
	padding-top: 50px;
}
.sticky-menu .banner-right img{
	padding-top: 50px;
}
.banner-right{
	text-align: right;
	position: relative;
	z-index: 99;
}
.banner-left{
	position: relative;
	z-index: 99;
}
.banner-shape{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	overflow: hidden;
	z-index: -1;
}

.banner-shape1{
	height: 1000px;
    width: 1000px;
    background-image: -webkit-linear-gradient(210deg, #fd9720 0%, #12bf7c 100%);
    background-image: linear-gradient(-120deg, #fd9720 0%, #12bf7c 100%);
    opacity: 0.102;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
    border-radius: 50%;
    top: -14%;
    right: -3.2%;
    z-index: -1;
	position: absolute;
}
.banner-shape2{
	right: 30%;
	position: absolute;
	bottom: 18%;
}
.banner-shape2 img{
	position: relative;
    z-index: 22;
    margin-right: 15px;
	
}
.banner-shape3{
	right: 18%;
	position: absolute;
    bottom: 18%;
}
.banner-shape3 img{
	position: relative;
    z-index: 22;
    margin-right: -55px;
}
.banner-left h5{
	font-size: 12px;
    color: #1a133b;
    background: #f0f2f7;
    padding: 5px 40px 5px 5px;
    border-radius: 10px;
    display: inline-block;
}
.banner-left h5 span{
	background: #12bf7c;
    color: #fff;
    padding: 0 9px;
    border-radius: 20px;
    display: inline-block;
    line-height: 1.4;
    margin-right: 20px;
}
.banner-left h2{
	font-weight: 400;
	font-size: 70px;
    color: #1a133b;
    line-height: 50px;
    margin-bottom: 12px;
	margin: 30px 0;
}
.banner-left h1{
	font-size: 55px;
	font-weight: 600;
	color: #1a133b;
	line-height: 50px;
	margin-bottom: 25px;
}
.banner-left p{
	color: #797687;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 28px;
	line-height: 2.8rem;
	margin-bottom: 25px;
}
.p-tag{
	color: #797687;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 28px;
	line-height: 2.8rem;
	margin-bottom: 25px;
}
.h1-tag{
	font-size: 70px;
    font-weight: 600;
    color: #1a133b;
    line-height: 50px;
    margin-bottom: 25px;
}
.h2-tag{
	font-weight: 500;
	font-size: 70px;
    color: #1a133b;
    line-height: 50px;
    margin-bottom: 12px;
	margin: 30px 0;
}
.play-btn{
	border: 2px solid #12bf7c;
    text-shadow: 0px 6px 10px rgb(11 176 112 / 40%);
	color: var(--primary-color);
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
    margin: 0px 20px;
    border-radius: 50%;
	position: relative;
}
.banner-left-btn span{
	text-shadow: 0px 6px 10px rgb(11 176 112 / 40%);
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}
.play-btn:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	line-height: 100%;
	background: var(--primary-color);
	left: 0;
	border-radius: 50%;
	-webkit-animation: play 1s infinite ease-in-out;
	        animation: play 1s infinite ease-in-out;
}
@-webkit-keyframes play{
	0%{
		-webkit-transform: scale(0);
		        transform: scale(0);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	25%{
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: .2;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	}
	50%{
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: .5;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	}
	75%{
		-webkit-transform: scale(1.6);
		        transform: scale(1.6);
		opacity: .7;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	}
	100%{
		-webkit-transform: scale(1.7);
		        transform: scale(1.7);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}
@keyframes play{
	0%{
		-webkit-transform: scale(0);
		        transform: scale(0);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	25%{
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: .2;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	}
	50%{
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
		opacity: .5;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	}
	75%{
		-webkit-transform: scale(1.6);
		        transform: scale(1.6);
		opacity: .7;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	}
	100%{
		-webkit-transform: scale(1.7);
		        transform: scale(1.7);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}
.banner-shape4{
	position: absolute;
	left: 100px;
    top: 190px;
}
.banner-shape5{
	position: absolute;
	bottom: 150px;
    left: 40%;
}
.zoom-in-out {
	-webkit-animation: zoom-in-out  2s alternate infinite;
  }
  @-webkit-keyframes zoom-in-out  {
	0% {
	  -webkit-transform: scale(0.8);
	}
	100% {
	  -webkit-transform: scale(1);
	}
  }
  @keyframes zoom-in-out  {
	0% {
	  -webkit-transform: scale(0.8);
	}
	100% {
	  -webkit-transform: scale(1);
	}
  }
  .bounceUpDown{
	-webkit-animation: bounceUpDown .8s infinite linear alternate;
	        animation: bounceUpDown .8s infinite linear alternate;
}
@-webkit-keyframes bounceUpDown{

	0%{
		transform: translateY(-20px);
		-moz-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
	}

	50%{
		transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
	}

	100%{
		transform: translateY(0px);
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
	}

}
@keyframes bounceUpDown{

	0%{
		transform: translateY(-20px);
		-moz-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
	}

	50%{
		transform: translateY(-10px);
		-moz-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
	}

	100%{
		transform: translateY(0px);
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
	}

}
.wedo-item{
	
	-webkit-transition: .5s;
	transition: .5s;
	border: 2px solid rgba(0, 0, 0, 0);
	padding: 40px 30px;
    margin: 10px 15px;
    border-radius: 45px;
}
/* .wedo-item:hover{
	-webkit-transform: translateY(-10px);
	        transform: translateY(-10px);
	border: 2px solid var(--primary-color);
} */
.wedo-item-img{
	margin-bottom: 20px;
}
.wedo-item-content h3{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 18px;
}
.site-header p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
}
.site-header h1{
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 40px;
}

.site-header-line{
	position: relative;
    background-color:var(--primary-color);
    height: 5px;
    width: 90px;
    border-radius: 30px;
    margin: 20px auto;
}
/* .site-header-line:before{
	background-color: rgb(0, 0, 0);
    content: '';
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    -webkit-animation-direction: alternate-reverse;
    -webkit-animation-name: watermark-animate;
    animation-name: watermark-animate;
} */
.watermark-animate {
	-webkit-animation: watermark-animate 8s infinite;
	animation: watermark-animate 8s infinite;
	-webkit-animation-direction: alternate-reverse;
	        animation-direction: alternate-reverse;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
  }
  @-webkit-keyframes watermark-animate {
	0% {
	  left: 0;
	}
	100% {
	  left: 100%;
	}
  }
  @keyframes watermark-animate {
	0% {
	  left: 0;
	}
	100% {
	  left: 100%;
	}
  }
  .main-menu li a{
	  position: relative;

  }
  .main-menu li a:after{
	  content: "";
	  position: absolute;
	  bottom: 0;
	  background: var(--primary-color);
	  left: 0;
	  height: 3px;
	  width: 0%;
	  -webkit-transition: .5s;
	  transition: .5s;
  }
  .main-menu li a:hover{
	  color: var(--primary-color);
  }
  .main-menu li a:hover:after{
	  width: 100%;
  }

.banner-right img{
	width: 60%;
	right: 11%;
	position: relative;
}


/*==============================*/
/*-- END BANNER SECTION --*/
/*==============================*/




/*==============================*/
/*-- START About  SECTION --*/
/*==============================*/
#about-sec h4{
	font-size: 1.6rem;
	font-weight: 500;
	padding: 0px 5%;
	text-align: left;
}

#about-sec h2{
	font-size: 2.5rem;
	text-align: left;
	padding: 0px 5%;
	margin-top: 30px;
}



/*==============================*/
/*-- End about SECTION --*/
/*==============================*/


/*==============================*/
/*-- Start features SECTION --*/
/*==============================*/

#features-sec ul li{
	font-size: 1.6rem;
	font-weight: 500;
    padding: 5px 0;
	text-align: center;
	list-style: unset !important;
	text-align: left;
}
.ul-onother{
	list-style: none;
}
#features-sec h3{
	font-size:2.4rem;
	margin-top: 10px;
}
/*==============================*/
/*-- end features SECTION --*/
/*==============================*/



/*==============================*/
/*-- start Privacy Policy SECTION --*/
/*==============================*/
#privacy-sec {
	background: white;
    box-shadow: 0px 0px 20px 13px #0000000d;
    /* margin: 0 160px; */
    border-radius: 3em;
    padding: 80px 90px;
	margin: 180px  50px ;
}

#contact-sec  a ,
#privacy-sec  a {
	color: var(--primary-color);
}
#privacy-sec p{
	font-size: 1.6rem;
	font-weight: 500;
    padding: 5px 0;
	text-align: left;
	
}
#privacy-sec h3{
	font-size:2.4rem;
	margin-top: 10px;
	text-align: left;
}
#contact-sec h3{
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;

}
#contact-sec h3 a{
	color: #12bf7c;
  }
/*==============================*/
/*-- End Privacy Policy SECTION --*/
/*==============================*/



/*==============================*/
/*-- START WORK  SECTION --*/
/*==============================*/
.work-section{
	background: white;
}
.work-sec-wrap{
	background: #f6faf8;
	box-sizing: border-box;
	border-radius: 50px;
	padding: 100px 0;
	margin: 0 2%;
}
.work-sec-right-img img{
	box-shadow: 0px 60px 100px 0px rgb(79 35 35 / 20%);
	border-radius: 10px;
	position: relative;
	z-index: 10;
}
.work-sec-right-img {
	position: relative;
}
.work-sec-right-shape{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.work-sec-right-shape svg{
	position: absolute;
	top: -81px;
	right: -150px;
	z-index: 9;
}
.work-sec-right-shape img{
	position: absolute;
	left: 0;
	z-index: 8;
	top: -100px;
}
.work-sec-left h5{
	color: #12bf7c;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 13px;
}
.work-sec-left h2{
	font-size: 40px;
	color: #1a133b;
	font-weight: 600;
	line-height: 42px;
	margin-bottom: 14px;
}
.work-sec-left p{
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.work-sec-left ul{
	text-align: left;
	width: 61%;
}
.work-sec-left ul li a{
	box-shadow: 0px 4px 6px 0px rgb(1 51 32 / 6%);
    background: #fff;
    color: #76747f;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
	cursor: pointer;
    padding: 11px 27px;
    border-radius: 30px;
}
.work-sec-left ul li a i{
	margin-right: 10px !important;
	font-size: 18px;
	font-size: 1.8rem;
	vertical-align: -1px;
	color: #12bf7c;
}
.work-sec-right{
	margin: 60px 0;
}
.work-sec-left{
	margin: 60px 0;
}

section{
	overflow:  hidden !important;
}
img{
	max-width: 100%;
}






/*==============================*/
/*-- END WORK SECTION --*/
/*==============================*/


/*==============================*/
/*-- START  SECTION --*/
/*==============================*/

#app_image_content {
	padding: 10px 0;

	@media(max-width: 991px) {
		padding: 80px 0;
	}
}
.app-image-content-wrapper-one {
	margin-bottom: 30px;

	@media(max-width: 991px) {
		margin-bottom: 80px;
	}
}
.app-image-content-wrapper-two,.app-image-content-wrapper-two {
	margin-bottom: 30px;


}
.app-download-image {
	height: 500px;
	width: 500px;
	background: #f6ecd8;
	text-align: center;
	overflow: hidden;

}
.app-download-image.round {
	border-radius: 50%;
}


.app-download-image img{
	margin-top: -10px;
	width: 50%;
}

.app-bg-marmor img{
	margin-top: -100px;
}

.section-title h2{
	font-size: 38px;
    line-height: 1.1;
    margin-bottom: 25px;
}
p{
	color: #76747f;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 15px;
}
.list-items li{
	margin: 15px 0;
	font-size: 16px;
	font-size: 1.6rem;

}
.list-items i{
	color: #12bf7c;
	font-size: 17px;
	font-size: 1.7rem;
	margin-right: 5px;
}

.copy-right{
	padding: 20px 0;
	color: #ffffff;
	text-align: center;
	font-size: 18px;
	font-size: 1.8rem;
	background: white;
}

/*====================*/
/*-- Back to top --*/
/*====================*/
#up-btn {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	position: fixed;
	bottom: 30px;
	bottom: 3rem;
	right: 30px;
	right: 3rem;
	z-index: 99;
	font-size: 18px;
	font-size: 1.8rem;
	background: var(--primary-color);
	color: #FFFFFF;
	cursor: pointer;
	width: 35px;
	width: 3.5rem;
	height: 35px;
	height: 3.5rem;
	line-height: 35px;
	line-height: 3.5rem;
}

#up-btn:hover {
	-webkit-transform: translateY(-.7rem);
	transform: translateY(-.7rem);
}
.bar-color{
	background: white !important;
}
.footer-social-menu li a i{
	color: #12bf7c;
}
.work-btn{
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 600;
	margin-top: 20px;
	color: #12bf7c;
}
.color:hover {
	color: white !important;
}
.color-menu{
	color: white !important;
}
.list-items i {
	color: var(	--primary-color);
	margin-right: 0.5em;
}

.harms {
	/* background-color: var(--primary-color); */
	/* background-image: url("../images/harms.png"); */
	/* background: linear-gradient( white 0%,var(--toxic-color) 180%); */
	height: 50px;
    background-color: rgb(243 243 243);
    border-radius: 100%;
    width: 50px;
	vertical-align: middle;
	margin-right: 10px;
}
.harms:after {
	content: "";
    position: absolute;
    background-image: url(../images/harms.png);
    background-size: cover;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    /* margin-left: -40px; */
    margin-top: -1px;
    opacity: 0.8;
}
.harms-1:after,.harms-2:after ,.harms-3:after ,.harms-4:after ,.harms-5:after ,.harms-6:after  {
	background-position-x: 0.1em;
}
.harms-1:after  {
	background-position-y: calc(0/6*100%);

}
.harms-2:after  {
	background-position-y: calc(1/6*100%);
}
.harms-3:after  {
	background-position-y: calc(2/6*100%);
}
.harms-4:after  {
	background-position-y: calc(3/6*100%);
}
.harms-5:after  {
	background-position-y: calc(4/6*100%);
}
.harms-6:after  {
	background-position-y: calc(5/6*100%);
}