
@font-face {
  font-family: 'Halyard-Display-Bold';
  src: url('../fonts/Halyard-Display-Bold.ttf') format('truetype');
       font-display: swap;
}

@font-face {
  font-family: 'Halyard-Display-Light';
  src: url('../fonts/Halyard-Display-Light.ttf') format('truetype');
       font-display: swap;
}

@font-face {
  font-family: 'Halyard-Display-Medium';
  src: url('../fonts/Halyard-Display-Medium.ttf') format('truetype'); 
       font-display: swap;
}

@font-face {
  font-family: 'Halyard-Display-Regular';
  src: url('../fonts/Halyard-Display-Regular.ttf') format('truetype');
       font-display: swap;
}

@font-face {
  font-family: 'Halyard-Display-SemiBold';
  src: url('../fonts/Halyard-Display-SemiBold.ttf') format('truetype');
       font-display: swap;
}



:root{
    --bodyfont:'Halyard-Display-Light';
    --bold:'Halyard-Display-Bold';
    --medium:'Halyard-Display-Medium';
    --regular:'Halyard-Display-Regular';
   --semibold:'Halyard-Display-SemiBold';
}


body{
    font-family: var(--bodyfont);
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

img{
    max-width: 100%;
}

p, a{
    font-size: 15px;
}

a{
    display: inline-block;
    text-decoration:none !important;
}

ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}



/*anousement bar*/

section.anousment_bar {
    background: #367B17;
    color: #fff;
    padding: 5px 0px;
}

section.anousment_bar p {
    margin: 0px;
}

section.anousment_bar a {
    color: #fff;
    text-decoration: underline !important;
}

.error {
    color: red;
    font-size: 14px;
}

/*anousement bar*/


/*header css*/

section.header {
    padding: 10px 0px;
    box-shadow: 0px 0px 30px #00000033;
    position: relative;
    z-index: 999;
}

.header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.logo {
    width: 160px;
}

.logo img {
    width: 115px;
}

.search__block {
    position: relative;
    width: 215px;
    z-index: 2;
}

.search__block input {
    border: 1px solid #000000;
    width: 100%;
    height: 39px;
    padding: 5px 10px;
    background:#F6F6F6;
    padding-right: 30px;
}

.search__block input::-webkit-input-placeholder { /* Edge */
  color: #6A848D;
}

.search__block input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #6A848D;
}

.search__block input::placeholder {
  color: #6A848D;
}

.search__btn {
    position: absolute;
    right: 0px;
    background: transparent;
    border: none;
    outline: none;
    top: 6px;
    color:#6A848D;
}

.info__section {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: end;
}

.navigation__block ul {
    display: flex;
    flex-wrap: wrap;
}

.navigation__block ul li {
    margin-right: 45px;
}

.navigation__block ul li:last-child {
    margin-right: 0px;
}

.navigation__block ul li a {
    color: #0E0E0E;
    font-family: var(--semibold);
    display: block;
}

.top__bar {
    display: flex;
    flex-wrap: wrap;
}

.change__location h4 {
    color: #367B17;
    font-size: 15px;
    font-family: var(--semibold);
}

.change__location {
    width: 72px;
    margin-right: 10px;
}

.navigation__block {
    padding: 5px 0px;
}

.search__block:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: -1;
    top: 5px;
    left: 3px;
}

.select__country .btn {
    background: #E5DBC1;
    color: #000000;
    font-family: var(--regular);
    font-size: 14px;
    padding: 10px;
}

.login__btn a {
    display: inline-block;
    line-height: 38px;
    padding: 0px 41px;
    font-family: var(--semibold);
    color: #0E0E0E;
    position: relative;
    background: #ddd;
}

.login__btn:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 96%;
    left: 6px;
    top: 0px;
    background: #000;
    z-index: -1;
}

.login__btn {
    position: relative;
    margin-left: 15px;
    margin-right: 6px;
}

.select__country .dropdown-menu a {
    color: #000000;
    font-family: var(--regular);
    font-size: 14px;
    padding: 10px;
}

.select__country .dropdown-menu a:active {
    background: #ddd;
}

.header li.subscription__link a {
    text-transform: uppercase;
    color: #367B17;
    text-decoration: underline !important;
}

/*header css*/



/*hero section css*/

.hero__section{
  margin:50px 0px;
}

.swiper-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-button-next, .swiper-button-prev {
  color: #000;
}

.swiper-slide-duplicate,
.swiper-slide {
  background-position: center center;
  background-size: cover;
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}
.swiper-slide-duplicate .description,
.swiper-slide-duplicate .title,
.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.swiper-slide-duplicate-active .description,
.swiper-slide-duplicate-active .title,
.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}
.swiper-slide-duplicate-active .title,
.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-duplicate-active .description,
.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

.swiper-progress-bar {
  position: relative;
  width: 100%;
  display: block;
  z-index: 1;
  height: 2px;
}
.swiper-progress-bar .slide_progress-bar {
  position: absolute;
  height: 5px;
  background: rgba(0, 0, 0, 0.3);
  width: auto;
  clear: both;
  opacity: 0;
  bottom: 0px;
  left: 0;
  right: 0;
}
.swiper-progress-bar .slide_progress-bar:after {
  position: absolute;
  top: 0;
  left: 0;
  background: #67AB46;
  height: 100%;
  width: 0;
  content: "";
  transition: 0.1s width linear;
}
.swiper-progress-bar.active .slide_progress-bar {
  opacity: 1;
}
.swiper-progress-bar.animate .slide_progress-bar:after {
  transition: width linear;
  transition-delay: unset;
  width: 100%;
  transition-duration: 5s;
}

.swiper-pagination {
    position: static !important;
    margin-top: 20px;
}

.overlay__slider {
    position: absolute;
    left: 0px;
    padding: 0px 60px;
    text-align: left;
    width: 54%;
    top: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.hero__inner {
    position: relative;
}

.overlay__slider h5, .title h5 {
    color: #367B17;
    font-family: var(--medium);
    font-size: 14px;
    letter-spacing: 4px;
}

.overlay__slider h2 {
    font-family: var(--semibold);
    font-size: 44px;
    margin-bottom: 30px;
}

.started__btn {
    display: inline-block;
    line-height: 40px;
    padding: 0px 30px;
    font-size: 14px;
    font-family: var(--semibold);
    letter-spacing: 1px;
    color: #000000; 
    position: relative;
    z-index: 2;
    text-align: center;
    transition: 0.5s
}

.started__btn:hover{
  color: #fff;
}

.started__btn:hover:before{
  background: #67AB46;
}

.started__btn:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:#fff;
  left:0px;
  top:0px;
  z-index: -1;
  border:1px solid #000;
  transition: 0.5s;
}
.started__btn:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:#000;
  left: 5px;
  top: 6px;
  z-index: -2;
}

.swiper-pagination span {
    background: #D6D6D6;
    opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background: #67AB46;
}

.hero__slider__main {
    position: relative;
}

.hero__slider__main:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    background: #000;
    left: 5px;
    top: 10px;
}

/*hero section css*/

/*category css*/

section.category__section {
    margin: 50px 0px;
}

.title {
    margin-bottom: 50px;
}

.category__inner a {
    color: #000;
    font-family: var(--semibold);
}

.category__inner h4 {
    font-size: 15px;
    margin-top: 10px;
}

.title h2 {
    color: #1D393A;
    font-family: var(--semibold);
    font-size: 25px;
}

/*category css*/


/*feature css*/

section.feature__bg {
    background: url(../image/feature_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

section.feature__bg {
    padding: 50px 0px 110px 0px;
}

.feature__title h2 {
    color: #ffffff;
    font-family: var(--semibold);
    font-size: 25px;
    margin-bottom:30px;
}


.product__sub {
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

.product__sub__img {
    position: relative;
}

.product__sub__img span {
    position: absolute;
    background: rgba(103 171 70/30%);
    font-size: 11px;
    padding: 5px 10px;
    font-family: var(--regular);
    color: #000;
    border-radius: 5px;
    right: 15px;
    top: 15px;
}

.product__content {
    padding: 15px;
}

.product__content ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product__content ul li {
    display: flex;
    align-items: center;
    font-family: var(--semibold);
    font-size: 11px;
    background: rgba(103 171 70/30%);
    margin-right: 10px;
    white-space: nowrap;
    padding: 5px 10px;
}

.product__content ul li img {
    width: auto !important;
    margin-right: 5px;
    height: 18px;
}

.product__content h3 {
    font-family: var(--semibold);
    font-size: 19px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height:45px;
}

.product__btn .started__main a {
    display: block;
    margin: 0px 7px;
    margin-bottom: 7px;
    font-size: 20px;
    line-height: 45px;
}

.product__content h2 {
    color: #3BB349;
    font-family: var(--semibold);
}

section.product__section {
    padding-left: 22%;
    margin-top: -195px;
}

.owl-nav {
    position: absolute;
    right: 100px;
    top: -50px;
}

.product__slider {
    position: relative;
    /* padding-top: 50px; */
}

.owl-nav button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative;
    background: rgba(255,255,255,0.3) !important;
    margin-right: 5px;
}

.owl-nav button span {
    display: none;
}

button.owl-prev:before {
    content: '\f104';
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 23px;
}

button.owl-next:before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 23px;
}

.owl-nav button:last-child {
    margin-right: 0px;
}

/*section.product__section {
    margin-top: -192px;
    display: flex;
    justify-content: end;
}
*/

/*feature css*/


/*offer css*/

section.offer__section {
    margin: 50px 0px;
}

.offer__overlay {
    width: 41%;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.offer__overlay span {
    display: inline-block;
    background: rgba(52 31 0/20%);
    font-size: 11px;
    padding: 5px 10px;
    font-family: var(--semibold);
    margin-bottom: 10px;
    color: #fff;
}

.offer__overlay h2 {
    color: #000000;
    font-family: var(--semibold);
    font-size: 25px;
    margin-bottom: 20px;
}

.offer_left {
    position: absolute;
    top: 0px;
}

.offer__block .owl-carousel {
    position: relative;
}

.offer_right {
    position:absolute;
    right:0px;
    top: 0px;
}

.owl-dots {
    position: absolute;
    width: 100%;
    bottom: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-dots button {
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin-right: 4px;
    background: #fff !important;
}

.owl-dots button.active {
    background: black !important;
}

.owl-dots button:last-child {
    margin-right: 0px;
}

.offer__block {
    position: relative;
}

.offer__block:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 5px;
    left: 5px;
    background: #000;
}

section.offer__section {
    background: url(../image/offer_bg.jpg);
    background-size: cover;
    padding: 50px 0px;
}

.bestseller__slider .owl-nav {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bestseller__slider .owl-nav button {
    background-color:#000 !important;
}

.bestseller__slider .owl-nav button:hover {
    background: #3BB349 !important;
}

section.best__seller__section {
    margin-bottom: 50px;
}

/*offer css*/


/*call to action css*/

section.call_to_action {
    background: url(../image/call-to-action.jpg);
    background-size: cover;
    padding: 100px 0px;
    margin-bottom: 50px;
}

section.call_to_action h2 {
    font-family: var(--semibold);
    color: #fff;
    margin-bottom: 30px;
}

.call__to a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--semibold);
    font-size: 19px;
}

.call__to a i {
    margin-right: 5px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #fff;
    color: #67AB46;
    text-align: center;
    line-height: 42px;
    font-size: 24px;
}

/*call to action css*/


/*collaboration css*/

section.callaboation___section {
    background: url(../image/callaboation__bg.jpg);
    background-size: cover;
    padding: 50px 0px;
    margin-bottom: 50px;
}

.callaboation__image {
    padding-left: 60px;
}

.callaboation__block {
    padding-left: 70px;
    color: #fff;
}

.callaboation__block h2 {
    font-family: var(--semibold);
    font-size: 25px;
    margin-bottom: 21px;
}

.callaboation__block h2 span {
    color: #67AB46;
}

.callaboation__block h5 {
    font-family: var(--semibold);
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.callaboation__block ul {
    margin-bottom: 30px;
}

.callaboation__block ul li {
    color: #6A848D;
    font-size: 15px;
    line-height: 27px;
    padding-left: 33px;
    margin-bottom: 6px;
    background-image: url(../image/leaves.png);
    background-repeat: no-repeat;
    background-size: 28px;
}


/*collaboration css*/



/*text block css*/

section.text_-section {
    margin: 50px 0px;
}

.text_block h2 {
    font-family: var(--semibold);
    color: #1D393A;
    font-size: 25px;
    margin-bottom:20px;
}

.text_block h5 {
    font-family: var(--regular);
    color: #367B17;
    font-size: 14px;
}

.text_block p {
    color: #1D393A;
}


/*text block css*/


/*artical css*/

section.artical__section {
    background: #367B17;
    padding: 50px 0px;
}

.artical__inner span {
    background: rgba(103 171 70/30%);
    font-size: 11px;
    padding: 5px 10px;
    font-family: var(--regular);
    color: #000;
    border-radius: 5px;
    right: 15px;
    top: 15px;
}

.artical__inner h2 {
    font-family: var(--semibold);
    color: #367B17;
    font-size: 21px;
    margin-top: 12px;
}

.artical__inner p {}

.artical__inner a {
    font-family: var(--semibold);
    color: #367B17;
    text-decoration: underline !important;
}

.artical__blog {
    position: relative;
    padding: 10px;
    background: #fff;
    z-index: 3;
}

.artical__inner {
    padding: 15px;
}



.blog__section__inner {
    position: relative;
    margin-bottom: 29px;
}

.black__shad {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 5px;
    top: 5px;
    background: #000;
}

.artical__inner.right__blog {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.artical__inner.right__blog span {
    margin-top: auto;
    color: #fff;
    background: rgba(255,255,255,0.5);
}

.artical__blog.right__artical {
    padding: 0px;
}

.artical__inner.right__blog h2 {
    color: #fff;
}

.artical__inner.right__blog a {
    color: #fff;
}

.bottom__artical__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bottom__artical {
    width: 48%;
}

.bottom__artical img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

/*artical css*/

/*video css*/



.cb-video-container {
  position: relative;
}

.video {
  display: block;
}

.play-pause--click-area {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
}

.play-pause--container {
  position: relative;
  width: 30px;
  height: 30px;
}
.play-pause--container .play-pause--icon {
  margin: auto;
  right: 0;
  left: 0;
  position: absolute;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
.play-pause--container .play-icon {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-width: 15px;
  border-top-width: 15px;
  border-left: 25px solid #fff;
}
.play-pause--container .pause-icon {
  background-color: #fff;
  width: 10px;
  height: 30px;
  left: -10px;
  position: absolute;
}
.play-pause--container .pause-icon:after {
  content: "";
  background: inherit;
  width: 10px;
  height: 30px;
  left: 15px;
  position: absolute;
}

video.video {
    height: 420px;
    width: 100%;
}

section.video__section {
    margin: 50px 0px;
}


/*video css*/




/*footer css*/


footer.footer {
    padding: 60px 0px 0px 0px;
    background: #000000;
}

.footer-widget img {
    width: 120px;
    margin-bottom: 15px;
}

.left__call h2 {
    color: #fff;
    font-family: var(--bold);
    font-size: 32px;
}

.left__call h2 span {
    color: #67AB46;
}

.right__call {
    text-align: right;
    color: #fff;
}

.right__call h4 {
    color: #67AB46;
    font-family: var(--semibold);
    font-size: 18px;
}

.right__call ul {
    display: flex;
    justify-content: end;
}

.right__call ul li a {
    display: inline-block;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: rgba(255,255,255,0.5);
    transition: 0.5s;
}

.right__call ul li a:hover {
    background: #367B17;
}

.right__call ul li {
    margin-right: 6px;
}

.right__call ul li:last-child {
    margin-right: 0px;
}

.container.call__to__action {
    padding-top: 35px;
    margin-top: 40px;
    border-top: 5px solid #202020;
}

.footer-widget h4 {
    font-family: var(--semibold);
    color: #367B17;
    font-size: 19px;
}

.footer-widget li a {
    display: block;
    color: #fff;
    line-height: 34px;
    transition: 0.5s;
}


.footer-widget h2 {
    color: #367B17;
    font-family: var(--semibold);
    font-size: 25px;
}

.footer-widget a {
    color: ##367B17;
}

.copiright__block p {
    margin-bottom: 0px;
}

.copiright__block {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #202020;
    padding-bottom: 20px;
}

.footer-widget li a span {
    color: #367B17;
}

.footer-widget h2 a {
    font-size: inherit;
    color: #fff;
}

.copiright__block p {color: #fff;}

.copiright__block p a {
    color: #367B17;
}

.footer-widget li a:hover {
    color: #367b17;
}

/*footer css*/












/*commming soon*/


.comming__fist{
    background-image: url(../image/banner-new.jpg);
    height:100vh;
    background-size: cover;
    padding:50px 0px;
}

.comming__soon  h1 {
    font-family: var(--semibold);
    font-size: 62px;
    margin-bottom: 23px;
}

.comming__soon  h4 {
    font-size: 26px;
    font-family: var(--regular);
}

.comming__soon {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.comming__fist .container, section.comming__fist .row, section.comming__fist .col-md-6 {
    height: 100%;
}






/*countdown css*/

.countdown {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  margin-bottom: 40px;
}

.countdown div {
  position: relative;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: #000000;
  color: #fff;
  margin: 0 15px;
  font-size: 52px;
  font-weight: 500;
  font-family: var(--semibold);
}

.countdown div:before {
   content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 35px;
  background: #67ab46;
  color: #fff;
  font-size: 0.35em;
  line-height: 35px;
  font-weight: 300;
  font-family: var(--bodyfont);
}

.countdown div#day:before {
  content: "Days";
}

.countdown div#hour:before {
  content: "Hours";
}

.countdown div#minute:before {
  content: "Minutes";
}

.countdown div#second:before {
  content: "Seconds";
}

section.counter__dowon {
    padding: 50px 0px;
}

.wrap.text-center h1 {
    font-family: var(--semibold);
    margin-bottom: 45px;
    font-size: 62px;
}

.countdown .figure > span {
    color: #367a17;
    font-family: var(--semibold);
}

span.count-title {
    font-family: var(--medium) !important;
}



.contact_inner {
    padding: 30px;
    border-radius: 10px;
    background: rgba(255,255,255,0.5);
}

section.contact__section {
    padding: 50px 0px;
    background-image: url(../image/banner-new.jpg);
    background-size:cover;
}

.contact_inner h2 {
    font-family: var(--semibold);
    margin-bottom: 30px;
    text-align: center;
    font-size: 36px;
}

.form-group label {
    font-family: var(--regular);
}

.form-group input, .form-group textarea, .form-group select {
    border: 2px solid #347716;
    height: 47px;
    outline: none !important;
    box-shadow: none !IMPORTANT;
}

.form-group button {
    background: #337416;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-family: var(--regular);
    padding: 10px 50px;
    transition: 0.5s;
}

.form-group button:hover {
    background: #000;
}


section.location__map iframe {
    width: 100%;
    height: 500px;
}

.form-group textarea {
    height: 100px;
}


/*category page css*/


.page__title{
    background: url(../image/feature_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding:75px 0px;
}

.title__page h5 {
    font-family: var(--regular);
    font-size: 14px;
    letter-spacing: 4px;
}

.title__page h2 {
    font-family: var(--semibold);
}

.title__page {
    color: #fff;
}

section.category_page_section {
    padding: 50px 0px;
}

h2.category_h2 {
    font-family: var(--semibold);
    color: #1D393A;
    font-size: 26px;
    margin-bottom: 20px;
}

.category__right {
    margin-bottom: 50px;
    padding-bottom: 35px;
    border-bottom: 1px solid #1D393A;
}

.category__right:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}


.category__left__block h4 {
    color: #1D393A;
    font-family: var(--semibold);
    font-size: 20px;
    margin-bottom: 25px;
}

.category__left__block {
    padding: 30px 15px;
    border: 1px solid #ddd;
}

.category__left__block .search__block {
    width: 100%;
}

.category__left__block ul li {
    font-family: var(--regular);
    line-height: 25px;
    margin-bottom: 10px;
    color: #1D393A;
}

.category_flex {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

a.view__all {
    color: #67AB46;
    font-family: var(--semibold);
    text-decoration: underline !important;
}

h4.liveresine__overlay {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 14px;
    width: 68px;
    height: 68px;
    padding: 15px;
    text-align: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-family: var(--semibold);
}


.filter__btn a {
    color: #fff;
    background: #337416;
    display: inline-block;
    padding: 5px 8px;
    transition: 0.5s;
}

.filter__btn a:hover {
    background: #000;
}




/*category page css*/


/*product page css*/


section.product__page__block {
    margin: 50px 0px;
}

span.product__verient {
    display: inline-flex;
    background: rgba(254 173 84/22%);
    padding: 5px 14px;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--medium);
    color: #FEAD54;
}

span.product__verient img {
    margin-right: 10px;
}

.product__detail__content h2 {
    color: #1C1C1C;
    font-family: var(--semibold);
    font-size: 26px;
    padding-right: 90px;
    margin: 20px 0px 20px 0px;
}

.product__detail__content p {
    color: #1D393A;
    font-family: var(--regular);
    font-size: 18px;
}

.product__detail__content .product__content {
    padding: 0px;
}

.price__product h2 span {
    font-size: 32px;
    color: #3BB349;
}

.price__product h2 {
    color: #1D393A;
    font-size: 17px;
    margin: 0px;
}

.product__detail__content .product__content ul {
    margin-bottom: 0px;
}

.price__product {
    margin: 15px 0px;
}

.availability__block h4 {
    color: #1D393A;
    font-size: 17px;
    margin: 0px;
    font-family: var(--semibold);
}

.availability__block h4 span {
    color: #3BB349;
}

.availability__block {
    margin: 15px 0px;
}

.counter {
    display: flex;
    align-items: flex-start;
    margin: 15px 0px;
}

.counter p {
    margin-bottom: 0px;
    margin-right: 7px;
    font-family: var(--semibold);
}

.counter span {
    display: inline-block;
    border: 2px solid #ddd;
    width: 31px;
    height: 31px;
    text-align: center;
    font-size: 30px;
    line-height: 22px;
    font-family: var(--semibold);
    border-radius: 50%;
    color: #ddd;
    cursor: pointer;
    outline: none !important;
    background: transparent !important;
}

.counter input {
    text-align: center;
    width: 35px;
    margin: 0px 4px;
    border: none !important;
    outline: none !important;
    font-family: var(--semibold);
}

.shop__btns button {
    border: 1px solid #000000;
    width: 128px;
    margin-right: 15px;
    height: 41px;
    position: relative;
    font-family: var(--semibold);
    transition: 0.5s;
}

.shop__btns button:last-child {
    margin-right: 0px;
}

button.buy__btn {background: #fff;}

.shop__btns button:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
}

button.cart__btn {
    background: #367B17;
    color: #fff;
}

button.buy__btn:hover {
    background: #367b17;
    color: #fff;
}

button.cart__btn:hover {
    background: #fff;
    color: #000;
}

.shop__btns {
    padding-top: 19px;
}

.thumb_images .prd_img.slick-current img {
    border: 2px solid #367b17;
}

.thumb_images .prd_img .thumb__inner{margin: 0px 5px;}

.thumb_images {
    margin-top: 20px;
}

button.slick-prev.slick-arrow:before{
  content: '\f104' !important;
  font-family: 'FontAwesome' !Important;
  color:#000 !important;
}

button.slick-next.slick-arrow:before{
  content: '\f105' !important;
  font-family: 'FontAwesome' !Important;
  color:#000 !important;
}

.slick-prev {
    left: -10px !important;
}

.slick-next {
    right: -10px !important;
}

section.product__discription {
    margin: 75px 0px;
}

.product__discription__inner .nav li a.active {
    background: #67AB46;
}

.product__discription__inner .nav li a {
    border-radius: 0px;
    font-family: var(--semibold);
    color: #000;
    margin-right: 5px;
    font-size: 17px;
    line-height: 45px;
    padding: 0px 30px;
    display: block;
    background: #EEEEEE;
}

.product__discription__inner .tab-content {
    border: 1px solid #000;
    padding: 13px 25px;
    position: relative;
    background: #fff;
}

.product__discription__inner .tab-content div {
    padding: 0px;
}

.product__discription__inner .tab-content:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: -1;
}

.product__discription__inner .tab-content p {
    font-family: var(--regular);
    font-size: 18px;
    color: #1D393A;
}

.product__discription__inner .tab-content h2, .product__discription__inner .tab-content h3 {
    font-family:var(--semibold);
}

.related__products{
    background-image: url(../image/product-detaii.png);
    padding: 50px 0px;
    background-size: 100% 52%;
    background-repeat: no-repeat;
}


.related__slider .owl-nav {
    position: static;
}

.related__slider .owl-nav button {
    background: #000 !important;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px !important;
}

.related__slider .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.related__slider .owl-nav button:hover {
    opacity: 1;
    background: #3bb349 !important;
}

.related__slider .owl-nav button.owl-next {
    right: -15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/*product page css*/


/*about page css*/

section.about__content {
    margin: 50px 0px;
}

.about__inner h2 {
    font-family: var(--semibold);
}

.about__inner p {
    font-family: var(--regular);
}


/*about page css*/


/*faq page css*/

.about__inner .card-header {
    padding: 0px !important;
}

.about__inner .card-header button {
    color: #fff !IMPORTANT;
    background: #67ab46;
    font-size: 17px;
    padding: 10px 20px;
    padding-right: 50px;
    border-radius: 0px;
    outline: none !IMPORTANT;
    border: 2px solid #000;
    position: relative;
}

.about__inner .card {
    margin-bottom: 20px;
}

.card-body {
    position: relative;
    border: 1px solid;
}


button.btn.btn-link.btn-block.text-left.collapsed {
    text-decoration: none !IMPORTANT;
}

button.btn.btn-link.btn-block.text-left.collapsed:before {
    content: '\f107';
    font-family: 'FontAwesome' !IMPORTANT;
    position: absolute;
    right: 11px;
}

button.btn.btn-link.btn-block.text-left:before {
    content: '\f106';
    font-family: 'FontAwesome' !IMPORTANT;
    position: absolute;
    right: 11px;
}

/*faq page css*/

.video__slider__inner video {
    width: 100%;
}

.overlay__video {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video__slider__inner {
    position: relative;
    margin-right: 5px;
    margin-bottom: 5px;
}

span.videos {
    position: absolute;
    color: #fff;
    display: flex;
    top: 10px;
    right: 10px;
    align-items: center;
    background: rgba(255,255,255,0.3);
    padding: 5px 10px;
    border-radius: 5px;
}

span.videos img {
    width: 20px !IMPORTANT;
    height: auto !important;
    margin-right: 6px;
}

.overlay__video h4 {
    color: #fff;
    bottom: 10px;
    position: absolute;
    /* border: 1px solid red; */
    width: 100%;
    padding: 0px 15px;
    font-family: var(--regular);
    font-size: 17px;
}

.video__slider__inner:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    background: #367b17;
    width: 100%;
    height: 99%;
    z-index: -1;
}

.play__video {
    cursor: pointer;
}

.play__video img {
    width: 28px !important;
}

.video__slider .owl-dots {
    position: static;
    margin-top: 30px;
}

.video__slider .owl-dots button {
    height:10px !important;
    width:10px !important;
    background-color:#ddd !important;
}

.video__slider .owl-dots button.active{
    background-color: #367b17 !important;
}



.filter__btn {
    display: none;
}


.popup__custome {
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    z-index: 9999999999999;
    display:none;
}

.popup__inner {
    background: #fff;
    padding: 22px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(255,255,255,0.5);
}

img.logo__popup {
    width: 185px;
    margin-bottom: 20px;
}

.popup__content h2 {
    font-family: var(--semibold);
}

.popup__content p {
    font-family: var(--regular);
    font-size: 18px;
}

.popup__content p span {
    color: red;
}

.popup__custome .container, .popup__custome .row {
    height: 100%;
}

.popup__buttons .shop__btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.main_images img {
    height: 340px;
    width: 100%;
    object-fit: contain;
}

.thumb_images img {
    height: 100px;
    width: 100%;
    object-fit: cover;
}

.product__sub__img img {
    height: 210px;
    object-fit: cover;
    width:100%;
}

.product__sub.new__product {
    border: 1px solid #dbdbdb;
    padding-bottom: 4px;
    background: #f5f5f5;
    transition: 0.5s;
}

.new__product .product__btn .started__main a {
    margin-right: 12px;
}

.new__product .product__content {
    background: #f5f5f5;
}

.product__sub.new__product:hover {
    box-shadow: 0px 0px 22px rgb(0 0 0 / 13%);
}


.popup__buttons .shop__btns button {
  width: auto;
}


.shop__btns a {
  height: 41px;
  position: relative;
  font-family: var(--semibold);
}

.list-group-item.active, .btn-primary{
    background-color:#367B17 !important;
    border-color:transparent !important;
}

a.address__link.add-new-address.add_new_address {
    color: #347716;
}


@media(max-width: 1200px){
    .navigation__block ul li {
        margin-right: 22px;
    }

    .comming__soon h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .comming__soon h4 {
        font-size: 20px;
    }

    .wrap.text-center h1 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .countdown {
        margin-top: 20px;
    }

    .left__call h2 {
        font-size: 25px;
    }


    .overlay__slider h2{
      font-size: 30px;
    }

    .offer__overlay h2 {
      font-size: 20px;
    }

    .product__content ul li:last-child {
        margin-right: 0px;
    }







}

.toggle__btn {
    cursor: pointer;
    display: none;
}

@media(max-width: 991px){
    .toggle__btn {
        display: block;
    }


    .navigation__block {
        position: absolute;
        top: 100%;
        background: #fff;
        width: 100%;
        left: 0px;
        padding: 10px 0px;
        display: none;
    }

    .navigation__block ul {
        flex-direction: column;
    }

    .navigation__block ul li {
        margin-right: 0px;
    }

    .navigation__block ul li a {
        padding: 10px 15px;
    }



    .info__section {
        width: 100%;
        flex: auto;
        justify-content: center;
        order: 1;
    }

    .logo {
        order: 2;
    }

    .search__block {
        order: 3;
    }

    .header__inner {
        justify-content: space-between;
    }

    .logo img {
        width: 72px;
    }

    .logo {
        width: auto;
    }

    .search__block {
        width: 180px;
    }

    .login__btn a {
        padding: 0px 26px;
    }

    .change__location {
        display: none;
    }

    .toggle__btn {
        order: 4;
    }

    section.product__section{
      padding-left: 32%;
    }

    section.offer__section .col-md-6 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 30px;
  }

  section.offer__section .col-md-6:last-child{
    margin-bottom: 0px;
  }

  .overlay__slider h2 {
      font-size: 21px;
      margin-bottom: 17px;
  }

}



@media(max-width: 767px){
    
    .comming__fist{
        height:auto;
    }

    .right__call {
        text-align: center;
    }

    .right__call ul {
        justify-content: center;
    }

    .left__call {
        text-align: center;
        margin-bottom: 17px;
    }

    .countdown div {
        font-size: 29px;
        margin: 4px;
        height: 65px;
        line-height: 65px;
    }

    .footer-widget {
        margin-top: 20px;
    }
    .top__bar {
        width: 100%;
        justify-content: center;
    }
    
    section.comming__fist .row {
        flex-direction: column-reverse;
    }
    
    .comming__soon img {
        width: 73%;
        margin-bottom: 30px;
    }

    section.product__section {
      padding-left: 15px;
      margin-top: -82px;
  }

  .feature__bg .feature__title {
      display: flex;
      justify-content: space-between;
  }

  .callaboation__block {
      padding-left: 0px;
      margin-top: 30px;
  }

  .callaboation__image {
      padding-left: 0px;
  }

  .callaboation__image img {
      width: 100%;
  }

  section.category__section .col-md-2 {
      width: 50%;
      margin-bottom: 15px;
  }

  .hero__inner img {
      height: 345px;
      width: 100%;
      object-fit: cover;
  }

  .overlay__slider {
      width: 60%;
      padding-left: 30px;
  }

  section.product__section{
    padding-right: 15px;
  }

  .filter__main {
    position: fixed;
    z-index: 999999;
    background: #fff;
    top: 0px;
    left: -230px;
    width: 230px;
    transition:0.5s;
}

.filter__btn {
    position: absolute;
    left: 230px;
    top: 50%;
    white-space: nowrap;
}

.filter__main.active {
    left: 0px;
}

.filter__btn {
    display: block;
}
.mobile__overlay__filer {
    height: 100vh;
    overflow-y: scroll;
}

.product__detail__content {
    margin-top: 30px;
}

.product__detail__content h2 {
    padding-right: 0px;
}

.product__discription__inner .nav li a {
    margin-bottom: 5px;
}

}




@media(max-width: 600px){
    section.location__map iframe {
        width: 100%;
        height: 230px;
    }


    .comming__soon h1 {
        font-size: 28px;
    }

    .comming__soon h4 {
        font-size: 17px;
    }

    .hero__inner img{
      height: 200px;
    }

    .overlay__slider{
      width: 100%;
      padding:0px 15px;
      top:50%;
      transform: translateY(-50%);
    }

    .title h2 br {
      display: none;
  }

  .owl-nav {
      right: 0px;
  }

  .offer__overlay{
    width: 58%;
  }

  .offer__overlay h2 {
      margin-bottom: 8px;
  }

  .product__btn .started__main a {
      font-size: 16px;
      line-height: 40px;
  }

  section.call_to_action h2 br {
      display: none;
  }

  section.call_to_action h2 {
      font-size: 26px;
  }

  section.call_to_action {
      padding: 50px 0px;
  }

  .artical__inner h2 {
      font-size: 18px;
  }

  .main_images img{
    height:300px;
  }
  
  .select__country {
    width: 132px;
    flex: 1;
}
  
  .icon__top{
      left:-10px;
  }
  
  .table-responsive.ml-3 {
    margin-left: 0px !important;
}

}