@font-face {
  font-family: var(--font-default);
  src: url('../fonts/Inter-Black.woff2') format('woff2'),
      url('../fonts/Inter-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: var(--font-default);
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
      url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: var(--font-default);
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
      url('../fonts/Inter-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: var(--font-default);
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
      url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: var(--font-default);
  src: url('../fonts/Inter-Medium.woff2') format('woff2'),
      url('../fonts/Inter-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


/* ROOT VARS */
:root {
  --font-default: "Inter";
  --font-primary: "Inter";
  --font-secondary: "Inter";
  
  --color-default: #444444;
  --color-primary-light: #9BDB04;
  --color-primary: #005129;
  
  --color-white: #FFFFFF;
  --color-light: #f3f4f6;
  --color-dark: #121212;
  
  --regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  
  scroll-behavior: smooth;
  }


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: #444444;
  background-color: var(--color-dark);
  font-size: 15px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-light);
  text-decoration: none;
}

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


textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: var(--color-primary);
  box-shadow: none;
  outline: 0 none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-group input{
  border-color: transparent;
  box-shadow: none;
  outline: 0 none;
  position: relative;
  height: 40px !important;
  width: 50px !important;
}
.input-group input:focus, .input-group input:active {
  border-color: var(--color-primary);
  box-shadow: none;
  outline: 0 none;
} 
.input-group button {
  padding: 8px 12px !important;
  font-size: 13px !important;
  position: absolute !important;
  z-index: 9 !important;
  right: 0 !important;
  top: 0 !important;
}
.input-group button i{
  font-size: 15px !important;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 150px;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/



#my-pedido {
  position: fixed;
  visibility: visible;
  opacity: 1;
  background: #25d366;
  width: auto;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
  padding: 15px 25px;
  color: #FFF;
  bottom: 15px;
  right: 15px;
  z-index: 99;
}

#my-pedido i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}


#my-pedido:hover {
  background: #075e54;
  color: #fff;
}


#counter-pedido {
  background-color:white;
  color: black;
  font-size: 12px;
  width: 25px !important;
  height: 25px !important;
  border-radius: 5rem;
  border: none;
  font-weight: 600;
  margin-left: 10px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 0;
}

#header .logo img {
  max-height: 30px;
  height: 30px;
  transition: .3s;
}


#header.header-scrolled {
  padding: 5px 0 !important;
  top: 0;
  background: var(--color-dark);
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled .logo img {
  max-height: 20px;
  height: 20px;
  transition: .3s;
}

/*
#header .container::after {
  position: absolute;
  content: "";
  top: 0;
  right: 60%;
  bottom: 0;
  left: 200px;
  background-image: url("../img/deco_v.svg");
  overflow: hidden;
  background-size: 10px 10px;
}*/



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,1);
  white-space: nowrap;
  transition: 0.3s;
  /*border-bottom: 2px solid transparent;*/
  padding: 5px 2px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-primary-light);
  /*border-color: var(--color-white);*/
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #FFF;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 1);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: flex;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #000;
    overflow-y: auto;
    transition: 0.3s;
    flex-direction: column;
    justify-content: center;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-white);
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary-light);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section








#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: top center;
  position: relative;
  display: flex;
  align-items: center;
}

#hero::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
  opacity: .8;
}


#hero .row {
  height: 100%;
  position: relative;
  z-index: 2;
}
#hero h1 {
  margin: 0;
  font-size: 72px;
  font-weight: 900 !important;
  line-height: 60px;
  color: var(--color-white);
  text-transform: uppercase;
  text-shadow: 1px 1px 2px black;
  font-family: var(--font-default);
}

#hero h2 {
  color: var(--color-white);
  margin: 10px 0 0 0;
  font-size: 36px;
  font-weight: 900 !important;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px black;
}
--------------------------------------------------------------*/
#hero {
  height: 720px;
  padding: 0;
  position: relative;
}
#hero .overlay {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 75%);
}
#hero .container, #hero .row {
  height: 100%;
  position: relative;
  z-index: 2;
}

#hero h1 {
  margin: 0;
  font-size: 72px;
  font-weight: 900 !important;
  line-height: 60px;
  color: var(--color-white);
  text-transform: uppercase;
  text-shadow: 1px 1px 2px black;
  font-family: var(--font-default);
}

#hero h2 {
  color: var(--color-white);
  margin: 10px 0 0 0;
  font-size: 36px;
  font-weight: 900 !important;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px black;
}
#hero .swiper-fade {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5);
  }
}
#hero .swiper-fade .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
#hero .swiper-fade .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}
#hero .swiper-fade .swiper-wrapper .swiper-slide img.is-play {
  animation-name: zoom;
  animation-duration: 40s;
  animation-fill-mode: forwards;
}



.btn-custom {
  font-family: var(--font-default);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .5px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: .5rem;
  transition: 0.5s;
  color: var(--color-white);
  background: #9BDB04;
}

.btn-custom:hover {
  background: var(--color-primary);
  box-shadow: var(--regular-shadow);
  color: var(--color-white);
}




.btn-whatsapp {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .5px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 1.5rem;
  transition: 0.5s;
  color: var(--color-white);
  background: #9BDB04;
}

.btn-whatsapp:hover {
  background: #075e54;
  box-shadow: var(--regular-shadow);
  color: var(--color-white);
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  padding: 0 0 0 40px;
  border-radius: 0px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
  
}

.section-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 55%;
  width: 30px;
  height: 4px;
  background-color: #9BDB04;
  z-index: 1;
}


.section-title h1{
  font-family: var(--font-default);
  color: var(--color-white) !important;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}







.section-title-green {
  padding: 15px 0 0 30px;
  margin-bottom: 50px;
  border-radius: 0px;
  text-align: center;
  position: relative;
  background-color: var(--color-primary-light);
  
}


.section-title-green h1{
  font-family: var(--font-default);
  color: var(--color-white) !important;
  margin: 0;
  line-height: 1em;
  position: relative;
  z-index: 2;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #FFF;
  font-size: 14px;
  background: transparent;
}


#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #FFF;
}

#footer a {
  color: #FFF;
}



/*--------------------------------------------------------------
# de3stacados
--------------------------------------------------------------*/
.destacados-card {
  /*border-radius: .5rem;*/
  transition: .3s;
  background-color: var(--color-light);
}
.destacados-card .destacados-card-img {
  /*border-radius: .5rem .5rem 0 0;*/
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.destacados-card .destacados-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transform: scale(1);
  transition: .3s;
}
.destacados-card .destacados-card-img span{
  position: absolute;
  right: 15px;
  bottom: 10px;
  font-weight: 900;
  font-size: 28px;
  text-shadow: 0px 0px 5px black;
  color: var(--color-white);
  z-index: 2;
  font-family: var(--font-default);
}
.destacados-card .destacados-card-body {
  padding: 15px;
}
.destacados-card .destacados-card-body .nombre-prod {
  height: 40px;
}
.destacados-card .destacados-card-body h5 {
  color: var(--color-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .5px;
  font-family: var(--font-default);
}
.destacados-card .destacados-card-body .descripcion {
  height: 60px;
}
.destacados-card .destacados-card-body p {
  font-size: 14px;
  margin-bottom: 0;
  text-transform: lowercase !important;
}
.destacados-card .destacados-card-footer {
  padding: 0 15px 15px 15px;
}
.destacados-card .destacados-card-footer button {
  font-size: 12px;
  padding: 10px 0 8px 0;
  /*border-radius: 0 .5rem .5rem 0;*/
}
.destacados-card .destacados-card-footer input {
  /*border-radius: .5rem 0 0 .5rem;*/
}
.destacados-card .destacados-card-footer .col-6 {
  margin-bottom: 10px;
}
.destacados-card .destacados-card-footer small {
  font-size: 12px;
}




/*PRODUCTOS*/

.product-card {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: rgba(255,255,255,0.1);
  height: 100%;
  border-radius: .5rem;
  transition: .3s;
}
.product-card:hover {
  background-color: rgba(255,255,255,0.3);
  transition: .3s;
}
.product-card img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: .5rem;
}
.product-card .product-card-body {
  width: calc(100% - 165px);
}
.product-card .product-card-body .product-card-header {
  display: flex;
  justify-content: space-between;
}
.product-card .product-card-body .title {
  color: var(--color-white);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .5px;
  font-family: var(--font-default);
  width: 60%;
  height: 40px;
}
.product-card .product-card-body .price {
  height: 40px;
  letter-spacing: normal;
  color: var(--color-light);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  font-family: var(--font-default);
  width: 40%;
  text-align: end;
}
.product-card .product-card-body p {
  font-size: 15px;
  margin-bottom: 0;
  text-transform: lowercase !important;
  color: var(--color-light);
}
.product-card .product-card-body span {
  font-weight: 900;
  font-size: 28px;
  color: var(--color-primary);
}
.product-card .product-card-body .product-card-footer {
  padding: 40px 0 0 0;
}
.product-card .product-card-body .product-card-footer button {
  padding: 10px 0 8px 0;
}
.product-card .product-card-body .product-card-footer input {
  border-radius: .5rem 0 0 .5rem;
}
.product-card .product-card-body .product-card-footer .col-6 {
  margin-bottom: 10px;
}
.product-card .product-card-body .product-card-footer small {
  font-size: 12px;
  color: var(--color-light);
  padding: 0 10px;
}

#productosDetalle {
  padding-top: 0;
}
#productosDetalle h5 {
  color: var(--color-primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .5px;
  font-family: var(--font-default);
}
#productosDetalle p {
  font-size: 14px;
  text-transform: lowercase !important;
}
#productosDetalle b {
  font-size: 14px;
}
.modal-footer {
  justify-content: center !important;
}
#productosDetalle label{
  font-size: 14px;
}



#productos-flters {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
#productos-flters li {
  width: 100%;
  cursor: pointer;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
#productos-flters li img {
  width: 20px;
  filter:  brightness(0) invert(1);
  transition: .3s;
}
#productos-flters li:hover img {
  filter: invert(78%) sepia(70%) saturate(902%) hue-rotate(23deg) brightness(92%) contrast(97%);
  transition: .3s;
}
#productos-flters li span {
  padding-left: 10px;
  color: #FFF;
  transition: .3s;
}
#productos-flters li:hover span {
  color: #9BDB04;
  transition: .3s;
}
#productos-flters .filter-active span {
  color: #9BDB04 !important;
} 
#productos-flters .filter-active img{
  filter: invert(78%) sepia(70%) saturate(902%) hue-rotate(23deg) brightness(92%) contrast(97%);
  transition: .3s;
} 


.btn-close {
  filter:  brightness(0) invert(1);
  fill: white;
}







@media (max-width: 600px) {
  #hero {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: top center;
    position: relative;
    display: flex;
    align-items: center;
  }
  #hero h1 {
    font-size: 36px;
    line-height: 34px;
    text-align: center;
  }
  #hero h2 {
    font-size: 24px;
    text-align: center;
  }



  /**/
  .product-card {
    display: block;
    justify-content: unset;
    padding: 0;
  }
  .product-card img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
  }
  .product-card .product-card-body {
    width: 100%;
    padding: 15px;
  }
  .product-card .product-card-body .product-card-header {
    display: flex;
    justify-content: unset;
    flex-direction: column;
  }
  .product-card .product-card-body .title {
    width: 100% !important;
    height: auto;
  }
  .product-card .product-card-body .price {
    height: auto;
    width: 100% !important;
    text-align: start;
    color: #9BDB04;
  }
  /**/


  #productos-flters {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #productos-flters li {
    width: auto;
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  #productos-flters li img {
    width: 30px;
    filter:  brightness(0) invert(1);
    transition: .3s;
  }
  #productos-flters li:hover img {
    filter: invert(78%) sepia(70%) saturate(902%) hue-rotate(23deg) brightness(92%) contrast(97%);
    transition: .3s;
  }
  #productos-flters li span {
    display: none
  }
  #productos-flters .filter-active img{
    filter: invert(78%) sepia(70%) saturate(902%) hue-rotate(23deg) brightness(92%) contrast(97%);
    transition: .3s;
  } 
  /**/





  .section-title::before {
    top: 5px;
    bottom: 5px;
  }
  #my-pedido {
    bottom: 15px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--regular-shadow);
  }
  #header.header-scrolled {
    padding: 10px 0 !important;
    top: 0;
    background: var(--color-dark);
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
  }
  .section-title h1 {
    font-size: 20px;
  }
  .productos-item {
    left: 0 !important;
  }
}