html,
body {
  font-family: "GothamPro", sans-serif;
  color: #fff;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.img_producto{
  height: 194px;
}

.preLoader {
  position: fixed;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #b7c939;
}


.container {
  height: 100vh;
  width: 100vw;
  font-family: Helvetica;
}

.loader {
  height: 20px;
  width: 250px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
  border: 2px solid white;
}
.loader--dot:first-child {
  background-color: #003ca6;
  animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
  background-color: #b2282f;
  animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
  background-color: #00a88f;
  animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
  background-color: #9e27b5;
  animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
  background-color: #fa4515;
  animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
  background-color: #3aae2a;
  animation-delay: 0s;
}
.loader--text {
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  width: 4rem;
  margin: auto;
}
.loader--text:after {
  content: "Cargando";
  font-weight: bold;
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(230px);
  }
  65% {
    transform: translateX(230px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loading-text {
  0% {
    content: "Cargando";
  }
  25% {
    content: "Cargando.";
  }
  50% {
    content: "Cargando..";
  }
  75% {
    content: "Cargando...";
  }
}




.contenedor-nav {
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.contenedor-barra-escritorio {
  position: relative;
}

.contenedor-barra-mobile {
  display: none;
}

.contenedor-botones-barra,
.contenedor-menu-desplegable {
  position: absolute;
}

.contenedor-botones-barra a {
  position: fixed;
}

#desktopMenuProdutos {
  position: fixed;
  cursor: pointer;
}

/* Estilo Menu Desplegable */

.contenedor-menu-desplegable {
  display: none;
}

#desktopMenuProdutos:hover .contenedor-menu-desplegable {
  display: block;
  cursor: default;
}

/* Estilo Opciones del Menu Desplegable */
#opcionBioFusion,
#opcionFusionGarden,
#opcionVyota,
#opcionZero,
#opcionNatures {
  position: absolute;
  left: 0;
  opacity: 0;
}

#opcionBioFusion:hover,
#opcionFusionGarden:hover,
#opcionVyota:hover,
#opcionZero:hover,
#opcionNatures:hover {
  opacity: 1;
  /* cursor: pointer; */
}

/* Estilo Opciones del Menu Desplegable Mobile */
.contenedor-menu-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(100vw - 77vw);
  padding-bottom: 5px;
}

.contenedor-menu-mobile a {
  padding: 3.5vw;
  text-decoration: none;
  font-weight: 600;
  color: #b6c939;
  font-size: 3.5vw;
  display: flex;
  align-items: center;
}

.contenedor-menu-mobile a span {
  font-weight: 100;
}

.contenedor-menu-mobile a img {
  width: 8vw;
  margin-right: 10px;
}

.contenedor-mob-menu-desplegable {
  position: absolute;
  margin-top: 22vw;
  display: none;
}

.contenedor-mob-menu-desplegable img {
  width: 30vw;
}

#mob-menu-desplegable a {
  padding: 0;
  top: 0;
}

#mob-menu-desplegable a img {
  width: 30vw;
}

.mostrarElemento {
  display: block;
}

/***********************/
/** LAYOUT PRODUCTOS **/
/**********************/

.row {
  margin-bottom: 30px;
}

.card-body-flex,
.wrapperDescripcionProducto {
  display: flex;
  align-items: center;
}

.tituloProducto {
  width: 100%;
}

.tituloProducto p {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}

.tituloProducto p span {
  font-size: 12px;
  color: #808080;
  font-weight: 400;
}

.wrapper-descripcion-producto {
  flex-direction: column;
  text-align: justify;
  padding-left: 14px;
}

.descripcionProducto p {
  color: #808080;
  line-height: 17px;
}

.container-products {
  font-family: "GothamPro", sans-serif;
  font-size: 12px;
  height: auto;
}

.organico .container-products{
  padding-top:160px;
}



#wrapperFooter {
  margin-top: 0;
}

/***********************************************/
/******************* MEDIA QUERIES *************/
/***********************************************/

@media (max-width: 499.98px) {
  .contenedor-nav {
    position: unset;
  }

  .contenedor-barra-escritorio {
    display: none;
  }

  .contenedor-barra-mobile {
    display: block;
    width: 100%;
    z-index: 5;
  }

  .barraMobile {
    position: fixed;
    width: 100vw;
    z-index: 5;
  }

  .barraMobile img {
    width: 100vw;
  }

  #opcionBioFusion {
    top: 0;
  }

  #opcionFusionGarden {
    margin-top: 13.3vw;
  }

  #opcionVyota {
    margin-top: 26.6vw;
  }

  #opcionZero {
    margin-top: 39.9vw;
  }

  #opcionNatures {
    margin-top: 39.9vw;
  }
}

@media (max-width: 768.98px) and (min-width: 500px) {
  .barraEscritorio {
    width: 658px;
  }

  #desktopMenuBioFusion {
    width: 179px;
    height: 41px;
    top: 9px;
    left: 50%;
    margin-left: -280px;
  }

  #desktopMenuNosotros {
    width: 70px;
    height: 41px;
    top: 0;
    left: 50%;
    margin-left: -63px;
  }

  #desktopMenuProdutos {
    width: 67px;
    height: 41px;
    top: 0;
    left: 50%;
    margin-left: 12px;
  }

  #desktopMenuFusionTech {
    width: 69px;
    height: 41px;
    top: 0;
    left: 50%;
    margin-left: 89px;
  }

  #desktopMenuContacto {
    width: 58px;
    height: 41px;
    top: 0;
    left: 50%;
    margin-left: 170px;
  }

  #desktopMenuTienda {
    width: 90px;
    height: 41px;
    top: 0;
    left: 50%;
    margin-left: 238px;
  }

  /* Estilo Menu Desplegable */
  .contenedor-menu-desplegable {
    top: 41px;
    left: -16px;
  }
  .contenedor-menu-desplegable img {
    width: 101px;
  }

  /* Estilo Opciones del Menu Desplegable */
  #opcionFusionGarden {
    top: 45px;
  }
  #opcionVyota {
    top: 90px;
  }
  #opcionZero {
    top: 135px;
  }
  #opcionNatures {
    top: 133px;
  }
}

@media (max-width: 1024.98px) and (min-width: 769px) {
  .barraEscritorio {
    width: 877px;
  }

  #desktopMenuBioFusion {
    width: 207px;
    height: 41px;
    top: 17px;
    left: 50%;
    margin-left: -360px;
  }

  #desktopMenuNosotros {
    width: 85px;
    height: 55px;
    top: 0;
    left: 50%;
    margin-left: -82px;
  }

  #desktopMenuProdutos {
    width: 109px;
    height: 55px;
    top: 0;
    left: 50%;
    margin-left: 5px;
  }

  #desktopMenuFusionTech {
    width: 88px;
    height: 55px;
    top: 0;
    left: 50%;
    margin-left: 120px;
  }

  #desktopMenuContacto {
    width: 83px;
    height: 55px;
    top: 0;
    left: 50%;
    margin-left: 223px;
  }

  #desktopMenuTienda {
    width: 111px;
    height: 55px;
    top: 0;
    left: 50%;
    margin-left: 316px;
  }

  /* Estilo Menu Desplegable */
  .contenedor-menu-desplegable {
    top: 55px;
    left: -12px;
  }
  .contenedor-menu-desplegable img {
    width: 134px;
  }

  /* Estilo Opciones del Menu Desplegable */
  #opcionFusionGarden {
    top: 59px;
  }
  #opcionVyota {
    top: 118px;
  }
  #opcionZero {
    top: 177px;
  }
  #opcionNatures {
    top: 177px;
  }
}

@media (min-width: 1025px) {
  .barraEscritorio {
    width: 1200px;
  }

  #desktopMenuBioFusion {
    width: 269px;
    height: 62px;
    top: 20px;
    left: 50%;
    margin-left: -489px;
  }

  #desktopMenuNosotros {
    width: 109px;
    height: 75px;
    top: 0;
    left: 50%;
    margin-left: -105px;
  }

  #desktopMenuProdutos {
    width: 110px;
    height: 75px;
    top: 0;
    left: 50%;
    margin-left: 28px;
  }

  #desktopMenuFusionTech {
    width: 88px;
    height: 75px;
    top: 0;
    left: 50%;
    margin-left: 182px;
  }

  #desktopMenuContacto {
    width: 83px;
    height: 75px;
    top: 0;
    left: 50%;
    margin-left: 322px;
  }

  #desktopMenuTienda {
    width: 111px;
    height: 75px;
    top: 0;
    left: 50%;
    margin-left: 454px;
  }

  /* Estilo Menu Desplegable */
  .contenedor-menu-desplegable {
    top: 75px;
    left: -34px;
  }
  .contenedor-menu-desplegable img {
    width: 183px;
  }

  /* Estilo Opciones del Menu Desplegable */
  #opcionFusionGarden {
    top: 81px;
  }
  #opcionVyota {
    top: 161px;
  }
  #opcionZero {
    top: 243px;
  }
  #opcionNatures {
    top: 244px;
  }
}

@media (min-width: 1400px){
  .container{
    max-width: 1140px !important;
  }
}
