<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Manrope";
  font-weight: 400;
  src: url(../fonts/Manrope/Manrope-Regular.ttf);
}
@font-face {
  font-family: "Manrope";
  font-weight: 500;
  src: url(../fonts/Manrope/Manrope-Medium.ttf);
}
/*@font-face {*/
/*  font-family: "Manrope";*/
/*  font-weight: 600;*/
/*  src: url(../fonts/Manrope/Manrope-SemiBold.ttf);*/
/*}*/
/*@font-face {*/
/*  font-family: "Manrope";*/
/*  font-weight: 700;*/
/*  src: url(../fonts/Manrope/Manrope-Bold.ttf);*/
/*}*/
@font-face {
  font-family: "Manrope";
  font-weight: 800;
  src: url(../fonts/Manrope/Manrope-ExtraBold.ttf);
}
@font-face {
  font-family: "Urbanist";
  font-weight: 400;
  src: url(../fonts/Urbanist/Urbanist-Regular.ttf);
}
@font-face {
  font-family: "Urbanist";
  font-weight: 500;
  src: url(../fonts/Urbanist/Urbanist-Medium.ttf);
}
/*@font-face {*/
/*  font-family: "Urbanist";*/
/*  font-weight: 600;*/
/*  src: url(../fonts/Urbanist/Manrope-Bold.ttf);*/
/*}*/
/*@font-face {*/
/*  font-family: "Urbanist";*/
/*  font-weight: 700;*/
/*  src: url(../fonts/Urbanist/Manrope-SemiBold.ttf);*/
/*}*/
@font-face {
  font-family: "Urbanist";
  font-weight: 800;
  src: url(../fonts/Urbanist/Urbanist-ExtraBold.ttf);
}
@font-face {
  font-family: "NunitoSans";
  font-weight: 400;
  src: url(../fonts/NunitoSans/NunitoSans_7pt-Regular.ttf);
}
@font-face {
  font-family: "NunitoSans";
  font-weight: 500;
  src: url(../fonts/NunitoSans/NunitoSans_7pt-Medium.ttf);
}
@font-face {
  font-family: "NunitoSans";
  font-weight: 600;
  src: url(../fonts/NunitoSans/NunitoSans_7pt-Bold.ttf);
}
@font-face {
  font-family: "NunitoSans";
  font-weight: 700;
  src: url(../fonts/NunitoSans/NunitoSans_7pt-SemiBold.ttf);
}
@font-face {
  font-family: "NunitoSans";
  font-weight: 800;
  src: url(../fonts/NunitoSans/NunitoSans_7pt-ExtraBold.ttf);
}

  

  
    :root {
    --black: #000;
    --white: #fff;
    --color1:#3E1D32;
    --color2:#2a80c3;
  }
  body {
	position: relative;
	max-width: 1600px;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	scroll-behavior: smooth;
	overflow-x: hidden;
	background: #fff;
  }
  li {
	list-style: none !important;
  }

  
/*Show More btn Css Start*/
.content-hidden p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content h2 {
  font-size: 32px;
}
.content-hidden {
  overflow: hidden;
  transition: 0.5s ease;
}
body .content-hidden h1:nth-child(1),
body .content-hidden h2:nth-child(1),
body .content-hidden p:nth-child(1) {
  display: block !important;
}
body .content-hidden h1,
body .content-hidden h2,
body .content-hidden h3,
body .content-hidden h4,
body .content-hidden h5,
body .content-hidden h6,
body .content-hidden p {
  display: none !important;
}
button#toggleBtn {
  outline: unset;
}
.content-hidden p:nth-child(2) {
  display: block !important;
}
.seo-content {
  padding-bottom: 10px;
} 
/*Show More btn Css End*/

  
  
  
  /* ===============================
	  for search css
  =============================== */
  .search-btn {
	cursor: pointer;
	display: inline-block;
  }
  .search-box-btn.search-box-outer {
	background: transparent;
	height: 30px;
	width: 30px;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: -40px;
	display: flex;
	justify-content: center;
	align-items: center;
	}
  .search-box-btn.search-box-outer:hover {
	background: #2a80c3;
	transition: 0.3s;
	}
  .search-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateX(-100%);
	background-color: rgba(0, 0, 0, 0.9);
	-webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  .search-active .search-popup {
	transform: translateY(0%);
	margin-top: 0;
  }
  
  .search-popup .close-search.style-two {
	position: absolute;
	right: 25px;
	left: auto;
	color: #ffffff;
	width: auto;
	height: auto;
	top: 25px;
	margin: 0px;
	border: none;
	background: none !important;
	box-shadow: none !important;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  .search-popup:before {
	left: 0;
	top: 100%;
	width: 100%;
	height: 560px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 0px;
	content: "";
  }
  
  .search-active .search-popup form {
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
  }
  .search-popup form {
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin: -35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: #111111;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
  }
  .search-popup .form-group {
	position: relative;
	margin: 0px;
	overflow: hidden;
  }
  
  .search-popup .form-group input[type="text"],
  .search-popup .form-group input[type="search"] {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 50px;
	color: #000000;
	height: 70px;
	width: 100%;
	outline: none;
	border: none;
	padding: 10px 30px;
	background-color: #ffffff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	font-weight: 500;
	text-transform: capitalize;
  }
  .search-popup .form-group input[type="submit"],
  .search-popup .form-group button {
	position: absolute;
	right: 30px;
	top: 0px;
	height: 40px;
	line-height: 65px;
	background: transparent;
	text-align: center;
	font-size: 24px;
	color: #000000;
	padding: 0;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: unset;
  }
  /* ===============================
	  end search css
  =============================== */
  
  .sub-heading h3 {
	display: inline-block;
	position: relative;
	color: #3ca949;
	font-family: Pacifico !important;
	font-size: 26px;
	font-weight: 400;
	line-height: 26px;
	text-transform: capitalize;
  }
  .defalt-heading h2 {
	color: #131313;
	text-align: center;
	font-family: Paytone One;
	font-size: 48px;
	font-weight: 400;
	display: block;
	line-height: 60px;
	text-transform: capitalize;
	position: relative;
  }
  .defalt-heading h2:after {
	content: "";
	background-image: url(/images/title_shape.png);
	height: 40px;
	width: 220px;
	position: absolute;
	background-size: 100% 100% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	bottom: -50px;
	left: 40%;
	right: auto;
	top: auto;
  }
  .btn-primary {
	color: #fff;
	background: #2a80c39c !important;
	border: none;
	font-family: "Manrope" !important;
	}
  @media (max-width: 767px) {
	.sub-heading h3 {
	  font-size: 13px !important;
	  line-height: 15px !important;
	}
	.defalt-heading h2 {
	  font-size: 20px !important;
	  line-height: 20px !important;
	}
	.defalt-heading h2:after {
	  width: 120px !important;
	  height: 20px !important;
	  left: 29% !important;
	  bottom: -30px !important;
	}
  }
  @media (min-width: 768px) and (max-width: 992px) {
	.sub-heading h3 {
	  font-size: 20px !important;
	}
	.defalt-heading h2 {
	  font-size: 35px !important;
	}
	.defalt-heading h2:after {
	  left: 34% !important;
	  bottom: -40px !important;
	}
  }
  
  .dasktop-show {
	display: block;
  }
  @media (max-width: 992px) {
	.dasktop-show {
	  display: none !important;
	}
  }
  
  /* for enquire btn */
  body .my_contact_us {
	display: block;
	position: fixed;
	right: -40px;
	top: 35%;
	z-index: 9;
	transform: rotate(90deg);
  }
  
  /* ===============================
	  header topbar
  =============================== */
  section.logo-sec.main-header {
	background: transparent;
	/* position: absolute; */
	}
  
  .header-top {
	background: #1d1d1d;
	padding: 0px 0px;
	}
  .header-top ul.main-social-list {
	display: flex;
	align-items: center;
	list-style: none !important;
	padding: 0 !important;
	margin: 0;
	justify-content: end;
	padding-right: 20px !important;
	}
  .header-top ul.main-social-list li a {
	display: flex;
	align-items: center;
  }
  .header-top ul.main-social-list .h-icon {
	height: 35px;
	width: 35px;
	border-radius: 3px;
	position: relative;
	margin-right: 10px;
  }
  .header-top ul.main-social-list li:hover .h-icon {
	background-color: #222;
	transition: 0.3s;
  }
  .header-top ul.main-social-list .h-icon img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
  }
  .h-icon {
	display: inline-block;
  }
  .header-top ul.main-social-list p.h-txt {
	display: inline-block;
	margin: 0;
	color: var(--text-color-07, #fff);
	font-family: Manrope;
	font-size: 14px;
	font-weight: 600;
	line-height: 26px;
	text-transform: capitalize;
  }
  ul.main-social-list.h-cont {
	justify-content: center;
	}
  ul.main-social-list.h-cont li {
	margin-left: 42px;
	}
  ul.main-social-list.h-cont li a {
	padding: 5px;
  }
  ul.main-social-list.h-cont li.h-fb {
	margin-left: 10px;
	}
  .head-left {
    background: #2a80c3;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.head-right {
    background: #1D1D1D;
}
  /* ===============================
	  end header topbar
  =============================== */
  
  /* ===============================
	  main header css
  =============================== */
  .header-logo-contain {
	padding: 20px;
	position: relative;
	background-color: var(--white);
	}
  .my-navbar {
	justify-content: center;
  }
  .my-navbar .header-logo.mobile-logo {
	display: none;
  }
  .main-header li.nav-item {
	padding: 0px 30px;
	position: relative;
  }
  .main-header li.active.nav-item a.nav-link {
	color: #2a80c3;
	position: relative;
	}
  .main-header li.nav-item a.nav-link:hover {
	color: #2a80c3;
	transition: 0.3s;
	}
  .main-header li.active.nav-item a:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	background: #2a80c3;
	bottom: 0;
	left: 0;
  }
  .main-header a.nav-link {
	color: var(--text-color-07, #FFF);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 162.5% */
	text-transform: capitalize;
	display: flex;
	align-items: center;
	}
  .main-header li.nav-item a#navbarDropdownMenuLink:after {
	content: "+";
	border: none !important;
	position: absolute;
	right: 22px;
	}
 /* .my-navbar .navbar-collapse ul li.dropdown:hover ul.dropdown-menu {*/
	/*display: block !important;*/
 /* }*/
  .my-navbar .navbar-collapse ul ul.dropdown-menu {
	transition: 0.3s;
	background: #2a80c3;
	}
  .my-navbar .navbar-collapse ul ul.dropdown-menu a {
	color: #fff!important;
	}
  .my-navbar .navbar-collapse ul ul.dropdown-menu li.dropdown-item:hover {
	background: transparent !important;
	transition: 0.3s;
  }
  .my-navbar .navbar-collapse ul ul.dropdown-menu li.dropdown-item:hover a {
	/* color: var(--color2) !important; */
	transition: 0.3s;
	}
  .h-col-third {
	float: right;
	position: relative;
  }
  .h-col-third .h-numb {
	display: inline-block;
	position: relative;
	top: 0px;
	}
  .h-col-third .h-numb p {
	margin: 0;
	background-color: #3ca949;
	font-family: Manrope;
	padding: 5px 20px;
	border-radius: 30px;
	color: #fff;
	font-size: 15px;
  }
  .h-numb a {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 162.5% */
    text-transform: capitalize;
    border-radius: 6px;
    background: #2a80c3;
}
a.nav-link img {
    padding-left: 10px;
}
  /* ===============================
	end main header css
  =============================== */
  
  /*header css for mobile*/
  @media (max-width: 767px) {
	.header-top {
	  display: none;
	}
	section.logo-sec.main-header .row-second {
	  display: none !important;
	}
	section.logo-sec.main-header {
	  background: #ffffff;
	  width: 100%;
	  position: fixed;
	  height: 80px;
	  top: 0;
	  left: 0;
	  z-index: 999;
	}
	.my-navbar .header-logo.mobile-logo {
	  display: block !important;
	  text-align: left !important;
	}
	.header-logo-contain {
	  padding-top: 10px !important;
	  padding-bottom: 0 !important;
	  position: relative;
	}
	.my-navbar .container-fluids {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  width: 100%;
	}
	.my-navbar .header-logo.mobile-logo img.img-fluid {
	  width: 30%;
	}
  
	.my-navbar button.navbar-toggler {
	  border-color: #fff !important;
	  padding: 0 !important;
	  background: #fff;
	}
  
	.main-header .navbar-collapse {
	  position: fixed;
	  top: 0;
	  background: #fff;
	  left: 0;
	  transform: translateX(-1000px);
	  width: 70%;
	  padding-top: 60px;
	  height: 100vh !important;
	  text-align: left;
	  transition: 0.3s;
	}
	.main-header .navbar-collapse.show {
	  transform: translateX(0px);
	  transition: 0.3s;
	  overflow: auto;
	}
  
	.main-header a.nav-link {
	  padding: 15px 15px;
	  margin: 10px 0px;
	  display: inline-block;
	  font-feature-settings: 'clig' off, 'liga' off;
	  font-family: Manrope;
	  font-size: 15px;
	  font-style: normal;
	  font-weight: 800;
	  line-height: 24px;
	  text-transform: uppercase;
	}
	.my-navbar .navbar-collapse ul ul.dropdown-menu a {
	  font-size: 10px;
	}
  
	.main-header .navbar-toggler:focus {
	  box-shadow: none !important;
	  border-color: rgba(0, 0, 0, 0.1);
	}
  }
  
  /*header css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	section.logo-sec.main-header .wow.fadeInRight {
	  width: 100% !important;
	}
	.header-top {
	  display: none;
	}
	section.logo-sec.main-header .row-second {
	  display: none !important;
	}
	section.logo-sec.main-header {
	  background: #fff;
	  width: 100%;
	  position: fixed;
	  height: 80px;
	  /* padding-top: 10px; */
	  top: 0;
	  left: 0;
	  z-index: 999;
	}
	.header-logo-contain {
	  padding-top: 0 !important;
	  padding-bottom: 0 !important;
	  position: relative;
	}
	.my-navbar .container-fluids {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  width: 100%;
	}
	.my-navbar .header-logo.mobile-logo {
	  display: block !important;
	  text-align: left !important;
	}
	.my-navbar .header-logo.mobile-logo img.img-fluid {
	  width: 30%;
	}
	.my-navbar button.navbar-toggler {
	  border-color: #fff !important;
	  padding: 0 !important;
	  background: #fff;
	}
	.main-header .navbar-collapse {
	  position: fixed;
	  top: 0;
	  background: #fff;
	  left: 0;
	  transform: translateX(-1000px);
	  width: 70%;
	  padding-top: 60px;
	  height: 100vh !important;
	  text-align: left;
	  transition: 0.3s;
	}
	.main-header .navbar-collapse.show {
	  transform: translateX(0px);
	  transition: 0.3s;
	}
	.main-header a.nav-link {
	  padding: 15px 15px;
	  margin: 10px 0px;
	  display: inline-block;
	  font-feature-settings: 'clig' off, 'liga' off;
	  font-family: Manrope;
	  font-size: 15px;
	  font-style: normal;
	  font-weight: 800;
	  line-height: 24px;
	  text-transform: uppercase;
	}
	.my-navbar .navbar-collapse ul ul.dropdown-menu a {
	  font-size: 12px;
	}
  
	.main-header .navbar-toggler:focus {
	  box-shadow: none !important;
	  border-color: rgba(0, 0, 0, 0.1);
	}
  }
  
  .my-navbar button.navbar-toggler.collapsed span.navbar-toggler-icon {
	background-image: url(/images/menubar.png);
  }
  .my-navbar button.navbar-toggler span.navbar-toggler-icon {
	background-image: url(/images/close.png);
	height: 40px;
	width: 40px;
  }
  
  /*header css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
	.main-header a.nav-link {
	  font-size: 10px;
	}
	.my-navbar .navbar-collapse ul ul.dropdown-menu a {
	  color: #fff !important;
	  font-size: 12px;
	}
  }
  
  /*end header css*/
  
  /* ===============================
	  banner css
  =============================== */
  
  section.banner-section {
	height: 600px;
	background-size: 100% 100% !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	/* padding-top: 180px; */
	}
  section.banner-section .bannermain {
	position: relative;
  }
  .banner_txt {
	text-align: left;
	position: relative;
	}
  .banner_txt h2.text3 {
	color: #2a80c3;
	font-family: Urbanist !important;
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height:70px; /* 170% */
	}
  .banner_txt p.text4 {
	color: #FFF;
	font-family: Urbanist !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 147.368% */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	}
  .btn-bnnr {
	display: inline-block;
	margin-top: 16px;
	}
  .btn-bnnr a {
	color: #FFF;
	font-family: DM Sans;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	padding: 10px;
	display: flex;
	align-items: center;
	background:#2a80c3;
	clip-path: polygon(0 0, 100% 0, 91% 100%, 0% 100%);
	}
  .btn-bnnr a:hover {
	background: #ffffff;
	color: var(--color1)!important;
	transition: 0.3s;
	}
  .banner-img {
	margin-left: 20px;
	margin-bottom: 66px;
	margin-top: 60px;
  }
  .banner-slider .owl-nav,
  .banner-slider .owl-dots {
	display: nano !important;
  }
  
  /* banner product category */
  .banner-prod {
	display: block;
	align-items: center;
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	float: left;
	margin-bottom: 20px;
  }
  .b-prod-content {
	padding-right: 25px;
	max-width: 67%;
	float: left;
  }
  .b-prod-content h3 a {
	color: #313131;
	font-family: Paytone One;
	font-size: 22px;
	font-weight: 400;
	line-height: 25px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  .b-prod-content p {
	color: #646464;
	font-family: Manrope;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	margin-top: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  
  .b-prod-content .view-c {
	margin-top: 25px;
  }
  .b-prod-content .view-c a {
	color: #fff;
	font-family: Manrope;
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	padding: 10px 20px;
	border-radius: 80px;
	background: #3ca949;
  }
  
  .b-prod-img {
	float: left;
	border-radius: 50%;
	background-color: #edded7;
	position: relative;
	height: 160px;
	width: 160px;
	border-radius: 100%;
	overflow: hidden;
	border: 3px solid #37f001;
  }
  
  .b-prod-img img.img-fluid {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
  }
  .caption2 {
    position: absolute;
    max-width: 100%;
    top: 150px;
}
.banner-content h2 {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Adobe Devanagari;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 114.286% */
    text-transform: capitalize;
}
.btn-bnnr img {
    width: auto !important;
    padding-left: 10px;
}
.caption2 h4 {
    color: #FFF;
    font-family: Urbanist !important;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 155.556% */
    text-transform: capitalize;
    letter-spacing: 1px;
}
.btn-bnnr.same-btn a img {
    width: auto;
    background: #fff;
    padding: 20px 10px;
    margin: 0px 0px 0px 40px;
    clip-path: polygon(40% 0, 100% 0, 59% 100%, 0% 100%);
}
.banner-images {
    margin-top: 40px;
}
  /* banner product category */
  
  /*banner css for mobile*/
  @media (max-width: 767px) {
	section.banner-section {
	  position: relative;
	  height: 240px !important;
	  padding-top: 0px !important;
	}
  
	.banner_txt {
	  padding: 10px 0px !important;
	}
	.banner_txt h2.text3 {
	  font-size: 18px;
	  line-height: 25px;
	  margin-bottom: 0px !important;
	}
	.banner_txt p.text4 {
	  font-size: 9px !important;
	  line-height: 25px !important;
	  margin-bottom: 0px !important;
	  letter-spacing: 1px;
	}
	.btn-bnnr {
	  margin-top: 0px !important;
	}
	.btn-bnnr a {
	  font-size: 10px !important;
	  padding: 5px 9px !important;
	}
	.banner-img {
	  margin-top: 10px !important;
	  margin-bottom: 10px !important;
	  text-align: center;
	}
  
	section.banner-section .tb {
	  display: none;
	}
	.banner-prod {
	  padding: 10px !important;
	  border-radius: 10px !important;
	}
	.banner-prod .b-prod-content {
	  padding-right: 10px !important;
	}
	.banner-prod .b-prod-content h3 a {
	  font-size: 12px !important;
	  line-height: 15px !important;
	}
	.b-prod-content p {
	  font-size: 10px !important;
	  line-height: 14px !important;
	  margin-top: 10px !important;
	  margin-bottom: 10px !important;
	}
	.b-prod-content .view-c {
	  margin-top: 15px !important;
	}
	.b-prod-content .view-c a {
	  font-size: 12px !important;
	  padding: 5px 10px !important;
	}
	.b-prod-img {
	  height: 100px !important;
	  width: 100px !important;
	  border: 2px solid #37f001 !important;
	}
	.caption2{
	    top: 40px;
	    left:10px;
	    width:100%;
	    max-width:100%;
	}
	.banner-content h2{
	    font-size:16px;
	    line-height:20px;
	}
	.caption2 h4{
	    font-size: 14px;
	    line-height:20px;
	}
	.banner_txt h2.text3{
        font-size: 14px;
	    line-height:20px;
	    margin-bottom:5px !important;
	}
	.banner_txt p.text4{
	     display: none !important;
	     font-size: 12px !important;
	     line-height:15px !important;
	     margin-bottom:5px !important;
	}
	.btn-bnnr.same-btn a img{
	    padding:2px 15px;
	    margin:0px;
	}
  }
  
  /*banner css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	section.banner-section {
	  position: relative;
	  height: 340px !important;
	  padding-top: 0px !important;
	}
	body section#\#banner .bannermain {
	  height: 330px !important;
	}
	body section#\#banner .bannermain .item.active {
	  height: 330px !important;
	}
	.banner_txt {
	  padding: 10px 0px !important;
	}
	.banner_txt h2.text3 {
	  font-size: 30px;
	  line-height: 35px;
	  margin-bottom: 0px !important;
	}
	.banner_txt p.text4 {
	  font-size: 12px !important;
	  line-height: 25px !important;
	  margin-bottom: 10px !important;
	  letter-spacing: 1px;
	}
	.btn-bnnr {
	  margin-top: 0px !important;
	}
	.btn-bnnr a {
	  font-size: 12px !important;
	  padding: 7px 15px !important;
	}
	.banner-img {
	  margin-top: 10px !important;
	  margin-bottom: 10px !important;
	  text-align: center;
	}
  
	section.banner-section .tb {
	  display: none;
	}
	.caption2{
	    top: 40px;
	    left:10px;
	    width:100%;
	}
	.banner-content h2{
	    font-size:40px;
	    line-height:40px;
	}
  }
  
  /*banner css for tab*/
  @media (min-width: 993px) and (max-width: 1024px) {
	.banner_txt h2.text3 {
	  font-size: 30px;
	}
	.banner_txt h2.text2 {
	  font-size: 50px;
	  line-height: 50px;
	}
	.btn-bnnr a {
	  font-size: 18px;
	}
  }
  /* ===============================
	  end banner css
  =============================== */
  
    /* ===============================
	  Service css
  =============================== */
    .service-content {
        position: relative;
        text-align: center;
        padding: 30px 20px;
        transition: 0.3s ease all;
    }
     .service-content:hover img {
        transform: scale(1.08);
        transition: 0.3s ease !important;
    }
    
    .service-content:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 80px;
        background-image: url(/images/ser-before.png);
        background-size: 100% 100% !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100%;
        height: 100%;
    }
    .service-content h3 {
        color: #283749;
        text-align: center;
        font-family: Urbanist !important;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px; /* 116.667% */
    }

    .service-content p {
        color: #343434;
        text-align: center;
        font-family: Nunito Sans !important;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 175% */
    }
    section.service-section {
        padding: 50px 0px;
    }
   
  
  
    @media (max-width: 767px) {
        
    }
     /*banner css for tab*/
    @media (min-width: 768px) and (max-width: 992px) {
      
    }
  
     /*banner css for tab*/
    @media (min-width: 993px) and (max-width: 1024px) {
          
    }
    @media (max-width: 992px) {
       .service-content:before{
           display:none !important;
           width: 0% !important;
       }
       .service-content{
           padding:0px !important;
       }
    }
  
    /* ===============================
	  end service css
  =============================== */
  
    /* ===============================
	  Featured Product css
      =============================== */
     .featured-head {
    position: relative;
    }
    
    .featured-head h2 {
        color: var(--text-color-01, #131313);
        text-align: center;
        font-feature-settings: 'clig' off, 'liga' off;
        font-family: Urbanist !important;
        font-size: 45px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px; /* 133.333% */
        text-transform: capitalize;
        position: relative;
    }
    
    .featured-head h2:before {
        content: '';
        position: absolute;
        top: -80px;
        left: 0px;
        bottom:0;
        right:0;
        margin:auto;
        background-image: url(/images/headings-before.png);
        background-repeat: no-repeat !important;
        width: 50px;
        height: 100%;
    }
    .feature-list {
    transition: 0.3s ease !important;
    height: 300px;
    position: relative;
    width: 100%;
    margin: auto;
    background: white;
    }

    .feature-list img {
        position: absolute;
        max-height: 100%;
        right: 0;
        left: 0;
        transition: 0.5s;
        margin: auto;
        width: 100% !important;
        top: 0;
        bottom: 0;
        border: 1px solid #2a80c3;
        background: #FFF;
    }
    .main-div:hover .feature-list img {
        border: 1px solid #2a80c3;
        background: #FFF;
    }
    .main-div:hover .feature-list img {
        border: 1px solid #2a80c3;
        background: #FFF;
    }
    
    .feature-url a {
        color: #2D2D2D;
        font-family: Urbanist !important;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px; /* 250% */
        letter-spacing: 0.2px;
        text-transform: capitalize;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .feature-url-main .view-details a {
        color: #2a80c3;
        font-family: Nunito Sans !important;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 26px; /* 185.714% */
    }
        .main-div:hover {
    background: #FFF;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.20);
    }
    .featured-products .owl-prev {
    height: 120px;
    line-height: 0;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.5s;
    font-size: 18px;
    left: -100px;
    width: 100px;
    background-position: center center;
    border: 1px solid #ccc;
    background: url(/images/featured-arrow2.png);
    background-repeat: no-repeat;
    font-size: 0;
    border: unset;
    bottom: 0;
    left: -100px;
    margin: auto;
    right: 0;
    }
    .featured-products .owl-next {
        height: 120px;
        line-height: 0;
        background-repeat: no-repeat;
        position: absolute;
        transition: 0.5s;
        font-size: 18px;
        width: 100px;
        background-position: center center;
        border: 1px solid #ccc;
        background: url(/images/featured-arrow.png);
        background-repeat: no-repeat;
        font-size: 0;
        border: unset;
        bottom: 0;
        right: -100px;
        margin: auto;
        left: 0px;
    }
       .single-prod-div .main-div {
        padding: 20px 40px;
        margin: 10px;
        height: 450px;
    }
    .owl-carousel.owl-theme.owl-carousel-ppp1.owl-loaded.owl-drag {
        padding-bottom: 150px;
    }
    @media (max-width: 767px) {
        .featured-head h2{
            font-size:18px;
            line-height:60px;
        }
        .single-prod-div .main-div{
            padding: 0px 20px;
            margin: 5px;
            height: 350px;
        }
    }
     /*banner css for tab*/
    @media (min-width: 768px) and (max-width: 992px) {
          .featured-head h2{
            font-size:30px;
            line-height:60px;
        }
        .single-prod-div .main-div{
            padding: 0px 20px;
            margin: 5px;
            height: 350px;
        }
    }
  
     /*banner css for tab*/
    @media (min-width: 993px) and (max-width: 1024px) {
          
    }
  
    /* ===============================
	  end featured product css
  =============================== */
  
  
  /* ===============================
	  popular product css
  =============================== */
section.product-section {
    padding: 50px 30px;
    margin: 20px;
}
.product-content {
    padding: 30px 20px;
    text-align: left;
    max-width: 65%;
    width: 100%;
    margin: auto;
    background: #2a80c3;
}
 .product-content h3 a{
	color: #FFF;
	text-align:left;
	font-family: Urbanist !important;
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 250% */
	letter-spacing: 0.2px;
	text-transform: capitalize;
	text-transform: capitalize;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-content a.product-btn {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px; /* 76.923% */
    text-transform: capitalize;
    border-radius: 50px;
    background: #2a80c3;
    padding: 5px 12px;
    align-items: center;
    display: inline-block;
}
.product-banner-img {
    position: relative;
}

.all-pro-content {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.all-pro-txt h2 {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Adobe Devanagari;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 114.286% */
    text-transform: capitalize;
    position:relative;
}
.all-pro-txt h2:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 30px;
    margin: auto;
    top: -75px;
    left: 15px;
    bottom: 0;
    background-image: url(/images/allpro-h2-before.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.all-pro-txt p {
    color: #252525;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 176.471% */
    text-transform: capitalize;
}

.all-pro-btn a {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 100% */
    text-transform: capitalize;
    border-radius: 34.5px;
    background: #FFF;
    padding: 10px 15px;
    display: inline-block;
}
.product-content a.product-btn img {
    width: auto;
    padding-left: 10px;
}
.all-pro-btn img {
    width: auto;
    padding-left: 10px;
}
.product-img {
    transition: 0.3s ease !important;
    height: 200px;
    position: relative;
    width: 500px;
    margin: auto;
    background: white;
}

.product-img img {
    position: absolute;
    max-height: 100%;
    right: 0;
    left: 0;
    transition: 0.5s;
    margin: auto;
    width: 100% !important;
    top: 0;
    bottom: 0;
    object-fit: contain;
    border: 2px solid #2a80c3;
    background: #FFF;
}
.product-content img {
    max-width: 30%;
}
.product-img:hover {
    transform: scale(1.08);
    transition: 0.3s ease !important;
}
.products-head {
    text-align: center;
    position: relative;
    padding: 30px;
}

.products-head h2 {
    color: var(--text-color-01, #131313);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Urbanist !important;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 133.333% */
    text-transform: capitalize;
}

.products-head h2:before{
    content: '';
    position: absolute;
    top: -80px;
    left: 0px;
    bottom:0;
    right:0;
    background-image: url(/images/headings-before.png);
    background-repeat: no-repeat !important;
    width: 50px;
    height: 100%;
    margin:auto;
    filter: hue-rotate(45deg);
}
.product-content p a {
    color: #FFF;
    font-family: Nunito Sans !important;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 141.176% */
    text-align: left;
}
.prct-main-content {
    margin: 40px 0px;
}
.product-btn img {
    background: #fff;
    padding: 10px;
}
.product-txt {
    max-width: 100%;
    display: inline-block;
}

.product-btn {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    position: relative;
}

.product-content {position: relative;}

.product-btn img.img-fluid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 3px;
}
.product-btn a {
    color: #FFF;
    text-align:left;
    font-family: Urbanist !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 250% */
    letter-spacing: 0.2px;
    text-transform: capitalize;
}
  /*product css for mobile*/
  @media (max-width: 767px) {
      .all-pro-txt h2{
          font-size:30px;
          line-height:30px;
      }
      .all-pro-txt p{
          font-size:13px;
      }
      .all-pro-content{
          top:40px;
      }
      .all-pro-btn a{
          font-size:13px;
      }
      .products-head h2{
          font-size:20px;
          line-height:22px;
      }
      .products-head{
          padding:10px;
      }
      .product-img{
          width:unset;
      }
      section.product-section{
        padding: 30px 0px;
        margin: 0px;
      }
      .product-content{
          max-width: 100%;
          clip-path:unset !important;
      }
	}
  
  /*product css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
      .all-pro-txt h2{
          font-size:30px;
          line-height:30px;
      }
      .all-pro-txt p{
          font-size: 12px;
          line-height: 19px;
      }
      .all-pro-content{
          top:40px;
      }
      .all-pro-btn a{
          font-size:13px;
      }
      .product-content h3 a{
          font-size: 17px;
          line-height:16px;
      }
      .product-content{
          padding: 10px 10px;
          max-width: 80%;
          height: 170px;
      }
     .product-img{
          width:unset !important;
      }
     .product-btn a {
        font-size: 15px;
    }
  }
  
  /*product css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
       .all-pro-txt h2{
          font-size:30px;
          line-height:30px;
      }
      .all-pro-txt p{
          font-size:13px;
      }
      .all-pro-content{
          top:40px;
      }
      .all-pro-btn a{
          font-size:13px;
      }
      .product-content h3 a{
          font-size:13px;
          line-height:16px;
      }
      .product-img{
          width:unset;
      }
      .product-content{
          max-width: 75%;
          height: 200px;
      }
  }
  
  /* ===============================
	  end popular product css
  =============================== */
  
  
    
  /* ===============================
	  mid-banner css
  =============================== */
  section.mid-banner-section {
    padding: 50px 0px;
}
  .mid-banner-img {
    position: relative;
}

.mid-banner-content {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    width: 35%;
    bottom: 0;
    margin: auto;
}

.mid-banner-content h2 {
	color: #FFF;
	text-align: center;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 45px; /* 133.333% */
	text-transform: capitalize;
}

.mid-banner-content p {
    color: #FFF;
	text-align: center;
	font-family: Urbanist !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
}

.mid-banner-btn a {
	color: #FFF;
	font-family: Urbanist !important;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	background: #2a80c3;
	display: inline-block;
	clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
	padding: 5px 6px
 5px 15px;
	transition: 0.5s;
}
.mid-banner-btn img {
    width: auto;
    background: #fff;
    padding: 30px 10px;
    margin: 0px 0px 0px 40px;
    clip-path: polygon(40% 0, 100% 0, 59% 100%, 0% 100%);
}
.mid-banner-btn {
    text-align: center;
}
.mid-banner-btn a:hover {
    background: #fff;
    transition: 0.5s;
    color: #2a80c3;
}
  
    /*mid-banner css for mobile*/
  @media (max-width: 767px) {
      .mid-banner-content{
          width:50% !important;
          top:10%;
          display:none;
      }
       .mid-banner-content h2{
           font-size:13px;
           line-height:12px;
       }
       .mid-banner-content p{
            font-size:10px;
           line-height:12px;
       }
       .mid-banner-btn a{
           font-size:13px;
       }
       section.mid-banner-section {
            display: none;
        }
	}
  
  /*mid-banner css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
          .mid-banner-content{
        width: 50% !important;
        top: 10%;
      }
       .mid-banner-content h2{
            font-size: 28px;
            line-height: 35px;
       }
       .mid-banner-content p{
            font-size:10px;
           line-height:12px;
       }
       .mid-banner-btn a{
           font-size: 13px;
           padding: 10px;
       }
       .mid-banner-btn img{
           padding:5px;
       }
       
  }
  
  /*mid-banner css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
    .mid-banner-content{
        width: 50% !important;
        top: 20%;
      }
       .mid-banner-content h2{
            font-size: 30px;
            line-height: 30px;
       }    
       .mid-banner-content p{
            font-size: 17px;
            line-height: 22px;
       }
       .mid-banner-btn a{
           font-size:18px;
       }
  }
  
  /* ===============================
	  end mid-banner css
  =============================== */
  
  /* ===============================
	  factory-section css
  =============================== */
    
section.factory-section {
    position: relative;
    padding:30px 0px;
}

.factory-foot-before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 40px;
}

.factory-foot-after {
    position: absolute;
    top: 0;
    right: 0;
}

.factory-title {
    text-align: center;
    padding: 30px;
}

.factory-title h2 {
    color: #3E1D32;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Adobe Devanagari;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 75px; /* 107.143% */
    text-transform: capitalize;
}

.factory-title p {
    color: #252525;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;

/* Body/H1 */
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 176.471% */
    text-transform: capitalize;
}

.factory-title h2:before {
    content: "";
    height: 22px;
    position: absolute;
    width: 30px;
    margin: auto;
    top: 45px;
    left: -20%;
    right:0;
    background-image: url(/images/about-h4-before.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display:inline-block;
}
.factory-content {
        text-align: center;
        position: absolute;
        bottom: 20px;
        margin: auto;
        right: 0;
        left: 0;
}

.factory-content h3 {
    color: #252525;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 107.143% */
    text-transform: capitalize;
    opacity:0;
    transition:0.5s;
}
.factory-img {
    position: relative;
    margin: 10px;
}
.factory-img:before {
    content: "";
    position: absolute;
    bottom: 0px;
    margin: auto;
    background-image: url(/images/factory-txt-bg.png);
    background-size:100%;
    height: 150px;
    background-repeat: no-repeat;
    width: 100%;
    transition:0.5s;
     opacity: 0;
    visibility: hidden;
}
.factory-img:hover:before {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}
.factory-img:hover .factory-content h3 {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}
  
    /*mid-banner css for mobile*/
  @media (max-width: 767px) {
      .factory-title h2{
          font-size:30px;
          line-height:25px;
      }
      .factory-title p{
           font-size:13px;
           line-height:25px;
      }
      .factory-foot-after{
          z-index:-1;
      }
      .factory-title h2:before{
        top: 35px;
        left: -40%;
      }
      .factory-content h3{
          opacity:1;
          color:var(--white);
          background-color:var(--color1);
          padding:10px 0px;
          margin:10px 0px;
      }
      .factory-img:before{
          display:none;
      }
      .factory-content{
          position:relative;
          bottom:0;
      }
      .factory-img{
          text-align:center;
      }
	}
  
  /*mid-banner css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
        .factory-title h2{
          font-size:30px;
          line-height:25px;
      }
      .factory-title p{
           font-size:13px;
           line-height:25px;
      }
      .factory-foot-after{
          z-index:-1;
      }
      .factory-title h2:before{
        top: 35px;
        left: -40%;
      }
          .factory-img:before{
          height:60px;
      }
      .factory-content{
          bottom:0;
      }
      .factory-content h3{
          font-size:10px;
          line-height: 15px;
      }
  }
  
  /*mid-banner css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
           .factory-title h2{
          font-size:30px;
          line-height:25px;
      }
      .factory-title p{
           font-size:13px;
           line-height:25px;
      }
      .factory-foot-after{
          z-index:-1;
      }
      .factory-title h2:before{
        top: 35px;
        left: -13%;
      }
      .factory-img:before{
          height:80px;
      }
      .factory-content h3{
          font-size:13px;
      }
      .factory-content{
          bottom:0;
      }
  }
  
  /* ===============================
	  end mid-banner css
  =============================== */
  
  
  /* ===============================
	  feature product section css
  =============================== */
  section.pro.max.nb {
	padding: 30px 0px;
	position: relative;
	padding-bottom: 50px;
  }
  section.pro.max.nb .sub-heading,
  section.pro.max.nb .defalt-heading {
	text-align: center;
  }
  section.pro.max.nb .tb {
	margin-top: 100px;
  }
  section.pro.max.nb .main-imgges {
	padding: 20px;
	display: block;
	background: #fff;
	border-radius: 10px;
	float: left;
  }
  section.pro.max.nb .fea-prods {
	padding-right: 25px;
	max-width: 67%;
	float: left;
  }
  section.pro.max.nb .super-oil-cc h3 {
	color: #313131;
	font-family: Paytone One;
	font-size: 22px;
	font-weight: 400;
	margin-top: 20px;
	line-height: 25px;
	text-transform: capitalize;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  .product-txt p {
	color: #fff;
	font-family: Manrope;
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	}
  section.pro.max.nb .view-c a {
	color: #fff;
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background: #3ca949;
	padding: 10px 20px;
	border-radius: 60px;
  }
  section.pro.max.nb .main-imgges:hover {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	transition: 0.3s;
  }
  section.pro.max.nb .super-oil-cmain {
	height: 160px;
	width: 160px;
	position: relative;
	border-radius: 100%;
	float: right;
	overflow: hidden;
	background-color: #edded7;
	border: 3px solid #37f001;
  }
  section.pro.max.nb .super-oil-cmain img.img-fluid {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
  }
  section.pro.max.nb .item {
	padding: 10px;
  }
  
  section.pro.max.nb .view-all-prod {
	text-align: center;
	margin-top: 50px;
  }
  section.pro.max.nb .view-all-prod a {
	background: #3ca949;
	color: #fff;
	padding: 15px 25px;
	font-family: Manrope;
	font-size: 22px;
	font-weight: 600;
	border-radius: 70px;
	transition: 0.3s;
  }
  section.pro.max.nb .view-all-prod a:hover {
	background: #fff;
	color: #3ca949;
	transition: 0.3s;
  }
  
  /*feature product css for mobile*/
  @media (max-width: 767px) {
	section.pro.max.nb {
	  padding-top: 30px !important;
	  padding-bottom: 40px !important;
	}
	section.pro.max.nb .sub-heading,
	section.pro.max.nb .defalt-heading {
	  text-align: center !important;
	}
	section.pro.max.nb .sub-heading {
	  text-align: center !important;
	}
	section.pro.max.nb .super-oil-cmain {
	  height: 100px !important;
	  width: 100px !important;
	  border: 2px solid #37f001 !important;
	}
	section.pro.max.nb .super-oil-cc h3 {
	  font-size: 14px !important;
	  margin-top: 0px !important;
	  line-height: 20px !important;
	}
	section.pro.max.nb .product-txt p {
	  font-size: 10px !important;
	  margin-bottom: 10px !important;
	  line-height: 15px !important;
	}
	section.pro.max.nb .main-imgges {
	  padding: 10px !important;
	  margin: 10px 0px;
	}
	section.pro.max.nb .view-c a {
	  font-size: 10px !important;
	  line-height: 20px !important;
	  padding: 5px 10px !important;
	}
	section.pro.max.nb .tb {
	  margin-top: 50px !important;
	}
	section.pro.max.nb .fea-prods {
	  padding-right: 15px !important;
	  max-width: 60% !important;
	}
	section.pro.max.nb .view-all-prod a {
	  font-size: 12px !important;
	  padding: 10px 20px !important;
	}
	section.pro.max.nb .view-all-prod {
	  text-align: center;
	  margin-top: 20px !important;
	}
  }
  @media (min-width: 768px) and (max-width: 992px) {
	section.pro.max.nb {
	  padding-top: 30px !important;
	  padding-bottom: 40px !important;
	}
	section.pro.max.nb .sub-heading,
	section.pro.max.nb .defalt-heading {
	  text-align: center !important;
	}
	section.pro.max.nb .sub-heading {
	  text-align: center !important;
	}
	section.pro.max.nb .super-oil-cmain {
	  height: 100px !important;
	  width: 100px !important;
	  border: 2px solid #37f001 !important;
	}
	section.pro.max.nb .super-oil-cc h3 {
	  font-size: 14px !important;
	  margin-top: 0px !important;
	  line-height: 20px !important;
	}
	section.pro.max.nb .product-txt p {
	  font-size: 12px !important;
	  margin-bottom: 10px !important;
	  line-height: 15px !important;
	}
	section.pro.max.nb .main-imgges {
	  padding: 10px !important;
	  margin: 10px 0px;
	}
	section.pro.max.nb .view-c a {
	  font-size: 12px !important;
	  line-height: 20px !important;
	  padding: 7px 13px !important;
	}
	section.pro.max.nb .tb {
	  margin-top: 50px !important;
	}
	section.pro.max.nb .fea-prods {
	  padding-right: 15px !important;
	  max-width: 65% !important;
	}
	section.pro.max.nb .view-all-prod {
	  text-align: center;
	  margin-top: 20px !important;
	}
	section.pro.max.nb .view-all-prod a {
	  font-size: 14px !important;
	  padding: 10px 20px !important;
	}
  }
  
  /* ===============================
	  end feature product section css
  =============================== */
  
  /* ===============================
	  testimonial section css
  =============================== */
  section.main-testimonial.zz {
	padding: 70px 0px;
	background-size: 100% 100% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	}
  section.main-testimonial.zz .sub-heading h3 {
	color: #fff;
	text-align: center;
	font-family: Pacifico !important;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
  }
  section.main-testimonial.zz .default-heading h2 {
	color: #fff;
	font-family: Paytone One;
	font-size: 48px;
	font-weight: 400;
	line-height: 40px;
	position: relative;
	text-transform: capitalize;
  }
  section.main-testimonial.zz .default-heading h2:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 0;
	height: 2px;
	width: 120px;
	background: #fff;
  }
  section.main-testimonial.zz .cust-cust {
	padding: 40px;
	border-radius: 20px;
	border: 1px solid rgba(19, 19, 19, 0.08);
	background: #FAFDFF;
	margin: 10px;
	transition: 0.5s;
	height: 400px;
	width: 100%;
	}
  section.main-testimonial.zz .text-caption-p p {
	color: var(--black);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Manrope;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
	padding: 10px;
	max-width: 90%;
	}
  section.main-testimonial.zz .testi-user {
	display: flex;
	align-items: center;
	margin-top: 30px;
  }
  section.main-testimonial.zz .testy-img {
	display: inline-block !important;
	margin-right: 20px;
  }
  section.main-testimonial.zz .testy {
	display: inline-block !important;
  }
  section.main-testimonial.zz .testy h4 {
	color: var(--color1);
	font-feature-settings: 'clig' off, 'liga' off;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px; /* 145.455% */
	text-transform: capitalize;
  }
  section.main-testimonial.zz .testy h5 {
	color: var(--text-color-03, #676767);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
	text-transform: capitalize;
  }
  section.main-testimonial.zz .owl-nav,
  section.main-testimonial.zz .owl-dots {
	display: block !important;
	position: absolute;
	right: 0;
	top: 0;
	}
  /*USAMA CSS*/
  
  .testimonial-head h2 {
	color: #252525;
	font-family: Urbanist !important;
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: 52px; /* 123.81% */
	letter-spacing: 0.2px;
	text-transform: capitalize;
	position:relative;
}
.testimonial-head h2:before{
	content: '';
    position: absolute;
    top: -60px;
    left: 0px;
    background-image: url(/images/headings-before.png);
    background-repeat: no-repeat !important;
    width: 50px;
    height: 100%;
	
}

.rating-img {
    position: relative;
    display: inline-block;
    margin-top:20px;
    margin-bottom: 20px;
}
.rating-img img {
    display: inline-block !important;
}
.inner-testimonial {
    position: relative;
}

.inner-testimonial:after {
    position: absolute;
    background-image: url(/images/testimonial-arrow.png);
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 40px;
    width: 40px;
    bottom: 0;
    right: 0;
    content: '';
	display:none;
}
section.main-testimonial.zz .owl-prev {
    font-size: 0;
    background-color: transparent;
    background-image: url(/images/testimonial-arrow.png);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: rotate(0deg);
    position: absolute;
    top: -78px;
    right: 70px;
}
section.main-testimonial.zz .owl-next {
    font-size: 0;
    background-color: transparent;
    background-image: url(/images/testimonial-arrow.png);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: rotate(180deg);
    position: absolute;
    top: -78px;
    right: 10px;
}
section.main-testimonial.zz .cust-cust:hover {
    background-image: url(/images/testimonial-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition:0.5s;
}
section.main-testimonial.zz .cust-cust:hover {
    background: #FAFDFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
}
.inner-testimonial .text-caption-p {
    padding: 10px 0px;
}

  /*testimonial css for mobile*/
  @media (max-width: 767px) {
	section.main-testimonial.zz {
	  padding: 30px 0px;
	}
	section.main-testimonial.zz .default-heading h2 {
	  font-size: 20px !important;
	  line-height: 25px !important;
	}
	section.main-testimonial.zz .default-heading h2:after {
	  bottom: -10px !important;
	  width: 60px !important;
	}
	section.main-testimonial.zz .owl-nav {
	  display: none !important;
	}
	section.main-testimonial.zz .cust-cust {
	  margin-top: 10px !important;
	  height: auto !important;
	  padding-top: 10px !important;
	}
	section.main-testimonial.zz .text-caption-p p {
	  font-size: 10px !important;
	  line-height: 15px !important;
	  padding-right: 50px !important;
	}
	section.main-testimonial.zz .testy-img {
	  display: inline-block !important;
	  height: 50px !important;
	  width: 50px !important;
	  margin-right: 10px !important;
	}
	section.main-testimonial.zz .testi-user {
	  margin-top: 0px !important;
	}
	section.main-testimonial.zz .testy h4 {
	  font-size: 12px;
	}
	section.main-testimonial.zz .testy h5 {
	  font-size: 10px;
	}
	.testimonial-head h2{
	    font-size: 20px;
	    text-align:center;
	}
	.testimonial-head h2:before{
	    left:-4px;
	}
	.testimonial-head h2:before {
        margin: auto;
        right: 0;
    }
  }
  
  /*testimonial css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	section.main-testimonial.zz {
	  padding: 30px 0px !important;
	}
	section.main-testimonial.zz .default-heading h2 {
	  font-size: 35px !important;
	}
	section.main-testimonial.zz .default-heading h2:after {
	  width: 90px !important;
	  bottom: -20px !important;
	}
	section.main-testimonial.zz .cust-cust {
	  padding-top: 30px !important;
	}
	section.main-testimonial.zz .text-caption-p p {
	  font-size: 12px !important;
	  line-height: 20px !important;
	}
	section.main-testimonial.zz .testi-user {
	  margin-top: 15px !important;
	}
	section.main-testimonial.zz .testy-img {
	  width: 60px;
	}
	section.main-testimonial.zz .testy h4 {
	  font-size: 14px !important;
	  margin-bottom: 5px !important;
	}
	section.main-testimonial.zz .testy h5 {
	  font-size: 12px !important;
	}
    .testimonial-head h2 {
    color: var(--color1);
    font-size: 30px;
    line-height: 50px;
}
  }
  @media (min-width: 993px) and (max-width: 1024px){
   .testimonial-head h2 {
        color: var(--color1);
        font-size: 30px;
        line-height: 50px;
   }
   section.main-testimonial.zz .text-caption-p p{
       font-size: 13px;
        line-height: 20px;
   }
   section.main-testimonial.zz .cust-cust{
       padding:20px;
   }
  }
  /* ===============================
	  end testimonial section css
  =============================== */
  
  /* ===============================
	  blogs section css
  =============================== */
section.blog-section {
	padding: 90px 40px;
	position: relative;
}
 .blog-head {
    text-align: center;
}

.blog-head h2 {
	color: var(--text-color-01, #131313);
	text-align: center;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 60px; /* 133.333% */
	text-transform: capitalize;
	position:relative;
}

.blog-head h2:before {
    content: "";
    height: 22px;
    position: absolute;
    width: 30px;
    margin: auto;
    top: -10px;
    left: -20%;
    right: 0;
    background-image: url(/images/about-h4-before.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
}

.blog-head p {
    color: #252525;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 176.471% */
    text-transform: capitalize;
}
.blog-content h5 {
    color: #FFF;
    font-family: Nunito Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    background-color:#2a80c3;
    display:inline-block;
    padding:10px 20px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.blog-content {
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.20);
    padding: 20px 10px;
    height: 200px;
}

.blog-content h3 {
	color: var(--text-color-01, #131313);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 136.364% */
	text-transform: capitalize;
}

.blog-btn a {
	color: #FFF;
	font-family: DM Sans;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	display: inline-block;
	background-color:#2a80c3;
	padding: 10px;
	clip-path: polygon(0 0, 100% 0, 91% 100%, 0% 100%);
	transition: 0.5s;
}
.blog-btn img {
    width: auto;
    padding-left: 10px;
}
.blog-content p {
    color: #343434;
    font-family: Nunito Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
}
.blog-content h5:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -50px;
    background-image: url(/images/blog-before.png);
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 40%;
    height: 100%;
    display:inline-block;
}
.blog-btn {
    text-align: center;
    position: relative;
    padding: 20px 0px;
}
.blog-btn a img {width: auto;background: #fff;padding: 20px 10px;margin: 0px 0px 0px 40px;clip-path: polygon(40% 0, 100% 0, 59% 100%, 0% 100%);}
.blog-head h2:before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0px;
    background-image: url(/images/headings-before.png);
    background-repeat: no-repeat !important;
    width: 50px;
    height: 100%;
}
.blog-btn a:hover {
    background: #222;
    transition: 0.5s;
}
  /*BLOGS css for mobile*/
  @media (max-width: 767px) {
section.blog-section {
  padding: 30px 0px !important;
 }
 .blog-head h2{
     font-size:28px;
     line-height:45px;
     padding-top:20px;
 }
 .blog-head p{
     font-size:13px;
 }
 .blog-head h2:before{
     top:-40px;
     left:0px;
 }
 .blog-content h3{
     font-size:18px;
 }
 .blg-img {
    margin: 10px 0px;
}
.blog-before-img{
    top: 0%;
    left: 2%;
}
} 
 @media (min-width: 768px) and (max-width: 992px) {
section.blog-section {
  padding: 30px 0px !important;
 }
  .blog-head h2{
     font-size: 30px;
     line-height:45px;
     padding-top:20px;
 }
 .blog-head p{
     font-size:13px;
 }
 .blog-head h2:before{
     top: -40px;
     left: 0px;
 }
 .blog-content h3{
     font-size: 15px;
     line-height: 20px;
 }
 .blg-img {
    margin: 10px 0px;
}
.blog-before-img{
    top: 0%;
    left: 2%;
}
.blog-content p{
      font-size: 13px;
     
}
}
 @media (min-width: 993px) and (max-width: 1024px){
      .blog-head h2{
     font-size:28px;
     line-height:45px;
     padding-top:20px;
 }
 .blog-head p{
     font-size:13px;
 }
 .blog-head h2:before{
     top: -40px;
     left: 0px;
 }
 .blog-content h3{
     font-size:18px;
 }
 .blg-img {
    margin: 10px 0px;
}
.blog-before-img{
    top: 0%;
    left: 2%;
} 
 }

  /* end blogs section css */
  
  /*footer css*/
  
  footer.footer-section {
	background: #101010;
	position:relative;
	}
  footer.footer-section .f-logo-sec {
	background: #000;
	padding: 20px 0px;
  }
  footer.footer-section .f-logo-sec .f-social-icon ul.main-social-list {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
  }
  footer.footer-section .f-social-icon ul.main-social-list li {
	position: relative;
	background: #2a80c3;
	margin-right: 0px;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	display: inline-block;
	}
  footer.footer-section .f-social-icon ul.main-social-list li:hover {
	background: #2a80c3;;
	transition: 0.3s;
  }
  footer.footer-section .f-logo-sec ul.main-social-list li img {
	padding: 8px;
  }
  footer.footer-section .f-logo-sec ul.main-social-list li:hover {
	background: #2a80c3;;
	transition: 0.3s;
  }
  footer.footer-section .f-logo-sec .f-social-icon {
	position: relative;
  }
  footer.footer-section .f-logo-sec .f-social-icon:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 80px;
	background: #cccccc70;
  }
  footer.footer-section .f-logo-sec .l-o-g:after {
	content: "";
	position: absolute;
	top: -8px;
	right: 0;
	width: 1px;
	height: 80px;
	background: #cccccc70;
	display: none;
	}
  footer.footer-section .f-logo-sec .l-o-g,
  footer.footer-section .f-logo-sec .foot-numb {
	text-align: center;
	position: relative;
  }
  footer.footer-section .f-logo-sec .foot-numb p {
	display: inline-block;
	margin-left: 20px;
	color: #fff;
	font-family: Manrope;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 0px;
  }
  
  footer.footer-section .container.bg {
	position: relative;
	padding: 60px 0px;
  }
  footer.footer-section .footer-p {
	padding-right: 30px;
	position: relative;
  }
  footer.footer-section .footer-widgets,
  footer.footer-section .f-recent-post {
	padding: 0px 20px;
	position: relative;
	}
  footer.footer-section .footer-widgets:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #cccccc70;
  }
  footer.footer-section .footer-widgets:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: #cccccc70;
  }
  
  footer.footer-section .footer-p p {
	color: #252525;
	font-family: Manrope;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px; /* 206.25% */
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
	  margin-top:20px
  }
  footer.footer-section .footer-main-contact .phone h5 {
	color: #fff;
	font-family: Urbanist;
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	text-transform: capitalize;
  }
  
  footer.footer-section .footer-main-contact .footer-widgets li {
	margin: 20px 0px;
  }
  footer.footer-section .footer-widgets li .h-icon {
	padding: 10px;
	padding-left: 0px !important;
  }
  footer.footer-section li.foot-numb a p {
	display: inline-block !important;
  }
  footer.footer-section .footer-widgets li a p {
	color: #C5C5C5;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Manrope;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px; /* 162.5% */
	text-transform: lowercase;
	}
  footer.footer-section .footer-widgets li {
	color: #ccc;
	font-family: Manrope;
	font-size: 16px;
	display: flex;
	align-items: center;
	font-weight: 500;
	line-height: 26px;
	text-transform: capitalize;
  }
  footer.footer-section li.foot-add p {
	width: 78% !important;
	display: inline-block !important;
	margin: 0 !important;
	font-size: 16px;
	}
  footer.footer-section .f-recent-post .f-post h2 {
	color: #FFF;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 60px; /* 200% */
	text-transform: uppercase;
	}
  footer.footer-section .f-recent-post .f-recent {
	display: flex;
	align-items: center;
	margin: 30px 0px;
  }
  footer.footer-section .f-details-wrapper h3 {
    color: #C5C5C5;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px !important;
    text-transform: capitalize;
  }
  
  .footer-botm {
	padding: 15px 0px;
	border-top: 1px solid #cccccc70;
	background-color: #101010;
	}
  .footer-botm p.asdas {
	margin: 0px;
	color: #fff;
	text-align: start;
	font-family: Manrope;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	text-transform: capitalize;
	}
  .footer-botm p.asdas a {
	color: #2a80c3;
	position: relative;
	margin-right: 10px;
	}
  .footer-botm p.asdas a:first-child:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: #fff;
	right: -7px;
  }
  ul.main-social-list {
    padding: 0;
}

.footer-main-contact h5 {
    color: #FFF;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 60px; /* 200% */
	text-transform: capitalize;
}
footer.footer-section .footer-widgets li a {
    color: #252525 !important;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px; /* 275% */
}
.f-post p {
    color: #252525;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
}
footer.footer-section .f-social-icon ul.main-social-list li img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact-txt p {
    padding: 0px;
    margin: 0px;
}
.contact-txt a {
    color: var(--color2);
    font-family: roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px; /* 133.333% */
}
.footer-before {
    position: absolute;
    right: 0;
    bottom: 30%;
}

.footer-after {
    position: absolute;
    left: 50px;
    bottom: 50%;
}
.footer-quote .h-numb {
    display: inline-block;
}

.footer-quote {
    text-align: center;
}

.footer-quote .h-numb a {
    color: #FFF;
    font-family: Nunito Sans !important;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.footer-p h5 {
    color: #FFF;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Urbanist !important;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px; /* 200% */
    text-transform: capitalize;
}
.ffc p {
    color: #C5C5C5;
    font-family: Nunito Sans !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
    padding:0px 5px;
}
  /*footer css for mobile*/
  @media (max-width: 767px) {
	footer.footer-section .l-o-g {
	  width: 60% !important;
	  text-align: center !important;
	  margin: 0px auto !important;
	}
	footer.footer-section .f-logo-sec .foot-numb {
	  margin-top: 20px !important;
	}
	footer.footer-section .f-social-icon ul.main-social-list li {
	  height: 30px !important;
	  width: 30px !important;
	    margin:15px;
	    padding:5px;
	}
	footer.footer-section .f-logo-sec ul.main-social-list li img {
	  padding: 4px !important;
	}
	footer.footer-section .f-logo-sec ul.main-social-list li:last-child img {
	  padding-bottom: 7px !important;
	}
	footer.footer-section .f-logo-sec .l-o-g:after,
	footer.footer-section .f-logo-sec .f-social-icon:after {
	  display: none !important;
	}
	footer.footer-section .container.bg {
	  padding: 30px 0px !important;
	}
	footer.footer-section .footer-p {
	  /*padding: 0px 20px !important;*/
	}
	footer.footer-section .ffc {
        padding: 10px 20px;
    }
    section.about-section .row.align-items-center {
        flex-direction: column-reverse;
    }
	footer.footer-section .phone {
	  margin: 10px 0px !important;
	}
	footer.footer-section .footer-p p {
	  font-size: 10px !important;
	  margin-top: 15px !important;
	  text-align: center !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-widgets:before,
	footer.footer-section .footer-widgets:after {
	  display: none !important;
	}
	.footer-main-contact .phone h5 {
	  font-size: 15px !important;
	  line-height: 20px !important;
	}
	.footer-widgets li {
	  font-size: 10px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-widgets li a p {
	  font-size: 16px !important;
	  line-height: 15px !important;
	}
	.f-recent-post .f-post h2 {
	  font-size: 28px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .f-recent-post .f-recent {
	  margin: 10px 0px !important;
	}
	.f-details-wrapper h3 {
	  font-size: 15px !important;
	  line-height: 15px !important;
	  text-transform: uppercase !important;
	}
	.footer-botm p.asdas {
	  font-size: 8px !important;
	  line-height: 12px !important;
	}
   footer.footer-section .footer-widgets, footer.footer-section .f-recent-post{
       padding:10px 20px;
   }
   ul.footer-menus-list {
    padding: 0;
    }
    .footer-quote{
        margin-top:20px;
    }
  }
  
  /*footer css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	footer.footer-section .f-logo-sec {
	  padding: 10px 0px !important;
	}
	footer.footer-section .f-social-icon ul.main-social-list li {
	  margin: 5px !important;
	}
	footer.footer-section .f-logo-sec ul.main-social-list li:last-child img {
	  padding-bottom: 10px !important;
	}
	footer.footer-section .f-logo-sec .f-social-icon:after {
	  height: 50px !important;
	  top: 5px !important;
	}
	.l-o-g {
	  width: 70%;
	  margin: 0 auto;
	}
	footer.footer-section .f-logo-sec .l-o-g:after {
	  height: 50px !important;
	  top: -3px !important;
	  right: -36px !important;
	}
	footer.footer-section .f-logo-sec .foot-numb p {
	  font-size: 15px !important;
	  margin-left: 10px !important;
	}
	footer.footer-section .f-logo-sec .foot-numb .h-icon {
	  width: 22px !important;
	}
	footer.footer-section .container.bg {
	  padding: 30px 0px !important;
	}
	footer.footer-section .footer-p p {
	  font-size: 12px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-main-contact .phone h5 {
	  font-size: 18px !important;
	}
	footer.footer-section .footer-widgets li {
	  font-size: 12px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-widgets li a p {
	  font-size: 12px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-widgets li .h-icon {
	  width: 45px;
	}
	footer.footer-section .f-recent-post .f-post h2 {
	  font-size: 18px !important;
	  line-height: 20px !important;
	}
	.footer-botm p.asdas {
	  font-size: 12px !important;
	}
	.footer-main-contact h5{
	    font-size:18px;
	}
	ul.footer-menus-list {
    padding: 0px;
    }
    footer.footer-section .footer-widgets li a{
          font-size:12px;
    }
    footer.footer-section .footer-widgets, footer.footer-section .f-recent-post{
        padding:0px 10px;
    }
    .f-post p{
        font-size:12px;
    }
    footer.footer-section .f-social-icon ul.main-social-list li{
        height:30px;
        width:30px;
        position:relative;
    }
  }
  @media (min-width: 993px) and (max-width: 1024px){
      ul.footer-menus-list {
        padding: 0;
    }
    footer.footer-section .footer-widgets, footer.footer-section .f-recent-post{
        padding:0px 10px;
    }
  }
  /*end footer css*/
  
  /*product page bread crum css*/
  
  section.bread-crum {
	background-color: #cccccc52;
	max-width: 1600px;
	margin: 0 auto;
  }
  
  .bread_crumb {
	padding: 10px 0 10px 0 !important;
  }
  
  .bread_crumb a {
	color: #000;
	font-weight: 500;
	font-size: 14px;
  }
  
  .innercaption h1{
    display: none !important;
  }
  
  /* end product page bread crum css*/
  
  
  
  
  /*about section*/
section.about-section {
    position: relative;
    padding: 60px 0px;
}
.about-content {
    padding: 30px 0px;
}

.about-content h4 {
	color: #2a80c3;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 162.5% */
	text-transform: capitalize;
}

.about-content h2 {
	color: #171717;
	font-family: Urbanist !important;
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 55px; /* 100% */
	letter-spacing: 0.45px;
	text-transform: capitalize;
}

.about-content p {
    color: #343434;
	font-family: Nunito Sans !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
}

.about-btn a {
    color: #FFF;
    background-color:#2a80c3;
    font-family: Nunito Sans !important;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    padding: 5px 6px 5px 15px;
    display: flex;
    align-items: center;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
    transition: 0.5s !important;
}
.about-btn img {
    width: auto;
    background: #fff;
    padding: 20px 10px;
    margin: 0px 0px 0px 40px;
    clip-path: polygon(40% 0, 100% 0, 59% 100%, 0% 100%);
}
.about-btn a:hover {
    background: #222;
    transition: 0.5s;
}

  /*about css for mobile*/
  @media (max-width: 767px) {
   .about-content h2 {
   color: var(--color1);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Adobe Devanagari;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; /* 107.143% */
    text-transform: capitalize;
    position:relative;
}
.about-content h2:after{
    z-index:-1;
    height:100px;
    width:100px;
    top:-60px;
}

  }
  /*about us css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
       .about-content h2 {
        font-size: 30px;
        line-height: 30px;a@font-face{
	font-family: "Manrope";
	src: url(../fonts/Manrope/Manrope-Bold.ttf);
	src: url(../fonts/Manrope/Manrope-ExtraBold.ttf);
	src: url(../fonts/Manrope/Manrope-Medium.ttf);
	src: url(../fonts/Manrope/Manrope-Regular.ttf);
	src: url(../fonts/Manrope/Manrope-SemiBold.ttf);
  }
  @font-face {
	font-family: "Urbanist";
	src: url(../fonts/Urbanist/Urbanist-Bold.ttf);
	src: url(../fonts/Urbanist/Urbanist-ExtraBold.ttf);
	src: url(../fonts/Urbanist/Urbanist-Medium.ttf);
	src: url(../fonts/Urbanist/Urbanist-Regular.ttf);
	src: url(../fonts/Urbanist/Urbanist-SemiBold.ttf);
	src: url(../fonts/Urbanist/Urbanist-Black.ttf);
  }
  @font-face {
	font-family: "Paytone One";
	src: url(../fonts/Paytone_One/PaytoneOne-Regular.ttf);
  }
  
  @font-face {
	font-family: "Pacifico";
	src: url(../fonts/Pacifico/Pacifico-Regular.ttf);
  }
  
    :root {
    --black: #000;
    --white: #fff;
    --color1:#3E1D32;
    --color2:#2a80c3;
  }
  body {
	position: relative;
	max-width: 1600px;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	scroll-behavior: smooth;
	overflow-x: hidden;
	background: #fff;
  }
  li {
	list-style: none !important;
  }

  
/*Show More btn Css Start*/
.content-hidden p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content h2 {
  font-size: 32px;
}
.content-hidden {
  overflow: hidden;
  transition: 0.5s ease;
}
body .content-hidden h1:nth-child(1),
body .content-hidden h2:nth-child(1),
body .content-hidden p:nth-child(1) {
  display: block !important;
}
body .content-hidden h1,
body .content-hidden h2,
body .content-hidden h3,
body .content-hidden h4,
body .content-hidden h5,
body .content-hidden h6,
body .content-hidden p {
  display: none !important;
}
button#toggleBtn {
  outline: unset;
}
.content-hidden p:nth-child(2) {
  display: block !important;
}
.seo-content {
  padding-bottom: 10px;
} 
/*Show More btn Css End*/

  
  
  
  /* ===============================
	  for search css
  =============================== */
  .search-btn {
	cursor: pointer;
	display: inline-block;
  }
  .search-box-btn.search-box-outer {
	background: transparent;
	height: 30px;
	width: 30px;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: -40px;
	display: flex;
	justify-content: center;
	align-items: center;
	}
  .search-box-btn.search-box-outer:hover {
	background: var(--color1);
	transition: 0.3s;
  }
  .search-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateX(-100%);
	background-color: rgba(0, 0, 0, 0.9);
	-webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  .search-active .search-popup {
	transform: translateY(0%);
	margin-top: 0;
  }
  
  .search-popup .close-search.style-two {
	position: absolute;
	right: 25px;
	left: auto;
	color: #ffffff;
	width: auto;
	height: auto;
	top: 25px;
	margin: 0px;
	border: none;
	background: none !important;
	box-shadow: none !important;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  .search-popup:before {
	left: 0;
	top: 100%;
	width: 100%;
	height: 560px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 0px;
	content: "";
  }
  
  .search-active .search-popup form {
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
  }
  .search-popup form {
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin: -35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: #111111;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
  }
  .search-popup .form-group {
	position: relative;
	margin: 0px;
	overflow: hidden;
  }
  
  .search-popup .form-group input[type="text"],
  .search-popup .form-group input[type="search"] {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 50px;
	color: #000000;
	height: 70px;
	width: 100%;
	outline: none;
	border: none;
	padding: 10px 30px;
	background-color: #ffffff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	font-weight: 500;
	text-transform: capitalize;
  }
  .search-popup .form-group input[type="submit"],
  .search-popup .form-group button {
	position: absolute;
	right: 30px;
	top: 0px;
	height: 40px;
	line-height: 65px;
	background: transparent;
	text-align: center;
	font-size: 24px;
	color: #000000;
	padding: 0;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: unset;
  }
  /* ===============================
	  end search css
  =============================== */
  
  .sub-heading h3 {
	display: inline-block;
	position: relative;
	color: #3ca949;
	font-family: Pacifico !important;
	font-size: 26px;
	font-weight: 400;
	line-height: 26px;
	text-transform: capitalize;
  }
  .defalt-heading h2 {
	color: #131313;
	text-align: center;
	font-family: Paytone One;
	font-size: 48px;
	font-weight: 400;
	display: block;
	line-height: 60px;
	text-transform: capitalize;
	position: relative;
  }
  .defalt-heading h2:after {
	content: "";
	background-image: url(/images/title_shape.png);
	height: 40px;
	width: 220px;
	position: absolute;
	background-size: 100% 100% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	bottom: -50px;
	left: 40%;
	right: auto;
	top: auto;
  }
  .btn-primary {
	color: #fff;
	background: #2a80c3 !important;
	border: none;
	font-family: "Manrope" !important;
	}
  @media (max-width: 767px) {
	.sub-heading h3 {
	  font-size: 13px !important;
	  line-height: 15px !important;
	}
	.defalt-heading h2 {
	  font-size: 20px !important;
	  line-height: 20px !important;
	}
	.defalt-heading h2:after {
	  width: 120px !important;
	  height: 20px !important;
	  left: 29% !important;
	  bottom: -30px !important;
	}
  }
  @media (min-width: 768px) and (max-width: 992px) {
	.sub-heading h3 {
	  font-size: 20px !important;
	}
	.defalt-heading h2 {
	  font-size: 35px !important;
	}
	.defalt-heading h2:after {
	  left: 34% !important;
	  bottom: -40px !important;
	}
  }
  
  .dasktop-show {
	display: block;
  }
  @media (max-width: 992px) {
	.dasktop-show {
	  display: none !important;
	}
  }
  
  /* for enquire btn */
  body .my_contact_us {
	display: block;
	position: fixed;
	right: -40px;
	top: 35%;
	z-index: 9;
	transform: rotate(90deg);
  }
  
  /* ===============================
	  header topbar
  =============================== */
  section.logo-sec.main-header {
	background: transparent;
	/* position: absolute; */
	}
  
  .header-top {
	background: var(--color1);
	padding: 0px 0px;
	}
  .header-top ul.main-social-list {
	display: flex;
	align-items: center;
	list-style: none !important;
	padding: 0 !important;
	margin: 0;
	justify-content: end;
	padding-right: 20px !important;
	}
  .header-top ul.main-social-list li a {
	display: flex;
	align-items: center;
  }
  .header-top ul.main-social-list .h-icon {
	height: 35px;
	width: 35px;
	border-radius: 3px;
	position: relative;
	margin-right: 10px;
  }
  .header-top ul.main-social-list li:hover .h-icon {
	background-color: var(--color1);
	transition: 0.3s;
  }
  .header-top ul.main-social-list .h-icon img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
  }
  .h-icon {
	display: inline-block;
  }
  .header-top ul.main-social-list p.h-txt {
	display: inline-block;
	margin: 0;
	color: var(--text-color-07, #fff);
	font-family: Manrope;
	font-size: 14px;
	font-weight: 600;
	line-height: 26px;
	text-transform: capitalize;
  }
  ul.main-social-list.h-cont {
	justify-content: center;
	}
  ul.main-social-list.h-cont li {
	margin-left: 50px;
	}
  ul.main-social-list.h-cont li a {
	padding: 5px;
  }
  ul.main-social-list.h-cont li.h-fb {
	margin-left: 40px;
  }
  .head-left {
    background: #2a80c3;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.head-right {
    background: #1D1D1D;
}

 @media (min-width: 993px) and (max-width: 1024px){
     ul.main-social-list.h-cont li a{
         padding:0px !important;
     }
 }


  /* ===============================
	  end header topbar
  =============================== */
  
  /* ===============================
	  main header css
  =============================== */
  .header-logo-contain {
	padding: 20px;
	position: relative;
	background-color: var(--white);
	}
  .my-navbar {
	justify-content: center;
  }
  .my-navbar .header-logo.mobile-logo {
	display: none;
  }
  .main-header li.nav-item {
	padding: 0px 30px;
	position: relative;
  }
  .main-header li.active.nav-item a.nav-link {
	color: #2a80c3;
	position: relative;
	}
  .main-header li.nav-item a.nav-link:hover {
	color: #2a80c3;
	transition: 0.3s;
	}
  .main-header li.active.nav-item a:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	background: #2a80c3;
	bottom: 0;
	left: 0;
  }
  .main-header a.nav-link {
	color: var(--text-color-07, #FFF);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 162.5% */
	text-transform: capitalize;
	display: flex;
	align-items: center;
	}
  .main-header li.nav-item a#navbarDropdownMenuLink:after {
	content: "+";
	border: none !important;
	position: absolute;
	right: 22px;
	}
 /* .my-navbar .navbar-collapse ul li.dropdown:hover ul.dropdown-menu {*/
	/*display: block !important;*/
 /* }*/
  .my-navbar .navbar-collapse ul ul.dropdown-menu {
	transition: 0.3s;
	background: #efe8d9;
  }
  .my-navbar .navbar-collapse ul ul.dropdown-menu a {
	color: #353535 !important;
  }
  .my-navbar .navbar-collapse ul ul.dropdown-menu li.dropdown-item:hover {
	background: transparent !important;
	transition: 0.3s;
  }
  .my-navbar .navbar-collapse ul ul.dropdown-menu li.dropdown-item:hover a {
	color: var(--color2) !important;
	transition: 0.3s;
  }
  .h-col-third {
	float: right;
	position: relative;
  }
  .h-col-third .h-numb {
	display: inline-block;
	position: relative;
	top: 0px;
	}
  .h-col-third .h-numb p {
	margin: 0;
	background-color: #3ca949;
	font-family: Manrope;
	padding: 5px 20px;
	border-radius: 30px;
	color: #fff;
	font-size: 15px;
  }
  .h-numb a {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 162.5% */
    text-transform: capitalize;
    border-radius: 6px;
    background: #2a80c3;
}
a.nav-link img {
    padding-left: 10px;
}
  /* ===============================
	end main header css
  =============================== */
  
  /*header css for mobile*/
  @media (max-width: 767px) {
	.header-top {
	  display: none;
	}
	section.logo-sec.main-header .row-second {
	  display: none !important;
	}
	section.logo-sec.main-header {
	  background: #efe8d9;
	  width: 100%;
	  position: fixed;
	  height: 80px;
	  top: 0;
	  left: 0;
	  z-index: 999;
	}
	.my-navbar .header-logo.mobile-logo {
	  display: block !important;
	  text-align: left !important;
	}
	.header-logo-contain {
	  padding-top: 10px !important;
	  padding-bottom: 0 !important;
	  position: relative;
	}
	.my-navbar .container-fluids {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  width: 100%;
	}
	.my-navbar .header-logo.mobile-logo img.img-fluid {
	  width: 60%;
	}
  
	.my-navbar button.navbar-toggler {
	  border-color: #fff !important;
	  padding: 0 !important;
	  background: #fff;
	}
  
	.main-header .navbar-collapse {
	  position: fixed;
	  top: 0;
	  background: #fff;
	  left: 0;
	  transform: translateX(-1000px);
	  width: 70%;
	  padding-top: 60px;
	  height: 100vh !important;
	  text-align: left;
	  transition: 0.3s;
	}
	.main-header .navbar-collapse.show {
	  transform: translateX(0px);
	  transition: 0.3s;
	}
  
	.main-header a.nav-link {
	  padding: 15px 15px;
	  margin: 10px 0px;
	  display: inline-block;
	  font-feature-settings: 'clig' off, 'liga' off;
	  font-family: Manrope;
	  font-size: 15px;
	  font-style: normal;
	  font-weight: 800;
	  line-height: 24px;
	  text-transform: uppercase;
	}
	.my-navbar .navbar-collapse ul ul.dropdown-menu a {
	  font-size: 10px;
	}
  
	.main-header .navbar-toggler:focus {
	  box-shadow: none !important;
	  border-color: rgba(0, 0, 0, 0.1);
	}
  }
  
  /*header css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	section.logo-sec.main-header .wow.fadeInRight {
	  width: 100% !important;
	}
	.header-top {
	  display: none;
	}
	section.logo-sec.main-header .row-second {
	  display: none !important;
	}
	section.logo-sec.main-header {
	  background: #fff;
	  width: 100%;
	  position: fixed;
	  height: 80px;
	  padding-top: 10px;
	  top: 0;
	  left: 0;
	  z-index: 999;
	}
	.header-logo-contain {
	  padding-top: 0 !important;
	  padding-bottom: 0 !important;
	  position: relative;
	}
	.my-navbar .container-fluids {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  width: 100%;
	}
	.my-navbar .header-logo.mobile-logo {
	  display: block !important;
	  text-align: left !important;
	}
	.my-navbar .header-logo.mobile-logo img.img-fluid {
	  width: 60%;
	}
	.my-navbar button.navbar-toggler {
	  border-color: #fff !important;
	  padding: 0 !important;
	  background: #fff;
	}
	.main-header .navbar-collapse {
	  position: fixed;
	  top: 0;
	  background: #fff;
	  left: 0;
	  transform: translateX(-1000px);
	  width: 70%;
	  padding-top: 60px;
	  height: 100vh !important;
	  text-align: left;
	  transition: 0.3s;
	}
	.main-header .navbar-collapse.show {
	  transform: translateX(0px);
	  transition: 0.3s;
	}
	.main-header a.nav-link {
	  padding: 15px 15px;
	  margin: 10px 0px;
	  display: inline-block;
	  font-feature-settings: 'clig' off, 'liga' off;
	  font-family: Manrope;
	  font-size: 15px;
	  font-style: normal;
	  font-weight: 800;
	  line-height: 24px;
	  text-transform: uppercase;
	}
	.my-navbar .navbar-collapse ul ul.dropdown-menu a {
	  font-size: 12px;
	}
  
	.main-header .navbar-toggler:focus {
	  box-shadow: none !important;
	  border-color: rgba(0, 0, 0, 0.1);
	}
  }
  
  .my-navbar button.navbar-toggler.collapsed span.navbar-toggler-icon {
	background-image: url(/images/menubar.png);
  }
  .my-navbar button.navbar-toggler span.navbar-toggler-icon {
	background-image: url(/images/close.png);
	height: 40px;
	width: 40px;
  }
  
  /*header css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
	.main-header a.nav-link {
	  font-size: 10px;
	}
	.my-navbar .navbar-collapse ul ul.dropdown-menu a {
	  color: #fff !important;
	  font-size: 12px;
	}
  }
  
  /*end header css*/
  
  /* ===============================
	  banner css
  =============================== */
  
  section.banner-section {
	height: 650px;
	background-size: 100% 100% !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	/* padding-top: 180px; */
	}
  section.banner-section .bannermain {
	position: relative;
  }
  .banner_txt {
	text-align: left;
	position: relative;
	}
  .banner_txt h2.text3 {
	color: #2a80c3;
	font-family: Urbanist !important;
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height:70px; /* 170% */
	}
  .banner_txt p.text4 {
	color: #FFF;
	font-family: Urbanist !important;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px; /* 147.368% */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  .btn-bnnr {
	display: inline-block;
	margin-top: 30px;
  }
  .btn-bnnr a {
	color: #FFF;
	font-family: DM Sans;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	padding: 30px;
	display: flex;
	align-items: center;
	background:#2a80c3;
	clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
	}
  .btn-bnnr a:hover {
	background: #ffffff;
	color: var(--color1)!important;
	transition: 0.3s;
	}
  .banner-img {
	margin-left: 20px;
	margin-bottom: 66px;
	margin-top: 60px;
  }
  .banner-slider .owl-nav,
  .banner-slider .owl-dots {
	display: nano !important;
  }
  
  /* banner product category */
  .banner-prod {
	display: block;
	align-items: center;
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	float: left;
	margin-bottom: 20px;
  }
  .b-prod-content {
	padding-right: 25px;
	max-width: 67%;
	float: left;
  }
  .b-prod-content h3 a {
	color: #313131;
	font-family: Paytone One;
	font-size: 22px;
	font-weight: 400;
	line-height: 25px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  .b-prod-content p {
	color: #646464;
	font-family: Manrope;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	margin-top: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  
  .b-prod-content .view-c {
	margin-top: 25px;
  }
  .b-prod-content .view-c a {
	color: #fff;
	font-family: Manrope;
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	padding: 10px 20px;
	border-radius: 80px;
	background: #3ca949;
  }
  
  .b-prod-img {
	float: left;
	border-radius: 50%;
	background-color: #edded7;
	position: relative;
	height: 160px;
	width: 160px;
	border-radius: 100%;
	overflow: hidden;
	border: 3px solid #37f001;
  }
  
  .b-prod-img img.img-fluid {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
  }
  .caption2 {
    position: absolute;
    max-width: 70%;
    top: 120px;
}
.banner-content h2 {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Adobe Devanagari;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 114.286% */
    text-transform: capitalize;
}
.btn-bnnr img {
    width: auto !important;
    padding-left: 10px;
}
.caption2 h4 {
    color: #FFF;
    font-family: Urbanist !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 155.556% */
    text-transform: capitalize;
    letter-spacing: 1px;
}
  /* banner product category */
  
  /*banner css for mobile*/
  @media (max-width: 767px) {
	section.banner-section {
	  position: relative;
	  height: 240px !important;
	  padding-top: 0px !important;
	}
  
	.banner_txt {
	  padding: 10px 0px !important;
	}
	.banner_txt h2.text3 {
	  font-size: 18px;
	  line-height: 25px;
	  margin-bottom: 0px !important;
	}
	.banner_txt p.text4 {
	  font-size: 9px !important;
	  line-height: 25px !important;
	  margin-bottom: 0px !important;
	  letter-spacing: 1px;
	}
	.btn-bnnr {
	  margin-top: 0px !important;
	}
	.btn-bnnr a {
	  font-size: 10px !important;
	  padding: 5px 9px !important;
	}
	.banner-img {
	  margin-top: 10px !important;
	  margin-bottom: 10px !important;
	  text-align: center;
	}
  
	section.banner-section .tb {
	  display: none;
	}
	.banner-prod {
	  padding: 10px !important;
	  border-radius: 10px !important;
	}
	.banner-prod .b-prod-content {
	  padding-right: 10px !important;
	}
	.banner-prod .b-prod-content h3 a {
	  font-size: 12px !important;
	  line-height: 15px !important;
	}
	.b-prod-content p {
	  font-size: 10px !important;
	  line-height: 14px !important;
	  margin-top: 10px !important;
	  margin-bottom: 10px !important;
	}
	.b-prod-content .view-c {
	  margin-top: 15px !important;
	}
	.b-prod-content .view-c a {
	  font-size: 12px !important;
	  padding: 5px 10px !important;
	}
	.b-prod-img {
	  height: 100px !important;
	  width: 100px !important;
	  border: 2px solid #37f001 !important;
	}
	.caption2{
	    top:40px;
	    left:10px;
	    width:100%;
	}
	.banner-content h2{
	    font-size:16px;
	    line-height:20px;
	}
  }
  
  /*banner css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	section.banner-section {
	  position: relative;
	  height: 340px !important;
	  padding-top: 0px !important;
	}
	body section#\#banner .bannermain {
	  height: 330px !important;
	}
	body section#\#banner .bannermain .item.active {
	  height: 330px !important;
	}
	.banner_txt {
	  padding: 10px 0px !important;
	}
	.banner_txt h2.text3 {
	  font-size: 30px;
	  line-height: 35px;
	  margin-bottom: 0px !important;
	}
	.banner_txt p.text4 {
	  font-size: 12px !important;
	  line-height: 25px !important;
	  margin-bottom: 10px !important;
	  letter-spacing: 1px;
	}
	.btn-bnnr {
	  margin-top: 0px !important;
	}
	.btn-bnnr a {
	  font-size: 12px !important;
	  padding: 7px 15px !important;
	}
	.banner-img {
	  margin-top: 10px !important;
	  margin-bottom: 10px !important;
	  text-align: center;
	}
  
	section.banner-section .tb {
	  display: none;
	}
	.caption2{
	    top:80px;
	    left:10px;
	    width:100%;
	}
	.banner-content h2{
	    font-size:40px;
	    line-height:40px;
	}
  }
  
  /*banner css for tab*/
  @media (min-width: 993px) and (max-width: 1024px) {
	.banner_txt h2.text3 {
	  font-size: 30px;
	}
	.banner_txt h2.text2 {
	  font-size: 50px;
	  line-height: 50px;
	}
	.btn-bnnr a {
	  font-size: 18px;
	}
  }
  /* ===============================
	  end banner css
  =============================== */
  
    /* ===============================
	  Service css
  =============================== */
    .service-content {
        position: relative;
        text-align: center;
        padding: 0px 20px;
    }
    .service-content:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 80px;
        background-image: url(/images/ser-before.png);
        background-size: 100% 100% !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100%;
        height: 100%;
    }
    .service-content h3 {
        color: #283749;
        text-align: center;
        font-family: Urbanist !important;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px; /* 116.667% */
    }

    .service-content p {
        color: #343434;
        text-align: center;
        font-family: Nunito Sans !important;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 175% */
    }
    section.service-section {
        padding: 50px 0px;
    }
   
    
  
  
    
     /*banner css for tab*/
    @media (min-width: 768px) and (max-width: 992px) {
        .service-content::before {
        width:0px;
    }
    }
  
     /*banner css for tab*/
    @media (min-width: 993px) and (max-width: 1024px) {
          
    }
  
    /* ===============================
	  end service css
  =============================== */
  
    /* ===============================
	  Featured Product css
      =============================== */
     .featured-head {
    position: relative;
    }
    
    .featured-head h2 {
        color: var(--text-color-01, #131313);
        text-align: center;
        font-feature-settings: 'clig' off, 'liga' off;
        font-family: Urbanist !important;
        font-size: 45px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px; /* 133.333% */
        text-transform: capitalize;
        position: relative;
    }
    
    .featured-head h2:before {
        content: '';
        position: absolute;
        top: -80px;
        left: 0px;
        bottom:0;
        right:0;
        margin:auto;
        background-image: url(/images/headings-before.png);
        background-repeat: no-repeat !important;
        width: 50px;
        height: 100%;
    }
    .feature-list {
    transition: 0.3s ease !important;
    height: 300px;
    position: relative;
    width: 100%;
    margin: auto;
    background: white;
    }

    .feature-list img {
        position: absolute;
        max-height: 100%;
        right: 0;
        left: 0;
        transition: 0.5s;
        margin: auto;
        width: 100% !important;
        top: 0;
        bottom: 0;
        border: 1px solid #2a80c3;
        background: #FFF;
    }
    .main-div:hover .feature-list img {
        border: 1px solid #2a80c3;
        background: #FFF;
    }
    .main-div:hover .feature-list img {
        border: 1px solid #2a80c3;
        background: #FFF;
    }
    
    .feature-url a {
        color: #2D2D2D;
        font-family: Urbanist !important;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px; /* 250% */
        letter-spacing: 0.2px;
        text-transform: capitalize;
    }
    
    .feature-url-main .view-details a {
        color: #2a80c3;
        font-family: Nunito Sans !important;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 26px; /* 185.714% */
    }
        .main-div:hover {
    background: #FFF;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.20);
    }
    .featured-products .owl-prev {
    height: 120px;
    line-height: 0;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.5s;
    font-size: 18px;
    left: -100px;
    width: 100px;
    background-position: center center;
    border: 1px solid #ccc;
    background: url(/images/featured-arrow2.png);
    background-repeat: no-repeat;
    font-size: 0;
    border: unset;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    }
    .featured-products .owl-next {
        height: 120px;
        line-height: 0;
        background-repeat: no-repeat;
        position: absolute;
        transition: 0.5s;
        font-size: 18px;
        width: 100px;
        background-position: center center;
        border: 1px solid #ccc;
        background: url(/images/featured-arrow.png);
        background-repeat: no-repeat;
        font-size: 0;
        border: unset;
        bottom: 0;
        right: 0;
        margin: auto;
        left: 30px;
    }
       .single-prod-div .main-div {
        padding: 20px 40px;
        margin: 10px;
        height: 450px;
    }
    @media (max-width: 767px) {
       .featured-head h2{
            font-size:20px;
        }
    }
     /*banner css for tab*/
    @media (min-width: 768px) and (max-width: 992px) {
      
    }
  
     /*banner css for tab*/
    @media (min-width: 993px) and (max-width: 1024px) {
          
    }
  
    /* ===============================
	  end featured product css
  =============================== */
  
  
  /* ===============================
	  popular product css
  =============================== */
section.product-section {
    padding: 50px 30px;
    margin: 20px;
}
.product-content {
    padding: 30px 20px;
    text-align: left;
    max-width: 65%;
    margin: auto;
    background: #2a80c3;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}
 .product-content h3 a{
	color: #FFF;
    text-align:left;
	font-family: Urbanist !important;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 250% */
	letter-spacing: 0.2px;
	text-transform: capitalize;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-content a.product-btn {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px; /* 76.923% */
    text-transform: capitalize;
    border-radius: 50px;
    background: #2a80c3;
    padding: 5px 12px;
    align-items: center;
    display: inline-block;
}
.product-banner-img {
    position: relative;
}

.all-pro-content {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.all-pro-txt h2 {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Adobe Devanagari;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 114.286% */
    text-transform: capitalize;
    position:relative;
}
.all-pro-txt h2:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 30px;
    margin: auto;
    top: -75px;
    left: 15px;
    bottom: 0;
    background-image: url(/images/allpro-h2-before.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.all-pro-txt p {
    color: #252525;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 176.471% */
    text-transform: capitalize;
}

.all-pro-btn a {
    color: #3E1D32;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 100% */
    text-transform: capitalize;
    border-radius: 34.5px;
    background: #FFF;
    padding: 10px 15px;
    display: inline-block;
}
.product-content a.product-btn img {
    width: auto;
    padding-left: 10px;
}
.all-pro-btn img {
    width: auto;
    padding-left: 10px;
}
.product-img {
    transition: 0.3s ease !important;
    height: 200px;
    position: relative;
    width: 500px;
    margin: auto;
    background: white;
}

.product-img img {
    position: absolute;
    max-height: 100%;
    right: 0;
    left: 0;
    transition: 0.5s;
    margin: auto;
    width: 100% !important;
    top: 0;
    bottom: 0;
    object-fit: contain;
    border: 2px solid #2a80c3;
    background: #FFF;
}
.product-content img {
    max-width: 30%;
}
.product-img:hover {
    transform: scale(1.08);
    transition: 0.3s ease !important;
}
.products-head {
    text-align: center;
    position: relative;
    padding: 30px;
}

.products-head h2 {
    color: var(--text-color-01, #131313);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Urbanist !important;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 133.333% */
    text-transform: capitalize;
}

.products-head h2:before{
    content: '';
    position: absolute;
    top: -80px;
    left: 0px;
    bottom:0;
    right:0;
    background-image: url(/images/headings-before.png);
    background-repeat: no-repeat !important;
    width: 50px;
    height: 100%;
    margin:auto;
}
.product-content p a {
    color: #FFF;
    font-family: Nunito Sans !important;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 141.176% */
    text-align: left;
}
.prct-main-content {
    margin: 40px 0px;
}
  /*product css for mobile*/
  @media (max-width: 767px) {
      .all-pro-txt h2{
          font-size:30px;
          line-height:30px;
      }
      .all-pro-txt p{
          font-size:13px;
      }
      .all-pro-content{
          top:40px;
      }
      .all-pro-btn a{
          font-size:13px;
      }
     
	}
  
  /*product css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
      .all-pro-txt h2{
          font-size:30px;
          line-height:30px;
      }
      .all-pro-txt p{
          font-size: 12px;
          line-height: 19px;
      }
      .all-pro-content{
          top:40px;
      }
      .all-pro-btn a{
          font-size:13px;
      }
      .product-content h3 a{
          font-size:13px;
          line-height:16px;
      }
      .product-content{
          padding:0px 0px;
      }
       .product-img{
          width: unset !important;
      }
  }
  
  /*product css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
       .all-pro-txt h2{
          font-size:30px;
          line-height:30px;
      }
      .all-pro-txt p{
          font-size:13px;
      }
      .all-pro-content{
          top:40px;
      }
      .all-pro-btn a{
          font-size:13px;
      }
      .product-content h3 a{
          font-size:13px;
          line-height:16px;
      }
  }
  
  /* ===============================
	  end popular product css
  =============================== */
  
  
    
  /* ===============================
	  mid-banner css
  =============================== */
  section.mid-banner-section {
    padding: 50px 0px;
}
  .mid-banner-img {
    position: relative;
}

.mid-banner-content {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    width: 35%;
    bottom: 0;
    margin: auto;
}

.mid-banner-content h2 {
	color: #FFF;
	text-align: center;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 60px; /* 133.333% */
	text-transform: capitalize;
}

.mid-banner-content p {
    color: #FFF;
	text-align: center;
	font-family: Urbanist !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
}

.mid-banner-btn a {
	color: #FFF;
	font-family: Urbanist !important;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	background: #2a80c3;
	padding: 0px 0px 0px 10px;
	display: inline-block;
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}
.mid-banner-btn img {
    width: auto;
    background: #fff;
    padding: 30px 10px;
    margin: 0px 0px 0px 40px;
    clip-path: polygon(40% 0, 100% 0, 59% 100%, 0% 100%);
}
.mid-banner-btn {
    text-align: center;
}
.mid-banner-btn a:hover {
    background: #fff;
    transition: 0.5s;
    color: #2a80c3;
}
  
    /*mid-banner css for mobile*/
  @media (max-width: 767px) {
      .mid-banner-content{
          width:50% !important;
          top:10%;
          display:none;
      }
       .mid-banner-content h2{
           font-size:13px;
           line-height:12px;
       }
       .mid-banner-content p{
            font-size:10px;
           line-height:12px;
       }
       .mid-banner-btn a{
           font-size:13px;
       }
	}
  
  /*mid-banner css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
          .mid-banner-content{
        width: 30% !important;
        top: 30%;
          
      }
       .mid-banner-content h2{
            font-size: 28px;
            line-height: 23px;
       }
       .mid-banner-content p{
            font-size:10px;
           line-height:12px;
       }
       .mid-banner-btn a{
           font-size:13px;
       }
  }
  
  /*mid-banner css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
    .mid-banner-content{
        width: 30% !important;
        top: 30%;
          
      }
       .mid-banner-content h2{
            font-size: 36px;
            line-height: 31px;
       }    
       .mid-banner-content p{
            font-size: 17px;
            line-height: 22px;
       }
       .mid-banner-btn a{
           font-size:18px;
       }
  }
  
  /* ===============================
	  end mid-banner css
  =============================== */
  
  /* ===============================
	  factory-section css
  =============================== */
    
section.factory-section {
    position: relative;
    padding:30px 0px;
}

.factory-foot-before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 40px;
}

.factory-foot-after {
    position: absolute;
    top: 0;
    right: 0;
}

.factory-title {
    text-align: center;
    padding: 30px;
}

.factory-title h2 {
    color: #3E1D32;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Adobe Devanagari;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 75px; /* 107.143% */
    text-transform: capitalize;
}

.factory-title p {
    color: #252525;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;

/* Body/H1 */
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 176.471% */
    text-transform: capitalize;
}

.factory-title h2:before {
    content: "";
    height: 22px;
    position: absolute;
    width: 30px;
    margin: auto;
    top: 45px;
    left: -20%;
    right:0;
    background-image: url(/images/about-h4-before.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display:inline-block;
}
.factory-content {
        text-align: center;
        position: absolute;
        bottom: 20px;
        margin: auto;
        right: 0;
        left: 0;
}

.factory-content h3 {
    color: #252525;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 107.143% */
    text-transform: capitalize;
    opacity:0;
    transition:0.5s;
}
.factory-img {
    position: relative;
    margin: 10px;
}
.factory-img:before {
    content: "";
    position: absolute;
    bottom: 0px;
    margin: auto;
    background-image: url(/images/factory-txt-bg.png);
    background-size:100%;
    height: 150px;
    background-repeat: no-repeat;
    width: 100%;
    transition:0.5s;
     opacity: 0;
    visibility: hidden;
}
.factory-img:hover:before {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}
.factory-img:hover .factory-content h3 {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}
  
    /*mid-banner css for mobile*/
  @media (max-width: 767px) {
      .factory-title h2{
          font-size:30px;
          line-height:25px;
      }
      .factory-title p{
           font-size:13px;
           line-height:25px;
      }
      .factory-foot-after{
          z-index:-1;
      }
      .factory-title h2:before{
        top: 35px;
        left: -40%;
      }
      .factory-content h3{
          opacity:1;
          color:var(--white);
          background-color:var(--color1);
          padding:10px 0px;
          margin:10px 0px;
      }
      .factory-img:before{
          display:none;
      }
      .factory-content{
          position:relative;
          bottom:0;
      }
      .factory-img{
          text-align:center;
      }
	}
  
  /*mid-banner css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
        .factory-title h2{
          font-size:30px;
          line-height:25px;
      }
      .factory-title p{
           font-size:13px;
           line-height:25px;
      }
      .factory-foot-after{
          z-index:-1;
      }
      .factory-title h2:before{
        top: 35px;
        left: -40%;
      }
          .factory-img:before{
          height:60px;
      }
      .factory-content{
          bottom:0;
      }
      .factory-content h3{
          font-size:10px;
          line-height: 15px;
      }
  }
  
  /*mid-banner css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
           .factory-title h2{
          font-size:30px;
          line-height:25px;
      }
      .factory-title p{
           font-size:13px;
           line-height:25px;
      }
      .factory-foot-after{
          z-index:-1;
      }
      .factory-title h2:before{
        top: 35px;
        left: -13%;
      }
      .factory-img:before{
          height:80px;
      }
      .factory-content h3{
          font-size:13px;
      }
      .factory-content{
          bottom:0;
      }
  }
  
  /* ===============================
	  end mid-banner css
  =============================== */
  
  
  /* ===============================
	  feature product section css
  =============================== */
  section.pro.max.nb {
	padding: 30px 0px;
	position: relative;
	padding-bottom: 50px;
  }
  section.pro.max.nb .sub-heading,
  section.pro.max.nb .defalt-heading {
	text-align: center;
  }
  section.pro.max.nb .tb {
	margin-top: 100px;
  }
  section.pro.max.nb .main-imgges {
	padding: 20px;
	display: block;
	background: #fff;
	border-radius: 10px;
	float: left;
  }
  section.pro.max.nb .fea-prods {
	padding-right: 25px;
	max-width: 67%;
	float: left;
  }
  section.pro.max.nb .super-oil-cc h3 {
	color: #313131;
	font-family: Paytone One;
	font-size: 22px;
	font-weight: 400;
	margin-top: 20px;
	line-height: 25px;
	text-transform: capitalize;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  .product-txt p {
	color: #646464;
	font-family: Manrope;
	font-size: 15px;
	font-weight: 400;
	line-height: 22px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  section.pro.max.nb .view-c a {
	color: #fff;
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	background: #3ca949;
	padding: 10px 20px;
	border-radius: 60px;
  }
  section.pro.max.nb .main-imgges:hover {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	transition: 0.3s;
  }
  section.pro.max.nb .super-oil-cmain {
	height: 160px;
	width: 160px;
	position: relative;
	border-radius: 100%;
	float: right;
	overflow: hidden;
	background-color: #edded7;
	border: 3px solid #37f001;
  }
  section.pro.max.nb .super-oil-cmain img.img-fluid {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
  }
  section.pro.max.nb .item {
	padding: 10px;
  }
  
  section.pro.max.nb .view-all-prod {
	text-align: center;
	margin-top: 50px;
  }
  section.pro.max.nb .view-all-prod a {
	background: #3ca949;
	color: #fff;
	padding: 15px 25px;
	font-family: Manrope;
	font-size: 22px;
	font-weight: 600;
	border-radius: 70px;
	transition: 0.3s;
  }
  section.pro.max.nb .view-all-prod a:hover {
	background: #fff;
	color: #3ca949;
	transition: 0.3s;
  }
  
  /*feature product css for mobile*/
  @media (max-width: 767px) {
	section.pro.max.nb {
	  padding-top: 30px !important;
	  padding-bottom: 40px !important;
	}
	section.pro.max.nb .sub-heading,
	section.pro.max.nb .defalt-heading {
	  text-align: center !important;
	}
	section.pro.max.nb .sub-heading {
	  text-align: center !important;
	}
	section.pro.max.nb .super-oil-cmain {
	  height: 100px !important;
	  width: 100px !important;
	  border: 2px solid #37f001 !important;
	}
	section.pro.max.nb .super-oil-cc h3 {
	  font-size: 14px !important;
	  margin-top: 0px !important;
	  line-height: 20px !important;
	}
	section.pro.max.nb .product-txt p {
	  font-size: 10px !important;
	  margin-bottom: 10px !important;
	  line-height: 15px !important;
	}
	section.pro.max.nb .main-imgges {
	  padding: 10px !important;
	  margin: 10px 0px;
	}
	section.pro.max.nb .view-c a {
	  font-size: 10px !important;
	  line-height: 20px !important;
	  padding: 5px 10px !important;
	}
	section.pro.max.nb .tb {
	  margin-top: 50px !important;
	}
	section.pro.max.nb .fea-prods {
	  padding-right: 15px !important;
	  max-width: 60% !important;
	}
	section.pro.max.nb .view-all-prod a {
	  font-size: 12px !important;
	  padding: 10px 20px !important;
	}
	section.pro.max.nb .view-all-prod {
	  text-align: center;
	  margin-top: 20px !important;
	}
  }
  @media (min-width: 768px) and (max-width: 992px) {
	section.pro.max.nb {
	  padding-top: 30px !important;
	  padding-bottom: 40px !important;
	}
	section.pro.max.nb .sub-heading,
	section.pro.max.nb .defalt-heading {
	  text-align: center !important;
	}
	section.pro.max.nb .sub-heading {
	  text-align: center !important;
	}
	section.pro.max.nb .super-oil-cmain {
	  height: 100px !important;
	  width: 100px !important;
	  border: 2px solid #37f001 !important;
	}
	section.pro.max.nb .super-oil-cc h3 {
	  font-size: 14px !important;
	  margin-top: 0px !important;
	  line-height: 20px !important;
	}
	section.pro.max.nb .product-txt p {
	  font-size: 12px !important;
	  margin-bottom: 10px !important;
	  line-height: 15px !important;
	}
	section.pro.max.nb .main-imgges {
	  padding: 10px !important;
	  margin: 10px 0px;
	}
	section.pro.max.nb .view-c a {
	  font-size: 12px !important;
	  line-height: 20px !important;
	  padding: 7px 13px !important;
	}
	section.pro.max.nb .tb {
	  margin-top: 50px !important;
	}
	section.pro.max.nb .fea-prods {
	  padding-right: 15px !important;
	  max-width: 65% !important;
	}
	section.pro.max.nb .view-all-prod {
	  text-align: center;
	  margin-top: 20px !important;
	}
	section.pro.max.nb .view-all-prod a {
	  font-size: 14px !important;
	  padding: 10px 20px !important;
	}
  }
  
  /* ===============================
	  end feature product section css
  =============================== */
  
  /* ===============================
	  testimonial section css
  =============================== */
  section.main-testimonial.zz {
	padding: 70px 0px;
	background-size: 100% 100% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	}
  section.main-testimonial.zz .sub-heading h3 {
	color: #fff;
	text-align: center;
	font-family: Pacifico !important;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
  }
  section.main-testimonial.zz .default-heading h2 {
	color: #fff;
	font-family: Paytone One;
	font-size: 48px;
	font-weight: 400;
	line-height: 40px;
	position: relative;
	text-transform: capitalize;
  }
  section.main-testimonial.zz .default-heading h2:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 0;
	height: 2px;
	width: 120px;
	background: #fff;
  }
  section.main-testimonial.zz .cust-cust {
	padding: 40px;
	border-radius: 20px;
	border: 1px solid rgba(19, 19, 19, 0.08);
	background: #FAFDFF;
	margin: 10px;
	transition: 0.5s;
	height: 400px;
	width: 100%;
	}
  section.main-testimonial.zz .text-caption-p p {
	color: var(--black);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Manrope;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
	padding: 10px;
	max-width: 90%;
	}
  section.main-testimonial.zz .testi-user {
	display: flex;
	align-items: center;
	margin-top: 30px;
  }
  section.main-testimonial.zz .testy-img {
	display: inline-block !important;
	margin-right: 20px;
  }
  section.main-testimonial.zz .testy {
	display: inline-block !important;
  }
  section.main-testimonial.zz .testy h4 {
	color: var(--color1);
	font-feature-settings: 'clig' off, 'liga' off;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px; /* 145.455% */
	text-transform: capitalize;
  }
  section.main-testimonial.zz .testy h5 {
	color: var(--text-color-03, #676767);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Manrope;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; 
	text-transform: capitalize;
  }
  section.main-testimonial.zz .owl-nav,
  section.main-testimonial.zz .owl-dots {
	display: block !important;
	position: absolute;
	right: 0;
	top: 0;
	}
  /*USAMA CSS*/
  
  .testimonial-head h2 {
	color: #252525;
	font-family: Urbanist !important;
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: 52px; /* 123.81% */
	letter-spacing: 0.2px;
	text-transform: capitalize;
	position:relative;
}
.testimonial-head h2:before{
	content: '';
    position: absolute;
    top: -60px;
    left: 0px;
    background-image: url(/images/headings-before.png);
    background-repeat: no-repeat !important;
    width: 50px;
    height: 100%;
	
}

.rating-img {
    position: relative;
    display: inline-block;
    margin-top:20px;
    margin-bottom: 20px;
}
.rating-img img {
    display: inline-block !important;
}
.inner-testimonial {
    position: relative;
}

.inner-testimonial:after {
    position: absolute;
    background-image: url(/images/testimonial-arrow.png);
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 40px;
    width: 40px;
    bottom: 0;
    right: 0;
    content: '';
	display:none;
}
section.main-testimonial.zz .owl-prev {
    font-size: 0;
    background-color: transparent;
    background-image: url(/images/testimonial-arrow.png);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: rotate(0deg);
    position: absolute;
    top: -78px;
    right: 70px;
}
section.main-testimonial.zz .owl-next {
    font-size: 0;
    background-color: transparent;
    background-image: url(/images/testimonial-arrow.png);
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: rotate(180deg);
    position: absolute;
    top: -78px;
    right: 10px;
}
section.main-testimonial.zz .cust-cust:hover {
    background-image: url(/images/testimonial-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition:0.5s;
}
section.main-testimonial.zz .cust-cust:hover {
    background: #FAFDFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
}
.inner-testimonial .text-caption-p {
    padding: 10px 0px;
}

  /*testimonial css for mobile*/
  @media (max-width: 767px) {
	section.main-testimonial.zz {
	  padding: 30px 0px;
	}
	section.main-testimonial.zz .default-heading h2 {
	  font-size: 20px !important;
	  line-height: 25px !important;
	}
	section.main-testimonial.zz .default-heading h2:after {
	  bottom: -10px !important;
	  width: 60px !important;
	}
	section.main-testimonial.zz .owl-nav {
	  display: none !important;
	}
	section.main-testimonial.zz .cust-cust {
	  margin-top: 10px !important;
	  height: auto !important;
	  padding-top: 10px !important;
	}
	section.main-testimonial.zz .text-caption-p p {
	  font-size: 10px !important;
	  line-height: 15px !important;
	  padding-right: 50px !important;
	}
	section.main-testimonial.zz .testy-img {
	  display: inline-block !important;
	  height: 50px !important;
	  width: 50px !important;
	  margin-right: 10px !important;
	}
	section.main-testimonial.zz .testi-user {
	  margin-top: 0px !important;
	}
	section.main-testimonial.zz .testy h4 {
	  font-size: 12px;
	}
	section.main-testimonial.zz .testy h5 {
	  font-size: 10px;
	}
	.testimonial-head h2{
	    font-size:28px;
	    text-align:center;
	}
	.testimonial-head h2:before{
	    left:-4px;
	}
  }
  
  /*testimonial css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	section.main-testimonial.zz {
	  padding: 30px 0px !important;
	}
	section.main-testimonial.zz .default-heading h2 {
	  font-size: 35px !important;
	}
	section.main-testimonial.zz .default-heading h2:after {
	  width: 90px !important;
	  bottom: -20px !important;
	}
	section.main-testimonial.zz .cust-cust {
	  padding-top: 30px !important;
	}
	section.main-testimonial.zz .text-caption-p p {
	  font-size: 12px !important;
	  line-height: 20px !important;
	}
	section.main-testimonial.zz .testi-user {
	  margin-top: 15px !important;
	}
	section.main-testimonial.zz .testy-img {
	  width: 60px;
	}
	section.main-testimonial.zz .testy h4 {
	  font-size: 14px !important;
	  margin-bottom: 5px !important;
	}
	section.main-testimonial.zz .testy h5 {
	  font-size: 12px !important;
	}
    .testimonial-head h2 {
    color: var(--color1);
    font-size: 30px;
    line-height: 30px;
}
  }
  @media (min-width: 993px) and (max-width: 1024px){
   .testimonial-head h2 {
        color: var(--color1);
        font-size: 30px;
        line-height: 30px;
   }
   section.main-testimonial.zz .text-caption-p p{
       font-size: 13px;
        line-height: 20px;
   }
   section.main-testimonial.zz .cust-cust{
       padding:20px;
   }
  }
  /* ===============================
	  end testimonial section css
  =============================== */
  
  /* ===============================
	  blogs section css
  =============================== */
section.blog-section {
	padding: 90px 40px;
	position: relative;
}
 .blog-head {
    text-align: center;
}

.blog-head h2 {
	color: var(--text-color-01, #131313);
	text-align: center;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 60px; /* 133.333% */
	text-transform: capitalize;
	position:relative;
}

.blog-head h2:before {
    content: "";
    height: 22px;
    position: absolute;
    width: 30px;
    margin: auto;
    top: -10px;
    left: -20%;
    right: 0;
    background-image: url(/images/about-h4-before.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
}

.blog-head p {
    color: #252525;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 176.471% */
    text-transform: capitalize;
}
.blog-content h5 {
    color: #FFF;
    font-family: Nunito Sans;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    background-color:#2a80c3;
    display:inline-block;
    padding:10px 20px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.blog-content {
    /* margin-bottom: 30px; */
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.20);
    padding: 20px 10px;
}

.blog-content h3 {
	color: var(--text-color-01, #131313);
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; /* 136.364% */
	text-transform: capitalize;
}

.blog-btn a {
	color: #FFF;
	font-family: DM Sans;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	display: inline-block;
	background-color:#2a80c3;
	padding:20px;
	clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}
.blog-btn img {
    width: auto;
    padding-left: 10px;
}
.blog-content h5:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -50px;
    background-image: url(/images/blog-before.png);
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 40%;
    height: 100%;
    display:inline-block;
}
.blog-btn {
    text-align: center;
    position: relative;
    padding: 20px 0px;
}
.blog-btn a img {
    width: auto;
    background: #fff;
    padding: 20px 10px;
    margin: 0px 5px;
}
.blog-head h2:before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0px;
    background-image: url(/images/headings-before.png);
    background-repeat: no-repeat !important;
    width: 50px;
    height: 100%;
}
  /*BLOGS css for mobile*/
  @media (max-width: 767px) {
section.blog-section {
  padding: 30px 0px !important;
 }
 .blog-head h2{
     font-size:28px;
     line-height:45px;
     padding-top:20px;
 }
 .blog-head p{
     font-size:13px;
 }
 .blog-head h2:before{
     top:10px;
     left:-100px;
 }
 .blog-content h3{
     font-size:18px;
 }
 .blg-img {
    margin: 10px 0px;
}
.blog-before-img{
    top: 0%;
    left: 2%;
}
} 
 @media (min-width: 768px) and (max-width: 992px) {
section.blog-section {
  padding: 30px 0px !important;
 }
  .blog-head h2{
     font-size:28px;
     line-height:45px;
     padding-top:20px;
 }
 .blog-head p{
     font-size:13px;
 }
 .blog-head h2:before{
     top:10px;
     left:-100px;
 }
 .blog-content h3{
     font-size:18px;
 }
 .blg-img {
    margin: 10px 0px;
}
.blog-before-img{
    top: 0%;
    left: 2%;
}
.blog-content p{
    font-size: 13px !important;
}
}
 @media (min-width: 993px) and (max-width: 1024px){
      .blog-head h2{
     font-size:28px;
     line-height:45px;
     padding-top:20px;
 }
 .blog-head p{
     font-size:13px;
 }
 .blog-head h2:before{
     top:10px;
     left:-100px;
 }
 .blog-content h3{
     font-size:18px;
 }
 .blg-img {
    margin: 10px 0px;
}
.blog-before-img{
    top: 0%;
    left: 2%;
} 
 }

  /* end blogs section css */
  
  /*footer css*/
  
  footer.footer-section {
	background: #101010;
	position:relative;
	}
  footer.footer-section .f-logo-sec {
	background: #000;
	padding: 20px 0px;
  }
  footer.footer-section .f-logo-sec .f-social-icon ul.main-social-list {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
  }
  footer.footer-section .f-social-icon ul.main-social-list li {
	position: relative;
	background: #2a80c3;
	margin-right: 0px;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	display: inline-block;
	}
  footer.footer-section .f-social-icon ul.main-social-list li:hover {
	background: #2a80c3;;
	transition: 0.3s;
  }
  footer.footer-section .f-logo-sec ul.main-social-list li img {
	padding: 8px;
  }
  footer.footer-section .f-logo-sec ul.main-social-list li:hover {
	background: #2a80c3;;
	transition: 0.3s;
  }
  footer.footer-section .f-logo-sec .f-social-icon {
	position: relative;
  }
  footer.footer-section .f-logo-sec .f-social-icon:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 80px;
	background: #cccccc70;
  }
  footer.footer-section .f-logo-sec .l-o-g:after {
	content: "";
	position: absolute;
	top: -8px;
	right: 0;
	width: 1px;
	height: 80px;
	background: #cccccc70;
	display: none;
	}
  footer.footer-section .f-logo-sec .l-o-g,
  footer.footer-section .f-logo-sec .foot-numb {
	text-align: center;
	position: relative;
  }
  footer.footer-section .f-logo-sec .foot-numb p {
	display: inline-block;
	margin-left: 20px;
	color: #fff;
	font-family: Manrope;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 0px;
  }
  
  footer.footer-section .container.bg {
	position: relative;
	padding: 60px 0px;
  }
  footer.footer-section .footer-p {
	padding-right: 30px;
	position: relative;
  }
  footer.footer-section .footer-widgets,
  footer.footer-section .f-recent-post {
	padding: 0px 20px;
	position: relative;
	}
  footer.footer-section .footer-widgets:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #cccccc70;
  }
  footer.footer-section .footer-widgets:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: #cccccc70;
  }
  
  footer.footer-section .footer-p p {
	color: #252525;
	font-family: Manrope;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px; /* 206.25% */
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
	  margin-top:20px
  }
  footer.footer-section .footer-main-contact .phone h5 {
	color: #fff;
	font-family: Urbanist;
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	text-transform: capitalize;
  }
  
  footer.footer-section .footer-main-contact .footer-widgets li {
	margin: 20px 0px;
  }
  footer.footer-section .footer-widgets li .h-icon {
	padding: 10px;
	padding-left: 0px !important;
  }
  footer.footer-section li.foot-numb a p {
	display: inline-block !important;
  }
  footer.footer-section .footer-widgets li a p {
	color: #C5C5C5;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Manrope;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px; /* 162.5% */
	text-transform: capitalize;
  }
  footer.footer-section .footer-widgets li {
	color: #ccc;
	font-family: Manrope;
	font-size: 16px;
	display: flex;
	align-items: center;
	font-weight: 500;
	line-height: 26px;
	text-transform: capitalize;
  }
  footer.footer-section li.foot-add p {
	width: 78% !important;
	display: inline-block !important;
	margin: 0 !important;
  }
  footer.footer-section .f-recent-post .f-post h2 {
	color: #FFF;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 60px; /* 200% */
	text-transform: uppercase;
	}
  footer.footer-section .f-recent-post .f-recent {
	display: flex;
	align-items: center;
	margin: 30px 0px;
  }
  footer.footer-section .f-details-wrapper h3 {
    color: #252525;
	font-family: Manrope;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px; 
	margin: 0;
	text-transform: capitalize;
  }
  
  .footer-botm {
	padding: 15px 0px;
	border-top: 1px solid #cccccc70;
	background-color: var(--color1);
	}
  .footer-botm p.asdas {
	margin: 0px;
	color: #fff;
	text-align: start;
	font-family: Manrope;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	text-transform: capitalize;
	}
  .footer-botm p.asdas a {
	color: #19ACAE;
	position: relative;
	margin-right: 10px;
	}
  .footer-botm p.asdas a:first-child:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: #fff;
	right: -7px;
  }
  ul.main-social-list {
    padding: 0;
}

.footer-main-contact h5 {
    color: #FFF;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: 60px; /* 200% */
	text-transform: capitalize;
}
footer.footer-section .footer-widgets li a {
    color: #252525 !important;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px; /* 275% */
}
.f-post p {
    color: #252525;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
}
footer.footer-section .f-social-icon ul.main-social-list li img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact-txt p {
    padding: 0px;
    margin: 0px;
}
.contact-txt a {
    color: var(--color2);
    font-family: roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px; /* 133.333% */
}
.footer-before {
    position: absolute;
    right: 0;
    bottom: 30%;
}

.footer-after {
    position: absolute;
    left: 50px;
    bottom: 50%;
}
.footer-quote .h-numb {
    display: inline-block;
}

.footer-quote {
    text-align: center;
}

.footer-quote .h-numb a {
    color: #FFF;
    font-family: Nunito Sans !important;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.footer-p h5 {
    color: #FFF;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Urbanist !important;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px; /* 200% */
    text-transform: capitalize;
}
.ffc p {
    color: #C5C5C5;
    font-family: Nunito Sans !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px; /* 166.667% */
    padding:0px 5px;
}
  /*footer css for mobile*/
  @media (max-width: 767px) {
	footer.footer-section .l-o-g {
	  width: 60% !important;
	  text-align: center !important;
	  margin: 0px auto !important;
	}
	footer.footer-section .f-logo-sec .foot-numb {
	  margin-top: 20px !important;
	}
	footer.footer-section .f-social-icon ul.main-social-list li {
	  height: 30px !important;
	  width: 30px !important;
	    margin:15px;
	    padding:5px;
	}
	footer.footer-section .f-logo-sec ul.main-social-list li img {
	  padding: 4px !important;
	}
	footer.footer-section .f-logo-sec ul.main-social-list li:last-child img {
	  padding-bottom: 7px !important;
	}
	footer.footer-section .f-logo-sec .l-o-g:after,
	footer.footer-section .f-logo-sec .f-social-icon:after {
	  display: none !important;
	}
	footer.footer-section .container.bg {
	  padding: 30px 0px !important;
	}
	footer.footer-section .footer-p {
	  padding: 0px 20px !important;
	}
	footer.footer-section .phone {
	  margin: 10px 0px !important;
	}
	footer.footer-section .footer-p p {
	  font-size: 10px !important;
	  margin-top: 15px !important;
	  text-align: center !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-widgets:before,
	footer.footer-section .footer-widgets:after {
	  display: none !important;
	}
	.footer-main-contact .phone h5 {
	  font-size: 15px !important;
	  line-height: 20px !important;
	}
	.footer-widgets li {
	  font-size: 10px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-widgets li a p {
	  font-size: 10px !important;
	  line-height: 15px !important;
	}
	.f-recent-post .f-post h2 {
	  font-size: 28px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .f-recent-post .f-recent {
	  margin: 10px 0px !important;
	}
	.f-details-wrapper h3 {
	  font-size: 15px !important;
	  line-height: 15px !important;
	  text-transform: uppercase !important;
	}
	.footer-botm p.asdas {
	  font-size: 8px !important;
	  line-height: 12px !important;
	}
   footer.footer-section .footer-widgets, footer.footer-section .f-recent-post{
       padding:10px 20px;
   }
   ul.footer-menus-list {
    padding: 0;
    }
  }
  
  /*footer css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	footer.footer-section .f-logo-sec {
	  padding: 10px 0px !important;
	}
	footer.footer-section .f-social-icon ul.main-social-list li {
	  margin: 5px !important;
	}
	footer.footer-section .f-logo-sec ul.main-social-list li:last-child img {
	  padding-bottom: 10px !important;
	}
	footer.footer-section .f-logo-sec .f-social-icon:after {
	  height: 50px !important;
	  top: 5px !important;
	}
	.l-o-g {
	  width: 70%;
	  margin: 0 auto;
	}
	footer.footer-section .f-logo-sec .l-o-g:after {
	  height: 50px !important;
	  top: -3px !important;
	  right: -36px !important;
	}
	footer.footer-section .f-logo-sec .foot-numb p {
	  font-size: 15px !important;
	  margin-left: 10px !important;
	}
	footer.footer-section .f-logo-sec .foot-numb .h-icon {
	  width: 22px !important;
	}
	footer.footer-section .container.bg {
	  padding: 30px 0px !important;
	}
	footer.footer-section .footer-p p {
	  font-size: 12px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-main-contact .phone h5 {
	  font-size: 18px !important;
	}
	footer.footer-section .footer-widgets li {
	  font-size: 12px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-widgets li a p {
	  font-size: 12px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .footer-widgets li .h-icon {
	  width: 45px;
	}
	footer.footer-section .f-recent-post .f-post h2 {
	  font-size: 18px !important;
	  line-height: 20px !important;
	}
	.footer-botm p.asdas {
	  font-size: 12px !important;
	}
	.footer-main-contact h5{
	    font-size:18px;
	}
	ul.footer-menus-list {
    padding: 0px;
    }
    footer.footer-section .footer-widgets li a{
          font-size:12px;
    }
    footer.footer-section .footer-widgets, footer.footer-section .f-recent-post{
        padding:0px 10px;
    }
    .f-post p{
        font-size:12px;
    }
    footer.footer-section .f-social-icon ul.main-social-list li{
        height:30px;
        width:30px;
        position:relative;
    }
  }
  @media (min-width: 993px) and (max-width: 1024px){
      ul.footer-menus-list {
        padding: 0;
    }
    footer.footer-section .footer-widgets, footer.footer-section .f-recent-post{
        padding:0px 10px;
    }
  }
  /*end footer css*/
  
  /*product page bread crum css*/
  
  section.bread-crum {
	background-color: #cccccc52;
	max-width: 1600px;
	margin: 0 auto;
  }
  
  .bread_crumb {
	padding: 10px 0 10px 0 !important;
  }
  
  .bread_crumb a {
	color: #000;
	font-weight: 500;
	font-size: 14px;
  }
  
  .innercaption h1{
    display: none !important;
  }
  
  /* end product page bread crum css*/
  
  
  
  
  /*about section*/
section.about-section {
    position: relative;
    padding: 0px 20px;
}
.about-content {
    padding: 30px 0px;
}

.about-content h4 {
	color: #2a80c3;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Urbanist !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 162.5% */
	text-transform: capitalize;
}

.about-content h2 {
	color: #171717;
	font-family: Urbanist !important;
	font-size: 45px;
	font-style: normal;
	font-weight: 700;
	line-height: 55px; /* 100% */
	letter-spacing: 0.45px;
	text-transform: capitalize;
}

.about-content p {
    color: #343434;
	font-family: Nunito Sans !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
}

.about-btn a {
    color: #FFF;
    background-color:#2a80c3;
    font-family: Nunito Sans !important;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    padding: 5px 6px 5px 15px;
    display: flex;
    align-items: center;
    display: inline-block;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}
.about-btn img {
    width: auto;
    background: #fff;
    padding: 20px 10px;
    margin: 0px 5px;
}

  /*about css for mobile*/
  @media (max-width: 767px) {
   .about-content h2 {
   color: var(--color1);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Adobe Devanagari;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; /* 107.143% */
    text-transform: capitalize;
    position:relative;
}
.about-content h2:after{
    z-index:-1;
    height:100px;
    width:100px;
    top:-60px;
}

  }
  /*about us css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
       .about-content h2 {
        font-size: 30px;
        line-height: 30px;
    }
    .about-content p{
        font-size: 15px;
        line-height: 22px;
    }
  }
  
  /*about css for tab*/
  @media (min-width: 993px) and (max-width: 1024px) {
      .about-content h2 {
        font-size: 30px;
        line-height: 30px;
    }
    .about-content p{
        font-size: 15px;
        line-height: 22px;
    }
    .about-content h2:after{
        z-index:-1;
    }
  }
  
  /*end about section*/
    }
    .about-content p{
        font-size: 15px;
        line-height: 22px;
    }
  }
  
  /*about css for tab*/
  @media (min-width: 993px) and (max-width: 1024px) {
      .about-content h2 {
        font-size: 30px;
        line-height: 30px;
    }
    .about-content p{
        font-size: 15px;
        line-height: 22px;
    }
    .about-content h2:after{
        z-index:-1;
    }
  }
  
  /*end about section*/
  
  /*for gtranslate language css*/
.select-lang .gt_switcher_wrapper {
  position: relative !important;
  float: right;
}
.select-lang .gt_switcher_wrapper .gt_selected {
  background: var(--color2) !important;
  border-radius: 30px !important;
  padding: 4px 10px;
}
.select-lang .gt_switcher_wrapper .gt_selected a {
  color: #fff;
  border: none !important;
  font-size: 16px;
  position: relative;
  font-family: LEMON MILK !important;
  font-weight: 500 !important;
  padding: 13px 25px !important;
  border-radius: 30px !important;
  width: auto !important;
}
.select-lang .gt_switcher_wrapper .gt_selected a:hover {
  background: var(--color3) !important;
}
.select-lang .gt_switcher_wrapper .gt_selected a img {
  background-image: url(/images/world.png);
  display: none;
}
.select-lang .gt_switcher_wrapper .gt_selected a:before {
  content: "";
  position: absolute;
  height: 30px;
  width: 30px;
  left: 4px;
  top: 5px;
  background-image: url(/images/world.png);
  background-size: 100% 100% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: hue-rotate(1024deg) contrast(3.5);
}
.select-lang .gt_container--hich1m .gt_switcher .gt_selected a:after {
  right: 10px !important;
  filter: brightness(15) !important;
  top: -3px !important;
}

.select-lang .gt_switcher_wrapper .gt_option {
  background: #3e9e5e !important;
  position: absolute !important;
  padding: 30px 0px 10px 20px !important;
  width: 172px !important;
  top: 26px;
  border-radius: 0px 0px 20px 20px;
}
.select-lang .gt_switcher_wrapper .gt_option a {
  color: #fff !important;
  padding: 0px !important;
  margin: 4px 0px !important;
}
.select-lang .gt_switcher_wrapper .gt_option a:hover {
  background: #43a668 !important;
  transition: 0.3s;
}
/* end for gtranslate language css*/
  
  
  footer.footer-section .footer-widgets li img.img-fluid {
    filter: hue-rotate(45deg);
}

.header-logo {
    max-width: 60%;
}</pre></body></html>