@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kolker+Brush&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
	padding: 0px;
	margin: 0px;
	background: #ffffff!important;
}
html,body{
  overflow-x: hidden;
}
@font-face {
  font-family: Calibri;
  src: url(../fonts/Calibri.ttf);
}
@font-face {
  font-family: GERALDINE-PERSONAL-USE;
  src: url(../fonts/GERALDINE_PERSONAL_USE.ttf);
}
@font-face {
  font-family: Gill-Sans;
  src: url(../fonts/Gill-Sans-Bold.otf);
  src: url(../fonts/Gill-Sans-Medium.otf);
}
/*Animation Css Start Here*/
.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*=== FADE IN DOWN ===*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN LEFT ===*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/*==== FADE IN RIGHT ===*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*=== FADE IN  ===*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*=== FADE IN UP Big ===*/
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN DOWN Big ===*/
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN LEFT Big ===*/
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*=== FADE IN RIGHT Big ===*/
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.animate {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.one {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.two {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.three {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.four {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.five {
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.six {
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
  animation-delay: 5.5s;
}

.seven {
  -webkit-animation-delay: 6.5s;
  -moz-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

.eight {
  -webkit-animation-delay: 7.5s;
  -moz-animation-delay: 7.5s;
  animation-delay: 7.5s;
}
/*Animation Css End Here*/
p{
	margin: 0!important;
}
ul{
	list-style: none;
	padding-left: 0px!important;
}
a{
	text-decoration: none!important;
	font-size: 15px!important;
	line-height: 29px!important;
	color: #000000!important;
	font-family: "Raleway"!important;
}
/*Header Css Start Here*/
.top-header{
	background: #000;
	padding: 10px 0;
}
.top-header-text p{
	font-size: 15px;
	line-height: 29px;
	color: #ffffff;
	font-weight: 600;
	font-family: "Raleway";
}
.top-header-phone-number{
	text-align: right;
}
.top-header-phone-number a {
    font-size: 17px!important;
    line-height: 29px!important;
    color: #ffffff!important;
    font-family: "Calibri"!important;
    text-decoration: none!important;
}
.top-header-phone-number a:hover{
	color: #ffffff;
}
.middle-header{
	padding: 20px 0;
}
.middle-header-right{
	text-align: right;
}
.bottom-header{
	background: #fbd5c3;
}
.navbar{
	padding-top: 0px!important;
	padding-bottom: 0px!important;
}
.bottom-header .navbar-nav li{
	padding: 0 0px;
	margin-right: 14px;
}
.ml-auto{
	margin-left: auto;
}
.bottom-header .navbar-nav li a{
	font-size: 15px;
	line-height: 29px;
	color: #000000!important;
	font-weight: 600;
	font-family: "Raleway";
	text-transform: uppercase;
	padding: 10px 20px!important;
}
.bottom-header .navbar-nav li a.active, .bottom-header .navbar-nav li a:hover{
	background: #000000;
	color: #ffffff!important;
}
/*Header Css End Here*/

/*Footer Css Start Here*/
footer{
	margin-top: 74px;
}
.bottom-footer {
    background: #000000;
    padding: 10px 0;
}
.bottom-footer p {
    text-align: center;
    color: #fff;
    font-family: "Calibri";
    font-weight: 600;
}
.bottom-footer p span {
    color: #fdd5a4;
}
.top-footer{
	background: #e0e0e0;
	padding-top: 35px;
	padding-bottom: 35px;
}
.footer-aboutus{
	font-size: 17px;
	line-height: 21px;
	color: #000000;
	font-family: "Raleway";
}
.top-footer-title h3 {
    font-family: "Calibri";
    text-transform: uppercase;
    font-size: 28px;
    line-height: 31px;
    color: #000000;
    font-weight: 700;
    position: relative;
}
.top-footer-title h3:after {
    content: "";
    position: absolute;
    width: 183px;
    height: 4px;
    background-color: #000000;
    left: 0;
    bottom: -13px;
}
.pl-2 {
    padding-left: 20px!important;
}
.pr-2 {
    padding-right: 20px!important;
}
.top-footer-link {
    margin-top: 40px;
}
.top-footer-link li a {
    text-transform: uppercase;
    font-size: 18px!important;
    font-weight: 500;
}
.top-footer-link li {
    padding-bottom: 10px!important;
}
.top-footer-link li:last-child{
	padding-bottom: 0px!important;
}
.top-footer-contact-info p{
	margin-bottom: 20px!important;
}
.top-footer-contact-info p:last-child{
	margin-bottom: 0px!important;
}
.top-footer-contact-info p, .top-footer-contact-info p a {
    font-size: 17px;
    line-height: 26px;
    color: #000000;
    font-family: "Raleway";
    font-weight: 500;
}
/*Footer Css End Here*/

/*Hero Section Start Here*/
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}
.mobile-hero{
    display: none;
}
.arrows-btn {
    background: #fbd5c3!important;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/*Hero Section End Here*/

/*About Us Section Css Start*/
.about-us{
	margin-top: 74px;
	margin-bottom: 74px;
}
.title{
	text-align: center;
	position: relative;
}
.title h2{
	font-size: 31px;
	line-height: 40px;
	color: #e0a78d;
	font-style: italic;
	font-family: GERALDINE-PERSONAL-USE;
	font-weight: 600;
	margin-bottom: 0px;
	z-index: 9999;
	position: relative;
}
.title h3 {
    font-size: 30px;
    line-height: 36px;
    color: #000000;
    font-family: "Gill-Sans";
    z-index: 9999;
    position: relative;
}
.title img {
    position: absolute;
    left: 50%;
    top: -19px;
    transform: translate(-50%, 0px);
    width: 35%;
}
.content {
    margin-top: 60px;
    text-align: center;
}
.content p{
	font-size: 17px;
	line-height: 21px;
	color: #000000;
	font-family: "Raleway";
	text-align: center;
	font-weight: 500;
}
/*About Us Section Css End*/

/*Best Selling Products Section Css Start*/
.best-selling-products-title{
	background-color: #fbd5c3;
	padding: 11px 0 11px;
	text-align: center;
}
.best-selling-products-title h2{
	font-size: 40px;
	line-height: 50px;
	color: #000000;
	font-family: "Gill-Sans";
	margin-bottom: 0px;
}
body .slick-slide .slide-content {
    padding: 20px 20px;
    background: #fbd5c3;
    width: 80%;
    margin: -7px auto 0px;
    text-align: center;
    border-radius: 10px;
    font-size: 17px;
    line-height: 21px;
    color: #000000;
    font-family: "Raleway";
    font-weight: 600;
    height: 80px;
}
body .slick-list {
	margin: 20px 0px;
}
body .slick-prev, body .slick-next {
    position: absolute;
    background: transparent;
    border: none;
    color: transparent;
    width: 30px;
    height: 30px;
    top: 50%;
}
body .slick-next{
	right: 0
}
body .slick-prev:before, body .slick-next:before {
    content: ">";
    color: #eec5b0;
    font-size: 26px;
}
body .slick-prev:before {
	content: "<";
}
body .slick-dots {
	list-style: none;
	margin: 0 auto;
	text-align: center;
}
body .slick-dots li {
	display: inline-block;
}
body .slick-dots li button {
	transition: 0.2s background-color ease-in-out 0s;
	border: none;
	padding: 0;
	color: transparent;
	width: 10px;
	height: 10px;
	background-color: #777;
	margin-right: 10px;
	border-radius: 50%;
}
body .slick-dots li.slick-active button {
	background-color: #fff;
}
.best-selling-products .slide-image {
    text-align: center;
    background: #f3f3f3;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}
.best-selling-products .slide-image img {
    width: 66%;
    margin: 0 auto;
}
/*Best Selling Products Section Css End*/

/*CTA Section Css Start Here*/
.cta-section{
	margin-top: 74px;
	background: url(../images/bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 0px;
}
.cta-section-image img{
	width: 96%;
}
/*CTA Section Css End Here*/

/*SUPER SAFE STANDARD Section Css Start Here*/
.super-safe{
	background-image: url(../images/safe-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 0px 150px;
	background-position: bottom center;
}
.super-safe-title h2 {
    text-align: center;
    font-family: "Gill-Sans";
    font-size: 25px;
    line-height: 31px;
    color: #000000;
    border-bottom: 2px solid #fdd4a6;
    width: 31%;
    padding-bottom: 20px;
    margin: 0 auto;
}
.super-safe-logo{
	text-align: center;
	margin-top: 50px;
}
.super-safe-logo img{
	width: 60%;
	margin: 0 auto
}
.ecommerce-platform-logo{
	margin-top: 40px;
	border-right: 2px solid #e1e1e1;
}
/*SUPER SAFE STANDARD Section Css End Here*/

/*about us style.css*/
.about-info-section{
    margin-top: 74px;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 0px;
}
.about-info-section h2 {
    font-size: 50px;
    line-height: 50px;
    color: #e0a78d;
    font-family: 'Kolker Brush', cursive;
    text-align: left;
    margin-bottom: 20px;
}
.about-us-banner-title h2{
	color: #ffffff;
}
.about-us1{
	background: url(../images/banner.png);
	background-size: cover;
	padding: 100px 0px;
}
.radious{
	padding: 50px;
	border-radius: 12px;
}
.round-area{
	padding: 100px 0px 0;
}
.round-area .round-text h3{
	color: #000000;
	font-size: 25px;
	margin: 0px;
	border: 10px solid PINK;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	margin: auto;
	display: flex;
	width: 216px;
	height: 216px;
	text-align: center;	
}
.mission-and-vision-content {
    background: #eaeaea;
    padding: 20px;
}
.mission-and-vision-content h2{
    font-family: "Gill-Sans";
    font-size: 40px;
	line-height: 50px;
	color: #000000;
	text-transform: uppercase;
	border-bottom: 3px solid #000;
	width: 45%;
	margin-bottom: 20px;
}

/*Skincare Page Css Start Here*/
.skin-care-banner{
	background: url(../images/skin-car-bg.png);
	background-position: center bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding-top: 200px;
	padding-bottom: 50px;
}
.skin-care-banner-2 {
    background: url(../images/skincare-coldcreaminner.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.anti-acne-night-cream{
    background: url(../images/AntiAcne.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.cetaphil-brightening-night-cream{
    background: url(../images/Cetaphil-Brightening.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.cold-cream{
    background: url(../images/coldcream.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.vitamin-c-night-cream{
    background: url(../images/vitamin-c.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.retional-night-care{
    background: url(../images/RetionalNight.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.revitalize-night-cream{
    background: url(../images/RevitalizeNight.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.onion-black-seed .title img {
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translate(-50%, 0px);
    width: 35%;
}
.onion-black-seed {
    background: url(../images/onion-inner-bg1.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.body-care{
    background: url(../images/bodycarebg.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.morroccan-argan {
    background: url(../images/morrocan-inner-bg2.png);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 60px;
    margin-top: 0px;
}
.product-list{
	margin-top: 74px;
}
.product-list-img {
    background: #f3f3f3;
    text-align: center;
    padding: 20px 20px 60px;
    border-radius: 10px;
}
.product-list-title {
    border-radius: 10px;
    background-color: #fbd5c3;
    padding: 20px 22px;
    text-align: center;
    margin-top: -34px;
    height: 95px;
    margin-bottom: 20px;
    overflow: hidden;
}
.product-list-title h3 {
    font-size: 21px;
    line-height: 28px;
    color: #000000;
    font-family: "Raleway";
    font-weight: 600;
    margin-bottom: 0px;
}
/*Skincare Page Css End Here*/

/*HairCare Page Css Start*/
.hair-care-banner{
	background: url(../images/hair-car-bg.png);
	background-position: center bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding-top: 200px;
	padding-bottom: 50px;
}
.professional-care{
	background: url(../images/professionalbg.png);
	background-position: center bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding-top: 170px;
	padding-bottom: 50px;
}
.professional-care-1{
	padding-top: 205px;
}
.title.about-us-banner-title h3 {
    text-transform: uppercase;
}
/*Hair Care Page Css End*/

/*Beard Page Css Start Here*/
.beard{
	background: url(../images/beard-bg.png);
	background-position: center bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding-top: 200px;
	padding-bottom: 50px;
}
/*Beard Page Css End Here*/

/*Distibutor Page Css Start Here*/
.distributor-sec{
	margin-top: 74px;
}
.form-control {
    height: 45px;
    background: #fff8f5!important;
    border-color: #fbd5c3!important;
}
.form-control:focus, .textarea:focus{
	box-shadow: none!important;
	outline: none!important;
}
button.btn.btn-primary {
    background: #fbd5c3!important;
    border-color: #fbd5c3!important;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
}
textarea{
	background: #fff8f5!important;
    border-color: #fbd5c3!important;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}
/*Distibutor Page Css End Here*/

/*Contact Us Page Css start Here*/
.contact-info{
	padding-left: 30px;
}
.contact-info h2 {
    font-size: 26px;
    line-height: 26px;
    color: #fab493!important;
    font-family: "Raleway";
    font-weight: 700;
    margin-bottom: 10px;   
}
.contact-info h3{
    font-size: 17px;
    line-height: 26px;
    color: #000000;
    font-family: "Raleway";
    font-weight: 500;
}
hr {
    margin: 0!important;
}
/*Contact Us Page Css End Here*/

/*Single Product Page Css Start Here*/
.single-product{
	margin-top: 74px;
}
.single-product-img{
	background-color: rgba(0,0,0,0);
	border: 6px solid #fbd5c3;
	border-radius: 10px;
}
.single-product-content h2 {
    font-size: 68px;
    line-height: 60px;
    color: #e0a78d;
    font-family: 'Kolker Brush', cursive;
    text-align: center;
}
.product-cta.product-cta-2 {
    flex-direction: row;
    flex-wrap: wrap;
}
.product-cta-2 .product-size {
    margin-bottom: 20px;
    flex: 0 0 100%;
}
/*.product-cta-2 .product-size h3 {
    width: 90%;
}*/
.product-size h2 {
    font-size: 30px;
    line-height: 20px;
    color: #000000;
    font-family: "Calibri";
    text-align: center;
    font-weight: 600;
    flex: 0 0 100%;
}
.pl-4{
	padding-left: 40px!important;
}
.product-size h3 {
    flex: 0 0 30%;
}
.single-product-content{
	font-size: 25px;
	line-height: 29px;
	color: #000000;
	font-weight: 500;
	font-family: "Raleway";
	text-align: center;
}
.product-cta {
    display: flex;
    flex-direction: column;
    /*height: 55%;*/
    justify-content: end;
    text-align: center;
    margin-top: 50px;
}
.product-cta-2{
	margin-top: 10%;
}
.product-cta-2 .product-size{
	margin-bottom: 20px;
}
.product-size h3 {
    border-radius: 34px;
    background-color: rgba(0,0,0,0);
    border: 2px solid #fbd5c3;
    width: 100%;
    padding: 20px;
    /* margin: 0 auto; */
    box-shadow: 0 3px 5px 0px #ffe9de;
}
.product-size {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.product-size h3 {
    font-size: 25px;
    line-height: 20px;
    color: #000000;
    font-family: "Calibri";
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
}
.shop-now-btn {
    flex: 0 0 100%;
    margin-top: 50px;
}
.shop-now-btn a{
	border-radius: 10px;
	background-color: #fbd5c3;
	padding: 15px 185px;
	font-size: 20px!important;
	line-height: 20px!important;
	color: #000000!important;
	font-weight: bold!important;
	font-family: "Calibri"!important;
	text-align: center!important;
}
.discription-sec{
	margin-top: 74px;
}
.discription-sec-title{
	background-color: #fbd5c3;
	padding: 20px 30px;
}
.discription-sec-title h2{
	margin-bottom: 0px;
	font-size: 25px;
	line-height: 31px;
	color: #000000;
	font-family: "Calibri"!important;
	font-weight: 700;
}
.discription-sec-content ul{
	margin-top: 20px;
}
.discription-sec-content ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}
.discription-sec-content ul li:before{
	content: url(../images/check-box-icon.png);
	position: absolute;
	width: 40px;
	height: 40px;
	left: 0;
}
/*Single Product Page Css End Here*/

/*Responsive Css Start Here*/
@media only screen and (max-width: 1280px) {
  .bottom-header .navbar-nav li {
      padding: 0 0px;
      margin-right: 7px;
  }
  .professional-care-1 {
    padding-top: 150px;
}
.professional-care{
    padding-top: 115px;
}
  .hair-care-banner {
    padding-top: 173px;
    padding-bottom: 50px;
}
  .product-list-title {
      height: 120px;
  }
  .mission-and-vision-content h2 {
      font-family: "Gill-Sans";
      font-size: 36px;
      line-height: 50px;
      color: #000000;
      text-transform: uppercase;
      border-bottom: 3px solid #000;
      width: 45%;
      margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  .bottom-header .navbar-nav li a {
      padding: 10px 10px!important;
      font-size: 14px!important;
  }
  .skin-care-banner {
      background-position: center;
      background-size: 100% 100%;
  }
  section.about-us1 {
      background-position: center;
      background-size: 100% 100%;
  }
  .product-list-title {
      height: 150px;
  }
}
@media only screen and (max-width: 1024px) {
  .col-lg-3 {
      flex: 0 0 auto;
      width: 50%!important;
  }
  .bottom-header {
      background: #fbd5c3;
      padding: 10px 0;
  }
  .bottom-header .navbar-nav li a {
      padding: 10px 10px!important;
      font-size: 13px!important;
  }
  .product-list-title {
      height: auto;
  }
  .product-list-title {
      height: 92px;
  }
    .mission-and-vision-content h2 {
        font-size: 21px;
    }
    .round-text {
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 576px){
      .col-lg-3 {
          flex: 0 0 auto;
          width: 100%!important;
      }
        .super-safe-title h2 {
            width: 88%;
        }
        .mobile-hero{
            display: block;
        }
        .desktop-hero{
            display: none;
        }
        .super-safe-logo img {
            width: 40%;
            margin: 0 auto;
        }
        .best-selling-products .slide-image {
            text-align: center;
            background: #f3f3f3;
            width: 80%;
            margin: 0 auto;
            padding: 20px;
            height: 270px;
        }
        .ecommerce-platform-logo {
            text-align: center;
            border-right: none;
            border-bottom: 2px solid #e1e1e1;
            width: 50%;
            padding-bottom: 20px;
            margin-top: 13px!important;
            margin: 0 auto;
        }
      section.about-us1 {
          background-position: center;
          background-size: 100% 100%;
          padding-top: 100px;
      }
        .cta-section .col-xl-6:first-child .cta-section-image {
            margin-bottom: 20px;
        }
      .title img {
          position: absolute;
          left: 50%;
          top: -7px;
          transform: translate(-50%, 0px);
          width: 76%;
      }
  .bottom-header {
      background: #fbd5c3;
      padding: 10px 0;
  }
  section.mission-and-vision-section {
        margin-top: 20px;
  }
  section.mission-and-vision-section .col-xl-6.col-lg-6.col-md-6.col-sm-12.col-xs-12.animate.fadeInLeft.one:first-child {
        margin-bottom: 30px;
    }
  .logo {
      text-align: center;
  }
  .middle-header-right {
      text-align: center;
  }
  .top-header-text {
    text-align: center;
  }
  .top-header-phone-number {
      text-align: center;
  }
  .title img {
      display: none;
  }
  section.about-us1 {
      background-position: center;
      background-size: 100% 100%;
      padding: 30px 0;
      background-repeat: no-repeat;
  }
  .about-info-section {
      padding: 0px 0px;
  }
    .shop-now-btn a {
        padding: 15px 70px;
    }
    .product-size h3 {
        flex: 0 0 66%;
    }
    section.about-us1 h3 br {
        display: none;
    }
    .title h3 {
        font-size: 22px;
    }
}
/*Responsive Css End Here*/

/*Social Media Section Css Start Here*/
section.social-media {
    top: 90%;
    position: fixed;
    transform: translate(0px, -50%);
}
section.social-media i.fa {
    background: #000;
    width: 33px;
    height: 40px;
    color: #fff;
    padding: 12px 0 0px;
    margin-bottom: 5px;
    text-align: center;
}
button.slick-prev.slick-arrow {
    z-index: 9999;
}
/*Social Media Section Css End Here*/

/*Thank You Page Css Start Here*/
.thank-you{
	margin-top: 80px;
	margin-bottom: 80px;
}
.thank-you-inner{
	text-align: center;
}
.thank-you-inner img{
	width: 15%;
}
.thank-you-inner h2{
    font-size: 38px;
    line-height: 40px;
    color: #000;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 0px;
    text-transform: uppercase;
    margin-top: 20px;
}
.thank-you-inner p{
	font-size: 17px;
    line-height: 26px;
    color: #817f7f;
    font-family: "Raleway";
    font-weight: 500;
    margin-top: 30px!important;
    text-align: justify;
}
/*Thank You Page Css End Here*/