 
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}

 


:root{
  --theme-color: rgba(38, 156, 83, 1);
  --secondary-color: #269c53;
  --text-color: rgba(106, 106, 106, 1);
  --title-color: rgba(17, 17, 17, 1);
  --text-font: "Lato", sans-serif;
  --title-font: "Quicksand", sans-serif;
}





body {
  font-size:16px;
  color: var(--text-color);
  line-height:28px;
  font-weight:400;
  background:#ffffff;
  font-family: var(--text-font);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

  @media (min-width:1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.large-container{
  max-width: 1680px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

.auto-container{
  position:static;
  max-width:1320px;
  padding:0px 15px;
  margin:0 auto;
}

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

ul,li{
  list-style:none;
  padding:0px;
  margin:0px; 
}

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  margin: 0px;
  transition: all 500ms ease;
}


/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  background: var(--secondary-color);
}

.preloader-close{
  position: fixed;
  z-index: 99999999;
  font-size: 14px;
  background: #fff;
  color: var(--theme-color);
  width: 40px;
  height: 40px;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  right: 30px;
  top: 30px;
  font-weight: 400;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner{
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading{
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff2e;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before { animation-delay: 1.6s;}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before { animation-delay: 1.8s;}
.handle-preloader .loader-section {
  background-color: #000;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before{
  color: #fff;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgb(255 255 255 / 30%);
}

/* AnimaciÃƒÂ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {font-size: 30px; letter-spacing: 5px;}
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.row{
  --bs-gutter-x: 30px;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

html.lenis {
  height: auto;
}

/** button **/


.theme-btn{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--title-font);
  color: #fff !important;
  text-align: center;
  border-radius: 50px;
  padding: 10px 40px;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
}

.theme-btn:hover{
  background: var(--secondary-color) !important;
}

.theme-btn.btn-one{

}

.theme-btn.btn-two{
  background: #111;
}

.theme-btn:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: left center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}

.theme-btn:after{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  right: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: right center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}

.theme-btn:hover:before,
.theme-btn:hover:after{
  transform: translateX(1);
  width: 50%;
}


.parallax-bg{
  position: absolute;
  left: 0px;
  top: -30%;
  width: 100%;
  height: calc(100% + 30%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/** styled-pagination */

.pagination{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li{
  position: relative;
  display: inline-block;
  margin: 0px 5px;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-family: var(--title-font);
  color: var(--title-color);
  height: 44px;
  width: 44px;
  line-height: 44px;
  background: #ffffff;
  border: 1px solid #E5E5E5;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current{
  color: #fff;
}

.pagination li a.dot-link{
  position: relative;
  width: 8px;
  height: 8px;
  line-height: 8px;
  background: rgba(11, 3, 3, 0.40);
  border-radius: 50%;
  border: none;
}

.pagination li a.dot-link:hover,
.pagination li a.dot-link.current{
  
}

.pagination li a.dot-link:before{
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border: solid;
  border-width: 2px;
  opacity: 0;
  border-radius: 50%;
  left: -6px;
  top: -6px;
  transition: all 500ms ease;
}

.pagination li a.dot-link:hover:before,
.pagination li a.dot-link.current:before{
  opacity: 1;
}

.sec-pad{
  padding: 142px 0px 150px 0px;
}

.mr-0{
  margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 80px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px rgba(0,46,65,0.2);
  border-radius: 50%;
  z-index: 90000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroll-to-top.scroll-top-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.scroll-to-top::after {
  position: absolute;
  content: "\e907";
  font-family: 'icomoon';
  text-align: center;
  line-height: 50px;
  font-size: 14px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transform: rotate(-90deg);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear
}

.scroll-to-top:hover::after {
  
}

.scroll-to-top:hover::before {
  opacity: 1
}

.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: transparent;
  box-sizing: border-box;
  stroke: var(--theme-color);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}



@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}



.sec-title{
  position: relative;
  display: block;
}

.sec-title.d_flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
}

.sec-title.light h2{
  color: #fff;
}

.sec-title a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: capitalize;
  color: var(--title-color);
  text-decoration: underline;
}

.sec-title a:hover{

}





/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  right: 0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/** language-switcher **/

.language-picker label{
  display: none;
}

.language-picker .nice-select{
  display: none;
}


.language-picker {
  position: relative;
  display: inline-block;
}

.language-picker__button .icon {
  display: none;
}

.language-picker__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 110px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
  padding: 15px 15px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  text-align: left;
  transition: visibility 0s .2s, opacity .2s, -webkit-transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out;
  transition: visibility 0s .2s, opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__button[aria-expanded=true]+.language-picker__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  transition: opacity .2s, -webkit-transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out;
  transition: opacity .2s, transform .2s ease-out, -webkit-transform .2s ease-out
}

.language-picker__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.language-picker__item:hover {

}

.language-picker__button{
  position: relative;
  border: none !important;
  padding: 0px;
  padding-right: 7px;
}

.language-picker__button:before{
  position: absolute;
  content: '\e900';
  font-family: 'icomoon';
  font-size: 6px;
  top: 8px;
  right: 0px;
  color: #fff;
}

.language-picker__flag {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  font-family: var(--title-font);
  font-weight: 600;
  color: #222;
  padding-left: 33px;
  text-transform: uppercase;
}

.language-picker__list .language-picker__flag{
  padding: 4px 0px 4px 33px;
}

.language-picker__list

.language-picker__flag.language-picker__label:after {
  position: absolute;
  content: '';
  background-image: url(../images/icons/icon-1.png);
  width: 10px;
  height: 6px;
  top: 6px;
  right: 0px;
  background-repeat: no-repeat;
}

.language-picker__flag.language-picker__label{
  padding-left: 26px;
  padding-right: 0px;
  color: #fff;
  padding-right: 16px;
}

.language-picker__flag em{
  font-style: normal;
}

.language-picker__flag::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  top: 4px;
  left: 0px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.language-picker__flag.language-picker__label:before{
  top: -3px;
  left: 0px;
}

.language-picker__dropdown .language-picker__flag::before {
  margin-right: .5rem;
  margin-right: var(--space-xs);
  top: -1px;
}

.language-picker__flag--deutsch::before {
  background-image: url(../images/icons/flag-deutsch.png);
}

.language-picker__flag--english::before {
  background-image: url(../images/icons/flag-english.png);
}

.language-picker__flag--francais::before {
  background-image: url(../images/icons/flag-francais.png);
}

.language-picker__flag--italiano::before {
  background-image: url(../images/icons/flag-italiano.png);
}

.language-picker--hide-label .language-picker__button .icon {
  margin-left: 0
}

.language-picker--hide-label .language-picker__button em {
  display: none
}

.language-picker--hide-label .language-picker__button .language-picker__flag::before {
  margin-right: .25rem;
  margin-right: var(--space-xxxs)
}

.language-picker__flag.language-picker__label{
  padding-right: 7px;
}

.nice-select{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 14px;
  background: transparent;
}

.nice-select:before{
  position: absolute;
  content: '\e900';
  font-family: 'icomoon';
  font-size: 6px;
  top: 0px;
  right: 0px;
  color: #fff;
  font-weight: 700;
}

.nice-select .list{
  min-width: 100px;
}

.nice-select .list li{
  color: var(--text-color);
}

.nice-select .list{
  max-height: 160px;
  overflow-x: hidden;
  overflow-y: auto;
}


.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

.owl-nav button{
  background: transparent;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x{
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}


/** rtl-switcher **/

.demo-rtl{
  position: fixed;
  top: 390px;
  left: 10px;
  z-index: 9999;
}

button.rtl{
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  transition: all 500ms ease;
}

.demo-ltr{
  position: fixed;
  top: 390px;
  left: auto;
  right: 10px;
  z-index: 9999;
}

button.ltr {
  background: var(--theme-color);
  display: block;
  text-indent: inherit;
  font-size: 12px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0px;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 1.0);
  transition: all 500ms ease;
}

.boxed_wrapper.ltr .demo-rtl{
  display: block;
}

.boxed_wrapper.ltr .demo-ltr{
  display: none;
}

.boxed_wrapper.rtl .demo-rtl{
  display: none;
}

.boxed_wrapper.rtl .demo-ltr{
  display: block;
}

.discount-product,
.hot-product,
.popular-product{
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-family: var(--text-font);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0px 5px 5px 0px;
  padding: 2px 13.5px;
  z-index: 1;
}

.discount-product{
  background: #27D82E;
}

.hot-product{
  background: #FF0000;
}

.popular-product{
  background: #FF6B00;
}

.product-stock,
.product-stock-out{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #28C01B;
  font-weight: 500;
  padding-left: 27px;
}

.product-stock img,
.product-stock-out img{
  position: absolute;
  left: 0px;
  top: 0px;
}

.product-stock-out{
  color: #E92530;
}

.nav-style-one .owl-nav button{
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 48px;
  height: 48px;
  line-height: 52px;
  background: #EEF2EC;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  z-index: 1;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav .owl-prev{
  margin-right: 10px;
}

.nav-style-one .owl-nav button:hover{
  color: #fff;
  background: transparent !important;
}

.nav-style-one .owl-nav button:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: var(--secondary-color);
  border-radius: 50%;
  transform-origin: top center;
  transform: scaleY(0);
  z-index: -1;
  transition: all 500ms ease;
}

.nav-style-one .owl-nav button:hover:before{
  transform: scaleY(1);
}

.progress-box .bar{
  position:relative;
  width:100%;
  height:8px;
  background: #E3E7EB;
  border-radius: 4px;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:8px;
  border-radius: 4px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.rating{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}

.rating li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #F8CD2E;
  margin-right: 2px;
}

.rating li span{
  color: #7C7C7C;
  padding-left: 2px;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
}

.accordion-box .block .acc-content.current {
  display: block;
}


.wrapper.list .shop-list-content{
  display: block;
}

.wrapper.list .shop-grid-content{
  display: none
}

.wrapper.grid .shop-list-content{
  display: none;
}

.wrapper.grid .shop-grid-content{
  display: block
}

.nice-select .option{
  padding-left: 15px;
  padding-right: 15px;
}

.tabs-box .tab{
  position:relative;
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab{
  display:block;  
}

.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}

.border-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}

.border-animation.border-2 {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}

.border-animation.border-3 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}


/** category-menu **/


.category-menu{
  position: fixed;
  left: 0;
  top: 0;
  width: 300px;
  padding-right:30px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  display: none;
  transition: all 900ms ease;
}

.category-menu .navbar-collapse{
  display:block !important; 
}

.category-menu .upper-box{
  position:relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:50px 20px;
  text-align:left;  
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 25px;
}

.category-visible .category-menu{
  opacity: 1;
  visibility: visible;
}

.category-menu .menu-backdrop{
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.category-visible .category-menu .menu-backdrop{
  opacity: 0.90;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.category-menu .outer-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #fff;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: all 900ms ease !important;
}

.category-visible .category-menu .outer-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.category-menu .close-btn{
  position: relative;
  display: inline-block;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 14px;
  color: #111;
  cursor: pointer;
  z-index: 10;
}


.category-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.category-menu .category-list li{
  position: relative;
  display: block;
  cursor: pointer;
}

.category-menu .category-list li .icon{
  position: absolute;
  left: 20px;
  top: 2px;
}

.category-menu .category-list li > a{
  position: relative;
  display: block;
  line-height: 24px;
  padding: 6px 25px;
  font-size: 15px;
  font-weight: 500;
  color: var(--title-color);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
}

.category-menu .category-list.product-category li > a{
  padding-left: 50px;
}

.category-menu .category-list.product-category li{
  margin-bottom: 6px;
}

.category-menu .category-list.product-category li:last-child{
  margin-bottom: 0px;
}

.category-menu .category-list li > a:hover{
  color: var(--theme-color);
}

.category-menu .category-list li.category-dropdown .dropdown-btn{
  position:absolute;
  right:25px;
  top:3px;
  text-align:center;
  font-size:8px;
  line-height:32px;
  color:var(--title-color);
  cursor:pointer;
  border-radius:2px;
  opacity: 0.6;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; 
  z-index:5;
}

.category-menu .category-list li.category-dropdown .dropdown-btn.open{
  transform: rotate(180deg);
}

.category-menu .category-list .category-dropdown ul{
  display: none;
}

.category-menu p{
  position: relative;
  display: block;
  padding: 0px 25px;
  opacity: 0.4;
  font-size: 14px;
  font-weight: 600;
}

.category-menu .category-box .category-list{
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.category-menu .category-list li > a span{
  position: absolute;
  top: 8px;
  right: 25px;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  padding: 0px 5px;
  border-radius: 2px;
  background: #CED4DA;
}



/** cart-box **/

.cart-menu {
  position: absolute;
  top: 44px;
  right: 0px;
  width: 315px;
  padding: 25px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  z-index: 5;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.5s ease-in-out;
}

.cart-menu.cart-visible {
  opacity: 1;
  visibility: visible;
  display: block;
  transform: scaleY(1);
  transition: all 0.5s ease-in-out;

      max-height: 500px;
    overflow-x: auto;
}

.cart-menu .close-icon {
    position: absolute;
    top: 0px;
    left: 3px;
    right: 5px;
    left: auto;
    margin-top: 10px;
}

.main-header .menu-right-content .info-list .cart-menu .close-icon a{
      background: red;
    right: 0;
    left: auto;
    float: right;
    color: #fff !important;
    padding-top: 1px;
}

.main-header .menu-right-content .info-list .cart-menu .close-icon a{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  text-align: center;
  border-radius: 50%;
  color: #111;
  opacity: 0.5;
  z-index: 1;
}

.main-header .menu-right-content .info-list .cart-menu .close-icon a:hover{
  opacity: 1;
  border-color: #FFAC00;
  color: #FFAC00;
}

.cart-menu .cart-products .product{
  position: relative;
  display: block;
  padding: 20px 20px 20px 73px;
  border-bottom: solid;
  border-width: 1px;
  border-color: #E8E8E8;
}

.cart-menu .cart-products .product .image-box{
  position: absolute;
  left: 0px;
  top: 23px;
  width: 60px;
  height: 60px;
  line-height: 56px;
  border: solid;
  border-width: 1px;
  border-color: #E5E5E5;
}

.cart-menu .cart-products .product .image-box img{
  width: 100%;
}

.cart-menu .cart-products .product h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
}

.cart-menu .cart-products .product h6 a{
  position: relative;
  display: inline-block;
  color: var(--title-color);
  font-size: 14px !important;
  line-height: 20px;
}

.cart-menu .cart-products .product h5 a:hover{

}

.cart-menu .cart-products .product span{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-family: var(--title-font);
  color: #E92530;
  font-weight: 700;
}

.cart-menu .cart-products .product span .quentity{
  color: var(--title-color);
}

.cart-menu .cart-products .product .remove-btn{
  position: absolute;
  top: 20px;
  right: 0px;
  font-size: 12px;
  color: var(--title-color);
  transition: all 500ms ease;
}

.cart-menu .cart-products .product .remove-btn:hover{
  color: #E92530;
}

.cart-menu .cart-total{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.cart-menu .cart-total span{
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
}

.cart-menu .cart-total span.cart-total-price{
  color: #E92530;
}

.cart-menu .cart-action{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .menu-right-content .info-list .cart-menu .theme-btn{
  font-size: 14px;
  padding: 5px 29px;
}


.item-quantity-selector{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 35px;
  float: left;
  padding: 0px 36px;
  margin-left: 0px;
  border: 1px solid #E7E9F0;
  border-radius: 50px;
  background: #fff;
  z-index: 1;
}

.bootstrap-touchspin .input-group-btn-vertical i{
  left: 12px;
}

.item-quantity-selector input.quantity-spinner {
    line-height: 48px;
    height: 34px;
    width: 33px !important;
    padding: 0px !important;
    box-shadow: none !important;
    border: none;
    text-align: center;
    font-size: 15px;
    font-family: var(--title-font-two);
    font-weight: 400;
    color: #111;
    background: transparent;
    margin-left: 5px !important;
}

.bootstrap-touchspin .btn.bootstrap-touchspin-up{
  position: absolute;
  height: 35px;
  width: 35px;
  background: #E6EDE9;
  padding: 0px 0px;
  right: -45px;
  top: -1px;
  margin-top: 0px;
  border-radius: 0px 50px 50px 0px;
  border: none !important;
}

.bootstrap-touchspin .btn.bootstrap-touchspin-up:hover{

}

.bootstrap-touchspin .btn.bootstrap-touchspin-up:before {
  content: "\f067";
  font-size: 16px;
  font-style: normal;
  color: #111;
  font-family: 'Font Awesome 5 Pro';
  transition: all 500ms ease;
}

.bootstrap-touchspin .btn.bootstrap-touchspin-up:hover:before{
  color: #fff;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
  position: absolute;
  height: 35px;
  width: 35px;
  background: #E6EDE9;
  padding: 0px 0px;
  left: -37px;
  top: -1px;
  border-radius: 50px 0px 0px 50px;
  border: none !important;
  transition: all 500ms ease;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover{

}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:before {
  content: "\f068";
  font-size: 16px;
  font-style: normal;
  color: #111;
  font-family: 'Font Awesome 5 Pro';
  transition: all 500ms ease;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover:before{
  color: #fff;
}

.bootstrap-touchspin .input-group-btn-vertical i{
  display: none;
}

.bootstrap-touchspin .btn:hover,
.bootstrap-touchspin .btn:focus{
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.sub-title{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  border-radius: 40px;
  background: #E53E3E;
  padding: 2px 14px;
  opacity: 0;
}

.parallax-scene{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.parallax-scene .parallax-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.tabs-box .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
}

.tabs-box .tab-btns li{
  position: relative;
  display: inline-block;
  margin-right: 45px;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  cursor: pointer;
  transition: all 500ms ease;
}

.tabs-box .tab-btns li:last-child{
  margin: 0px !important;
}

.tabs-box .tab-btns li.active-btn,
.tabs-box .tab-btns li:hover{

}

.tabs-box .tab-btns li:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 2px;
  left: 0px;
  bottom: -13px;
  transition: all 0.5s ease-in-out 0.1s;
}

.tabs-box .tab-btns li.active-btn:before,
.tabs-box .tab-btns li:hover:before{
  width: 100%;
}

.pl_275{
  padding-left: 275px;
}

.pr_275{
  padding-right: 275px;
}

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

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


.progress-box .bar{
  position:relative;
  width:100%;
  height:5px;
  background: #E3E7EB;
  border-radius: 4px;
}
  
.progress-box .bar-inner{
  position:relative;
  display:block;
  width:0px;
  height:5px;
  background: #27D82E;
  border-radius: 4px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-box.low-stock .bar-inner{
  background: #E92530;
}

.progress-box p{
  font-size: 16px;
  line-height: 16px;
  color: #7C7C7C;
}

.progress-box p span{
  font-weight: 500;
  color: var(--title-color);
}


.shop-filter-content {
  display: none;
  height: 0px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.5s ease-in-out;
}

.shop-filter-content.cart-visible {
  display: block;
  height: 100%;
  opacity: 1;
  visibility: visible;
  display: block;
  transform: scaleY(1);
  transition: all 0.5s ease-in-out;
}

.shop-filter-content .filter-close-icon {
  position: absolute;
  top: 5px;
  left: 8px;
}

.shop-filter-content .filter-close-icon a{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  border: solid;
  border-width: 1px;
  border-color: #111;
  text-align: center;
  border-radius: 50%;
  color: #111;
  opacity: 0.5;
  z-index: 1;
}

.shop-filter-content .filter-close-icon a:hover{
  opacity: 1;
  border-color: #FFAC00;
  color: #FFAC00;
}

.list-style-one{
  position: relative;
  display: block;
}

.list-style-one li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 6px;
  padding-left: 18px;
}

.list-style-one li:last-child{
  margin-bottom: 0px;
}

.list-style-one li span{
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
}

.list-style-one li:before{
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0px;
  top: 10px;
}


.check-box-two input {
  display: none;
}

.check-box-two label {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  color: var(--title-color);
  padding-left: 24px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 0px;
}

.check-box-two label:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  border-color: #DDDDDD;
  background: transparent;
}

.check-box-two label:after {
  position: absolute;
  content: '\e928';
  font-family: 'icomoon';
  left: 3px;
  top: 2px;
  opacity: 0;
  font-size: 8px;
  color: #fff;
}

.check-box-two input:checked + label:after {
  opacity: 1;
}

.check-box-two input:checked + label:before{

}

.clear{
  clear: both;
}

.logo_main{
  float: left;
  width: 190px;
  margin-bottom: -20px;
  margin-top: -20px;
}


.footer_logo{
  display: inline-block;
  width: 200px;
}

.menu_lft_top{
      margin-left: -20%;
}

.brnch_text{
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.serch_brnch {
    float: left;
    width: 40%;
    margin-left: 30%;
    border-radius: 100px;
    overflow: hidden;
}

.serch_brnch_input {
    float: left;
    width: 70%;
    background: #ffffffb3;
    font-size: 18px;
    padding: 12px 10px;
    padding-left: 26px;
}

.serch_btn {
    float: left;
    width: 30%;
    background: #269c53;
    height: 52px;
    line-height: 52px;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding-right: 10px;
}

.serch_btn:hover{
  background:#187c3f;
  color:#fff;
}

.ad_cart_btn{
  text-transform: uppercase;
  font-size: 20px;
}

.product-details-content .slider-content .thumb-box li{
  margin-right: 8px !important;
}

.whtsap_btn{
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  margin-bottom: 10px;
  margin-right: 30px;
}

.whtsap_btn img{
  width: 220px;
}

.subscr_as input {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: #fff;
    border: solid;
    border-width: 2px;
    border-color: #eb0d8c;
    font-size: 16px;
    color: #6A6A6A;
    padding: 10px 70px 10px 20px;
    border-radius: 40px;
    transition: all 500ms ease;
}

.subscr_as button[type='submit'] {
    position: absolute;
    display: inline-block;
    width: 55px;
    height: 40px;
    line-height: 42px;
    top: 5px;
    right: 5px;
    border-radius: 100px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #eb0d8c;
    transition: all 500ms ease;
}


.subscr_as .form-group {
    position: relative;
    margin-bottom: 0px;
    max-width: 24%;
    margin-left: 38%;
    margin-bottom: 30px;
}

.selct_date_time{
  float: left;
  width: 100%;
   border: 1px solid #e5e5e5;
    margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px ;
  border-radius: 6px;
}

.selct_date_time_titl{
  float: left;
  width: 100%;
  margin-bottom: 2px;
 
 
}

.selct_date_time_titl{
  float: left;
  color:#333;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}

.slct_date {
    float: left;
    width: 48%;
}

.slct_date_right{
  float: right;
}

.slct_date_labl {
    float: left;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    color: #555;
    margin-top: 15px;
     font-family: "Quicksand", sans-serif;
}

.slct_date_input {
    float: left;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 10px;
    border-radius: 4px;
    margin-top: 3px;
    margin-bottom: 30px;
}

.clear{
  clear: both;
}

.slct_date.slct_date_radio {
    float: left;
    width: 100%;
    margin-top: 10px;
}

.slct_date.slct_date_radio .slct_date_input {
    float: left;
    width: 20px;
    margin: 0px;
    margin-top: 6px;
    height: 20px;
    margin-right: 10px;
}

.slct_date.slct_date_radio .slct_date_labl {
    float: left;
    width: auto;
    margin: 0px;
    margin-top: 1px;
}

.news_letr_as.cta-section h2 {
    font-size: 26px;
    line-height: 30px;
    text-transform: uppercase;
}

.testimonial-section.pb_50 h4{
  margin-top: 20px;
}

.pric_type {
    float: left;
    width: 30%;
    margin-bottom: 5px;
    /* box-shadow: 0px 0px 3px #33333329; */
    margin-right: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 10px 0px;
    text-transform: uppercase;
}

.pric_type h3 {
    float: left;
    width: 100%;
    color: #269c53 !important;
    text-align: center;
    margin-bottom: 0px !important;
}

.price_titl {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: -4px;
    font-size: 14px;
    color:#888;
}

.card-list.clearfix li {
    float: left;
    width: 15.666666% !important;
    margin: 0px 0.5% !important;
}

.card-list.clearfix li a {
    width: 100%;
    display: inline-block !important;
    height: 42px;
}

.card-list.clearfix li a img{
  width: 100%;
}

.apl_pay {
    border: 2px solid #333;
    height: 100%;
    background:#fff;
}

.apl_pay img {
    float: left;
    width: 80% !important;
    margin-left: 10%;
    margin-top: 8px;
}

.icon-box .fa.fa-whatsapp{
      font-size: 36px !important;
}


.item-quantity111 {
    background: #e3f8eb;
    float: left;
    border-radius: 100px;
    overflow: hidden;
}

.item-quantity111 .minus-btn {
    float: left;
    font-size: 0px;
    width: 25%;
    background: #269c53;
    height: 41px;
    line-height: 38px;
    cursor: pointer;
}

.item-quantity111 .minus-btn:after {
    content: "-";
    font-size: 40px;
    color: #fff;
    font-weight: 400;
}

.item-quantity111 .plus-btn {
}

.prod_qty_input_box {
    float: left;
    width: 50%;
    text-align: center;
    line-height: 42px;
}

.item-quantity111 .plus-btn {
    float: left;
    width: 25%;
    font-size: 0px;
    background: #269c53;
    height: 41px;
    line-height: 37px;
    cursor: pointer;
}

.item-quantity111 .plus-btn:after {
    content: "+";
    font-size: 20px;
    color: #fff;
    font-size: 34px;
    color: #fff;
    font-weight: 400;
}
.wish_active {
    background-color: #269c53 !important;
}







 .main_otp_wrp{
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    background: #000000a1;
    width: 100%;
    height: 100%;
}
 .cros_otp{
    float: right;
    background: #ff5f5f;
    color: #fff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 15px;
    margin-bottom: 20px;
    cursor: pointer;
}
 .iner_otp_wrp{
        float: left;
    width: 60%;
    background: #fff;
    margin: 20%;
    margin-top: 10px;
    padding: 20px 20px;
    text-align: center;
}
 .enter_otp_text{
    float: left;
    width: 100%;
    font-size: 24px;
    margin-top: 10px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}
 .enter_otp_text_2{
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 18px;
}
 .otp_input{
    float: left;
    width: 100%;
}
 .otp_input input{
    text-align: center;
    width: 100%;
    background: #f9f9f9;
    margin-top: 20px;
    font-size: 18px;
    padding: 14px 0px;
    text-align: left;
    padding-left: 20px;
}
 .submit_otp , .send_otp{
        display: block;
    clear: both;
    overflow: hidden;
    background: #269c53;
    color: #fff;
    font-size: 20px;
    padding: 14px 0px;
}

.submit_otp:hover , .send_otp:hover{
    background: #269c53;
    color: #fff;

}

 .main_otp_wrp_hide{
     display: none;
}


.otp_input_mobil{
    
}

.otp_input_mobil input{
    
}

.otp_input_mobil .submit_otp{
    
}

.resnd_otp{

}

.enter_otp_text_3 {
    font-size: 20px;
    float: left;
    width: 100%;
    margin-top: 30px;
    color: #333;
}


.resnd_otp {
    display: inline-block;
    background: #269a52;
    padding: 15px 20px;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 50px;
    border-radius: 10px;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}

.resnd_otp{
    background:#269a52;
    color:#fff;
    cursor: pointer;
}

.resnd_otp:hover{
    color:#fff;
    cursor: pointer;
}

.otp_icon {
    float: left;
    width: 100%;
    margin-top: -40px;
}

.otp_icon i {
    font-size: 30px;
    width: 100px;
    background: #36bb69;
    height: 100px;
    line-height: 100px;
    border-radius: 100px;
    margin-bottom: 10px;
    color: #fff;
    border: 5px solid #218e4b;
    line-height: 89px;
}

/*___________________________________________________________*/

.click_text {
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 10px;
    color: #333;
}

.click_text_2 {
    float: left;
    width: 100%;
    padding: 0px 15%;
    font-size: 19px;
    margin-top: 20px;
    margin-bottom: -20px;
    color: #444;
}


.sav_text_2{
  float: left;
  width: 100%;
  font-size: 20px;
  color:#333;
}

.cil_sec_2{
  background:#f9f9f9;
  padding: 100px 5%;
}


.loctn_wrp {
    float: left;
    width: 80%;
    background: #fff;
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #33333321;
    text-align: center;
    margin-left: 10%;
}

.loctn_til {
    float: left;
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
}

.loctn_til_ans {
    float: left;
    width: 100%;
    font-size: 18px;
    margin-top: 10px;
    line-height: 25px;
}

.tex_center_cli{
  text-align: center;
}

.map_click{
float: left;
height: 400px;
width: 100%;
border-radius: 20px;
overflow: hidden;
}

.map_click iframe{
  width: 100%;
  height: 100%;
}

.how_titl {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
}


.how_wrk{

}

.how_wrk_singl {
    float: left;
    width: 18%;
    background: #fff;
    margin: 0px 1%;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0px 0px 6px #3333332b;
    border-radius: 20px;
    min-height: 300px;
}


.how_wrk_singl_num {
    /* float: left; */
    width: 74px;
    /* margin-left: 35%; */
    /* margin-right: 35%; */
    background: #ffffff;
    height: 74px;
    line-height: 72px;
    margin-top: -45px;
    border-radius: 100px;
    box-shadow: 0px 0px 6px #33333340;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    background: #269c53;
    color: #fff;
}

.how_wrk_singl_titl {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #269c53;
}

.how_wrk_singl_text {
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
    padding: 0px 20px;
    line-height: 22px;
    color: #888;
    margin-bottom: 20px;
}

.sec_ti_3{

}

.click_se_3{
  background:#f9f9f9;
}

.sec_ti_3 {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 60px;
    font-size: 22px;
    padding: 0px 23%;
    font-weight: 600;
}

.smrt_trip_aas {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-top: 40px;
}

.tip_wrp {
    float: left;
    width: 100%;
    padding: 0px 2%;
    margin-top: 30px;
}

.tip_wrp_singl {
    float: left;
    width: 48%;
    margin: 0px 1%;
}

.tip_wrp_singl_qstn {
    float: left;
    width: 100%;
    background: #269c53;
    color: #fff;
    font-size: 20px;
    padding: 10px 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.tip_wrp_singl_ans {
    float: left;
    width: 100%;
    border: 1px solid #269c53;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px 10px;
    font-size: 18px;
    border-bottom-left-radius: 10px;
    line-height: 22px;
    border-bottom-right-radius: 10px;
}

.click_sec_4{
  margin-top: 60px;
}

.click_sec_4 .how_wrk_singl{
  min-height: 200px;
}

.click_sec_4 .how_wrk_singl .how_wrk_singl_num{

}

.click_sec_4 .how_wrk_singl_text {
    font-size: 16px;
}

.click_sec_4 .how_wrk_singl .how_wrk_singl_num {
    background: #269c53;
    color: #fff;
}

.click_se_3.click_se_5 .tip_wrp_singl {
    width: 98%;
}


.ans_qstn {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.str_shop {
    background: #269c53;
    padding: 20px 30px;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 21px;
    display: inline-block;
}

.str_shop:hover{
  color:#fff;
  background:#188140;
}


@media screen and (max-width: 768px) {

  .about-section .sec-title h2 {
    font-size: 38px !important;
    line-height: 46px !important;
}

.click_text {
    text-transform: uppercase;
    font-size: 18px;
  }

  .click_text_2 {
    float: left;
    width: 100%;
    padding: 0px 2%;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: -20px;
    color: #444;
    line-height: 23px;
}

.sav_text_2 {
    float: left;
    width: 100%;
    font-size: 17px;
    color: #333;
    line-height: 25px;
}

.loctn_wrp {
    float: left;
    width: 100%;
    background: #fff;
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #33333321;
    text-align: center;
    margin-left: 00%;
}

.cil_sec_2 {
    background: #f9f9f9;
    padding: 50px 3%;
}

.how_wrk_singl {
    float: left;
    width: 90%;
    background: #fff;
    margin: 0px 5%;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0px 0px 6px #3333332b;
    border-radius: 20px;
    min-height: auto;
}

.how_titl{
  font-size: 25px;
}

.sec_ti_3 {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 60px;
    font-size: 18px;
    padding: 1px 3%;
    font-weight: 600;
}

.sec_ti_3 br{
  display: none;
}

.smrt_trip_aas {
     
    margin-top: 20px;
    font-size: 23px;
}

.tip_wrp_singl {
    float: left;
    width: 98%;
    margin: 0px 1%;
}

.click_sec_4 .how_wrk_singl {
    min-height: auto;
}

.tip_wrp_singl_qstn{
      font-size: 18px;
    padding: 7px 10px;
}

.tip_wrp_singl_ans{
      padding: 10px 10px;
    font-size: 16px;
}




.search_main{
      position: absolute;
    background: #ffffff;
    width: 100%;
    left: 0;
    top: 0;
    margin-top: 58px;
    z-index: 9;
    padding: 20px 32px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #33333363;
}

.hspro_search_list a{

}




.deals-block-one .inner-box .image-box{
  width: 100% !important;
}

.slider-content img {
    border:2px solid red;
}
 

.product-details-content .image-box img {
    width: auto;
    height: 350px;
    max-width: 90%;
}

.image-inner .image-box .image{
  text-align: center;
  padding: 20px 0px;
}

.thumb-box.clearfix li figure{

}

.thumb-box.clearfix li figure img{

}

.home_slider_ak .content-box{
  max-width: 100%;
}

.home_slider_ak .btn-box a{
  float: right;
}



@media (max-width:640px) {

  .logo_main {
    float: left;
    width: 80px !important;
    margin-bottom: -23px;
    margin-top: -6px;
}



}