@import url('https://fonts.googleapis.com/css2?family=Bangers&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: #0031d1;
  --theme-color-second: #fba100;
  --theme-color-third: #000;

  --heading-font: "Bangers", serif;
  --paragraph-font:"Poppins", 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;
  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:"Poppins", 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);
  line-height: 1;
}

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

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

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: 99px;
  line-height: 1;

}
h2 {
  font-size: 55px;
  letter-spacing: 2px;
}

h3 {}

h4{}

h5{}

h6{}


.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;
}

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;
}

.m-backtotop>div.text {
  font-size: 5px;
  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;
}

.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: 166px;
}

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

#main_header .navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: space-between;
}
#main_header{
  padding: 8px 0;
}
#main_header form {
  display: flex;
  border: 1px solid #eee;
  padding: 7px;
  border-radius: 5px;
}
#main_header form input {
  padding: 3px 12px;
  border: none;
}

#main_header .menu-box {
  width: 70%;
}

#main_header form button {
  all: unset;
  background-color: var(--theme-color-second);
  color: #fff;
  width: 49px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 50px;
  width: 12rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

#main_header a.cart {
  color: var(--theme-color-second);
  position: relative;
  font-size: 23px;
}
#main_header a.cart span {
  font-size: 8px;
  display: inline-flex;
  width: 14px;
  height: 14px;
  background-color: var(--theme-color-third);
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 60px;
  position: absolute;
  top: 5px;
  right: 0;
  font-weight: bold;
}
a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  padding: 21px 23px;
  display: inline-block;
  font-weight: 600;
}
.navbar li:hover a {
  color: var(--theme-color);
}

.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);
  }

  .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;
}


.top-header{
  background-color: #0031d1;
  color: #fff;
  text-transform: uppercase;
  padding: 5px 0;
}

.top-header    .marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  display: flex;
  gap: 40px;
}

.top-header  .marquee span {
  display: inline-block;
 
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(50%);
  }
  to {
    transform: translateX(-50%);
  }
}


.modal form{
  display: flex;
  border: 1px solid #eee;
  padding: 7px;
  border-radius: 5px;
}




.modal form input {
  padding: 3px 12px;
  border: none;
}

.modal form button {
  all: unset;
  background-color: var(--theme-color-second);
  color: #fff;
  width: 49px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close {
  
  opacity: 1;
  font-size: 9px;
  position: absolute;
  right: 4px;
  top: 5px;
}


.banner{
  color: #fff;
  text-transform: uppercase;
  padding: 120px 0;
  background-position: bottom!important;
}

.banner h1{
  letter-spacing: 6px;
}

.banner p{
  font-size: 20px;
}

.home-product .product-info{
 text-align: center;
 transition: 0.6s;
}


.home-product .product-info:hover{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.6s;
 }

.home-product .product-info p{
  font-size: 14px;
}

.home-product .product-name {
  min-height: 50px
}

.home-product h6 {
  font-size: 20px;
  margin-bottom: 22px;
  font-family: var(--paragraph-font);
  font-weight: 700;
}

.home-product .border{
  border-color: #000!important;
}


.advertisement a.ad-box{
  position: relative;
  display: block;
}

.advertisement a.ad-box p{
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  font-size: 28px;
  color: #000;
}

.advertisement a.ad-box p i{
  color: #0031d1;
}

.advertisement a.ad-box img{
  height: 60vh;
  object-fit: fill;
}

a.btn-2{
  background-color: #c4b500;
}

.home-product-2{
  background: rgb(229,37,102);
background: -moz-linear-gradient(146deg, rgba(229,37,102,1) 0%, rgba(203,161,15,1) 96%);
background: -webkit-linear-gradient(146deg, rgba(229,37,102,1) 0%, rgba(203,161,15,1) 96%);
background: linear-gradient(146deg, rgba(229,37,102,1) 0%, rgba(203,161,15,1) 96%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e52566",endColorstr="#cba10f",GradientType=1);
}


.home-product-2 .card .img-box{
  position: relative;
  border: 1px solid #0031d1;
  border-radius: 5px;
  margin-bottom: 35px;
}

.home-product-2 .img-box img{
  border-radius: 5px;

}

.home-product-2 .icon-info {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: -46px;
  justify-content: center;
  margin-bottom: 25px;
}

.home-product-2 .icon-info a{
  color: #000000;
  background-color: #c4b500;
  height:40px;
  width:40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
}

.home-product-2 .card .rating{
  display: flex;
  gap: 3px;
  font-size: 14px;
  color: #c4b500;
  justify-content: center;
}

.home-product-2 .card p{
  font-size: 14px;
  line-height: normal;
  margin-bottom: 5px;
}

.home-product-2 .card  h6{
  color: #0031d1;
  font-family: var(--paragraph-font);
  margin: 0;
}

.home-product-2 a.comon-btn{
  width: 15rem;
}

/* advertisement */

.adverisement .img-box{
  position: relative;
}

.adverisement .over-lay-2{
  position: absolute;
  top: 10%;
  width: 100%;
  padding: 20px ;
  color: #fff;
}

.adverisement .over-lay-2 h2 span{
  font-size: 45px;
}

/* testimonial */

.testimonial{
  background: rgb(229,37,102);
  background: -moz-linear-gradient(146deg, rgba(229,37,102,1) 0%, rgba(203,161,15,1) 96%);
  background: -webkit-linear-gradient(146deg, rgba(229,37,102,1) 0%, rgba(203,161,15,1) 96%);
  background: linear-gradient(146deg, rgba(229,37,102,1) 0%, rgba(203,161,15,1) 96%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e52566",endColorstr="#cba10f",GradientType=1);
}

.testimonial .review-box{
  padding: 5%;
  border-radius: 10px;
  background-color: #fff;
}

.testimonial .review-box img{
  width: 40px!important;
  margin-left: auto;
}

.testimonial .review-box .content{
  overflow-y: scroll;
  height: 200px;
  margin-bottom: 30px;
}

.testimonial .author-name p{
  font-size: 15px;
  line-height: normal;
}

.testimonial .author-name p span{
  font-size: 13px;
}

/* blog-sec */

.blog-sec .blog-box p{
  font-size: 14px;
  line-height: normal;
}


/* footer */

.footer{
  background-color: #000000;
  color: #808080;
  padding: 75px 0;
}


.footer p{
  font-size: 15px;
  line-height: normal;
}

.footer .nav-menu-ft{
  display: flex;
  gap: 10px;
  margin: 0;
  justify-content: space-around;
}

.footer .nav-menu-ft a, footer .contact-list a{
  color: #808080;
  font-size: 15px;
}

.footer .contact-list li{
  margin-bottom: 15px;
}

.footer h6{
  font-family: var(--paragraph-font);
  font-size: 19px;
  color :#fff;
}

.footer form{
  display: flex;
  align-items: center;
  padding: 5px;
  background-color: #fff;

  
  border-radius:3px;
}

.footer form input, .footer form button{
  padding: 10px;
  outline: none;
  border: none;
  background: transparent;
}

.footer form button{
  border-left: 1px solid #000;
  width: 200px;
  text-transform: uppercase;
}

.footer p a{
  color: #c1c0bd;
}

.footer .nav-menu-ft {
  display: flex;
  gap: 18px 28px;
  margin: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* blog */

.blog-item {
  margin-bottom: 40px;
}

.blog-item .bi-pic {
  float: left;
}

.blog-item .bi-pic img {
  width: 360px;
  height: 240px;
  min-width: 100%;
}

.blog-item .bi-text {
  border: 1px solid #888;
  overflow: hidden;
  height: 240px;
  padding: 26px 30px 0 30px;
}

.blog-item .bi-text h5 {
  margin-bottom: 10px;
  color: var(--theme-color);
}

.blog-item .bi-text h5 a {
  color: var(--theme-color);
}
.blog-item p a {
  color: var(--theme-color);
	font-weight: 600;
	font-size: 15px;
}
.blog-item .bi-text ul {
  margin-bottom: 8px;
}

.blog-item .bi-text ul li {
  font-size: 12px;
  color: #888888;
  display: inline-block;
  list-style: none;
  margin-right: 25px;
  position: relative;
}

.blog-item .bi-text ul li::after {
  position: absolute;
  right: -15px;
  top: 0;
  content: "|";
}

.blog-item .bi-text p {
  color: #000;
  line-height: 22px;
  margin-bottom: 0;
  font-size: 16px;
}

.blog-pagination {
  padding-top: 10px;
}

.blog-pagination .active {
  background-color: #000;
}

.blog-pagination a {
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 500;
  margin-right: 15px;
  background: var(--theme-color);

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-section.spad {
  padding-bottom: 120px;
}

.blog-section .sidebar-option {
  padding-left: 70px;
}

.sidebar-option .so-categories {
  margin-bottom: 40px;
}

.sidebar-option .so-categories .title {
  font-size: 20px;
  color: #056839;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sidebar-option .so-categories ul li a {
  font-size: 14px;
  color: #5e5e5e;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}

.sidebar-option .so-categories ul li a span {
  font-size: 12px;
  float: right;
}

.sidebar-option .so-latest .title {
	font-size: 20px;
	color: var(--theme-color);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 23px;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-item .li-pic {
  float: left;
  margin-right: 20px;
}

.sidebar-option .so-latest .latest-item  .li-pic img {
  width: 68px;
  border-radius: 101px;
}

.sidebar-option .so-latest .latest-item .li-text {
  overflow: hidden;
}

.sidebar-option .so-latest .latest-item .li-text h6 a {
  font-size: 15px;
  color: var(--theme-color);
  line-height: 21px;
}

.sidebar-option .so-latest .latest-item .li-text h6 {
  margin-bottom: 0px;
}

.sidebar-option .so-latest .latest-item .li-text .li-time {
  display: inline-block;
  font-size: 12px;
  color: #888888;
}

.article-content {
  padding-top: 25px;
}

.article-content h4 a {
  color: var(--theme-color);
}


#review{
  background-color: #fff;
  background: #fff;
}

#review .review-box{
  background-color: #eee;
}


.product-page .cat-box{
  background-color: #eeeded;
  padding: 15px;
}

.product-page .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
  box-shadow: none;
  background: transparent;
}

.product-page .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.2rem;
  color: #000000;
  text-align: left;
  background-color:transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: 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,border-radius .15s ease;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--paragraph-font);
}

.product-page .accordion-item {
  background-color: transparent;
  border: 0px solid rgba(0,0,0,.125);
  border-bottom: 3px solid #000;
  border-radius: 0;
}

.product-page .product-list li {
  margin-bottom: 9px;
}

.product-page .product-list {
  margin: 0;
}

.product-page .product-list li a{
  color:var(--theme-color-third);
  letter-spacing: 1px;
  font-weight: 500;
}


.product-page .toolbox-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
}

.product-page .toolbox-item label{
  font-size: 12px;
  color: #666;
}

.product-page .toolbox-item select{
  width: 80%;
  padding: 10px;
  border-color: #999;
  border-radius: 0;
}
.product-page .rado-box{
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 4px;
}

.product-page input[type="radio"] {
  width: inherit;
}


.product-details .swiper-slide{
  border: 1px solid var(--theme-color);
}

.product-details .swiper-button-next::after{
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
	color: var(--theme-color);
}
.product-details .swiper-button-prev::after {
  color: var(--theme-color);
}
.product-details ul{
  list-style-type: disc;
  list-style-position: inside;
}

.product-details ul li{
  margin-bottom: 5px;
}



.nab-info .nav-pills .nav-link.active{
	color: var(--bs-nav-pills-link-active-color);
	background-color: var(--theme-color);
}

.nab-info .nav-link{
  background-color: #000;
  color: #fff;
  width: 220px;
  padding: 15px;
  border-radius: 0;
}

.nab-info #pills-tab {
	gap: 18px;
	/* border-bottom: 1px solid aliceblue; */
	/* background: #000; */
	/* justify-content: center; */
	/* width: 63%; */
}

.nab-info #pills-tabContent {
	background: #1e1e1e;
	padding: 35px;
	color: #fff;
}
.nab-info #pills-tabContent  ul {
  list-style: disc;
  padding-left: 15px;
}

.nab-info #pills-tabContent  li{
  margin-bottom: 10px;
}

.nab-info table {
  border: 1px solid #ececec;
	border-color: #ececec;
	border-spacing: 0;
	margin-bottom: 1em;
	width: 100%;
}

.nab-info .bb {
	border-bottom: 1px solid #ececec;
  padding: 5px!important;
  
}

.nab-info th, .nab-info td{
  padding: 10px;
}
.nab-info .pv1 {
	border-right: 1px solid #e1e1e1;
}




.contact-us form {
	background-color: #fff;
	padding: 35px;
	box-shadow: 1px 1px 6px 1px rgba(0,0,0,0.2);
}
.contact-us form input{
  
  width: 100%;
  border:1px solid var(--theme-color);
  background-color: transparent;

  padding: 15px;
}

.contact-us form label {
	color: #000;
}





.contact-us form .form-check-input {
	width: 11px;
	padding: 9px;
}
.contact-us .form-check{
	display: flex;
	align-items: center;
	gap: 10px;
	
	/* width: -4%; */
}

.contact-us .radio-box  label{
  color: #000000;
}
.contact-us form .form-check-input:checked {
	background-color: var(--theme-color);
	border-color: var(--theme-color);
}

.contact-us .form-check label {
	color: #000;
}

.contact-us  form select{
 
  width: 100%;
  border:1px solid var(--theme-color);
  background-color: transparent;
  
  padding: 15px;
}

.contact-us  form select option{
  background-color: var(--theme-color);
}
.contact-us button {
	width: 100%;
	padding: 14px;
	background: var(--theme-color);
	color: #fff;
	font-weight: bold;
	letter-spacing: 5px;
  border: none;
}

.contact-us textarea{
 
  width: 100%;
  border:1px solid var(--theme-color);
  background-color: transparent;
  
  padding: 15px;
  height: 120px;
}


/* new css */

.quantity-counter .value {
  border: 1px solid #adadad;
  border-radius: 3px;
  margin: 2px 0;
  padding: 4px;
  width: 50px;
  height: 50px;
  text-align: center;
  -moz-appearance: textfield;
}
.quantity-counter .value::-webkit-outer-spin-button, .quantity-counter .value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-counter .increment,
.quantity-counter .decrement {
  border: 1px solid #adadad;
  background: transparent;
  cursor: pointer;
  border-radius: 3px;
  background:var(--theme-color-second);
  color: #fff;
  height: 50px;
  width: 50px;
}


/* Additional CSS */

form.wpcf7-form.init p {
    margin-bottom: 0;
}
  

/* Blog Pagination */

.center {
  display: table;
  margin: 35px auto;
}

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

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

span.page-numbers.current {
    background-color: #0031d1;
    color: #fff;
    padding: 10px 16px;
    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 0px;
    font-size: 18px;
        z-index: 3; 
}




/*Blog Comment Section  */

#respond {

    margin: 0 auto;
}
#respond #reply-title small a{
        color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
        border: none;
}
#respond form p{
        color: #6d6d6d;
      margin: 0;
    line-height: 26px;
    margin-bottom: 21px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 20px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 20px;
}

#respond .form-submit {
    margin-top: 20px;
}

#respond .submit {
    background-color: #0031d1;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
    color: #0f3ca1 !important;
    text-decoration: underline;
    display: inline-block !important;
}
#comments .comment-author a{
    color: #000 !important;
}
#comments .comment-metadata a{
    color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
        color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
    color: white !important;
        background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px !important;
}
  



/* Newsletter Form */

input[type="submit"] {
    border: none !important;
    width:  140px;
    text-transform: uppercase;

}
input#esfpx_email_ad9538b98f1ca{
    width: calc(100% - 140px)!important;
    border-right: 1px solid #000;
}

.es-form-field-container {
    width: 100%;
}
form[data-form-id="1"] .es-form-field-container .gjs-row {
    margin-bottom: 0 !important;
}


/* woocommerce */

#mrg-product{
	margin-top:108px;
}

form.woocommerce-ordering select {
    padding: 9px;
    border-radius: 5px;
	color:#000;
}

button.single_add_to_cart_button.button.alt.comon-btn {
    background: var(--theme-color);
    color: #fff;
    display: inline-block;
    font-size: 16px;
    padding: 15px 6px;
    border-radius: 50px;
    width: 12rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover{

    background: var(--theme-color-second)!important;
    color: #fff !important;
}
.woocommerce .quantity .qty {

    border: 1px solid #adadad;
    border-radius: 3px;
    margin: 2px 0;
    padding: 4px;
    width: 50px;
    height: 50px;
    text-align: center;
    -moz-appearance: textfield !important;
}

section.related.products {
    display: none !important;
}
ul.tabs.wc-tabs {
    display: flex;
}
.tabs.wc-tabs .active {

    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--theme-color);
}
.tabs.wc-tabs li {
   
    background-color: #000;
    color: #fff;
    width: 220px;
    padding: 15px;
    border-radius: 0;
	margin-right: 15px;
	text-align: center;

}
.tabs.wc-tabs .active a {
    color: #000;
}.tabs.wc-tabs li a {
    color: #fff;
}

.woocommerce-Tabs-panel  {
    color: rgb(255, 255, 255);
    background: rgb(30, 30, 30);
    padding: 35px;
}

a.checkout-button.button.alt.wc-forward {
    background: var(--theme-color);
    color: #fff;
    display: inline-block;
    font-size: 16px;
    padding: 19px 7px;
    border-radius: 50px;
    width: 34rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}
.woocommerce a.button.alt:hover{
	background: var(--theme-color-second) !important;
    color: #fff !important;
}

.wpc-filters-section {
    border-bottom: 3px solid #000;
	padding-bottom: 30px;
}

span.wpc-term-count {
    display: none;
}

.search-form label {
    width: 100%;
}

.wpc-edit-filter-set {
    display: none;
}
li.wpc-radio-item a {
    color: #000;
}

.des_style{
	list-style:disc;
	padding-left: 22px;
}
.product_meta a {
    color: #0031d1;
}

a.button.wc-backward {
    background: var(--theme-color) !important;
    color: #fff !important;
    display: inline-block !important;
    font-size: 16px !important;
    padding: 15px 6px !important;
    border-radius: 50px !important;
    width: 12rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
}

.wp-element-button {
    background: var(--theme-color);
    color: #fff;
    display: inline-block;
    font-size: 16px;
    padding: 12px 6px;
    border-radius: 50px;
    width: 12rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}
.widget-title {
    font-weight: 700;
}

.woocommerce-variation-price{

    font-family: var(--heading-font);
    line-height: 2;
    font-size: 20px;

}
button.reset_variations {
    background-color: var(--theme-color-second);
    border: none;
    border-radius: 50px;
    padding: 0px 12px;
}
.comment-form-rating p.stars span a {
    color: #0031D1;
}
.woocommerce-product-rating {
    color: #0031D1;
}