@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: "Oswald";
  font-weight: 400;
  src: url(../fonts/oswald/Oswald-Regular.ttf);
}

@font-face {
  font-family: "Oswald";
  font-weight: 500;
  src: url(../fonts/oswald/Oswald-Medium.ttf);
}

@font-face {
  font-family: "Oswald";
  font-weight: 600;
  	src: url(../fonts/oswald/Oswald-SemiBold.ttf);
}

@font-face {
  font-family: "Oswald";
  font-weight: 700;
  src: url(../fonts/oswald/Oswald-Bold.ttf);
}

/*@font-face {*/
/*  font-family: "Oswald";*/
/*  font-weight: 800;*/
/*  src: url(../fonts/oswald/Oswald-ExtraBold.ttf);*/
/*}*/
 
:root {
    --txt-color: #1D4D7E;
    --color1: #222;
}


 *{
     font-family:oswald !important;
 }
  
  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;
  }
  
  p{
      font-family: Manrope !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: 0;
	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: var(--color1);
	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: var(--color1)!important;
	border: 1px solid var(--color1)!important;
	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:relative;
	z-index: 3;
	}
  
  .header-top {
	background: transparent;
	padding: 10px 0px;
	}
  .header-top ul.main-social-list {
	display: flex;
	align-items: center;
	list-style: none !important;
	padding: 0 !important;
	margin: 0;
  }
  .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: #fff;
	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: end;
  }
  ul.main-social-list.h-cont li {
	margin-left: 20px;
  }
  ul.main-social-list.h-cont li a {
	padding: 5px;
  }
  ul.main-social-list.h-cont li.h-fb {
	margin-left: 40px;
  }
  /* ===============================
	  end header topbar
  =============================== */
  
  /* ===============================
	  main header css
  =============================== */
  .header-logo-contain {
	padding: 10px;
	position: relative;
	}
  .my-navbar {
	justify-content: center;
	padding: 0 !important;
	padding-top: 7px !important;
	}
  .my-navbar .header-logo.mobile-logo {
	display: none;
  }
  .main-header li.nav-item {
	padding: 0px 13px;
	position: relative;
	}
  .main-header li.active.nav-item a.nav-link {
	color: var(--color1)!important;
	position: relative;
  }
  .main-header li.nav-item a.nav-link:hover {
	color: var(--color1)!important;
	transition: 0.3s;
  }
  .main-header li.active.nav-item a:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--color1);
	bottom: 0;
	left: 0;
  }
  .main-header a.nav-link {
	padding: 5px 0px !important;
	color: #212529 !important;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Manrope !important;
	font-size: 15px;
	font-style: normal;
	font-weight: 800;
	line-height: 24px;
	text-transform: uppercase;
	}
  .main-header li.nav-item a#navbarDropdownMenuLink:after {
	content: "+";
	border: none !important;
	position: absolute;
  }
 /* .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: #ffffff;
	}
  .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(--color1)!important;
	transition: 0.3s;
  }
  .h-col-third {
	float: right;
	position: relative;
  }
  .h-col-third .h-numb {
	display: inline-block;
	position: relative;
  }
  .h-col-third .h-numb p {
	margin: 0;
	background-color: var(--color1);
	font-family: Manrope;
	padding: 5px 20px;
	border-radius: 30px;
	color: #fff;
	font-size: 15px;
  }
  .h-tagline {
    text-align: center;
}

.h-tagline h4 {
    color: var(--text-color-07, #FFF);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    text-transform: capitalize;
    background: #1A1A1A;
    padding: 5px;
}
a.nav-link.header-btn {
    padding: 10px !important;
    margin-right: 15px;
    color: #fff !important;
    background: var(--color1);
    border-radius: 100px;
    display: inline-block;
}
.form-group.search-box {
    position: relative;
    display: inline-block;
}

.form-group.search-box img {
    position: absolute !important;
    left: -50px;
    top: 4px;
    filter: drop-shadow(2px 4px 6px black);
}
.form-group.search-box input {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    text-align: center;
    background: transparent;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);
}
  /* ===============================
	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 {
	  width: 100%;
	  position: fixed;
	  height: 64px;
	  top: 0;
	  left: 0;
	  z-index: 999;
	  background: #fff;
	}
	.my-navbar .header-logo.mobile-logo {
	  display: block !important;
	  text-align: left !important;
	  margin: 0;
	}
	.header-logo-contain {
	  padding-top: 0px !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: 25%;
	}
  
	.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;
	  overflow: auto;
	}
	.main-header .navbar-collapse.show {
	  transform: translateX(0px);
	  transition: 0.3s;
	}
  
	.main-header a.nav-link {
	  font-size: 10px;
	  padding: 20px 20px;
	  margin: 10px 0px;
	  display: inline-block;
	}
	.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);
	}
	.my-navbar .navbar-collapse ul ul.dropdown-menu{
	    /*height:100px;*/
	    overflow:scroll;
	}
	body footer.footer-section li.foot-add p {
        font-size: 10px;
    }
  }
  
  /*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 {
	  width: 100%;
	  position: fixed;
	  height: 80px;
	  padding-top: 0px;
	  top: 0;
	  left: 0;
	  z-index: 999;
	  background: #fff;
	}
	.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%;
	  padding-top: 5px;
	}
	.my-navbar .header-logo.mobile-logo {
	  display: block !important;
	  text-align: left !important;
	  margin: 0;
	}
	.my-navbar .header-logo.mobile-logo img.img-fluid {
	  width: 25%;
	}
	.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;
	  overflow: auto;
	}
	.main-header .navbar-collapse.show {
	  transform: translateX(0px);
	  transition: 0.3s;
	}
	.main-header a.nav-link {
	  font-size: 10px;
	  padding: 20px 20px;
	  margin: 10px 0px;
	  display: inline-block;
	}
	.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 .navbar-collapse ul ul.dropdown-menu{
	    /*height:100px;*/
	    overflow:scroll;
	}
	footer.footer-section li.foot-add p {
        font-size: 12px;
    }
  }
  
  .my-navbar button.navbar-toggler.collapsed span.navbar-toggler-icon {
	background-image: url(/images/menubar.png);
    border: 1px solid #000;
    border-radius: 5px;
	}
	
  .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: 12px;
	}
	.my-navbar .navbar-collapse ul ul.dropdown-menu a {
	  color: #fff !important;
	  font-size: 12px;
	}
	.main-header li.nav-item{
	    padding:0px 12px;
	}
  }
  
  /*end header css*/
  
  /* ===============================
	  banner css
  =============================== */
  
  section.banner-section {
	background-size: 100% 100% !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	}
  section.banner-section .bannermain {
	position: relative;
  }
  .banner_txt {
	text-align: center;
  }
  .banner_txt h2.text3 {
	color: var(--color1);
	font-family: Paytone One !important;
	font-size: 80px;
	font-weight: 400;
	line-height: 100px;
	position: relative;
	text-transform: capitalize;
  }
  .banner_txt p.text4 {
	color: #FFF;
	text-align: center;
	font-feature-settings: 'clig' off, 'liga' off;
	font-family: Manrope !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 70px; /* 150% */
	text-transform: capitalize;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	}
  .btn-bnnr {
	display: inline-block;
	margin-top: 10px;
	}
  .btn-bnnr a {
	color: #fff;
	text-align: center;
	font-family: Manrope !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: 10px; /* 100% */
	text-transform: capitalize;
	border-radius: 34.5px;
	background: var(--color1);
	padding: 9px;
	}
  .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: var(--color1);
  }
  
  .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%;
  }
  .banner-slider .caption {
    padding-top: 250px;
}
.banner-content h2 {
    color: var(--text-color-07, #FFF);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald !important;
    font-size: 55px;
    font-style: normal;
    font-weight: 800;
    line-height: 60px; /* 33.333% */
    text-transform: uppercase;
}

.banner-slider .owl-dots {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
  width: 100%;
  right: 0;
}

.banner-slider .owl-dots .owl-dot {
  border-radius: 50%;
  border: 3px solid #D9D9D9;
  margin: 10px;
  padding: 3px;
  display: inline-block;
  background: #D9D9D9;
}
.banner-slider .owl-dots .owl-dot.active {
  border: 3px solid var(--color1);
  background: var(--color1);
}
.banner-slider .owl-dots .owl-dot.active span {
  background: #ffffff;
}
.bannermain .owl-nav.disabled {
    position: absolute;
    width: 100%;
    display: block !important;
    bottom: 50%;
}
.bannermain .owl-prev {
    height: 120px;
    line-height: 0;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.5s;
    font-size: 18px;
    left: 30px;
    width: 100px;
    background-position: center center;
    border: 1px solid #ccc;
    background: url(/images/banner-left-arrow.png);
    background-repeat: no-repeat;
    font-size: 0;
    border: unset;
}
.bannermain .owl-next {
    height: 120px !important;
    line-height: 0;
    background-repeat: no-repeat;
    position: absolute;
    background-position: center;
    font-size: 18px;
    transition: 0.5s;
    right: 30px;
    border: 1px solid #ccc;
    width: 100px !important;
    background: url(/images/banner-right-arrow.png);
    background-repeat: no-repeat;
    font-size: 0;
    border: unset;
}
.bannermain .caption2 {
    max-width: 80%;
    text-align: center;
    margin: auto;
}
  /* banner product category */
  
  /*banner css for mobile*/
  @media (max-width: 767px) {
	section.banner-section {
	  position: relative;
	  height: 200px !important;
	  padding-top: 0px !important;
	}
  
	.banner_txt {
	  padding: 30px 0px 50px !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: normal !important;
	  margin-bottom: 0px !important;
	  /* letter-spacing: 1px; */
	  -webkit-line-clamp: 2;
	}
	.btn-bnnr {
	  margin-top: 0px !important;
	}
	.btn-bnnr a {
	  font-size: 10px !important;
	  padding: 5px 10px !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;
	}
	.banner-slider .caption{
	    padding-top:10px;
	}
	.banner-content h2{
	    font-size: 14px;
	    line-height: 22px;
	}
	.bannermain .owl-nav.disabled{
        display:none !important;
    }
    .banner-slider .owl-dots{
        bottom:0;
    }
    .banner-slider .owl-dots .owl-dot{
        padding:2px;
    }
    
  }
  
  /*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: 340px !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: 16px !important;
	  line-height: 25px !important;
	  margin-bottom: 10px !important;
	  letter-spacing: 1px;
	}
	.btn-bnnr {
	  margin-top: 0px !important;
	}
	.btn-bnnr a {
	  font-size: 16px !important;
	  padding: 7px 15px !important;
	}
	.banner-img {
	  margin-top: 10px !important;
	  margin-bottom: 10px !important;
	  text-align: center;
	}
  
	section.banner-section .tb {
	  display: none;
	}
	.banner-slider .caption{
	    padding-top: 60px;
	}
	.banner-content h2{
	    font-size: 35px;
	    line-height: 40px;
	}
    .bannermain .owl-nav.disabled{
        display:none !important;
    }
  }
  
  /*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: 60px;
	}
	.btn-bnnr a {
	  font-size: 18px;
	}

  }
  /* ===============================
	  end banner css
  =============================== */
  
  /* ===============================
	  popular product css
  =============================== */
  section.product-section {
	padding: 30px 40px;
	px; */
	}
  .product-section .sub-heading,
  .product-section .defalt-heading {
	text-align: center;
	position: relative;
  }
  .product-section .main-div:after {
	content: "";
	background: url(/images/single-prod-bg.png);
	position: absolute;
	background-size: 100% 100% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	bottom: 0;
	left: 0;
	height: 260px;
	width: 100%;
	z-index: -1;
	display:none;
  }
  .product-section .main-div {
	margin-top: 10px;
	z-index: 2;
	position: relative;
	}
  .product-section .product-content {
	padding: 10px 20px;
	text-align: center;
	}
  .product-section .product-list {
	/* width: 300px; */
	height: 300px;
	margin: auto;
	position: relative;
	overflow: hidden;
	background-color: #cccccc59;
	}
  .product-section .product-list img.img-fluid {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
	overflow: hidden;
	}
  .product-section .product-url a {
	position: relative;
	padding-top: 20px;
	padding-bottom: 3px;
	color: #242424;
	text-align: center;
	font-family: Oswald;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
	transition:0.3s ease;
	}
  .product-section .product-url a:before {
	content: "";
	position: absolute;
	top: 0;
    left: 0;
    margin: auto;
    right: 0;
	width: 120px;
	height: 2px;
	background-color: #59b665;
	display:none;
  }
  .product-section .product-txt p {
	color: #343434;
	font-family: Nunito Sans !important;
	font-size: 13px;
	font-weight: 400;
	line-height: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  .product-section .product-url-main .view-details a {
	color: #fff;
	background: var(--color1);
	font-family: Manrope !important;
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	padding: 10px 20px;
	border-radius: 60px;
  }
  .prod-bg-img_2 {
	margin-top: 70px;
  }
  .single-prod-main-div:hover {
    /*background: var(--color1);*/
    transition:0.5s;
}

.single-prod-main-div {
    padding-top: 10px;
}
.product-section .owl-nav.disabled {
    position: absolute;
    width: 100%;
    display: block !important;
    bottom: 60%;
}


.product-section .owl-prev {
    height: 40px;
    line-height: 0;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.5s;
    font-size: 18px;
    left: -55px;
    width: 40px;
    background-position: center center;
    border: 1px solid #ccc;
    background: url(/images/banner-left-arrow.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-size: 0;
    border: unset;
}
.product-section .owl-next {
    height: 40px !important;
    line-height: 0;
    background-repeat: no-repeat;
    position: absolute;
    background-position: center;
    font-size: 18px;
    transition: 0.5s;
    right: -55px;
    border: 1px solid #ccc;
    width: 40px !important;
    background: url(/images/banner-right-arrow.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-size: 0;
    border: unset;
}
.product-section .main-div:hover .product-url a {
    color: var(--color1);
    transition:0.3s ease;
}
.product-head {
    text-align: center;
    position: relative;
    padding: 40px;
}

.product-head h4 {
    color: var(--color1);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
    text-transform: capitalize;
}

.product-head h2 {
    color: #283749;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 75px; /* 125% */
    text-transform: capitalize;
}
  
  /*product css for mobile*/
  @media (max-width: 767px) {
	.product-section {
	  padding-bottom: 0 !important;
	  padding-top: 30px !important;
	}
	.main-div {
	  margin-top: 0px !important;
	}
	.product-content {
	  padding: 10px !important;
	}
	.product-url a {
	  font-size: 10px;
	}
	body .product-list {
	  width: 200px !important;
	  height: 200px !important;
	  border: 2px solid var(--color1) !important;
	}
	.product-section .main-div:after {
	  max-width: 100% !important;
	  margin: 0 auto !important;
	  height: 180px;
	}
	.product-section .product-url a {
	  font-size: 14px !important;
	  line-height: 30px !important;
	}
	.product-section .product-url a:before {
	  width: 80px !important;
	  /*left: 36% !important;*/
	}
  
	.product-url,
	.product-url-main {
	  text-align: center;
	  margin-top: 0px !important;
	}
	.product-txt p {
	  font-size: 8px !important;
	  margin-bottom: 0px !important;
	}
	.product-url-main .view-details a {
	  font-size: 8px !important;
	  padding: 5px 15px !important;
	}
	.product-url-main {
	  margin-bottom: 20px !important;
	}
	.all-prod-btn {
	  text-align: center;
	  margin-top: 30px;
	}
	.all-prod-btn a {
	  font-size: 13px;
	  padding: 5px 20px;
	}
	.prod-bg-img_2 {
	  margin-top: 20px !important;
	}
	.product-section .owl-nav.disabled {
    display: none !important;
    }
    .product-head {

    padding:0px;
    }
    .product-head h4 {
        font-size: 16px;
    }
    .product-head h2 {
        font-size: 20px;
        line-height: 22px; /* 125% */
    }
  }
  
  /*product css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	.product-section {
	  padding-bottom: 30px !important;
	  padding-top: 30px !important;
	}
	.product-section .product-list {
	  /* width: 200px !important; */
	  height: 200px !important;
	  border: 2px solid var(--color1) !important;
	}
	.product-section .product-content {
	  padding: 20px 25px !important;
	}
	.product-section .product-url a:before {
	  /*left: 20% !important;*/
	  width: 100px !important;
	}
	.product-url a {
	  font-size: 15px !important;
	  line-height: 30px !important;
	}
	.product-url-main .view-details a {
	  font-size: 13px !important;
	  padding: 7px 15px !important;
	}
	.product-section .main-div:after {
	  height: 180px !important;
	}
	.prod-bg-img_2 {
	  margin-top: 30px !important;
	}
	.product-section .owl-nav.disabled {
    display: none !important;
    }
     .product-head {

    padding:0px;
    }
    .product-head h4 {
        font-size: 22px;
    }
    .product-head h2 {
        font-size: 40px;
        line-height: 50px; /* 125% */
    }
  }
  
  /*product css for laptop*/
  @media (min-width: 993px) and (max-width: 1024px) {
	.product-url a {
	  font-size: 13px;
	}
	.product-url-main .view-details a {
	  font-size: 13px;
	}
	.all-prod-btn a {
	  font-size: 18px;
	}
	.product-section .owl-nav.disabled{
	    display:none;
	}
  }
  
  /* ===============================
	  end popular product 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: var(--color1);
	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: var(--color1);
	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: var(--color1);
	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: 30px 40px;
	background-size: 100% 100% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	}
  .inner-testimonial {
    position: relative;
  }
  section.main-testimonial.zz .sub-heading h3 {
	color: #FFF;
	font-family: Roboto;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 129.188%; /* 31.005px */
	text-transform: capitalize;
  }
  section.main-testimonial.zz .default-heading h2 {
	color: var(--color1);
	font-family: Oswald;
	font-size: 55px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 66px */
	text-transform: uppercase;
  }
  section.main-testimonial.zz .default-heading h2:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 0;
	height: 2px;
	width: 120px;
	background: #fff;
	display:none;
  }
  section.main-testimonial.zz .cust-cust {
	padding-top: 50px;
  }
  section.main-testimonial.zz .text-caption-p p {
	color: #FFF;
	font-family: Nunito Sans;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px; /* 166.667% */
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
  }
  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: #FFF;
	font-family: Nunito Sans;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
  }
  section.main-testimonial.zz .testy h5 {
	color: #FFF;
	font-family: Nunito Sans;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
  }
  section.main-testimonial.zz .owl-nav,
  section.main-testimonial.zz .owl-dots {
	display: none !important;
  }
  .testimonial-video-content img {
    max-width: 100px;
}

.testimonial-video-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 25px;
    padding: 10px;
    margin: auto;
}
.testimonial-video-content h3 {
    color: #FFF;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
    text-transform: uppercase;
}
.testimonial-stars {
    display: inline-block;
}
  
  /*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-video-content h3{
	    font-size:16px;
	}
  }
  
  /*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;
	}
  }
  /* ===============================
	  end testimonial section css
  =============================== */
  
  /* ===============================
	  blogs section css
  =============================== */
  section.blog-section {
	padding: 70px 0px;
	position: relative;
  }
  section.blog-section .sub-heading,
  section.blog-section .defalt-heading {
	text-align: center;
  }
  section.blog-section .main-blog-div {
	padding: 20px;
	margin-top: 100px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  section.blog-section .blog-img {
	height: 250px;
	position: relative;
	border: solid 1px #cccccc8a;
	border-radius: 5px;
  }
  section.blog-section .blog-img img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
  }
  section.blog-section .blog-content .name-user {
	display: flex;
	align-items: center;
  }
  section.blog-section .blog-content .name-user p {
	margin-bottom: 0 !important;
	font-family: Paytone One;
	margin-left: 15px;
	padding-top: 10px;
	color: #5f5f5f;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
	text-transform: capitalize;
  }
  section.blog-section .blog-url {
	margin-top: 10px;
  }
  section.blog-section .blog-url a {
	color: #232323;
	font-family: Paytone One;
	font-size: 20px;
	font-weight: 400;
	line-height: 25px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
  }
  section.blog-section .blog-txt p {
	color: #4f4f4f;
	font-family: "Manrope" !important;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
  section.blog-section .view-details {
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  section.blog-section .blog-url-main .view-details a {
	color: #2f2f2f;
	font-family: "Manrope" !important;
	font-size: 17px;
	font-weight: 600;
	line-height: 25px;
  }
  
  section.blog-section .prod-bg-img_2 {
	margin-top: 70px;
  }
  
  /*BLOGS css for mobile*/
  @media (max-width: 767px) {
	section.blog-section {
	  padding: 30px 0px !important;
	}
	section.blog-section .main-blog-div {
	  margin-top: 50px !important;
	}
	section.blog-section .blog-img {
	  height: 180px !important;
	}
	section.blog-section .blog-url a {
	  font-size: 16px !important;
	  line-height: 20px !important;
	}
	section.blog-section .blog-txt p {
	  font-size: 10px !important;
	  line-height: 18px !important;
	  margin: 5px 0px !important;
	}
	section.blog-section .blog-url-main .view-details a {
	  font-size: 14px !important;
	  line-height: 20px !important;
	}
	section.blog-section .blog-url-main .view-details a:last-child {
	  width: 35px;
	}
  }
  @media (min-width: 768px) and (max-width: 992px) {
	section.blog-section {
	  padding: 30px 0px !important;
	}
	section.blog-section .main-blog-div {
	  margin-top: 50px !important;
	  padding: 10px !important;
	}
	section.blog-section .blog-img {
	  height: 180px !important;
	}
	section.blog-section .blog-content .name-user p {
	  font-size: 11px !important;
	}
	section.blog-section .blog-url a {
	  font-size: 16px !important;
	  line-height: 20px !important;
	}
	section.blog-section .blog-txt p {
	  font-size: 12px !important;
	  line-height: 18px !important;
	  margin: 5px 0px !important;
	}
	section.blog-section .blog-url-main .view-details a {
	  font-size: 14px !important;
	  line-height: 20px !important;
	}
	section.blog-section .blog-url-main .view-details a:last-child {
	  width: 35px;
	}
  }
  
  /* end blogs section css */
  
/* ===============================
	  service section css
=============================== */   
section.service-section {
    padding: 30px 40px;
    margin: 20px;
    background: #ececec;
    border-radius: 10px;
}
.service-head {
    position: relative;
    padding: 30px 0px;
    text-align: center;
}

.service-head h4 {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
    text-transform: capitalize;
}

.service-head h2 {
    color: var(--color1);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald !important;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 75px; /* 125% */
    text-transform: capitalize;
}
.service-content1 h2 {
    color: var(--color1);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald !important;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 75px;
    text-transform: capitalize;
}

.service-content1 p {
    color: #FFF;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope !important;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
}

.service-content2 h2 {
    color: var(--color1);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 75px; 
    text-transform: capitalize;
}

.service-content2 p {
    color: #FFF;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope !important;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
}
.service-btn {
    text-align: center;
}

.service-btn a {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Urbanist;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 120% */
    text-transform: capitalize;
    border-radius: 13px 13px 0px 0px;
    background: var(--color1);
    padding: 10px;
    display: inline-block;
    margin: 10px;
}
.service-img1 {
    display: inline-block;
    max-width: 20%;
    float: left;
}

.service-sec-1 {
    max-width: 100%;
    display: inline;
}

.service-content1 {
    max-width: 80%;
    float: right;
}

.service-img2 {
    max-width: 20%;
    display: inline-block;
}

.service-content2 {
    max-width: 80%;
    display: inline-block;
    float: right;
}

 @media (max-width: 767px){
     section.service-section{
         padding:0px;
     }
     .service-head h2{
         font-size:20px;
         line-height:22px;
     }
     .service-btn a{
         font-size:14px;
         padding: 0px;
         border-radius: 13px 13px 0px 0px;
         width: 50%;
     }
     .service-head h4{
         font-size:16px;
     }
     .service-content1 h2{
          font-size:20px;
         line-height:22px;
     }
     .service-content2 h2{
          font-size:20px;
         line-height:22px;
     }
     .service-content1 p{
          font-size:13px;
     }
     .service-content2 p{
          font-size:13px;
     }
     .service-content1{
         float:unset;
         max-width:100%;
     }
     .service-img1{
         max-width:100%;
         float:unset;
     }
     .service-content2{
         float:unset;
         max-width:100%;
     }
     .service-img2{
         max-width:100%;
         float:unset;
     }
 }

@media (min-width: 768px) and (max-width: 992px) {
      .service-head h2{
         font-size:40px;
         line-height:50px;
     }
     .service-btn a{
         font-size:16px;
         padding: 0px;
         border-radius: 13px 13px 0px 0px;
         width: 50%;
     }
     .service-head h4{
         font-size:16px;
     }
     .service-content1 h2{
          font-size:40px;
         line-height:50px;
     }
     .service-content2 h2{
          font-size:40px;
         line-height:50px;
     }
     .service-content1 p{
          font-size:16px;
     }
     .service-content2 p{
          font-size:16px;
     }
          .service-content1{
         float:unset;
         max-width:100%;
     }
     .service-img1{
         max-width:100%;
         float:unset;
     }
     .service-content2{
         float:unset;
         max-width:100%;
     }
     .service-img2{
         max-width:100%;
         float:unset;
     }
}


@media (min-width: 993px) and (max-width: 1024px) {
    
}

 /* end service section css */
 
 
/* ===============================
	  category section css
=============================== */ 
.category-content {
    position: relative;
    text-align: center;
    padding: 10px;
} 
.category-img {
    position: relative;
    height: 350px;
    width: 100%;
}

.category-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
section.categories {
    padding: 30px 40px;
}

.categories-head {
    text-align: center;
}

.categories-head h4 {
    color: #040404;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
    text-transform: capitalize;
}

.categories-head h2 {
    color: var(--color1);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 75px; /* 125% */
    text-transform: capitalize;
}
.category-txt h3 {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 100% */
    text-transform: capitalize;
    background: #161616;
    padding: 10px;
     opacity: 1;
    transition: 0.5s;
}
.div-content {
    position: absolute;
    bottom: 80px;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.5s;
    opacity: 0;
    background: #fff;
    padding: 10px;
    width: 90%;
    height: 200px;
    border: 0.5px solid var(--color1);
}

.category-content:hover .div-content {
    opacity: 1;
    transition: 0.5s;
}
.category-content:hover .category-txt h3 {
    opacity: 0;
    transition: 0.5s;
}
.div-content a {
    color: var(--color1);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
    text-transform: capitalize;
}
.div-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 
@media (max-width: 767px){
     .categories-head h2{
         font-size:20px;
         line-height:22px;
     }
     section.categories{
         padding:0px;
     }
     .categories-head h4{
         font-size:16px;
     }
     .category-txt h3{
         font-size:16px;
     }
 }

@media (min-width: 768px) and (max-width: 992px) {
       .categories-head h2{
         font-size:20px;
         line-height:22px;
     }
     section.categories{
         padding:0px;
     }
     .categories-head h4{
         font-size:16px;
     }
     .category-txt h3{
         font-size:16px;
     }
     .category-img{
         height:200px;
     }
     .div-content{
         width: 80%;
         height: 130px;
     }
     .div-content h3 {
    font-size: 14px;
}

.div-content p {
    font-size: 10px;
}

.div-content a {
    font-size: 10px;
}
}


@media (min-width: 993px) and (max-width: 1024px) {
    
}

 /* end service section css */
 
 
/* ===============================
	  consulting section css
=============================== */  
section.consulting-section {
    padding: 30px 40px;
}
.consulting-head {
    text-align: center;
    padding: 30px 0px;
    position: relative;
}

.consulting-head h2 {
    color: #222;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 75px; /* 125% */
    text-transform: capitalize;
}
.consulting-part2 {
    position: relative;
    margin:10px;
}

.consulting-part2-content {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}

.consulting-part2-content h2 {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Urbanist;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px; /* 120% */
    text-transform: capitalize;
}

.consulting-part2-content a {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 100% */
    text-transform: capitalize;
    border-radius: 34.5px;
    background: var(--color1);
    padding: 10px;
    display: inline-block;
}
.consult {
    max-width: 100%;
    margin: 15px;
    padding: 30px;
}

.consult img.img-fluid {
    max-width: 30%;
}

.consult-cont {
    max-width: 70%;
    float: right;
    padding-top: 12px;
}


 @media (max-width: 767px){
     .consulting-head h2{
         font-size: 20px;
         line-height: 22px;
     }
     section.consulting-section{
         padding:0px;
     }
     .consult{
         padding:0px;
         margin:0px;
         text-align:center;
     }
     .consult img.img-fluid{
         max-width:100%;
     }
     .consult-cont{
        max-width:100%;
        float:unset;
     }
     .consulting-part2-content h2{
         font-size: 20px;
         line-height: 22px;
     }
     .consulting-part2-content a{
          font-size: 13px;
     }
     .consulting-part2-content{
         top:32%;
     }
 }

@media (min-width: 768px) and (max-width: 992px) {
         .consulting-head h2{
         font-size: 40px;
         line-height: 50px;
     }
     section.consulting-section{
         padding:0px;
     }
     .consult{
         padding:0px;
         margin:0px;
         text-align:center;
     }
    
   
     .consulting-part2-content h2{
         font-size: 40px;
         line-height: 50px;
     }
     .consulting-part2-content a{
          font-size: 16px;
     }
     .consulting-part2{
         text-align:center;
     }
      .consult-cont{
        max-width:100%;
        float:unset;
     }
}


@media (min-width: 993px) and (max-width: 1024px) {
    .consult{
        padding:0px;
    }
}


 /* end consulting section css */



/* ===============================
	  brands section css
=============================== */
  
  section.brands {
    padding: 30px 40px;
    position: relative;
}
.brands-head {
    text-align: center;
}

.brands-head h2 {
    color: #283749;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 75px; /* 125% */
    text-transform: capitalize;
    padding: 30px 0px;
}

.brand-img {
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.brand-img img {
    height: 150px;
    width: 150px;
    margin: auto;
}
.brand-img:hover {
    transform: scale(1.08);
    transition: 0.3s ease !important;
}

 @media (max-width: 767px){
     .brands-head h2{
         font-size:20px;
         line-height:22px;
     }
     section.brands{
         padding:0px;
     }
 }

@media (min-width: 768px) and (max-width: 992px) {
      .brands-head h2{
         font-size:20px;
         line-height:22px;
     }
     section.brands{
         padding:0px;
     }
     .testimonial-video-content h3{
         font-size:30px;
         line-height:30px;
     }
}


@media (min-width: 993px) and (max-width: 1024px) {
    
}


 /* end brands section css */



  /*footer css*/
  
  footer.footer-section {
	background: #1f1f1f;
	background-image: url(/images/footer-bg.jpg);
	}
  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 {
	margin: 15px;
	padding: 5px;
	position: relative;
	background: #1f1f1f;
	margin-right: 20px;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  footer.footer-section .f-social-icon ul.main-social-list li:hover {
	background: var(--color1);
	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: var(--color1);
	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;
  }
  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 30px;
	position: relative;
  }
  footer.footer-section .footer-widgets:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #cccccc70;
	display: none;
	}
  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: #ccc;
	font-family: "Manrope";
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	/* padding-right: 30px; */
	margin-top: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
  }
  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: #ccc;
	font-family: Manrope;
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	line-height: 26px;
	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: 15px;
	}
  footer.footer-section .f-recent-post .f-post h2 {
	color: #fff;
	font-family: Urbanist;
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
	text-transform: capitalize;
  }
  footer.footer-section .f-recent-post .f-recent {
	display: flex;
	align-items: center;
	margin: 30px 0px;
  }
  footer.footer-section .f-details-wrapper h3 {
	color: #ccc;
	font-family: Manrope;
	font-size: 15px;
	font-weight: 500;
	line-height: 10px;
	margin: 0;
	text-transform: capitalize;
	}
  
  .footer-botm {
	padding: 15px 0px;
	border-top: 1px solid #cccccc70;
  }
  .footer-botm p.asdas {
	margin: 0px;
	color: #fff;
	text-align: center;
	font-family: Manrope;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	text-transform: capitalize;
  }
  .footer-botm p.asdas a {
	color: var(--color2);
	position: relative;
	margin-right: 10px;
	}
  .footer-botm p.asdas a:first-child:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: #fff;
	right: -7px;
  }
  footer.footer-section .footer-widgets:first-child:before{
    display:none;
}
  /*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;
	}
	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: 15px !important;
	  line-height: 20px !important;
	}
	footer.footer-section .f-recent-post .f-recent {
	  margin: 10px 0px !important;
	}
	.f-details-wrapper h3 {
	  font-size: 10px !important;
	  line-height: 15px !important;
	}
	.footer-botm p.asdas {
	  font-size: 8px !important;
	  line-height: 12px !important;
	}
  }
  
  /*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;
	}
  }
  /*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;
	display: flex;
	align-items: center;
	}
  
  .bread_crumb a {
	color: #000;
	font-weight: 500;
	font-size: 12px;
	}
  
  .innercaption h1{
    display: none !important;
  }
  
   @media (max-width: 992px) {
       .bread_crumb {
            font-size: 10px;
        }
        
        .bread_crumb a {
            font-size: 10px;
        }
        
        section.service-section .ser-head p {
            font-size: 13px !important;
        }
        
        section.service-section .service-inner .ser-content h3 {
            font-size: 18px !important;
        }
        
        section.service-section .service-inner .ser-content p {
            font-size: 13px !important;
        } 
        
        section.service-section {
            padding: 20px 0 !important;
            margin: 10px !important;
        }
        
        section.service-section .service-sec-img {
            text-align: center;
            margin-bottom: 30px;
        }
        
        ul.dropdown-menu.sub-dropdown-menu.sub-child {
            display: block;
        }
   }
  
  /* end product page bread crum css*/
  
  
  
  
  /*about section*/
  section.about-section {
	position: relative;
	padding: 30px 40px;
	}
  .about-content {
    padding: 0px 50px;
}
  section.about-section .defalt-heading h1 {
	color: #131313;
	font-family: Paytone One;
	font-size: 48px;
	font-weight: 400;
	display: inline-block;
	line-height: 60px;
	text-transform: capitalize;
	position: relative;
  }
  section.about-section .about-ccontent p {
	color: #646464;
	font-family: "Manrope";
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
  }
  .about-image {
    float: right;
  }
  section.about-section {
    position: relative;
}

section.about-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: 100%;
    z-index: -1;
    background: #EDEDED;
}
.about-content h4 {
    color: var(--color1);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 150% */
    text-transform: capitalize;
}

.about-content h2 {
    color: #283749;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Oswald;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 75px; /* 125% */
    text-transform: capitalize;
}

.about-content p {
    color: #252525;
    font-feature-settings: 'clig' off, 'liga' off;

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

.about-btn a {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 100% */
    text-transform: capitalize;
    border-radius: 34.5px;
    background: var(--color1);
    padding: 10px;
    display: inline-block;
}
.about-img {
    position: relative;
    padding: 10px 30px;
    text-align: center;
}
  
  /*about css for mobile*/
  @media (max-width: 767px) {
	section.about-section {
	  padding: 30px 0px !important;
	}
	section.about-section .defalt-heading h1 {
	  font-size: 20px !important;
	  line-height: 20px !important;
	}
	section.about-section .about-ccontent p {
	  font-size: 10px !important;
	  line-height: 20px !important;
	}
	.about-content h2{
	    font-size: 20px;
	    line-height: 22px;
	}
	section.about-section:before{
	    width:100%;
	}
	.about-img{
	    padding:0px;
	}
	.about-content{
	    padding: 0px 0px 20px;
	}
	.about-content h4{
	    font-size:16px;
	}
	.about-content p{
	     font-size:13px;
	}
	.about-btn a{
	    font-size:13px;
	}
	.prod_desc .ife-detail-decorate-table {
    width: 100%;
    overflow: auto;
}
.prod_desc table.has-title.all.magic-4 tbody {
    width: 100%;
}
.prod_desc table.has-title.all.magic-4 tbody tr, .prod_desc table.has-title.all.magic-4 tbody td {
    padding: 5px !important;
}
  }
  /*about us css for tab*/
  @media (min-width: 768px) and (max-width: 992px) {
	section.about-section {
	  padding: 0px 0px !important;
	}
	section.about-section .defalt-heading h1 {
	  font-size: 32px !important;
	  line-height: 35px !important;
	}
	section.about-section .about-ccontent p {
	  font-size: 15px !important;
	  line-height: 22px !important;
	}
	.about-content h2{
	    font-size: 40px;
	    line-height: 50px;
	}
	.about-content{
	    padding:10px;
	}
	.about-content h4{
	    font-size:16px;
	}
	.about-content p{
	     font-size:16px;
	}
	.about-btn a{
	    font-size:16px;
	}
	.prod_desc .ife-detail-decorate-table {
        width: 100%;
        overflow: auto;
    }
    .prod_desc table.has-title.all.magic-4 tbody {
        width: 100%;
    }
    .prod_desc table.has-title.all.magic-4 tbody tr, .prod_desc table.has-title.all.magic-4 tbody td {
        padding: 5px !important;
    }
    section.service-section {
        padding: 20px 60px !important;
    }
  }
  
  /*about css for tab*/
  @media (min-width: 993px) and (max-width: 1024px) {
	.about-ccontent h1 {
	  font-size: 38px;
	}
	section.about-section .about-ccontent p {
	  font-size: 17px;
	}
	.about-btn a {
	  font-size: 20px;
	}
		.about-content h2{
	    font-size: 40px;
	    line-height: 50px;
	}
	.about-content{
	    padding:10px;
	}
	.about-content h4{
	    font-size:16px;
	}
	.about-content p{
	     font-size:16px;
	}
  }
  
  /*end about section*/
  
  .footer-main-contact .h-icon img {
    filter: brightness(15);
}


ul.pagination {flex-wrap: wrap;align-items: center;justify-content: center;}

.page-item.active .page-link {
    background: var(--color1);
    border-color: var(--color1);
}

.page-link {
    color: var(--color1);
}

.header-logo {
    max-width: 100%;
    margin: auto;
    max-width: 60%;
}

section.service-section .service-inner .ser-inner-img {
    text-align: center;
    margin-bottom: 15px;
}

section.service-section .service-inner .ser-content h3 {
    font-size: 20px;
    text-align: center;
}

section.service-section .ser-head p {
    font-size: 15px;
}

section.service-section .service-inner .ser-content p {
    font-size: 15px;
}

.social-icons ul.main-social-list {
    display: flex;
    padding: 0;
}

.social-icons ul.main-social-list li {
    margin-right: 15px;
}

section.service-section .service-inner .ser-inner-img img {
    filter: brightness(0);
}

ul.dropdown-menu.sub-dropdown-menu.sub-child.show {
    top: unset;
    bottom: unset;
    right: -100px;
}