@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --primary: #FF631E;
  --secondary: #212529;
  --font1: 'Roboto', sans-serif;
  --font2: 'Rubik', sans-serif;
}
html,
body {
  font-family: var(--font1);
}
body {
  background: #ffffff;
  font-size: 16px;
  line-height: 140%;
  color: #212529;
  width: 100%;
}
* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
}
*:focus, *:visited, *:focus:visited, *:focus:active {
  outline: none !important;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
textarea:focus, input:focus {
  outline: none !important;
}
img {
  border: none;
  max-width: 100%;
}
::-moz-selection {
  background: var(--primary);
  color: #fff;
}
::selection {
  background: var(--primary);
  color: #fff;
}
a,
a:hover {
  text-decoration: none;
}
ul{
  margin: 0px;
  padding: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-family: var(--font2);
}
section{
  width: 100%;
  padding: 20px 0;
}
.row {
  margin: 0 -6px;
}
.row>* {
  padding: 0 6px;
}


/*------- Header Style Start -------*/
header{
  width: 100%;
  background: #fff;
}
.header-main-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo-gst h1{
  font-size: 28px;
  margin-bottom: 5px;
  color: var(--secondary);
}
.header-logo-gst h1 a{
  color: var(--secondary);
}
.header-logo .logo {
  display: block;
  max-width: 90px;
  margin-right: 0px;
}
.header-logo-gst p {
  margin: 0;
  font-size: 14px;
  gap: 5px;
}
.header-logo-gst p i.bi{
  color: var(--primary);
}
.header-logo-gst .loc_gst {
  gap: 15px;
}
header .header-navbar {
  margin-left: auto;
  margin-right: 50px;
}
header nav > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav > ul > li {
  position: relative;
  padding: 35px 0;
}
header nav > ul > li + li {
  margin-left: 35px;
}
header nav > ul > li > a {
  color: #212121;
  font-weight: 500;
  font-size: 17px;
  display: inline-block;
  line-height: 19px;
  position: relative;
}
header nav > ul > li:hover > a {
  color: var(--primary);
}
header nav > ul > li.menu-parent > a:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  background: url("../images/menu-parent.png") no-repeat;
  background-size: 100% 100%;
  width: 10px;
  height: 6px;
  margin: 7px 0 0 8px;
}
.sub-menu {
  position: absolute;
  top: 100%;
  background: #fff;
  left: 0;
  min-width: 280px;
  padding: 18px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translatey(20px);
  visibility: hidden;
  transition: all 0.4s;
  z-index: 9;
}
header nav > ul > li.menu-parent:hover > .sub-menu {
  opacity: 1;
  transform: translatey(0);
  visibility: visible;
}
.sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-menu ul li {
  margin-bottom: 20px;
}
.sub-menu ul li:last-child {
  margin-bottom: 0;
}
.sub-menu ul li a {
  color: #212121;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
  position: relative;
}
.sub-menu ul li a:hover {
  color: var(--primary);
}
.navbar-toggle{
  display: none;
}
.header-main-bar .contact-btn a{
  display: inline-block;
  background: var(--primary);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
  padding: 14px 20px;
  transition: all 0.4s;
}
.header-main-bar .contact-btn a i{
  margin-right: 5px;
}
.header-main-bar .contact-btn a:hover{
  background: var(--secondary);
}
.menu-contact{
  display: none;
}


/*------- Categories Section Style Start -------*/
.home-categories-main{
  width: 100%;
  background: var(--secondary);
}
.home-categories-list {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.home-categories-item{
  flex: 1;
  text-align: center;
  background: rgb(255 255 255 / 10%);
  padding: 10px 10px;
}
.home-categories-item img{
  width: 82px;
  height: 82px;
  border: 2px solid var(--secondary);
  object-fit: cover;
  margin-bottom: 10px;
  transition-duration: 0.3s;
}
.home-categories-item h6{
  margin: 0px;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
  color: #fff;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-categories-item:hover img{
  border: 2px solid var(--primary);
  transition-duration: 0.3s;
}


/*------- Product Section Style Start -------*/
.gray-bg{
  background-color: #f0f0f0;
}
.product-card {
  background-color: #f8f7f7;
  overflow: hidden;
  border: 1px solid #d9d2d2;
  min-height: 100%;
  position: relative;
  padding-bottom: 60px;
}
.horizontal-product {
  display: flex;
  align-items: center;
  padding-bottom: 0;
}
.product-card-img {
  width: 100%;
  height: 245px;
  background: #fff;
}
.horizontal-product .product-card-img {
  width: 170px;
  height: 240px;
  flex: none;
}
.product-card-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card-content{
  padding: 15px;
}
.line2txt{
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-content h3{
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}
.product-card-content h3 a{
  color: var(--secondary);
  transition-duration: 0.3s;
}
.product-card-content h3 a:hover{
  color: var(--primary);
  transition-duration: 0.3s;
}
.product-card-content h4{
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  width: auto;
  display: inline-block;
}
.product-card-content h4 span{
  color: var(--primary);
}
.product-card-content h4 small{
  color: #111;
  font-weight: 400;
  font-size: 13px;
}
.product-card-content li{
  color: #4f4f4f;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.product-card-content li + li{
  margin-top: 5px;
}
.product-card-content li span{
  font-weight: 500;
}
.product-card .btn-main{
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.btn-main{
  display: inline-block;
  background: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #fff;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: all 0.4s;
  letter-spacing: 0.5px;
  min-width: 130px;
  text-align: center;
}
.btn-main:hover{
  background: var(--secondary);
  transition: all 0.4s;
}
.product-list-main {
  margin-top: 15px;
}
.horizontal-product .btn-main {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  margin-top: 10px;
}
.product-heading-box,
.product-sub-heading-box {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content: space-between;
}
.product-sub-heading-box {
  margin-bottom: 10px;
}
.product-heading-box h3,
.product-sub-heading-box h3{
  color: var(--secondary);
  font-size: 33px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0;
}
.product-sub-heading-box h3{
  font-size: 24px;
  font-weight: 500;
}
.product-heading-box h3 a,
.product-sub-heading-box h3 a{
  color: var(--secondary);
  transition-duration: 0.3s;
}
.product-heading-box h3 a:hover,
.product-sub-heading-box h3 a:hover{
  color: var(--primary);
  transition-duration: 0.3s;
}
.product-heading-btn{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition-duration: 0.3s;
  background: var(--primary);
  padding: 6px 10px 5px 10px;
}
.product-heading-btn:hover{
  background: var(--secondary);
  transition-duration: 0.3s;
}
.product-heading-btn i.bi {
  font-size: 13px;
  line-height: 13px;
}
.product-heading-btn i.bi::before{
  font-weight: 800 !important;
}
.product-inner-main {
  margin-bottom: 30px;
}


/*------- Home About Section Style Start -------*/
.home-about-content h5{
  color: #2f333a;
  font-size: 26px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px; 
}
.home-about-content h3{
  color: #2f333a;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px; 
}
.home-about-content p{
  color: #505050;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
}
.home-about-content p a{
  color: var(--secondary);
  font-weight: 500;
  text-decoration: 0.3s;
}
.home-about-content p a:hover{
  color: var(--primary);
  text-decoration: 0.3s;
}
.home-about-content h6{
  color: #505050;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 10px;  
  text-transform: uppercase;
}
.home-about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 80px;
  gap: 5px 15px;
}
.about-points-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 10px;
}
.about-points-icon{
  width: 60px;
  height: 60px;
  border: 1px solid var(--primary);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-points-icon img {
  width: 35px;
}
.about-points-content h6{
  color: #0f0f10;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 4px;
}
.about-points-content p{
  color: #505050;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}


/*------- Footer Style Start -------*/
footer{
  width: 100%;
  background: #FFFFFF;
  padding-top: 40px;
}
.footer-logo-wrapper{
  width: 100%;
}
.footer-logo p {
  margin: 20px 0 0 0;
  font-size: 16px;
  line-height: 26px;
  padding-right: 80px;
}
.footer-logo img{
  max-width: 130px;
}
.footer-social {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-logo-wrapper .footer-social {
  margin-top: 20px;
}
.footer-logo-wrapper .footer-social h4{
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  color: var(--primary);
}
ul.social-icon {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
ul.social-icon a {
  width: 38px;
  height: 38px;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
ul.social-icon li a svg, ul.social-icon li a svg path {
  fill: #00121B;
}
ul.social-icon a:hover {
  background-color: var(--primary);
}
ul.social-icon a:hover svg {
  filter: brightness(0) invert(1);
}
.footer-links{
  width: 100%;
}
.footer-links h4{
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 22px;
  color: var(--primary);
}
.footer-social h4{
  margin-bottom: 0;
}
.footer-links li{
  margin-bottom: 15px;
  position: relative;
  padding-left: 16px;
}
.footer-links li::before{
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.footer-links li a{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #212121;
  transition: all 0.3s ease-out 0s;
}
.footer-links li a:hover{
  color: var(--primary);
}
.contact-info{
  width: 100%;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.contact-info:nth-child(2){
  align-items: start;
}
.contact-info:last-child{
  margin-bottom: 0px;
}
.contact-info i{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-right: 12px;
}
.contact-info p{
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
  color: #212121;
}
.contact-info p a{
  color: #212121;
  transition: all 0.3s ease-out 0s;
}
.contact-info p a:hover{
  color: var(--primary);
}
.footer-copyright{
  width: 100%;
  margin-top: 40px;
}
.footer-copyright-inner{
  width: 100%;
  background: var(--primary);
  padding: 13px 0;
}
.footer-copyright-card{
  width: 100%;
}
.footer-copyright-card p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
  color: #fff;
  text-align: center;
}
.social-icon li{
  padding: 0;
  margin: 0;
}
.social-icon li::before{
  display: none;
}


/*------- Scroll to Top Style Start -------*/
#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--secondary);
  box-shadow: 0px 4px 14px 0px #0000000D;
  width: 50px;
  height: 50px;
  line-height: 26px;
  display: block;
  z-index: 999;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 13px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: var(--primary);
}
#return-to-top:hover i {
  color: #fff;
  top: 6px;
}


/*------- Product Videos Section Style Start -------*/
.section-title{
  color: #2f333a;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
.home-product-video .section-title {
  text-align: center;
}
.product-video-card {
  border: 1px solid #d9d2d2;
  padding: 20px 10px;
}
.product-video-img{
  width: 100%;
  height: 270px;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition-duration: 0.3s;
}
.product-video-img a{
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}
.product-video-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-video-img i{
  width: 50px;
  height: 50px;
  position: absolute;
  background: var(--secondary);
  border-radius: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  transition-duration: 0.3s;
}
.product-video-img i::before{
  left: 3px;
  position: relative;
}
.product-video-content {
  text-align: center;
}
.product-video-content h4{
  color: var(--secondary);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 8px;
}
.product-video-content h4 a{
  color: var(--secondary);
  transition-duration: 0.3s;
}
.product-video-content h4 a:hover{
  color: var(--primary);
  transition-duration: 0.3s;
}
.product-video-img:hover i{
  background: var(--primary);
  color: #fff;
  transition-duration: 0.3s;
}
.videomodal-main .modal-content {
  background: #000;
  border-radius: 0px;
}
.videomodal-main .btn-close {
  position: absolute;
  right: 15px;
  top: 10px;
  padding: 0;
  background: url("../images/close.svg") no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.videomodal-main .modal-body {
  padding-top: 40px
}


/*------- Ratings & Reviews Section Style Start -------*/
.review-section-div {
    background: #f4f4f4;
    padding: 20px 0;
}
.total-review-wrapper {
    text-align: center;
}
.total-rating {
    color: #000;
}
.total-rating .first-span {
    font-size: 36px;
    font-weight: 500;
}
.total-rating .second-span {
    font-size: 12px;
    font-weight: 400;
}
.total-rating .third-span {
    font-size: 15px;
    font-weight: 400;
}
.fs46 {
    font-size: 46px;
    line-height: normal;
}
.revw-star {
    unicode-bidi: bidi-override;
    color: #ccc;
}
.star-clr {
  color: #fdc12a;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: left;
}
.total-review-count p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0px;
}
.total-review-bar-wrapper .star-left {
    color: #0f0f10;
    font-size: 16px;
    font-weight: 400;
}
.total-review-bar-wrapper .progress {
  border-radius: 0;
  display: flex;
  height: 10px;
  background: #dadada;
}
.total-review-bar-wrapper .progress-bar {
    background: var(--primary);
}
.total-review-bar-wrapper .star-right {
    color: #505050;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.satisfaction-wrapper{
    text-align: center;
}
.satisfaction-wrapper h2 {
    color: #0f0f10;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
}
.mSR_pgsCrl {
    font-size: 15px;
    position: relative;
    padding: 0;
    width: 5em;
    height: 5em;
    background-color: #d7d7d7;
    line-height: 5em;
    margin: 0 auto 5px;
}
.mSR_lftClip, .mSR_pgsCrl, .mSR_vBar {
  border-radius: 50%;
}
.mSR_pgsCrl span {
  line-height: 5em;
  width: 5em;
  color: #2c2d4b;
  z-index: 2;
}
.mSR_pgsCrl span, .mSR_pgsCrl:after {
    position: absolute;
    text-align: center;
    display: block;
}
.mSR_pgsCrl.mSR_ovr50 .mSR_f50Bar, .mSR_vBar {
    position: absolute;
    width: 5em;
    height: 5em;
}
.mSR_pgsCrl.mSR_ovr50 .mSR_f50Bar {
    clip: rect(0, 5em, 5em, 2em);
    background-color: var(--primary);
    border-radius: 50%;
}
.mSR_vBar {
    clip: rect(0, 2em, 5em, 0);
    border: .45em solid var(--primary);
}
.mSR_vBar, .revw-star {
    box-sizing: border-box;
}
.mSR_pgsCrl:after {
    border: none;
    top: .35em;
    left: .35em;
    border-radius: 50%;
    width: 4.3em;
    height: 4.3em;
    background-color: #fff;
    content: " ";
}
.review-section-div .col-lg-3, .review-section-div .col-lg-5 {
    border-right: 1px solid #50505033;
}
.response ul li:last-child, .review-section-div .col-lg-3:last-child {
    border-right: none;
}
.satisfaction-wrapper p{
  margin-bottom: 0px;
}
.testimonial-section-div {
  padding: 20px;
}
.ps-section__item {
  padding: 0 15px;
}
.ps-blog--latset{
    position: relative;
}
.jk-testimonial-item {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.testi-img {
    width: 100%;
}
.rvw_name_loc>span, .testi-img>span {
    width: 40px;
    height: 40px;
    background-color: #eaeaea;
    color: var(--primary);
}
.all-link-wrapper .ps-block__list:last-child, .jk-testimonial-item .testi-content {
    flex: 1;
}
.jk-testimonial-item h2 {
    color: #0f0f10;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}
.jk-testimonial-item ul.testi-ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.jk-testimonial-item ul li.test-li:last-child {
    border-right: none;
}
.all-link-wrapper, .jk-testimonial-item ul li.test-li:first-child {
    display: flex;
    gap: 10px;
}
.jk-testimonial-item ul li.test-li {
    list-style: none;
    padding-right: 10px;
}
.jk-testimonial-item ul li.test-li .count {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}
.tst_prd_nme>span:first-child {
    min-width: 110px;
    max-width: 110px;
}
.testi-p p {
    color: #505050;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}
.fw6 {
    font-weight: 600;
}
.mt15 {
    margin-top: 15px;
}
.testimonial-btn{
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--secondary);
}
.fs22 {
    font-size: 22px;
}
.fs15 {
    font-size: 15px;
}
.fs14 {
    font-size: 14px;
}


.sub-main-banner{
  width: 100%;
  background: var(--secondary);
  position: relative;
  text-align: center;
  padding: 50px 0;
}
.sub-main-banner h4,.sub-main-banner h1{
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  color: #fff;
  margin-bottom: 0px;
}
.sub-main-banner hr{
  width: 50px;
  height: 2px;
  border: none;
  margin: 25px auto;
  background: #fff;
  opacity: 1;
}
.sub-main-banner .breadcrumb {
  justify-content: center;
  margin: 0;
}
.sub-main-banner .breadcrumb .breadcrumb-item,
.sub-main-banner .breadcrumb .breadcrumb-item a{
  color: #fff;
  font-size: 15px;
  line-height: 24px;
}
.sub-main-banner .breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
}


/*--====== Product Detail Page Style Start ======--*/
.product-detail-section{
  width: 100%;
  padding: 30px 0;
}
.product-slider-item{
  width: 100%;
  height: 500px;
  border: 2px solid var(--primary);
  overflow: hidden;
  display: block !important;
}
.product-slider-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-out 0s;
}
.product-slider-main .slick-slide:hover .product-slider-item img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.5s ease-out 0s;
}
.product-slider-main {
  width: 100%;
  margin-bottom: 30px;
}
.product-slider-nav{
  width: 100%;
  margin-bottom: 0px !important;
}
.product-slider-nav .slick-slide{
  width: 100px;
  margin: 0 10px;
}
.product-slider-nav .product-slider-nav-item{
  height: 100px;
  overflow: hidden;
  width: 100%;
  border: 2px solid #bdbdbd;
  display: block !important;
  cursor: pointer;
}
.product-slider-nav .product-slider-nav-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-slider-nav .slick-current .product-slider-nav-item{
  border: 2px solid var(--primary);
}
.product-slider-nav .slick-arrow{
  width: 30px;
  height: 30px;
  border-radius: 0px;
  background: var(--primary);
  font-size: 15px;
  color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
}
/*.product-slider-nav::before{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, #fff 19.64%, rgba(0, 71, 133, 0) 93.83%);
  z-index: 9;
}
.product-slider-nav::after{
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 60px;
  height: 100%;
  background: linear-gradient(-90deg, #fff 19.64%, rgba(0, 71, 133, 0) 93.83%);
  z-index: 9;
}*/
.product-slider-nav .slick-arrow.bi-arrow-left{
  left: 5px;
}
.product-slider-nav .slick-arrow.bi-arrow-right{
  right: 5px;
}
.product-detail-content {
  width: 100%;
  padding-left: 40px;
  padding-top: 20px;
}
.product-detail-title h4{
  color: #2f333a;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
.product-detail-title h3{
  color: #2f333a;
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.product-detail-title h3 span{
  font-size: 20px;
  font-weight: 500;
}
.product-detail-title h3 a{
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  margin-left: 10px;
}
.product-detail-content p{
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
}
.btn-main i {
  margin-right: 10px;
}
.product-detail-table{
  width: 100%;
  margin: 30px 0 30px 0;
}
.product-detail-table table{
  width: 100%;
}
.product-detail-table table th, 
.product-detail-table table td{
  border: 1px solid #dfdfdf;
  background-color: #FFF;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--secondary);
}
.product-detail-table table td.fw6{
  font-weight: 600;
}
.product-detail-table table th{
  background-color: #f8f8f8;
  font-weight: 500;
}
.product-detail-table table thead th:first-child{
  width: 20%;
}
.product-detail-table table>tbody>tr:nth-of-type(odd)>*{
  background-color: #f8f8f8;
}
.product-detail-img{
  position: sticky;
  top: 30px;
  margin-bottom: 30px;
}
.product-slider-nav .product-slider-nav-item a {
    position: relative;
}
.product-slider-nav .product-slider-nav-item a i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition-duration: 0.3s;
}
.product-slider-nav .product-slider-nav-item a i::before {
    left: 2px;
    position: relative;
}


.hero-slider-section {
    padding: 0;
    display: none;
}
.hero-slider {
    margin-bottom: 0 !important;
}
.hero-slider .slick-dots {
    bottom: 20px;
}
.hero-slider-item {
    width: 100%;
    height: 500px;
    position: relative;
}
.hero-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block !important;
}
.hero-slider-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 20px;
    z-index: 9;
}
.hero-slider-content h1{
  color: #fff;
  letter-spacing: .8px;
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
.hero-slider-content h1::after{
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hero-slider-content h1 a{
  color: #fff;
}
.hero-slider-video {
    background: rgb(246, 28, 13);
    color: #fff;
    width: 48px;
    display: inline-block;
    height: 30px;
    border-radius: 7px;
    line-height: 31px;
    font-size: 20px;
    margin-top: 10px;
}
.hero-slider-price {
    width: 100%;
    text-align: center;
    padding: 0 20px;
    position: absolute;
    bottom: 50px;
    left: 0;
    z-index: 9;
}
.hero-slider-price a{
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
}
.hero-slider-price a span{
  background: var(--primary);
  padding: 3px 8px;
  font-weight: 500;
  font-size: 12px;
  margin-left: 5px;
  text-transform: uppercase;
}
.hero-slider-item::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  top: 0;
  left: 0;
}
.hero-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slider .slick-dots li {
    width: auto;
    height: auto;
}
.hero-slider .slick-dots li button {
    padding: 0;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background: #ffffffc2;
}
.hero-slider .slick-dots li.slick-active button {
    background: var(--primary);
}
.hero-slider .slick-dots li button:before{
  display: none !important;
}
.product-range {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px 0;
}

.home-about-content li{
  color: #505050;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
.home-about-content li::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.pr-5 {
  padding-right: 50px;
}

.ratings-reviews-page-main .testimonial-section-div .col {
  width: 100%;
  flex: auto;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.contactus-content {
  max-width: 530px;
}
.contactus-content .contact-info i{
  background: var(--primary);
}
.contactus-content .contact-info i svg *{
  stroke: #fff;
}
.contactus-content .contact-info p{
  font-size: 18px;
  line-height: 28px;
}
.contactus-content .footer-social{
  flex-wrap: wrap;
  gap: 0px;
}
.contactus-content h4{
  width: 100%;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 15px;
  color: var(--primary);
}
.contactus-content ul.social-icon a{
  background: var(--secondary);
  transition: all 0.3s ease-out 0s;
}
.contactus-content ul.social-icon a:hover{
  background: var(--primary);
}
.contactus-content ul.social-icon li a svg,
.contactus-content ul.social-icon li a svg path {
    fill: #fff;
}
.contactus-map{
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--secondary);
}
.contactus-map iframe{
  width: 100%;
  height: 100%;
}
.footer-copyright-card a {
    color: white;
    font-weight: bold;
}