@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --theme-color: #D42427;
  --theme-text-color: #000;
  --bg-dark-color: #1c3141;
  --regular-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 23px;
  color: var(--regular-color);
  font-family: "Poppins", sans-serif;
}
/* .container {
  max-width: 1200px;
} */

/* ========common css start ========*/

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.ptb60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.pt60 {
  padding-top: 60px;
  
}

.pb80 {
  padding-bottom:90px;
  
}


.pb60 {
  padding-bottom: 60px;
}



/* common header start */
h1 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 38px;
  line-height: 44px;
  color: var(--theme-text-color);
}

h2 {
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 44px;
  font-size: 36px;
  color: var(--theme-text-color);
}

h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  color: var(--theme-text-color);
}

h4 {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--theme-text-color);
}

h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size:26px;
  line-height: 28px;
  color: var(--theme-text-color);
}

h6 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: var(--theme-text-color);
}

p {
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

/* common header end */


/* common btn start */
.common-btn {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 15px;
  padding: 6px 20px;
  transition: 0.5s ease-in-out;
  display: inline-block;
  border-radius: 0;
  font-weight: 500;
  position: relative;
  z-index: 0;
  
}

.common-btn:hover {
  background-color: #1c3141;
  color: #fff;
}

/* common btn end */

/* section title start */
.section-title {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-title h6 {
  padding: 8px 15px;
  display: inline-block;
  position: relative;
  color: var(--theme-color);
  font-size: 18px;
  margin-bottom: 30px;
}

.section-title h6:before {
  content: '';
  position: absolute;
  background-color: var(--theme-color);
  opacity: 0.1;
  border-radius: 25px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.section-title h2 {
  text-align: center;
  margin-bottom: 10px;
  text-transform: capitalize;
}

/* section title emd */

/* bg  start */
.bg-light {
  background-color: #f1f6f9 !important;
}

.bg-dark {
  background-color: var(--theme-text-color);
}

/* bg end */

/*======== common css end ========*/



/* ==========================home page css start===========================*/








/*================= header start =================*/

/* sticky header start */
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

.sticky {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  transition: ease-in-out all 0.5s;
  animation: smoothScroll 1s forwards;
  box-shadow: 0px 2px 9px rgb(0 0 0 / 10%);
  background-color: #fff;
  margin: 0;
}

.main-header.sticky {
  padding: 8px 0;
}

.main-header.sticky .header-logo img {
  height: 45px;
}

/* sticky header end */

/* -----top header start -----*/


/* top header left */
.top-header {
  background-color: var(--bg-dark-color);
  padding: 10px 0;
}

.top-header .top-header-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.top-header-left ul {
  display: flex;
}

.top-header-left ul li {
  margin-right: 30px;
}

.top-header-left ul li:last-child {
  margin-right: 0px;
}

.top-header-left ul li a {
  color: #fff;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
}

.top-header-left ul li a:hover {
  color: var(--theme-color)
}

.top-header-left ul li a i {
  margin-right: 8px;
}

/* top header left end */

/* top header right start */
.top-header-right .header-btn:hover {
  background-color: #fff;
  color: var(--theme-text-color);
}

/* top header right end */


/*----- top header end -----*/

/* menu bar css start */
.menu-bar{display: none;}
.bg-mb-menu{display: none;}
.menu-close{display: none;}
.mobile-menu-open .bg-mb-menu {
  height: 100vh;
  width: 100%;
  background: #000;
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  transition: 0.5s ease-in-out;
}
/* menu bar css end */


/* ------------main- header start ------------*/
.main-header {
  background-color: #fff;
}

.main-header .header-logo img {
  height: 55px;
}

/* navbar start */
.main-header {
  padding: 10px 0;
}

.main-header>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .navbar-menu ul {
  display: flex;
}

.main-header .navbar-menu ul li {
  margin-right: 40px;
}

.main-header .navbar-menu ul li:last-child {
  margin-right: 0;
}

.main-header .navbar-menu ul li a {
  color: var(--theme-text-color);
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  /* padding: 16px 0; */
  font-weight: 500;
}

.main-header .navbar-menu ul li.active a {
  color: var(--theme-color);
}

.main-header .navbar-menu ul li.active a:before {
  content: '';
  position: absolute;
  bottom: 0px;
  background-color: var(--theme-color);
  height: 2px;
  width: 100%;
  left: 0;
  transition: 0.5s ease-in-out;
}

.main-header .navbar-menu ul li a:before {
  content: '';
  position: absolute;
  bottom: 0;
  background-color: var(--theme-color);
  height: 2px;
  width: 0;
  left: 0;
  transition: 0.5s ease-in-out;
}

.main-header .navbar-menu ul li a:hover::before {
  width: 100%;
}

.main-header .navbar-menu ul li a:hover {
  color: var(--theme-color);
}

/* navbar end */


/* ------------main- header end ------------*/


/*================= header end =================*/

/* ===========home banner start=========== */
.home-banner-slider {
  overflow: hidden;
}

.home-banner-item {
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
  /*! padding: 130px 0; */
}

.home-banner-content {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.home-banner-content h2 {
  font-size: 60px;
  line-height: 66px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: capitalize;
}

.home-banner-content p {
  font-size: 18px;
  line-height: 28px;
}

.home-banner-content .banner-btn {
  padding: 14px 50px;
  font-size: 22px;
  margin-top: 20px;
  align-self: flex-start;
}

/* arrow start */
.home-banner-slider .slick-next {
  right: 30px;
}

.home-banner-slider .slick-prev {
  left: 30px;
}

.home-banner-slider .slick-prev,
.home-banner-slider .slick-next {
  background: var(--theme-color);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.home-banner-slider .slick-prev:hover,
.home-banner-slider .slick-next:hover {
  background-color: #fff;
  color: var(--theme-color);
}

.home-banner-slider .slick-prev:hover:before,
.home-banner-slider .slick-next:hover:before {
  color: var(--theme-color);
}

.home-banner-slider .slick-prev:before {
  content: "\f104";
  font-family: 'FontAwesome';
}

.home-banner-slider .slick-next:before {
  content: "\f105";
  font-family: 'FontAwesome';
}

.home-banner-slider .slick-next:before,
.home-banner-slider .slick-prev:before {
  font-size: 35px;
  color: #fff;
  opacity: 1;
  transition: 0.5s ease-in-out;
}

/* arrow start */

/*=========== home banner end ===========*/


/* ===========home about start========== */
.about-section{overflow: hidden;}
.about-section .container .row {
  align-items: center;
}

.about-section .about-right h6 {
  padding: 8px 15px;
  display: inline-block;
  font-size: 18px;
  color: var(--theme-color);
  position: relative;
  margin-bottom: 30px;
}

.about-section .about-right h6:before {
  content: '';
  position: absolute;
  background-color: var(--theme-color);
  opacity: 0.1;
  border-radius: 25px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.about-section .about-right h1 {
  margin-bottom: 20px;
}

.about-section .about-right h1 span {
  display: block;
  color: var(--theme-color);
}

.about-section .about-right p {
  margin-bottom: 20px;
  line-height: initial;
}

.about-section .about-right ul {
  color: var(--theme-text-color);
}

.about-section .about-right ul li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 15px;
  display: inline-block;
  color: var(--regular-color);
}

.about-section .about-right ul li:before {
  position: absolute;
  content: '';
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: var(--theme-text-color);
  top: 8px;

  left: 0;
}

.about-section .about-btn {
  margin-top: 20px;
}


/* ===========home about end========== */


/*======== product section start ========*/
.product-column-content {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .16));
  background-color: #fff;
  text-align: center;
  transition: 0.5s ease-in-out;
  overflow: hidden;
  margin-bottom: 30px;
}

.product-column-img {
  padding: 15px;
}

.product-column-content:hover .product-column-img img {
  transform: scale(1.1);
}

.product-column-img img {
  /*! height: 210px; */
  transition: 0.5s ease-in-out;
}

.product-column-text {
  border-top: 1px solid #eee;
  padding: 10px;
}

.product-column-text a h5 {
  color: var(--theme-text-color);
  transition: 0.5sm ease-in-out; font-size:20px;
}

.product-column-content:hover .product-column-text a h3 {
  color: var(--theme-color);
}

.product-column-text .common-btn {
  background-color: var(--bg-dark-color);
}

.product-column-text .common-btn:hover {
  background-color: var(--theme-color);
}


.product-view-btn {
  text-align: center;
  margin-top: 15px;
}

.product-view-btn .common-btn {
  padding: 15px 30px;
  font-size: 16px;
}

/*======== product section end ========*/


/*================= testmonial section start =================*/
.testmonial-section .section-title h2 span {
  color: var(--theme-color);
  display: block;
}

.testmonial-slider .testmonial-item {
  background-color: #fff;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 0 30px rgb(0 0 0 / 6%);
}

.testmonial-slider:before {
  content: "";
  background: #fff;
  position: absolute;
  bottom: -25px;
  left: 50px;
  right: 50px;
  top: 0;
  box-shadow: 0 0 30px rgb(0 0 0 / 6%);
  margin: auto;
}

.testmonial-slider blockquote {
  margin-bottom: 20px;
}

.testmonial-slider .testmonial-img img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid var(--bg-dark-color);
}

.testmonial-slider .testmonial-item .testmonial-text {
  margin-top: 20px;
}

.testmonial-slider .testmonial-item .testmonial-text p {
  padding: 0 140px;
  line-height: 26px;
}

.testmonial-slider .testmonial-item .testmonial-text h6 {
  margin: 20px 0 0;
}

/* aroww start */
.testmonial-slider .slick-next {
  right: -50px;
}

.testmonial-slider .slick-prev {
  left: -50px;
}

.testmonial-slider .slick-prev,
.testmonial-slider .slick-next {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  color: var(--theme-text-color);
  background-color: var(--bg-dark-color);
  transition: 0.5s ease-in-out;
}

.testmonial-slider .slick-prev:before {
  content: "\f104";
  font-family: 'FontAwesome';
}

.testmonial-slider .slick-next:before {
  content: "\f105";
  font-family: 'FontAwesome';
}

.testmonial-slider .slick-next:before,
.testmonial-slider .slick-prev:before {
  font-size: 35px;
  color: var(--theme-text-color);
  color: #fff;
}

.testmonial-slider .slick-prev:hover,
.testmonial-slider .slick-next:hover {
  background-color: var(--theme-color);
}

/* aroww end */

/*================= testmonial section end =================*/


/*========= clients logo section start =========*/
.section-clients-logo .section-title {
  text-align: center;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.section-clients-logo .section-title h2 {
  padding: 0px; margin: 0px;
}

.clients-logo-slider .client-logo-slider-img img {
  margin: 0 auto;
  filter: grayscale(1);
}

.clients-logo-slider .client-logo-slider-img img:hover {
  filter: grayscale(0);
}

.clients-logo-slider.slick-slider {
  margin: 0 -15px;
}

.clients-logo-slider .slick-slide {
  margin-right:10px;
  margin-left:10px;
  border: solid rgb(202, 202, 202) 1px;
  padding: 10px 0 10px 0;
}

/* .clients-logo-slider  .client-logo-slider-img {background-color: transparent;display: flex;align-items: center;justify-content: center;padding: 10px;} */


/* aroww start */
.clients-logo-slider {
  transition: 0.5s ease-in-out;
}

.clients-logo-slider .slick-next {
  right: 0;
}

.clients-logo-slider .slick-prev {
  left: -10px;
}

.clients-logo-slider .slick-prev,
.clients-logo-slider .slick-next {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  color: var(--theme-text-color);
  opacity: 0;
}

.clients-logo-slider:hover .slick-prev,
.clients-logo-slider:hover .slick-next {
  opacity: 1;
}

.clients-logo-slider .slick-prev:before {
  content: "\f104";
  font-family: 'FontAwesome';
}

.clients-logo-slider .slick-next:before {
  content: "\f105";
  font-family: 'FontAwesome';
}

.clients-logo-slider .slick-next:before,
.clients-logo-slider .slick-prev:before {
  font-size: 40px;
  color: var(--theme-text-color);
}

/* aroww end */

/*========= clients logo section end =========*/


/* contact form start */
.section-contact-form {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.section-contact-form .container {
  position: relative;
}

.section-contact-form:before {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.section-contact-form h2 {
  color: var(--theme-text-color);
  margin-bottom: 25px;
  font-size: 30px;
}

.section-contact-form .row {
  justify-content: center;
}

.section-contact-form .form-details {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .16));
}

.section-contact-form .form-details .form-group {
  margin-bottom: 20px;
}

.section-contact-form .form-details .form-group .form-control {
  border: 1px solid var(--regular-color);
  padding: 10px 15px;
  resize: none;
  color: var(--theme-text-color); font-size: 15px;
}

.section-contact-form .form-details .form-group .form-control::placeholder {
  color: var(--regular-color); font-size: 15px;
}

.section-contact-form .form-details .form-group .form-control:focus {
  box-shadow: none; font-size: 15px;
}

.section-contact-form .form-details .form-group textarea {
  min-height: 180px; font-size: 15px;
}

.contact-submit-btn .common-btn {
  margin: 0 auto;
  border: 1px solid var(--theme-color);
}

.contact-submit-btn {
  text-align: center;
}

.contact-submit-btn .common-btn:hover {
  background-color: var(--bg-dark-color);
  border: 1px solid var(--bg-dark-color);
}

/* contact form end */

/*========== footer start ==========*/

footer {
  background-color: var(--footer-bg);
  background: #1d3344;
  font-weight: 300;
  color: var(--white);
  position: relative;
}

/* footer:before {content: "";position: absolute;background: #29282d;top: 0;left: 0;bottom: 0;right: 0;opacity: .96;} */


/* topp ftr start */
.top-ftr .container {
  position: relative;
  padding-bottom: 45px;
  margin-bottom: 50px;
}

.top-ftr .container:before {
  content: "";
  bottom: 0;
  border-bottom: 1px solid #e5e5e5;
  position: absolute;
  left: 0;
  right: 0;
  opacity: .1;
}

.top-ftr {
  position: relative;
}

.ftr-info {
  text-align: center;
}

.ftr-info h3 {
  font-size: 20px;
  color: #fff;
  line-height: 22px;
  margin-top: 25px;
}

.ftr-info svg {
  fill: #fff;
  height: 50px;
}

.ftr-info ul li {
  color: #fff;
  font-size: 15px;
}

.ftr-info ul li a{
  color: #fff;
  font-size: 15px;
}

/* topp ftr end */

/* main ftr start */
.main-ftr {
  position: relative;
}

/* ftr logo start */
.ftr-logo .ftr-logo-img {
  margin-bottom: 0;
}

.ftr-logo .ftr-logo-img img {
  margin-bottom: 20px;
}

.ftr-logo-img p {
  color: #fff; font-size: 15px;
}

.ftr-logo .ftr-social-icon {
  text-align: center;
}

.ftr-logo .ftr-social-icon h6 {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
  margin-right: 10px;
}

.ftr-logo .ftr-social-icon ul {
  text-align: center;
}

.ftr-logo .ftr-social-icon li:not(:last-of-type) {
  margin-right: 5px;
  /*! display: inline-block; */
}

.ftr-logo .ftr-social-icon li a {
  background-color: var(--theme-color);
  color: #fff;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.5s ease-in-out;
  display: block;
}

.ftr-logo .ftr-social-icon li a:hover {
  background-color: #fff;
  color: var(--theme-color);
}

/* ftr logo emd */

/* ftr quick link start */
.main-ftr h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
}

.main-ftr h4:before {
  content: '';
  position: absolute;
  background-color: var(--theme-color);
  top: 30px;
  left: 0;
  height: 1px;
  width: 70px;
}

.main-ftr .ftr-list li:not(:last-child) {
  margin-bottom: 10px;
}

.main-ftr .ftr-list li {
  position: relative;
  padding-left: 20px;
}

.main-ftr .ftr-list li:before {
  position: absolute;
  content: '';
  background-color: #fff;
  top: 0;
  left: 0;
  height: 2px;
  width: 10px;
  top: 12px;

}

.main-ftr .ftr-list li a {
  color: #fff;
  transition: 0.5s ease-in-out; font-size: 15px;}

.main-ftr .ftr-list li a:hover {
  margin-left: 5px;
  color: var(--theme-color);
}

/* ftr quick link end */

/* ftr contact start */
.main-ftr .ftr-contact .ftr-list li a:hover {
  margin-left: 0;
}

.main-ftr .ftr-contact .ftr-list li a {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.main-ftr .ftr-contact .ftr-list li a i {
  position: absolute;
  top: 0;
  left: 0;
  top: 5px;
  font-size: 18px;
}

.main-ftr .ftr-contact .ftr-list li:not(:last-child) {
  padding-bottom: 10px;
}

/* ftr contact end */

/* ftr newsletter start */
.ftr-newsletter p {color: #fff; font-size: 15px;}
.ftr-newsletter .newsletter-input {display: flex;}

.ftr-newsletter .newsletter-input button {
  background-color: var(--theme-color);
  padding: 5px 15px;
  border: 1px solid var(--theme-color);
  transition: 0.5s ease-in-out;
}

.ftr-newsletter .newsletter-input button:hover {
  background-color: var(--theme-text-color);
  border: 1px solid var(--theme-text-color);
}

.ftr-newsletter .newsletter-input button svg {
  height: 20px;
  fill: #fff;
}

.ftr-newsletter .newsletter-input button:focus {
  outline: 0;
}

.ftr-newsletter .newsletter-input input {
  padding: 10px 15px;
  width: 100%;
  height: 100%;
}

.ftr-newsletter .newsletter-input input::placeholder {
  color: var(--regular-color);
}

.ftr-newsletter .newsletter-input input:focus {
  outline: 0;
}

/* ftr newsletter end */


/* copyright start */
.copyright {
  position: relative;
  color: #fff;
}

.copyright p {
  text-align: center;
  padding: 20px 0; font-size:14px;  font-weight: 300;
}

.copyright:before {
  position: absolute;
  background-color: #fff;
  opacity: 0.1;
  content: '';
  height: 1px;
  width: 100%;
}

/* .copy-right{text-align: center;padding: 20px 0;} */
/* copyright end */


/*========== footer end ==========*/


/* back to top btn start */
#top-btn {
  display: inline-block;
  background-color: var(--theme-color);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  border-radius: 50%;
}

#top-btn::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 25px;
  line-height: 44px;
  color: #fff;
}

#top-btn:hover {
  cursor: pointer;
  background-color: #1c3141;
}

#top-btn:active {
  background-color: #555;
}

#top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* back to top btn end */


/* ================home page css end======== ======== */



/* ======== ======== Product list page css start================ */
 /* ====== hero banner start =====*/
 .hero-banner{background-position: center;background-repeat: no-repeat;background-size: cover;position: relative;}
  .hero-banner::before{content: '';height: 100%;width: 100%;position: absolute;top: 0;left: 0;background: rgba(0,0,0,0.1);}
 .hero-banner-inner{position: relative;padding: 101px 0 99px;}
 .hero-banner-inner h1{font-weight: 700;color: #fff;margin-bottom: 0;filter: drop-shadow(0 0 5px rgba(0,0,0,0.43));}
 .breadcrumb-nav .breadcrumb li a{color: #fff;transition: 0.5s ease-in-out;}
 .breadcrumb-nav .breadcrumb li a:hover{color: var(--theme-color);}
 .breadcrumb-item+.breadcrumb-item::before{color: #fff;content: "\f105 ";font-family: 'FontAwesome';font-weight: 400;font-size: 18px;
 padding-right: 10px;}
 .breadcrumb-item+.breadcrumb-item{padding-left: 10px;}
 .breadcrumb-nav .breadcrumb{margin: 0;padding: 0 0 10px 0;}
 .breadcrumb-nav .breadcrumb li{font-size: 16px;color: #fff; text-transform: capitalize;}
 
  /*======  hero banner end ======*/


  /* ========= Product list page css start ========= */

/* left side bar start */

/* search input start */
.product-left-sidebar .product-grid-searh-box{display: flex;margin-bottom: 20px;}
.product-left-sidebar .product-grid-searh-box .form-control{border: 1px solid #cccccc;border-radius: 0;padding: 10px 20px;height: 44px;}
.product-left-sidebar .product-grid-searh-box .form-control:focus{box-shadow: none;}
.product-left-sidebar .product-grid-searh-box .form-control::placeholder{color: #666666;}
.product-left-sidebar .product-grid-searh-box button{padding: 10px 13px;border-right: 1px solid #cccccc;border-radius: 0;background-color: transparent;
border-top: 1px solid #ccc;border-bottom: 1px solid #ccc;color: var(--bg-dark-color);font-size: 20px;height: 44px;border-left: 0;}
/* search input start */

/* product-grid-range start */
.product-left-sidebar .product-grid-range-title{background-color: var(--bg-dark-color);padding: 16px 15px;/*! height: 43px; *//*! display: flex; */}
.product-left-sidebar .product-grid-range-title h3{color: #fff;font-size: 21px;font-weight: 600;margin: 0;line-height: 23px;font-family: 'Poppins', sans-serif;text-transform: uppercase;}
.product-left-sidebar .product-grid-range .product-grid-range-list{/*! filter: drop-shadow(0 0 5px rgba(0, 0, 0, .16)); */background-color: #fafafa;}
.product-left-sidebar .product-grid-range .product-grid-range-list ul{padding: 0;}
.product-left-sidebar .product-grid-range .product-grid-range-list .form-check{display: flex;align-items: center;padding: 0;margin-bottom: 7px;}
/* .product-left-sidebar .product-grid-range .product-grid-range-list .form-check{margin-bottom: 0;} */
/* .product-left-sidebar .product-grid-range .product-grid-range-list .form-check:last-of-type{margin-bottom: 0px;} */
.product-left-sidebar .product-grid-range .product-grid-range-list ul .form-check-input{border-radius: 0;height: 22px;width: 22px;border: 1px solid var(--bg-dark-color);position: relative;margin-top: 0;}
.product-left-sidebar .product-grid-range .product-grid-range-list .form-check-input:checked{background: var(--bg-dark-color);color: #fff;}
.product-left-sidebar .product-grid-range .product-grid-range-list .form-check-input:checked[type=checkbox]:after{content: "\f00c";position: absolute;font-family: 'FontAwesome';font-weight: 600;left: 50%;top: 50%;
transform: translate(-50%,-50%);font-size: 12px;}
.product-left-sidebar .product-grid-range .product-grid-range-list .form-check-input:focus{box-shadow: none;}
.product-left-sidebar .product-grid-range .product-grid-range-list .form-check label{font-size: 15px;padding-left: 15px;color: #000;}
/* product-grid-range end */

/* left side bar start */

/* right side bar start */

/* filter start */
.product-grid-right-detail .product-grid-top-filter{background-color: var(--bg-dark-color);padding:10px 20px;display: flex;justify-content: space-between;align-items: center;margin-bottom: 20px;}
.product-grid-right-detail .product-grid-top-filter .product-top-filter-icon{display: flex;line-height: 0;}
.product-top-filter-icon a.active{color: var(--theme-color) !important;}
.product-grid-right-detail .product-grid-top-filter .product-top-filter-icon a{font-size: 24px;margin-right: 15px;display: inline-block;color: #fff;}
.product-grid-right-detail .product-grid-top-filter .product-top-filter-icon .product-list-icon{margin-right: 0;color: #fff;}
.product-grid-right-detail .product-grid-top-filter .product-grid-top-filter-count label{padding-right: 9px;color: #fff;}
.product-grid-right-detail .product-grid-top-filter .product-grid-top-filter-count{display: flex;align-items: center;}
.product-grid-right-detail .product-grid-top-filter .product-grid-top-filter-count .form-select{border-radius: 0;border: 1px solid #cccccc;background-color: #fff;padding: 4px 27px 3px 10px;
  background-position: right .55rem center;background-image: url(../img/carret.png);background-size: 11px 6px;color: #6c6c6c;}
.product-grid-right-detail .product-grid-top-filter .product-grid-top-filter-count .form-select:focus{box-shadow: none;}
/* filter end */


/* product column start */
/* .product-grid-detail .row .col .product-grid-column{margin-bottom: 53px;} */
/* .product-grid-detail .row .col{display: flex;} */
.product-grid-detail .product-grid-column{filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .05));background-color: #ffffff;margin-bottom: 30px;border-radius: 20px;border: 1px solid #eee;}  
.product-grid-detail .product-grid-column-img{padding: 10px;overflow: hidden;}
.product-grid-detail .product-grid-column-img img{/*! height: 200px; */object-fit: cover;width: 100%;transition: 0.5s ease-in-out;}
.product-grid-detail .product-grid-column:hover .product-grid-column-img img{transform: scale(1.1);}

/* product content start */
.product-grid-detail .product-grid-column-content{text-align: center;padding: 10px;border-top: 1px solid #eee;}
.product-grid-detail .product-grid-column .product-grid-column-content h5{margin-bottom: 0px;transition: 0.5s ease-in-out;font-size: 14px; text-transform: capitalize; color: #1c3142;}
.product-grid-detail .product-grid-column:hover .product-grid-column-content h5{color: var(--theme-color);}
.product-grid-detail .product-grid-column .product-grid-column-content p{margin-bottom: 0px;}

.product-grid-detail  .product-grid-column .product-grid-column-content .product-column-btn{display: block;}
.product-grid-detail  .product-grid-column .product-grid-column-content .product-read-more-btn{background-color: transparent;color: #fff;
font-weight: 500;padding: 9px 23px;transform: translateY(50%);background-color: var(--bg-dark-color);}
.product-grid-detail  .product-grid-column:hover .product-grid-column-content .product-read-more-btn{background-color: var(--theme-color);}
/* product content start */

/* product column end */

/* pagination start */

.product-grid-detail .product-pagination {display: flex;justify-content: center;text-align: center;margin-top: 20px;}
.product-grid-detail .product-pagination li:not(:last-child){margin-right: 8px;}
.product-grid-detail .product-pagination .pagination li a{border-radius: 50%;border: 1px solid var(--bg-dark-color);color: #000;font-size: 16px;display: flex;
align-items: center;justify-content: center;transition: 0.5s ease-in-out;height: 50px;width: 50px;}
.product-grid-detail .product-pagination .pagination li a i{font-size: 28px;}
.product-grid-detail .product-pagination .pagination li a.current{background-color: var(--bg-dark-color);color: #fff;}
.product-grid-detail .product-pagination .pagination li a:hover{background-color: var(--theme-color);color: #fff;border-color: var(--theme-color);}
.product-grid-detail .product-pagination .pagination li a .icon-57{margin-right: 3px;}
/* pagination end */

/* right side bar end */


/* product list start */
 .product-list-right .product-grid-column{margin-bottom: 40px;}
.product-list-right .product-grid-detail .row .col-lg-4{width: 100%;max-width: 100%;}
/* .product-list-right .product-grid-top-filter .product-top-filter-icon a:last-child{color: #01bcab ;} */
.product-list-right .product-grid-column-img img{width: 250px;height: 100%;}
/* list column start */
.product-list-right .product-grid-detail .product-grid-column{display: flex;justify-content: center;align-items: center;margin-bottom: 40px;}
.product-list-right .product-grid-detail .product-grid-column-img{flex-shrink: 0;border-right: 1px solid #eee;}
.product-list-right  .product-grid-top-filter .product-top-filter-icon .product-list-icon{color: var(--theme-color);}

.product-list-right .product-grid-detail .product-grid-column-content{text-align: start;padding: 10px 150px 10px 40px;border-top: 0;display: flex;
flex-direction: column;height: 100%;}
.product-list-right .product-grid-detail .product-grid-column .product-grid-column-content p{display: block;}
/* .product-list-right .product-grid-detail .product-grid-column .product-grid-column-content h5{margin-bottom: 15px;} */
.product-list-right .product-grid-detail .product-grid-column .product-grid-column-content .product-column-btn{margin-top: 21px;}
.product-list-right .product-grid-detail .product-grid-column .product-grid-column-content .product-read-more-btn{transform: inherit;}
/* list column end */


/* ======== ======== Product list page css end================ */



/* ============product detail page start============= */

/* product details slider start */
.product-slider-nav-inner {padding:0px 30px;}
.product-slider-nav{margin-top: 15px;overflow: hidden; }
.product-slider-nav .product-slider-nav-inner .slick-list{margin: 0 -10px;}
.product-slider-nav .product-slider-nav-inner .slick-slide{padding: 0 5px;}
.product-slider-nav .product-slider-nav-inner .slick-slide img{aspect-ratio: 1;object-fit: cover;}
.product-slider-nav .product-slider-nav-inner .slick-slide.slick-active:first-child{margin-left: 0;}
.product-details-main .slick-prev,.product-details-main .slick-next,.related-product-sec .slick-prev,.related-product-sec .slick-next{font-size: 14px;}
.product-details-main .slick-prev:before,.product-details-main .slick-next:before,.related-product-sec .slick-prev:before,.related-product-sec .slick-next:before{content: none;}
.product-details-main .slick-prev,.product-details-main .slick-next{left: 15px; }
.product-details-main .slick-next{left: auto; right: 15px;}
.product-details-main .slick-next i,.product-details-main .slick-prev i{color: #000;font-size: 24px;}
.product-details-main .product-details-slider .slick-arrow,.product-details-main .product-slider-nav .slick-arrow{visibility: visible; top: 50%; transform:translateY(-50%); position: absolute; opacity: 1; transition: ease-in-out all 0.5s;background: transparent;}
.product-details-main .product-details-slider:hover .slick-arrow,.product-details-main .product-slider-nav:hover .slick-arrow{visibility: visible; opacity: 1;}
.product-slider-inner  .slick-arrow, .product-slider-inner .slick-arrow{display: none !important;}
.product-details-main .product-slider-nav .slick-arrow{z-index: 1;}
.product-details-main .slick-prev{left: 5px;}
.product-details-main .slick-next{right: 5px;}

/* product details slider end */

/* product detail right part start */

.product-detail-right-main{padding-left: 20px;}
.product-detail-right-main .product-details-content h3{text-transform: uppercase;line-height: 32px;margin-top: -3px;}
.product-detail-right-main > .product-details-content > p{margin: 19px 0 14px;}
.product-details-content h3{margin-bottom: 0px;text-transform: uppercase;}
.product-slider-inner  .slick-slide img{height: 350px;width: 100%;}
.product-details-content .product-detail-cat {margin-bottom: 12px; border-bottom: 1px solid #f2f2f2; padding-bottom: 10px}
.product-details-content .product-detail-cat span{color: #000; font-weight: 600; font-size: 17px;}

.product-details-content ul{padding: 0;    margin-bottom: 22px;}
.product-details-content ul li{list-style: none; position: relative; }
.product-details-content .product-details-desc{margin-bottom: 28px; border-bottom: 1px solid #c7c7c7;}
.product-details-content .product-details-desc h6{font-weight: 600;font-size: 18px; margin-bottom: 6px;}
.product-details-content .product-details-desc ul li{padding-left: 18px; padding-bottom: 4px;}
.product-details-content .product-details-desc ul li:last-child{padding-bottom: 0;}
.product-details-content .product-details-desc ul li:before{content: ""; position: absolute; height: 5px; width: 5px; border-radius: 50%; background: #000; top: 10px; left: 4px; }

.product-details-content .product-detail-btn-box ul{margin-bottom: 0;}
.product-details-content .product-detail-btn-box ul li{display: inline-block; margin-right: 15px;}
.product-details-content .product-detail-btn-box ul li:last-child{margin-right: 0;}
.product-details-content  .custome-btn{padding: 14px 29px;font-size: 20px;}

.prd-social-icon {margin-top: 30px; display: flex;}
.prd-social-icon span {color: #000; font-size:16px; font-weight: 600; margin-right: 10px;}
.prd-social-icon ul {padding: 0px; margin: 0px;}
.prd-social-icon ul li{padding: 0px; margin: 0px; list-style: none; margin-right:6px!important;}
.prd-social-icon ul li a{font-size:15px; color: #000;}

/* product detail right part end */
/* related product start */
/* related product start */


.related-product .section-title{width: 100%;max-width: 100%;margin: 0 0 35px ;}
.related-product .section-title h2{text-align: left;}
.related-product-slider.slick-slider {margin:0 -15px;}
.related-product-slider .slick-slide {margin-right:15px;margin-left:15px;}

.product-grid-detail.related-product-slider .product-grid-column{margin-bottom: 30px;filter: none;border: 1px solid #66666638;}


.related-product-slider .slick-prev{left: -10px;opacity: 1;color: #000;z-index: 1;}
.related-product-slider .slick-next{right: -10px;opacity: 1;color: #000;z-index: 1;}
.related-product-slider .slick-prev:before,.related-product-slider   .slick-next:before{color: var(--theme-text-color);}

/* arrow start */
.related-product-slider .slick-next {right: -15px;}
.related-product-slider .slick-prev {left: -15px;}
.related-product-slider .slick-prev,.related-product-slider .slick-next {background: transparent;z-index: 1;display: flex;
  align-items: center;justify-content: center;height: 40px;width: 40px;border-radius: 50%;opacity: 1;transition: 0.5s ease-in-out;}
  
.related-product-slider .slick-prev:before,.related-product-slider .slick-prev:before{content: "\f104";font-family: 'FontAwesome';}
.related-product-slider .slick-next:before {content: "\f105";font-family: 'FontAwesome';}
.related-product-slider .slick-next:before,.related-product-slider .slick-prev:before {font-size: 38px;color: #000;opacity: 1;transition: 0.5s ease-in-out;}

/* arrow end */

/* related product end */
/* related product end */

/* ============product detail page end============= */

/* ==================contact page start ================ */
/* three box start */
.three-boxes-contact .contact-box-detail {filter: drop-shadow(0 0 5px rgba(0, 0, 0, .16));background-color: #ffffff;padding: 25px 25px 20px 25px;
  position: relative;display: flex;align-items: flex-start;height: 100%;flex-wrap: wrap;}
  
.three-boxes-contact .contact-box-detail .contact-box{width:50px;}
.three-boxes-contact .contact-box-text {padding-left: 15px;max-width: 84%;}

.three-boxes-contact .contact-box-text h5{font-size:26px;margin-bottom: 12px;}
.three-boxes-contact .email-contact-icon {padding-left: 12px;}
.three-boxes-contact .contact-box-text a{color: #666666;line-height: 22px;display: inline-block;}
/* three boxes start */

/* contact form inner start */

.inner-contact-form .section-title{margin-bottom: 40px;}
.inner-contact-form .section-title h6{margin-bottom: 15px;}
.inner-contact-detail{max-width: 800px;margin: 0 auto;}
.inner-contact-detail .form-group{margin-bottom: 20px;}
.inner-contact-detail .form-group label{color: var(--theme-text-color);margin-bottom: 3px;font-size: 15px;margin-left: 2px;}
.inner-contact-detail .form-group .form-control{border: 1px solid #ccc;padding: 14px 18px;resize: none;color: var(--theme-text-color);font-size: 15px;}
.inner-contact-detail .form-group .form-control{box-shadow: none;}
.inner-contact-detail .form-group textarea{min-height: 150px;} 
.inner-contact-detail .inner-form-submit{text-align: center;}
.inner-contact-detail .inner-form-submit .common-btn{border: 0;padding: 10px 30px;}
.inner-contact-detail .row .col:last-child .form-group{margin-bottom: 0;}

/* contact form inner end */

/* google map start */

.google-map-detail iframe{height: 380px;margin-bottom: -6px;}
/* google map end */






/* ==================contact page end ================ */

/* inner about us page start =========*/


/* ==========about us section start ==========*/

.inner-about .inner-about-img{padding: 0;}
.inner-about .inner-about-img img{width: 100%;}
.inner-about .inner-about-content{display: flex;flex-direction: column;justify-content: center;height: 100%;padding: 0px 0 0px 73px; text-align: center;}
.inner-about .inner-about-content .section-title{margin: 0 0 10px;text-align: center;}
.inner-about .inner-about-content h2{text-align: center;line-height: 42px;margin-bottom: 5px;}
.inner-about .inner-about-content h2 span{color: var(--theme-color);line-height: 44px;}
.inner-about .inner-about-content .section-title h6{margin-bottom: 15px;}
.inner-about .inner-about-content p{line-height: 26px;}
.inner-about .inner-about-content .common-btn{align-self: flex-start;}

.inner-about .about-list{margin-top: 10px;padding-top: 25px;border-top: 1px solid #ccc;}
.inner-about .about-list h6{margin-bottom: 12px;}
.inner-about .about-list p{padding-right: 20px;}


/* ==========about us section end ==========*/

/* counter section start */
.inner-counter-details{padding: 100px 0; position: relative;background-repeat: no-repeat;background-size: cover;background-position: center;display: flex;align-items: center;justify-content: center;}
.inner-counter-details:before{content: '';position: absolute;height: 100%;width: 100%;background: rgba(0,0,0,0.5);top: 0;left: 0;}

.inner-counter-details .row{justify-content: center;}
.counter-column{position: relative;color: #fff;padding: 0 20px;text-align: center;}
.count-no{display: flex;justify-content: center;}
/* .inner-counter-details h3{min-width: 80px;} */
.inner-counter-details h3,.count-no span{color: #fff;font-size: 44px;}
.count-no span{margin-top: 5px;margin-left: 5px;font-weight: 600;}
.inner-counter-details .counter-column h6{font-size: 18px;color: #fff;}
/* counter section end */


/* our vision start */
.our-vision-right .section-title{margin: 0 0 25px;text-align: left;}
.our-vision-right .section-title h2{text-align: left;}
.our-vision-right p{line-height: 26px;}
.our-vision-right ul{padding-top: 15px;padding-bottom: 40px;}
.our-vision-right ul li{padding-left: 25px;color: #000;position: relative;padding-bottom: 8px;}
.our-vision-right ul li:last-child{padding-bottom: 0;}
.our-vision-right ul li:before{content: '\f00c';font-family: 'FontAwesome';left: 0;font-size: 15px;color: var(--theme-color);position: absolute;}

/* our vision end */

/* innerabout us page end */
.product-detail-imgbox{ border:solid 1px #919191;}
.product-detail-nav-imgbox{ border:solid 1px #919191; margin-right:2px;}
.product-grid-range-list ul li a {
  color: #000;
  text-transform: capitalize;
  display: block;
  border-bottom: 1px solid #ececec;
  padding: 12px 20px;
}

.product-grid-range-list ul li {
  padding-bottom: 0;
}
section.applications-section {
  padding: 60px 0px 60px;
}
.application-box .text h4 {
  text-align: center;
  padding: 20px 10px;
  font-size: 20px;
  min-height: 90px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.application-box .inner .image img{
  border-radius: 10px 10px 0px 0px;
}
.application-box .inner {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}
.application-box {
  margin-bottom: 20px;
}
section.clients-section {
  padding: 50px 0px;
}

.col-md-2.clients-box .inner {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 20px;
  text-align: center;
}
.col-md-2.clients-box .inner img{
  width: 120px;
}
.product-grid-range-list ul li a.active {
  color: var(--theme-color);
  font-weight: 700;
}
.hero-banner-inner h1 {
  text-transform: capitalize;
}
.product-column-text h5 {
  color: #1c3142;
  text-transform: capitalize;
}
.home-banner-item {
  /*! height: 550px; */
  display: flex !important; 
}
.product-column-text h5{
  font-size: 15px;
  margin-bottom: 0px;
}
.footer-contact .icon img {
  width: 100px;
}
.footer-contact .text {
  padding-left: 20px;
}
.copyright a {
  color: #fff;
}
.top-header-right a {
  text-transform: capitalize;
}



.ftr-logo {
  text-align: center;
}
.ftr-logo .ftr-social-icon li {
  display: inline-block;
  line-height: 32px;
}

.product-inner-text p{
  text-align: justify;
}
.product-inner ul li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 7px;
}

.product-inner ul li:before {
  position: absolute;
  background: var(--theme-color);
  width: 10px;
  height: 10px;
  content: "";
  padding-bottom: 1px;
  top: 7px;
  left: 0px;
  border-radius: 100%;
}
.product-inner-bottom {
  padding-top: 25px;
}
.product-inner-btn a {
  background-color: #fff;
  color: var(--theme-color);
  padding: 10px 12px;
  border-radius: 6px;
  text-transform: capitalize;
  transition: .3s ease-in-out;
  display: inline-block;
  border: 1px solid var(--theme-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.product-inner-btn a:hover{
  background: var(--theme-color);
 
  color: #fff;
  border: 1px solid transparent;
}

.product-inner-btn {
  padding-top: 30px;
}

.product-inner-bottom h3 {
  padding-bottom: 15px;
} 
.product-inner-title h2{
  text-transform: capitalize;
  color: #29465b;
  padding-bottom: 15px;
}
.ptb-50{
  padding: 50px 0px;
}
.products-bg{
  background-color: #faebd759;
}
.product-inner .image img{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.product-inner ul {
  padding-left: 25px;
  
}

.technical ul li {
  position: inherit;
  padding-left: 0;
}

.technical ul li:nth-child(2n+1) {color: #3b3a3a;font-weight: 500;}
.technical {
  padding-top: 40px;
}
.technical h4 {
  padding-bottom: 12px;
}
.technical ul {
  padding-left: 20px;
}

.technical ul li {
  padding-bottom: 10px;
}
.technical ul {
  padding-left: 20px;
}

.technical ul li {
  padding-bottom: 15px;
  color: #707070;
}
.technical ul li:nth-child(2n+1){
  position: relative;
}
.technical ul li:nth-child(2n+1):before {
  content: "";
  position: absolute;
  background: #c0c0c0;
  width: 10px;
  height: 2px;
  right: 120px;
  top: 12px;
}


ul.tech-inner li {
    color: #757575 !important;
    font-weight: 400 !important;
}
.inner-about-main .section-title{
  max-width: 100%;
}
.our-vision-left {
  height: 300px;
}

.our-vision-left img {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.reviews-icon ul {
  display: flex;
}

.reviews-icon ul li {
  padding: 0px 1px;
}

.col-md-4.reviews-box .inner {
  text-align: center;
}



.reviews-icon {
  text-align: center;
  display: flex;
  justify-content: center;
} 

.col-md-4.reviews-box .image {
    padding-bottom: 10px;
}

section.reviews .name h4 {
    margin: 0;
    padding-bottom: 5px;
}

section.reviews .reviews-icon {
    padding-bottom: 10px;
}
section.reviews {
  padding: 30px 0px 80px;
}
section.sec-our-vision.pb60.quality-sec {
  background: linear-gradient(90deg, rgba(212,36,39, 32%) 0%, rgba(167,38,44,13%) 24%, rgba(24,43,59,40%) 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}





#socialBar {
    width: 56px;
    height: 56px;
    overflow: hidden;
    margin: 0 auto;
    position: fixed;
    background-color: #009846;
    border-radius: 50px;
    box-shadow: 0px 0px 15px 4px rgba(63, 81, 181, 0.3), 0px 4px 17px 10px rgba(63, 81, 181, 0.1);
    transition: 0.225s ease-out;
    display: flex;
    z-index: 1111;
    bottom: 100px;
    float: right;
    right: 30px;
    transform: rotate(-90deg);
}

.desk_none {
    display: block;
}

#socialBar .fa {
    color: #fff;
    padding: 14px 13px;
    font-size: 28px;
}
#shareBtn {
    transform: rotate(90deg);
}

.mob_none{
display: none;
}
.desk_none{
  display: block;
}
@media (max-width:767px){
.desk_none{
  display: none;
}
.mob_none{
display: block;
}
}
