@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --theme-color: #000000;
  --theme-color-second:#ff6200;
  --theme-color-third: #000;
  --heading-font:  "Roboto", sans-serif;
  --paragraph-font: "Cabin", sans-serif;
  --span-font: 'spanist';
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
    margin: 0;
    padding: 0 !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
    font-size: 17px;
    color: #1e1e1e;
    background-color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    font-family: "Roboto", sans-serif;
    /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 68px;
}

h2 {
      font-size: 50px;
    font-weight: 800;
   
    margin-bottom: 10px;
}

h3 {}

h4{
  font-size: 30px;
 
    font-weight: 800;
    line-height: 34px;
   
}

h5{}

h6{
      font-size: 25px;
    margin-top: 30px;
    font-weight: 600;
    text-transform: uppercase;
}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}
.quantity input {
  width: 100% !important;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop > div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
  transition: 0.6s;
}

a.navbar-brand .small-logo {
  width: 130px;
  transition: 0.6s;

}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 0px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}
a.btn-black{
  background-color: var(--theme-color);
  color: var(--theme-color-second);
}
a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}
.header_menu li{
   color: #fff;
}
.header_menu li:hover{
  color: var(--theme-color-second);
}
.header_menu li a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  padding: 29px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

#main_header .digital-sign-up{
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
}

#main_header .digital-sign-up a{
  padding: inherit;
}
#main_header  .hd_info{
  padding-left: 18px;
  border-left: 2px solid #fff;
}
#main_header , .small{
  background-color:#00000094;
}
#exampleModal form{
  border: 1px solid #000;
  background-color: var(--theme-color-second);
  display: flex;
  align-items: center;
  border-radius: 3px;
  padding: 18px;
}
#exampleModal form input, #exampleModal form button {
  background: transparent;
  border: none;
  color: #fff;
}
#exampleModal form input::placeholder{
color: #fff;
}

.banner{
  background-attachment: fixed;
  color: #fff;
}

.banner h1{
  text-transform: uppercase;
  color: var(--theme-color-second);
  font-weight: 600;
}

.banner p{
  font-size: 22px;
  line-height: 1.6;
}

.banner a{
  color: #fff;
}

.banner a.comon-btn{
  color: #000;
}

.banner .hd_info{
  gap: 25px;
}

.banner{
  padding: 145px 0;
}
.banner .heading {
  border-right: 2px solid #f4f4f4;
  padding-right: 25px;
}

.about h3 {
  font-size: 50px;
  font-weight: 800;
  line-height: 20px;
  color: #ff6201;
  margin-bottom: 10px;
}
.about h2{
    font-weight: 800;
    display: flex;
    gap: 10px;
    position: relative;
    display: inline-block;
}
.about h2 img {
    position: absolute;
    right: -45%;
    top: -40px;
}

.book-catogories .content h4{
  text-transform: uppercase;
    color: #ff6201;
    margin-bottom: 10px;

}

.book-catogories .content p{
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
}

.product .img-box{
  overflow: hidden;
  position: relative;
}

.product .img-box img {
    height: 320px;
    object-fit: cover;
    margin-bottom: 15px;
	width:100%;
}

.product .img-box span{
  font-size: 14px;
  background-color: var(--theme-color-second);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  width: 55px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.product .service-box h4{
   line-height: 1;
}
.product .service-box h4 a{
  font-size: 17px;
  font-weight: normal;
  color: #f4f4f4;
  line-height: normal;
}

.product .service-box p{
  font-size: 15px;
  color: red;
  display: flex;
  gap: 10px;
}
.product .service-box p del{
  color: #ced4da;
}

.product .heading a{
  color: var(--theme-color-second);
}
.how-to{
  padding: 178px 0;
}
.how-to .heading i{
  font-size: 55px;
  color: var(--theme-color-second);
}


.how-to .heading p{
  color: #fff;
  font-size: 18px;
}

.how-to .heading p span{
  color: #000;
  font-size: 16px;
}

.faq h2{
  color: var(--theme-color-second);
  text-transform: uppercase;
}

.faq .accordion-item {
    background-color: transparent;
    border: 0;
}

.faq .accordion-button:not(.collapsed) {
    color: #ffffff;
   background-color: transparent;
    box-shadow: none;
}

.faq .accordion-button {
  border-bottom: 1px solid #fff;
     color: #ffffff;
   background-color: transparent;
   box-shadow: none;
}
.faq p a{
  color: #fff;
  text-decoration: underline;
}
.faq .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("../image/arrow-down-sign-to-navigate.png");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.testimonial .owl-testimonial ul {
    list-style: none;
    display: flex;
    gap: 2px;
    color: #ffd000;
    font-size: 22px;
    padding: 0;
}

.testimonial h3{
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 700;
}


.testimonial h5 {
    font-weight: 700;
    font-size: 18px;
}

.contact-us form input, .contact-us textarea , .contact-us button{
  border: none;
  padding: 12px;
  width: 100%;
  background-color:#fff;
  border:1px solid #fff;
}
.contact-us form input, .contact-us textarea {
  background: transparent;
  color: #fff;
}
.contact-us textarea {
  height: 145px;
}
.contact-us  h4{
  font-size: 18px;
  font-weight: 500;
}
.contact-us button{
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-us p a{
  text-decoration: none;
  opacity: 0.9;
}
.contact-us .heading h3{
  color: var(--theme-color-second);
  font-weight: 500;
}
.contact-us form label{
  font-size: 11px;
  display: block;
}


.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  background: #161616;
  color: var(--theme-color-second);
  padding: 1rem;
}

.marquee {
  display: flex;
  padding-left: 100%;
  animation: scroll-left 90s linear infinite;
  justify-content: space-between;
 gap: 80px;
}

.marquee-container:hover .marquee {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to{
    transform: translateX(-100%);
  }
}



.marquee-container span{
  font-weight: bold;
  font-size: 25px;
}

.marquee-container span a{
  color: var(--theme-color-second);
  text-transform: uppercase;
}

.newsletter h2{
  text-transform: uppercase;
}

.newsletter input{
  background: transparent;
  border: none;
  background-color:transparent;
  color:#000 ;
  border: 1px solid #000;
  padding: 11px;
}
.newsletter input::placeholder{
  color:#000 ;
}

.newsletter button{
  background: transparent;
  border: none;
  background-color: #000;
  color:#ffffff ;
  border: 1px solid #000;
  padding: 11px;
  width: 100%;
}

.blog h2{
  text-transform: uppercase;
  color: #fff;
}

.blog .blog-catagory{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.blog .blog-catagory li a{
  color: #ffffff;
}

.blog .blog-box h4{
  font-weight: normal;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 5px;
}

.blog .blog-box  .reading{
  color: #ff6200;
  font-size: 12px;
}

.footer{
  background-color: #131313;
}

.footer p a{
  color: #fff;
}

.blog-banner h1{
  text-transform: uppercase
}
.blog-banner{
  padding-top: 155px;
}

.blog-page-1 .blog-list {
  border-left: 1px solid #c4c4c4;
  padding: 0 25px;
  height: 100%;
}

.blog-page-1 .blog-list  li h5{
  font-weight: 700;
  color: var(--theme-color-second);
}

.blog-page-1 .blog-list  li a{
  display: inline-block;
  color: #1e1e1e;
  padding: 8px 0;
}
.blog-page-1 .blog-box-article  .date{
  margin-bottom: 0;
  font-size: 14px;
  color: #131313;
}.blog-page-1 .blog-box-article p{
  margin-bottom: 10px;
}

.blog-page-1 .blog-box-article  h4{
  font-size: 21px;
  font-weight: normal;
  margin-bottom: 3px;
}

.blog-page-1 .blog-box-article  a{
  color: var(--theme-color-second);
}

.blog-page-1 .subscribe form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-page-1 .subscribe form input, .blog-page-1 .subscribe form button{
  padding: 10px;
  border: 1px solid #000;
  color: #000;
}

 .blog-page-1 .subscribe form button {
  width: 155px;
  background-color: var(--theme-color-second);
  font-weight: 600;
 }

 .blog-page-1 .social li a{
  color: #000;
 }

 .inner-contact {
  padding: 200px 0;
 }

 .about-sec h2{
  text-transform: uppercase;
 }
 .about-sec p a{
  color: var(--theme-color-second);
  font-weight: bold;
 }

 .about-sec p em{
  color: var(--theme-color-second);
  font-weight: bold;
 }

.product-area .product-cat-head select {
    width: 220px;
    background: transparent;
    color: #000000;
    border: none;
    border-bottom: 1px solid #000000;
    padding: 10px;
}
.product-area .product-cat-head select option{
  background-color: #000;
}
.product-area .nav-list{
  padding:15px 35px 0 0px;
}
.product-area .nav-list li a {
    color: #000000;
    padding: 10px 0;
    display: inline-block;
}

.product-area .product-box .img-box{
  position: relative;
  margin-bottom: 10px;
  height: 355px;

}

.product-area .product-box .img-box img{
  height: 100%;
  object-fit: cover;
}

.product-area .product-box .img-box .span-box{
  background-color: #2f4f4f;
  color: #fff;
  font-size: 13px;
  border-radius: 3px;
  padding: 8px 18px;
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 60px;
}
.product-area .product-box .img-box .btn-area {
  position: absolute;
  width: 100%;
  bottom: 3px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transition: 0.6s;
}
.product-area .product-box:hover .img-box .btn-area{
  opacity: 1;
  transition: 0.6s;
}

.product-area .product-box .img-box .btn-area  a{
  display: block;
  width: 95%;
  background-color: #c1c0bd;
  color: #1e1e1e;
  padding: 10px;
  border: 1px solid #666;
  font-size: 12px;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 600;
}
.product-area .product-box .content h6 {
 margin-bottom: 10px;
}
.product-area .product-box .content h6 a{
  font-size: 15px;
  font-weight: normal;
  color: #000000;
 
}

.product-area .product-box .content .price {
    color: #000000;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1;
    display: flex;
    gap: 3px;
    align-items: center;
}
.product-area .product-box .content .price del{
  font-size: 12px;
}
.product-area .product-box .content span a{
  color: #c1c0bd;
  font-size: 11px;
  display: none;
}


.product-area .product-box .content h6 a{
  color: #000;
  text-transform: capitalize;
}

.brad-crumb  {
  padding-top: 125px;
  padding-bottom: 0;
}

.product-details-area .zoom-container {
      position: relative;
      
      overflow: hidden;
      border: 2px solid #ccc;
      cursor: crosshair;
    }

 .product-details-area   .zoom-image {
     width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.1s ease;
      transform-origin: center center;
    }

    .product-details-area .rating ul{
      color: var(--theme-color-second);
      display: flex;
      gap: 3px;
    }

    
    .product-details-area  h4.price{
      font-weight: normal;
      font-size: 19px;
      color: red;
      display: flex;
      gap: 15px;
      margin-bottom: 10px;
    }

    .product-details-area  h4.price del{
      color: grey;
    }

    .product-details-area form .quantity input{
      border: 1px solid #000 !important;
      padding: 12px !important;
    }

        .product-details-area form button{
          background-color: #2f4f4f !important;
          width: 33% !important;
            border: 1px solid #000 !important;
      padding: 12px !important;
      color: #fff !important;
      text-transform: capitalize !important;
        }

form.wpcf7-form.init p {
    margin-bottom: 0;
}
.gjs-row{
	margin:0px !important;
	display:flex;
	gap:20px;
}
#i5bq {
    width: 30%;
}


ul.blog-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.owl-nav{
	display:none;
}
.blog .blog-catagory {
	gap:30px !important;
}
/* comment box css */

.inner-blog-comment form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}
.inner-blog-comment form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}
.inner-blog-comment #submit {
  color: #ffffff !important;
  background-color: #000 !important;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}
.inner-blog-comment #submit:hover {
  background: #1d98af !important;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}
input#wp-comment-cookies-consent {
    width: 40px;
}
.bdr{
	border-radius:10px;
}

#wpfBlock_1 .wpfFilterVerScroll {
    max-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.product-area .product-cat-head select option {
    background-color: #000;
    color: #fff;
}
.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: left !important;
}


/* ----------------------28-05-2025 ------------------ */
       #exampleModal1 .modal-body{
          padding: 0         ;
        }

           #exampleModal1   button.btn-close {
    position: absolute;
    right: 0;
    color: #fff;
}
    #exampleModal1 h4{
      font-weight: normal;
      color: var(--theme-color-second);
    }
/* ---------------30-05-2025------------- */
/* contact us popup css */
.modal-body .btn-close {
    background-color: transparent;
    border: none;
    width: auto;
	box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e) center / 1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}
/* 20.06.2025  */
.btn-bg .wc-block-components-button{
	background-color:#ff6200 !important;
	color:#fff !important;
}
.btn-bg .wc-block-components-quantity-selector{
	background-color:#ff6200 !important;
}
.btn-bg .wc-proceed-to-checkout .checkout-button{
	background-color:#ff6200 !important;
}
.btn-bg .button{
	background-color:#ff6200 !important;
	color:#fff !important;
}
.btn-bg .input-text {
    width: 200px !important;
}
.check-btn-bg .button{
	background-color:#ff6200 !important;
}
.es_subscription_message.success{
	color:#fff !important;
	
}
#es_form_f2-n1{
	text-align:center !important;
}
.btn-bg  .wc-block-components-totals-wrapper{
	border:1px solid;
}
.btn-bg .woocommerce table.shop_table{
	border:1px solid;
}
.btn-bg .quantity input{
	border:1px solid #ff6200 !important;
}


/* pagination css */

.center {
  display: flex;
justify-content: center;
margin-top: 40px;
}

a.page-numbers {
    color: #000000;
    padding: 10px 10px;
    text-decoration: none;
    transition: background-color 0.5s;
    border: 1px solid #ddd;
border-radius: 5px;
    margin: 0px 5px;
    padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
    background-color: #d6d4d4;
}

span.page-numbers.current {
    background-color: #9bcb3b;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 0px 5px;
    font-size: 18px;
        z-index: 3;
border-radius: 5px;
}
ul.blog-list a.active {
  color: #ff6200 !important; /* or use var(--theme-color-second) */
  font-weight: bold;
  border-left: 3px solid red;
  padding-left: 8px;
  transition: 0.3s;
}

.blog-box img {
    height: 170px;
    object-fit: cover;
}

.blog-box {
    height: 385px;
}
.list-style li{
	list-style: disc !important;
	margin-left: 40px !important;
    
}

.product-category-description ul {
	list-style: disc;
}
.product-category-description ul li {
	margin-left: 45px;
}

.product-category-description h2 {
	font-weight: 500 !important;
	line-height: 1.2 !important;
	font-family: var(--heading-font) !important;   
	margin: 0 !important;
	margin-bottom: 15px !important;
	font-size: 1.75rem !important;
}
.product-category-description h3 {
	font-size: .75rem; 
}