
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "FZZhengHeiS-DB-GB", "Open Sans", sans-serif; */
  color: #444444;
      max-width: 1920px;
    margin: 0 auto !important;
}

a {
  color: #e51e4e;
  text-decoration: none;
}

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

/* h1, h2, h3, h4, h5, h6 {
  font-family: "FZZhengHeiS-DB-GB", "Raleway", sans-serif;
}
 */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c40060;
  width: 40px;
  height: 40px;
  border-radius: 25px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}
.back-to-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 {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}
#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "FZZhengHeiS-DB-GB", "Poppins", sans-serif;
}
#header .logo a {
  color: #111111;
}
#header .logo a span {
  color: #c40060;
}
#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #c40060;
  color: #fff;
  border-radius: 15px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
.get-started-btn:hover {
  background: #111111;
  color: #fff;
}
@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: block; //flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
 /*  font-family: "FZZhengHeiS-DB-GB", "Raleway", sans-serif;
  font-size: 18px; */
  font-weight: 500;
  color: #111111;
  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: #c40060;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #c40060;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #c40060;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #c40060;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
 /*  height: 100vh; */
 /*  background: url("../img/2022-10-03 BIBI Web01-02.jpg") top center no-repeat;  */
  background-size: cover;
  position: relative;
  padding-top: 80px;
}
/* #hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
#hero h2 {
  color: #575756;
  margin: 10px 0 0 0;
  font-size: 24px;
}
#hero .btn-get-started {
  /* font-family: "FZZhengHeiS-DB-GB", "Raleway", sans-serif; */
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #c40060;
  border: 2px solid #c40060;
}
#hero .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}
@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 108px;
  }
  #hero h1 {
    font-size: 28px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 500px) {
  #hero {
   /*  height: 120vh; */
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  /* text-transform: uppercase; */
 /*  margin-bottom: 20px; */
  padding-bottom: 5px;
  position: relative;
}
 .section-title h3 {
  font-size: 18px;
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative;
}
 
.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}
.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

@media (max-width: 575px) {
	.section-title h2 {
	  font-size: 24px;
	}

	 .section-title h3 {
	  font-size: 16px;
	 } 
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol a {
  color: #aaaaaa;
}
.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #c40060;
  content: "/";
} 
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.aboutBiBi {
 
	background: rgb(254,253,208);
	background: linear-gradient(180deg, rgba(254,253,208,1) 0%, rgba(253,254,211,1) 100%);

}

.aboutBiBi-title{
	width:100%;  
	position: absolute;  
	top: 150px;  
	left: 50%; 
	transform: translate(-50%, -50%);
}

 
@media (max-width: 1250px) {
	.aboutBiBi-title{
		top: 100px; 
	}

}  

@media (max-width: 850px) {
	.aboutBiBi-title{
		top: 80px; 
	}

}  
@media (max-width: 767px) {
	.aboutBiBi-title{
		top: 250px; 
	}

} 
@media (max-width: 690px) {
	.aboutBiBi-title{
		top: 200px; 
	}

}   
@media (max-width: 575px) {
	.aboutBiBi-title{
		top: 250px; 
	}

}  
@media (max-width: 475px) {
	.aboutBiBi-title{
		top: 200px; 
	}

}   
@media (max-width: 375px) {
	.aboutBiBi-title{
		top: 180px; 
	}

	.section-title {
		padding-bottom: 10px;
	}
}  

@media (max-width: 360px) {
	.aboutBiBi-title{
		top: 180px; 
	}


}  



.buttons-mobile{
	display:none;
	
}
.buttons-web{
	display:block;
	
}
@media (max-width: 767px) {
	.buttons-mobile{
		display:block;
		
	}
	.buttons-web{
		display:none;
		
	}

}

.aboutBiBi-mobile{
	display:none;
	
}
.aboutBiBi-mobile2{
	display:none;
	
}
.aboutBiBi-web{
	display:block;
	
}
@media (max-width: 767px) {
	.aboutBiBi-mobile{
		display:block;
		
	}
	.aboutBiBi-mobile2{
		display:none;
		
	}
	.aboutBiBi-web{
		display:none;
		
	}

}

@media (max-width: 575px) {
	.aboutBiBi-mobile{
		display:none;
		
	}
	.aboutBiBi-mobile2{
		display:block;
		
	}
	.aboutBiBi-web{
		display:none;
		
	}

}

/*--------------------------------------------------------------
# ChangDao3
--------------------------------------------------------------*/
/* .ChangDao3 {
 
background: rgb(255,234,233);
background: linear-gradient(180deg, rgba(255,234,233,1) 0%, rgba(255,246,245,1) 100%);

} */

.ChangDao3-mobile{
	display:none;
	
}
.ChangDao3-mobile2{
	display:none;
	
}
.ChangDao3-web{
	display:block;
	
}
@media (max-width: 767px) {
	.ChangDao3-mobile{
		display:block;
		
	}
	.ChangDao3-mobile2{
		display:none;
		
	}
	.ChangDao3-web{
		display:none;
		
	}

}

@media (max-width: 575px) {
	.ChangDao3-mobile{
		display:none;
		
	}
	.ChangDao3-mobile2{
		display:block;
		
	}
	.ChangDao3-web{
		display:none;
		
	}

}

.s-title{
	width:100%;  
	position: absolute;  
	top: 150px;  
	left: 50%; 
	transform: translate(-50%, -50%);
}

 
@media (max-width: 1250px) {
	.s-title{
		top: 100px; 
	}

}  

@media (max-width: 850px) {
	.s-title{
		top: 80px; 
	}

}  
@media (max-width: 767px) {
	.s-title{
		top: 150px; 
	}

} 
@media (max-width: 690px) {
	.s-title{
		top: 100px; 
	}

}   
@media (max-width: 575px) {
	.s-title{
		top: 200px; 
	}

}  
  
@media (max-width: 475px) {
	.s-title{
		top: 150px; 
	}

}  
@media (max-width: 350px) {
	.s-title{
		top: 100px; 
	}

}  

/*--------------------------------------------------------------
# ChangDao4
--------------------------------------------------------------*/
.ChangDao4-title{
	width:100%;  
	position: absolute;  
	top: 100px;  
	left: 50%; 
	transform: translate(-50%, -50%);
}
  
@media (max-width: 1250px) {
	.ChangDao4-title{
		top: 70px; 
	}

}  

@media (max-width: 850px) {
	.ChangDao4-title{
		top: 70px; 
	}

}  
@media (max-width: 650px) {
	.ChangDao4-title{
		top: 70px; 
	}

}  
@media (max-width: 575px) {
	.ChangDao4-title{
		top: 60px; 
	}

}  

/*--------------------------------------------------------------
# ingredients
--------------------------------------------------------------*/
 
.use-img{
	 
	width:100px;
}
@media (max-width: 575px) {
	.use-img{
		width:80px;
	}

}  
@media (max-width: 425px) {
	.use-img{
		width:60px;
	}

}  

/*--------------------------------------------------------------
# production
--------------------------------------------------------------*/
.production {
	background: url('/assets/img/production/reseach-bg.png')  ;
	 /* height: 500px; */
	 background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.production-p{
	/* padding: 10px; */
	padding-left:10px; 
	padding-right:10px; 
	margin-left:30px; 
	margin-right:10px; 
	width:60%; 
}
 

 .production-text{
	width:100%;
	font-size:1.3em; 
	text-align:center;
	background-color: rgba(255, 255, 255, 0.5); 
	position: absolute;
	bottom: 0;
	left: 0;
}

.production-square{ 
		position:relative;
	  width:35%;
	  max-width:400px;
	  margin-top: 20px;
	  overflow: hidden;
	  border-radius: 25px;
	  background: #ffffff;
	  margin-right:80px; 
	  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	  float:right;
		z-index:10;
		background-color: rgba(255, 255, 255, 1); 
}

.production-square-text{ 
	text-align:center;
	padding:20px;
	font-size:1.5em; 
	font-weight:800;
}

@media (max-width: 1250px) {
	.production-p{
		width:55%; 
	}

}  
@media (max-width: 959px) {
	.production-square{
		margin-right:50px; 
	}

}  

@media (max-width: 767px) {
	.production {
		background: url('/assets/img/production/reseach-bg-mobile.png')  ;
		 /* height: 650px; */
	}
	.production-p{
		width:100%; 
		padding-top:100px;
		padding-left: 20px;
		padding-right: 20px;
		margin-right: auto;
		margin-left: auto;
	}
	.production-square{ 
		width:60%; 
	}
}  
  
@media (max-width: 530px) {
	.production-p{
		padding-top:120px;
	}
 
}  
 @media (max-width: 440px) {
	.production-square{ 
		width:70%; 
	}
 
}  
 
/*--------------------------------------------------------------
# product safety
--------------------------------------------------------------*/
.productsafety{
	
	background-color: #ffeae9; 
	
}

.productsafety-img{
	 
	width:120px;
}
.productsafety-img2{
	 
	width:120px;
}

.productsafety .mobile-break{
	display:none;
}


@media (max-width: 767px) {
 
	.productsafety-img{
		  
		width:100px;
	}

	.productsafety-img2{
		  
		width:80px;
	}


}

@media (max-width: 575px) {
 
	.productsafety .mobile-break{
		display:block;
	}

}


/*--------------------------------------------------------------
# productquality
--------------------------------------------------------------*/
.productquality{
	
	background-color: #E7F0FA; 
	
}

.btn-testimonials {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 10px 30px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #3988c2; 
  border: 2px solid #3988c2;
  
}


.productquality-img-web{
	display:block;
}
.productquality-img-mobile, .productquality-img-mobile2, .productquality-img-mobile3, .productquality-img-mobile4{
	display:none;
}
  
.productquality-space-bottom{
	height:0;
}

@media (max-width: 1435px) {
 
	.productquality-img-web, .productquality-img-mobile2, .productquality-img-mobile3, .productquality-img-mobile4 {
		display:none;
	} 
	
	.productquality-img-mobile{
		display:block;
	}
 	
}
@media (max-width: 1200px) {
 
	.productquality-img-web, .productquality-img-mobile, .productquality-img-mobile3, .productquality-img-mobile4{
		display:none;
	}
 
	.productquality-img-mobile2{
		display:block;
	}
 
}

@media (max-width: 1000px) {
 
	.productquality-img-web, .productquality-img-mobile, .productquality-img-mobile2, .productquality-img-mobile4{
		display:none;
	} 
	.productquality-img-mobile3{
		display:block;
	}

}

@media (max-width: 850px) {
 
	.productquality-img-web, .productquality-img-mobile, .productquality-img-mobile2, .productquality-img-mobile3{
		display:none;
	}

	.productquality-img-mobile4{
		display:block;
	}

}



.productquality-title{
	width:100%;  
	position: absolute;  
	top: 250px;
}

 
@media (max-width: 1750px) {
	.productquality-title{
		top: 150px; 
	}

}  
 
@media (max-width: 1580px) {
	.productquality-title{
		top: 50px; 
	}

}  
 
@media (max-width: 1435px) {
	.productquality-title{
		top: 100px; 
	}

}  
 

@media (max-width: 1320px) {
	.productquality-title{
		top: 80px; 
	}

}  

@media (max-width: 1280px) {
	.productquality-title{
		top: 50px; 
	}

}  
@media (max-width: 1200px) {
	.productquality-title{
		top: 80px; 
	}

}  

@media (max-width: 890px) {
	.productquality-title{
		top: 30px; 
	}

}   
@media (max-width: 850px) {
	.productquality-title{
		top: 230px; 
	}

}   

@media (max-width: 767px) {
	.productquality-title{
		top: 250px; 
	}

} 
@media (max-width: 690px) {
	.productquality-title{
		top: 100px; 
	}

}   
@media (max-width: 575px) {
	.productquality-title{
		top: 30px; 
	}

}  
  
@media (max-width: 480px) {
	.productquality-space-bottom{
		height:100px;
	}

	.section-title {
		padding-bottom: 10px;
	}
}  

@media (max-width: 360px) {
	.productquality-space-bottom{
		height:150px;
	}
	.productquality-title{
		top: 10px; 
	}


}  



/*--------------------------------------------------------------
# connect
--------------------------------------------------------------*/
.connect .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  border-radius: 4px;
}
.connect .info-box i {
  font-size: 32px;
  color: #c40060;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}
.connect .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.connect .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}





/*--------------------------------------------------------------
# product-suitable
--------------------------------------------------------------*/
.groupColA{
	background-color:#f7b0bb; 
	padding-left: 0; 
	padding-right: 0;
}
.groupColB{
	background-color:#fff; 
	padding-left: 0; 
	padding-right: 0;
}

.grouptext{
	
	font-size:24px;
	text-align:center;
	padding-top:20px;
	padding-bottom:20px;
}



 @media (max-width: 780px) {
  
	.grouptext{
		font-size:18px;
	}
 

}

 @media (max-width: 575px) {
 
	.grouptext{
		
		font-size:14px;
		padding-left:5px;
		padding-right:5px;
	} 
}


/*--------------------------------------------------------------
# productinfo
--------------------------------------------------------------*/

.productinfo-web{
	display:block;
}
.productinfo-mobile{
	display:none;
}


@media (max-width: 575px) {
  
	.productinfo-web {
		 
		display:none;
	}
 
	.productinfo-mobile{
		 
		display:block;
	}

}

 
.productinfo-title {
	width: calc(70% - 25rem);
	position: absolute;
	bottom: 1.5rem;
	left: 7rem;
} 
   
 
@media (max-width: 1490px) {
	.productinfotxt{
		font-size:23px;
	}
}
 
@media (max-width: 1350px) {
	.productinfo-title{
		width:calc(70% - 20rem);  
		bottom: 1.5rem;  
		left:5rem; 
		
	}
		
	.productinfotxt{
		font-size:20px;
	}
}
 
@media (max-width: 1000px) {
	.productinfo-title{
		width:calc(70% - 20rem);  
		bottom: 1.5rem;  
		left:7rem; 
		
	}
		
	.productinfotxt{
		font-size:18px;
	}
}
 
@media (max-width: 1020px){
	.productinfo-title {
		width: calc(70% - 18rem);
		bottom: 1rem;
		left: 7rem;
	}
	.productinfotxt{
		font-size:16px;
	}
}
@media (max-width: 860px){
	.productinfo-title {
		width: calc(70% - 15rem);
		bottom: 0;
		left: 5rem;
	}
	.productinfotxt{
		font-size:14px;
	}
}

@media (max-width: 680px){
	.productinfo-title {
		width: calc(70% - 8rem);
		bottom: 0;
		left: 1rem;
	}
}

/*--------------------------------------------------------------
# testimonials
--------------------------------------------------------------*/
.testimonials{
	
	background-color: $fff; //#ffeae9; 
	
}

.testimonials-icon{
	width:160px;
 margin-top: auto;
 align-self: flex-end;
 padding-bottom: 30px;
 padding-top:30px;
}
 
 @media (max-width: 575px) {
	 .testimonials-icon{
		width:130px;
	}
}

.testimonialsCol{
	 
	padding-left: 0; 
	padding-right: 0;
	
}

.testimonials-container{
	width:100%;
	margin: auto;
}

.testimonials-container img{
	width:100%;
}
 
/*--------------------------------------------------------------
# purchase
--------------------------------------------------------------*/
.purchaseCol{
	 
	padding-left: 0; 
	padding-right: 0;
	
}

.buynow-container{
	width:100%;
	margin: auto;
}

.buynow-container img{
	width:100%;
}


.buynow1{
	background-color: #d04c52 ;  
    background: linear-gradient(to bottom, #d04c52  50%, #fff 0);
	text-align:right;
}
.buynow2{
	background-color: #F36C8D ;  
    background: linear-gradient(to bottom, #F36C8D  50%, #fff 0);
	text-align:right;
}
.buynow3{
	background-color: #f2a39e ;  
    background: linear-gradient(to bottom, #f2a39e  50%, #fff 0);
	text-align:right;
}

.price1{
	 line-height: 1.5em; 
	 
	vertical-align: middle;
		
	font-size:18px;
	color:#fff;
	font-weight:700;
/* 	letter-spacing: 0.2em;  */
	position:relative;
	 align-items: center;
}
.price2{
	display:inline-block;
	/* font-size:60px; */
	font-weight:800;
}


/*  @media (max-width: 575px) {
	.price2{
		font-size:40px;
	}
} */

.buyitem{
	font-size:30px;
	/* font-weight:600; */
	color:#fff;
	margin-left:0;
	margin-right:0;
	 
}

.buyitem2{
	/* font-size:20px; */
	font-weight:100;
	color:#fff;
	margin-left:0;
	margin-right:0;
	margin-bottom:15px;
}

 
.btn-buynow {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 5px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 15px;
  color: #fff;
  background: #c40060; 
  border: 2px solid #c40060;
  /* width:100%;
  max-width: 200px; */
  text-align:center;
   
}
.btn-buynow:hover {
  background: transparent;
  border-color: #c40060;
  color: #c40060;
}
  


 @media (max-width: 575px) {
	.buynow-container{
		width:80%;
		margin-top:20px;
	}

}
 
/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/

		.benefits{
			padding-top:0;
			padding-bottom:0;
		}
		 
		.benefits-web{
			display:block;
		}
		.benefits-mobile{
			display:none;
		}


		@media (max-width: 575px) {
		  
			.benefits-web {
				 
				display:none;
			}
		 
			.benefits-mobile{
				 
				display:block;
			}

		}
		 
		.benefits-item{
			position:absolute;
			text-align:left;
		}

		.benefits-item1{
/* 			top:30px; */
			top:5%;
			left:43%;
		}
		
		.benefits-item2{
			/* top:180px; */
			top:25%;
			left:47%;
		}
		
		.benefits-item3{
			/* top:360px; */
			top:50%;
			left:49%;
		}
		
		.benefits-item4{
			/* top:480px; */
			top:67%;
			left:49%;
		}
		
		.benefits-item5{
			/* top:620px; */
			top:85%;
			left:43%;
		}

		.benefits-icon{
			float:left;
			width:5em;
			height:100%
		}

		 .benefits-desc{
			float:left;
		 }
		 
		 .benefits_title{
			font-size:1.1em;
			font-weight:600; 
		 }
 
		 ul.benefits_list li { 
			font-size:1.1em;
			line-height:1.1em;
			margin-bottom:0;
		 }
		 
		@media (max-width: 1000px) {
			 .benefits_title{
				 font-size:1em;
			 }
			 ul.benefits_list li{
				 font-size:1em;
			 }
		}
		
		@media (max-width: 991px) {
			.benefits{
				padding-bottom:20px;
			}
			.benefits-icon{
				width:4.5em;
			}
			 
			 .benefits_title{
				font-size:0.9em;
				 
			 }
			 
			 ul.benefits_list li { 
				font-size:0.9em;
				line-height:0.9em;
 
			 }
		}
		 
		@media (max-width: 750px) {
 
			.benefits-icon{
				width:3.8em;
			}
			 
			 .benefits_title{
				font-size:0.8em;
				 
			 }
			 
			 ul.benefits_list li { 
				font-size:0.8em;
				line-height:0.85em;
 
			 }
		}
		 
		@media (max-width: 650px) {
 
			.benefits{
				padding-bottom:30px;
			}
			.benefits-icon{
				width:3.5em;
			}
			 
			 .benefits_title{
				font-size:0.75em;
				 
			 }
			 
			 ul.benefits_list li { 
				font-size:0.75em;
				line-height:0.9em;
 
			 }
 
			.benefits-item3{
				top:53%;
			}
			
			.benefits-item4{
				top:70%;
			}
			
			.benefits-item5{
				top:89%;
			}
		}
		 
		.benefits-item-m{
			display:block;
			text-align:left;
			vertical-align: top;
			overflow: auto;
			margin-bottom: 10px;
		}
		.benefits-icon-m{
			float:left;
			width:5em;
			height:100%
		}

		 .benefits-desc-m{
			float:left;
		 }
		 
		 .benefits_title-m{
			font-size:0.8em;
			font-weight:600; 
		 }
 
		 ul.benefits_list-m li { 
			font-size:0.8em;
			line-height:1.1em;
			 
		 }
	


/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner{ 
	background-color:#f7b0bb;
}

.banner-web{
	display:block;
}
.banner-mobile{
	display:none;
}
 
.banner-mobile2{
	display:none;
}


@media (max-width: 780px) {
 
	.banner-web{
		display:none;
	}
	.banner-mobile2{
		display:block;
	}
	.banner-mobile{
		display:none;
	}

}
@media (max-width: 575px) {
 
	.banner-web{
		display:none;
	}
	.banner-mobile2{
		display:none;
	}
	.banner-mobile{
		display:block;
	}

}


/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}
.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}
.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.tabs .nav-link:hover {
  color: #c40060;
}
.tabs .nav-link.active {
  background: #c40060;
  color: #fff;
  border-color: #c40060;
}
@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 24px;
  }
}
.tabs .tab-content {
  margin-top: 30px;
}
.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}
.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}
.tabs .tab-pane ul li {
  padding-bottom: 10px;
}
.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #c40060;
}
.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}
 
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq{
	background-color: #fdfbe5;
	
}

.faq .faq-list {
  padding: 0;
  list-style: none;
  max-width:700px;
      margin: auto;
}
.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #c40060;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}
.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #c40060;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
 

 
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: #c40060;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
 /*  font-family: "FZZhengHeiS-DB-GB", "Raleway", sans-serif; */
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #c40060;
  bottom: 0;
  left: 0;
}
#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: white;
  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: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}
#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: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #c40060;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #e35052;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #c40060;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
	#footer {
	  font-size: 12px;
	  
	}
}

/*--------------------------------------------------------------
# whatsapp floating icon
--------------------------------------------------------------*/

.floating{
	position:fixed;
	width:40px;
	height:40px;
	bottom:15px;
	left:15px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
       font-size:25px;
	   padding-top: 5px;
	/* box-shadow: 2px 2px 3px #999; */
  z-index:100;
}

.float-button{
	margin-top:16px;
} 

/*--------------------------------------------------------------
# Buy Button
--------------------------------------------------------------*/

.btn-buy {
  font-weight: 500;
  /* font-size: 18px; */
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #c40060; 
  border: 2px solid #c40060;
  width:100%;
  max-width: 500px;
  text-align:center;
}
.btn-buy:hover {
  background: transparent;
  border-color: #c40060;
  color: #c40060;
}
  



/*--------------------------------------------------------------
# Take Personal Assessment Button
--------------------------------------------------------------*/
 
.btn-assessment {
  font-weight: 500;
/*   font-size: 18px; */
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 25px;
  transition: 0.5s;
  margin-bottom: 30px;
  color: #fff;
  background: #30572d; 
  border: 2px solid #30572d;
}
.btn-assessment:hover {
  background: transparent;
  border-color: #30572d;
  color: #30572d;
}


/*--------------------------------------------------------------
# section connect
--------------------------------------------------------------*/

.connect-icon{
	width:160px;
 margin-top: auto;
 align-self: flex-end;
 padding-bottom: 30px;
 padding-top:30px;
}
 
 @media (max-width: 575px) {
	 .connect-icon{
		width:130px;
	}
}
 
.connect-main{
	padding-top:0;
	/* background-color: #ffeae9;  */
	/* background: linear-gradient(to bottom, #f7b0bb 80px, #ffeae9 0); */
	background: linear-gradient(to bottom, #fff 80px, #ffeae9 0);
	color:#575756;
	position: relative;
}

 @media (max-width: 575px) {
	 .connect-main{
		 background: #ffeae9;
	}
}

.connect-title{
 
	color:#575756;
	font-size:25px;
	font-weight:800;
 
	line-height: 42px;
	text-align:center;
}	
 
 .connect-icons{
	
	text-align:center;

	margin-top:30px;
	margin-bottom:50px;
}

 .connect-icons-items{
	
	width:45px;
	margin-left:15px;
	margin-right:15px;

}


.btn-connect {
    color: #fff;
    background-color: #f36c8d;
    border-color: #f36c8d;
	font-weight:500;
}

.btn-reset {
    color: #fff;
    background-color: #f58aa4;
    border-color: #f58aa4;
}

.btn-connect:hover {
    color: #f36c8d;
    background-color: transparent;
    
}

.btn-reset:hover {
    color: #f58aa4;
    background-color: transparent;
     
}


@media only screen and (max-width: 700px) {
	  .connect-icons-items{
		
		width:45px;
		margin-left:5px;
		margin-right:5px;

	}

}
 
@media only screen and (max-width: 380px) {
	  .connect-icons-items{
		
		width:35px;

	}

}
  
.form-group {
  margin-bottom: 25px;
} 

.form-space{
	padding-left:100px;
	padding-right:100px;

}	

@media only screen and (max-width: 700px) {
.form-space{
	padding-left:10px;
	padding-right:10px;

}	

}
 
.invalid-feedback {
 
    color: red;
}


.loading {
  display: none;
  background: transparent;
  text-align: center;
  padding: 15px;
}
.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;
}

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


/*--------------------------------------------------------------
# placeholder
--------------------------------------------------------------*/

::-webkit-input-placeholder {
   font-size: 25px;
 
}

:-moz-placeholder { /* Firefox 18- */
      font-size: 25px;
}

::-moz-placeholder {  /* Firefox 19+ */
      font-size: 25px;
}

/* Overriding styles */

::-webkit-input-placeholder {
   font-size: 13px!important;
}

:-moz-placeholder { /* Firefox 18- */
      font-size: 13px!important;
}
::-moz-placeholder {  /* Firefox 19+ */
      font-size: 13px!important;
}


/*--------------------------------------------------------------
# Miscellaneous
--------------------------------------------------------------*/
.BiBi{
	color: #c40060;
}

.break-web{
	display:block;
}
.break-mobile{
	display:none;
}

.image-web{
	display:block;
}
.image-mobile{
	display:none;
}

 
@media (max-width: 575px) {
 
	.break-web{
		display:none;
	}
	.break-mobile{
		display:block;
	}
	.image-web{
		display:none;
	}
	.image-mobile{
		display:block;
	}

} 

.error {
	padding-top:5px;
  color: red;
}