/* CSS Document */
@charset "utf-8";
* { margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
  font-size: 62.5%;
  box-sizing: border-box;
  font-family: 'Sofia Sans', sans-serif;
  scroll-behavior: smooth;
}
.goog-te-gadget-icon{
  display: none;
}
.goog-te-gadget-simple{
  border: none !important;
  padding: 2px !important;  
}
.skiptranslate .goog-te-gadget > span{
  color: var(--azul-oscuro) !important;
  font-size: 1.4rem !important;
}

body{ font-size: 16px; }

*, *:before, *:after{ box-sizing: inherit;}

/* Icons and Symbols */

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 200,
  'opsz' 48
}


/*Colores Generales*/
:root {
  --rojo: #ff0000;
	--azul: #0c459c;
	--azul-oscuro: #44546a;
  --verde-tea: #25D366;
	--negro: #171717;
	--gris: #bebebe;
	--gris-medio: #7f7f7f;
	--blanco: #f7f7f7;
	--blanco-transparente: rgba(255, 255, 255, 0.5);
}

  h1{ font-size: 5rem;}
  h2{ font-size: 4rem;}
  h3{ font-size: 3rem;}

  h1, h2, h3 { margin-bottom: 1rem; font-family: 'Sofia Sans', sans-serif;}
  p{ margin-bottom: 1rem;}

  a{ text-decoration: none; }
  p{ font-size: 2rem; line-height: 2.5rem;}
  .enlace{ font-size: 2rem;}

  /* Contenedor general 1200px = 120rem */
  .contenedor{
    max-width: 90%;
    margin: 0 auto;
  }
  @media(min-width: 768px) { 
    .contenedor{
      max-width: 120rem;
      margin: 0 auto;
    }
  }
  .bg-blue{
    background-color: var(--azul-oscuro);
  }
  .bg-grey{
    background-color: var(--gris);
  }
  .bg-white{
    background-color: var(--blanco);
  }
/* Botón WhatsApp */
	#btnwhatsapp{
    width: 7rem;
    z-index: 98;
    top: 75%;
    right: 2%;
		position: fixed;
	}
  .cwhatsapp{
    display: flex;
    flex-direction: column;
		align-items: center;
    transform: scale(1);
    transition: all 0.5s ease;
    opacity: 0.9;
  }
  .cwhatsapp:hover{
		opacity: 1;
		transform: scale(1.1);
		box-shadow: 12px 21px 40px -24px rgba(0,0,0,0.2);
	}
	.contwhatsapp{
		width: 100%;
	}
	.cotiza{
		font-size: 2rem;
		color: var(--verde-tea);
    text-align: center;
	}
/* Barra superior de información teléfono & email */
  .contactsup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }
  @media(min-width: 768px) { 
    .contactsup {
      padding: 2rem;
    }
  }
  .contactsup a[href^="https:"]{
    background: url(../imagen/icon-whatsapp-white.svg) no-repeat left center;
    background-size: 1.8rem;
    padding-left: 2rem;
  }
  .contactsup a[href^="mailto:"]{
    background: url(../imagen/icon-email-white.svg) no-repeat left center;
    background-size: 1.6rem;
    padding-left: 2rem;
    margin-left: 1rem;
  }
  @media (min-width: 400px) { 
    .contactsup a{
      color: var(--blanco);
    }
  }
  @media (min-width: 768px) { 
    .contactsup {
      justify-content: center;
      padding: 2rem;
    }
  }
  .contactsup a{
    color: var(--blanco);
    font-size: 1.2rem;
  }
  @media(min-width: 768px) { 
    .contactsup a{
    font-size: 1.4rem;
    }
  }
  .contactsup a:nth-child(1){
    border-right: solid 1px var(--blanco);
    padding-right: 1rem;
  }
/* Menú de navegación logotipo & menu */
  .menuPrincipal {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  @media(min-width:768px) { 
  .menuPrincipal {
      flex-direction: row;
      justify-content: space-between;
    }
  }
/* Logotipo */
  .logotipo{
    width: 50%;
    margin: 1rem 0;
  }
  @media(min-width: 768px) { 
    .logotipo{
      width: 12%;
    }
  }
  .logotipo img {
    width: 100%;
  }
/* Menú hamburguesa */
.menuMovil{
  width: 38px;
  height: 38px;
  display: block;
  font-size: 1rem;
}
@media(min-width: 768px) { 
  .menuMovil{
    display: none;
  }
}
/* Menú de navegación */
  .enlacesNav {
    display: flex;
  }
  .enlacesNav li, .enlacesNavMobile li{
    list-style: none;
  }
  @media screen and (max-width: 768px ) { 
    .enlacesNav{
      display: none;
    }
    .enlacesNavMobile {
      width: 100%;
      height: 100vh;
      flex-direction: column;
      position: fixed;
      z-index: 99;
      background-color: var(--azul);
      top:0;
      left: -100%;
      display: flex;
      justify-content: center;
    }
    .enlacesNavMobile a {
      color: var(--blanco);
      font-size: 2rem;
      padding: 1rem;
      display: block;
      text-align: center;
    }
    .show {
      left: 0;
      transition: all .3s;
    }
    .hidden{
      left: -100%;
      transition: all .3s;
    }
  }
  .idiom{
    display: none;
  }
  @media(min-width: 768px) { 
    .idiom{
      display: flex;
      align-items: center;
    }  
  }
  @media(min-width: 768px) { 
    .enlacesNavMobile {
      display: none;
    }
  }
  @media(min-width: 768px) { 
    .enlacesNav {
      width: 60%;
      flex-direction: row;
      justify-content: flex-end;
    }
    .enlacesNav a {
      color: var(--azul-oscuro);
      font-size: 2rem;
      padding: 1rem;
      display: block;
      text-align: center;
      font-weight: bold;
    }
  }
  .enlacesNav a:hover {
    color: var(--azul);
    box-shadow: inset 0px -3px 0px 0px var(--gris);
  }
  .verMarcas{
    position: relative;
    display: flex;
    justify-content: center;
  }
  .navMarcas{
    z-index: 5;
    margin-top: 4rem;
    position: absolute;
    display: none;
  }
  .navMarcas li{
    background-color: #fff;
  }
  .verMarcas:hover .navMarcas{
    display: block;
  }
/* Banner slider home */
  .slide-contenedor {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    position: relative;
    overflow: hidden;
    margin: auto;
  }
  .miSlider {
    width: 100%;
    margin: auto;
    margin-bottom: -5px;
  }
  .miSlider img {
    width: 100%;
    object-fit: cover;
    transition: 3s ease;
  }
  .continf {
    width: 80%;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 80;
    background-color: rgba(68, 84, 106, 0.8);
  }
  @media(min-width: 768px) { 
    .continf {
      width: 80%;
      position: absolute;
      top: 50%;
      right: 50%;
      transform: translate(50%, -50%);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      z-index: 80;
      background-color: rgba(68, 84, 106, 0.9);
    }
    .continf p{
      color:#fff;
      font-size: 2.8rem;
    }
    h1.titSlider {
      font-size: 6rem;
    }
  }
  h1.titSlider {
    color: var(--blanco);
    margin: 0px;
  }
  a.ctared {
    color: var(--verde-tea);
    font-size: 1.6rem;
    cursor: pointer;
  }
  @media(min-width: 768px) { 
    a.ctared {
      font-size: 2.2rem;
    }
  }
  a.ctared:hover {
    color: var(--azul);
  }
  .direcciones {
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
  }
  .direcciones a {
    font-size: 3rem;
    padding: 1rem;
    color: var(--blanco);
    transition: 0.5s ease;
    background-color:var(--azul-oscuro);
  }
  @media(min-width: 768px) { 
    .direcciones a {
      font-size: 5rem;
    }
  }
  .direcciones a:hover {
    background-color:var(--negro);
    color: var(--blanco);
  }
  .barras {
    position: absolute;
    width: 100%;
    display: flex;
    z-index: 4;
    justify-content: center;
    margin-bottom: 15px;
    top: 90%;
    transform: translateY(-90%);
  }
  .barra {
    cursor: pointer;
    height: 6px;
    width: 30px;
    margin: 0 2px;
    background: var(--gris);
    display: inline-block;
    margin-left: 3px;
  }
  .activo {
    background-color:var(--azul-oscuro);
  }
  .fade {
    animation-name: fade;
    animation-duration: 1.8s ease;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
/* Sección Nosotros - Home */
  .bgNosotros{
    background: linear-gradient(
      rgba(4, 46, 82, 0.536),
      rgba(5, 11, 34, 0.9)
    ), url(../imagen/bg-prosente-presentation.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
  }
	.seccNosotros{
		display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
	}
  @media(min-width: 768px) { 
    .seccNosotros{
      flex-direction: row;
      justify-content: space-between;
    }
  }
  .imagenNosotros{
    width: 50%;
  }
	.informacionNosotros{
    width: 100%;
		display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
	}
  @media(min-width: 768px) { 
      .informacionNosotros{
        width: 70%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8% 5%;
      }
      .informacionNosotros p{
        color: var(--blanco);
        letter-spacing: -1px;
        text-align: center;
      }
  }
	.informacionNosotros h2{
		color: var(--blanco);
    text-align: center;
	}
	.informacionNosotros p{
		color: var(--blanco);
    letter-spacing: -1px;
    text-align: justify;
	}
	.informacionNosotros a{
		color: var(--blanco);
	}
/* Somos distribuidor Omron */
.seccDistribuidor{
  display: flex;
  flex-direction: column;
}
@media(min-width: 768px) { 
  .seccDistribuidor{
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.imgDist{
  width: 100%;
  object-fit: cover;
}
@media(min-width: 768px) { 
  .imgDist{
    width: 50%;
  }
}
.informacionDistribuidor{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media(min-width: 768px) { 
  .informacionDistribuidor{
    width: 50%;
    padding-right: 5%;
  }
}
.seccDistribuidor h2{
  color: var(--negro);
}
.seccDistribuidor p{
  color: var(--negro);
  text-align: justify;
  letter-spacing: -1px;
}
.seccDistribuidor a{
  color: var(--azul);
}
/* Overlay Empresa */
.bloqEmpresa{
  padding:2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.overlay{
  width:33%;
  height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
/* Contenido general de paginas de secciones */
/* Banner superior sección */
.bannerSuperior{
  height: 10rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(min-width: 768px) { 
  .bannerSuperior{
    height: 28rem;
    background-size:cover;
  } 
}
/*Pagina nosotros*/
.pagSeccion{
  padding: 2rem;
}
.pagSeccion p{
  color: var(--negro);
}
.pagSeccion > h2{
  color: var(--azul);
  text-align: center;
  margin: 3rem 0;
}
/* Column Gral */
.columnGral{
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.colum {
  background-color: var(--blanco);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  margin-bottom: 3rem;
  box-shadow: 6px 6px 16px rgb(0, 0, 0, 0.2);
}
@media(min-width: 768px) { 
  .colum {
    flex-direction: row;
    align-items: center;
  }
}
.grafColum{
  width: auto;
  height: 10rem;
  background-color: var(--azul);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(min-width: 768px) { 
  .grafColum{
    width: 30%;
  }
}
.grafColum p {
  color: var(--blanco);
}
.fa-paper-plane, .fa-heart, .fa-eye{
  font-size: 2rem;
  color: var(--blanco);
}
.textColum{
  width: auto;
}
@media(min-width: 768px) { 
  .textColum{
    width: 70%;
  }
}
.textColum p {
  color: var(--negro);
}
/* Servicios */
  .contServ{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 1px var(--gris);
    margin: 2rem 0;
    padding: 0 5%;
  }
  .contServ:nth-of-type(2n + 2){
    flex-direction: column-reverse;
  }
  @media(min-width: 769px) { 
    .contServ, .contServ:nth-of-type(2n + 2){
      flex-direction: row;
      justify-content: space-between;
    }
  }
  .imgServ{
    width: 50%;
  }
  @media(min-width: 768px) { 
    .imgServ{
      width: 20%;
    }
  }
  .infoServ{
    width: auto;
    padding: 5%;
  }
  @media(min-width: 768px) { 
    .infoServ{
      width: 70%;
      padding: 5%;
      text-align: left;
    }
  }
  .infoServ h2{
    color: var(--azul);
  }
  .infoServ p{
    color: var(--negro);
  }
  .btnWhats{
    font-size: 2rem;
    color: #61bb69;
    padding-left: 3rem;
    background-image: url(../imagen/icon-whatsapp.svg);
    background-repeat: no-repeat;
    background-position: center left;
  }
  /* Sección de contacto */
  .seccContacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  @media(min-width: 768px) { 
    .seccContacto {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
    }
  }
  .contentform {
    width: 90%;
    margin: 5rem 0;
  }
  @media(min-width: 768px) { 
    .contentform {
      width: 100%;
    }  
  }
  .contentform p {
    color: var(--negro);
  }
  .columFormContact{
    display: flex;
    flex-direction: column-reverse;
    gap: 5rem;
  }
  @media(min-width: 768px) { 
    .columFormContact{
      display: grid;
      grid-template-columns: 50% 40%;
      gap: 5rem;
    }
  }
  .formDatos{
    display: flex;
    flex-direction: column;
    gap:2rem;
  }
  .formDatos a{
    color: var(--negro);
    font-size: 2rem;
  }
  .formDatos a[href^="https:"]{
    background: url(../imagen/icon-whatsapp-color.svg) no-repeat left center;
    background-size: 3rem;
    padding-left: 4rem;
  }
  .formDatos a[href^="mailto:"]{
    background: url(../imagen/icon-email-color.svg) no-repeat left center;
    background-size: 3rem;
    padding-left: 4rem;
  }
  #formcontact {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  label{
    display: block;
    color: var(--negro);
    font-size: 2rem;
  }
  .formune{
    display: block;
    padding: 1rem;
    border: solid 1px var(--gris);
    color: var(--gris-medio);
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .btnConsulta {
    padding: 1.2rem;
    border: solid 1px var(--azul);
    background-color: var(--azul);
    color: var(--blanco);
    font-size: 2rem;
    cursor: pointer;
  }
  .btnConsulta:hover {
    border: solid 1px var(--azul);
    background-color: var(--blanco);
    color: var(--azul);
  }
  .branches{
    width: 90%;
  }
  .infcont {
    width: 100%;
    margin-bottom: 2rem;
  }
  .textContact{
    width: 100%;
    margin-bottom: 2rem;
  }
  .textContact p{
    color: var(--negro);
  }
  .textContact p:nth-of-type(1){
    color: var(--azul);
    font-size: 2rem;
    padding-left: 3rem;
    background-image: url(../icon/icon-branch.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 5%;
  }
  .textContact a{
    color: var(--azul);
    font-size: 2rem;
  }
  .mapaindex {
    width: 100%;
    height: 200px;
  }
/*Bloque de Productos*/
.bloqProductos{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap:1rem; */
}
@media(min-width: 768px) { 
  .bloqProductos{
    grid-template-columns: repeat(4, 1fr);
  }
}
.famProducto{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:2rem 1rem;
  background-color: #fff;
  border: solid 1px var(--gris);
  transition: 0.2s ease;
}
.famProducto:hover{
  box-shadow: inset 0 0 0 1px var(--gris);
  box-sizing: border-box;
  padding:2rem 1rem;
  border: solid 1px var(--gris);
}
.famProducto img{
  width: 10rem;
}
.famProducto p{
  text-align: center;
  color: var(--azul-oscuro);
  font-weight: bold;
  margin: 1rem 0;
}
.famProducto a{
  color: var(--blanco);
  background-color: var(--azul);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem 2rem;
}
.famProducto a:hover{
  background-color: var(--azul-oscuro);
}
/* Sección footer */
.seccFooter{
  padding: 4rem 3rem;
  background-color: var(--negro);
  border-top: solid 1rem var(--azul-oscuro);
}
@media(min-width: 768px) { 
  .seccFooter{
    padding: 4rem 0;
  }
}
.contFooterUno{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}
.contFooterUno p{
  font-size: 1.4rem;
  /* margin-left: 2rem; */
  color: var(--blanco);
}
@media(min-width: 768px){ 
  .contFooterUno{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}
.colFooter.uno{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.colFooter.dos{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: solid 1px #fff;
  padding-bottom: 26px;
}
@media(min-width:768px ) { 
  .colFooter.dos{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: solid 1px #fff;
    padding-bottom: 26px;
    gap: 6rem;
  }
}
.colFooter.dos p{
  font-size: 1.6rem;
}
.dir{
  margin-left: 25px;
}
.logoFooter{
  width: 30%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media(min-width: 768px) { 
  .logoFooter{
    width: 20%;
    margin: 0px;
    margin-right: 30px;
  }
}
.columfooter p, a{
  font-size: 1.4rem;
  color: var(--blanco);
}
.nosotros, .redes{
  display: flex;
  flex-direction: column;
}
.redes a img{
  display: inline;
  width: 30px;
}
.redes{
  flex-direction: row;
  align-items: self-start;
}
/* Sección Success */
#contpag{
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: var(--color-amarillo);
	position: fixed;
	top: 0;
	left: 0;

	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
}
h2.titgrac{
	width: 90%;
	margin: 0 auto;
	margin-bottom: 30px;
	text-align: center;
	font-size: 6vw;
	color: #fff;
}
p.textgrac{
	width: 90%;
	margin: 0 auto;
	font-size: 3vw;
	line-height: 120%;
	text-align: center;
	color: #fff;
}
a.lynkgrac{
	font-size: 2vw;
	line-height: 120%;
	text-align: center;
	color: var(--color-blanco);
}
/*Sección Errores*/
.alert{
	width: 90%;
	padding: 1% 1%;
	margin-top: 5%;
	margin-left: 5%;
	margin-bottom: 2%;
	border-radius: 4px;
	font-family: 'Roboto';
	position: relative;
}
.alert-success{
	background-color: green;
	font-size: 1.3em;
	color: #fff;
}

.alert-danger{
	background-color: red;
	font-size: 1.3em;
	color: #fff;
}
.dnone{
	display: none !important;
}
.thankYou{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 0;
}
.thankYou a{ 
  color: var(--blanco);
  background-color: var(--azul);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem 2rem;
}
/* Sección de marcas*/
.bloqMarca{
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.bloqMarca h1{
  color: var(--negro);
  margin: 4rem 0 0 0;
  text-align: center;
}
/* Slider Marcas */
#marcas{
  position: relative;
  overflow: hidden;
  margin: auto;
}
.slide {
  display: none;
}
.slide.active {
  display: block;
  width: 100%;
  margin: 0 auto; 
}
.contMarcas{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.contMarcas img{
  width: 17%;
}
.btnsMarcas{
  width: 112%;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(40%);
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media(min-width: 768px) { 
  .btnsMarcas{
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(25%);
    display: flex;
    justify-content: space-between;
    gap: 3rem;
  }
}
.btnSliderMarcas{
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem 3rem;
  color: var(--azul-oscuro);
  cursor: pointer;
}
@media(min-width: 768px) { 
  .btnSliderMarcas{
    font-size: 3rem;
    font-weight: bold;
    padding: 1rem 3rem;
    color: var(--azul-oscuro);
    cursor: pointer;
  }
}
/* SLIDE HERO */
.contentHero{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top, rgba(15, 26, 42, 0.8), rgba(68, 84, 106, 0.8)), url(../imagen/prosente-banner-slider-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
@media(min-width: 768px) { 
  .contentHero{
    display: flex;
    flex-direction: row;
    align-items: center;
  } 
}
/* HERO SLIDER*/
.heroSlide{
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(min-width: 768px) { 
  .heroSlide{
    width: 60%;
    height: 400px;
  }
}
.contHero{
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 80;
}
@media(min-width: 768px) { 
  .contHero{
    width: 100%;
    height: 100%;
  }  
}
.contHero h1{
  color: var(--blanco);
  font-size: 5rem;
  margin: 0px;
}
.contHero p{
  color: var(--blanco);
  font-size: 2rem;
}
.contHero a{
  background-color: var(--azul);
  color: #fff;
  padding: 1rem 4rem;
  font-size: 2rem;
  font-weight: bold;
  margin: 2rem 0;
  transition: all 0.3s ease-in;
}
@media(min-width: 768px) { 
  .contHero h1{
    color: var(--blanco);
    font-size: 7rem;
    margin: 0px;
  }
  .contHero p{
    color: var(--blanco);
    font-size: 3rem;
  }
  .contHero a{
    background-color: var(--azul);
    color: #fff;
    padding: 1rem 4rem;
    font-size: 3rem;
    font-weight: bold;
    margin: 2rem 0;
    transition: all 0.3s ease-in;
  }
  .contHero a:hover{
    background-color: var(--azul-oscuro);
  }
}
/* DROPDOWN */
#menuCategorias{
  width: 100%;
}
@media(min-width: 768px) { 
  #menuCategorias{
    width: 40%;
  }
}
.btnCategories{
  color: var(--negro);
  background-color: var(--verde-tea);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-top: -50px;
  box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.4);
}
@media(min-width: 768px) { 
  .btnCategories{
    color: var(--negro);
    background-color: var(--verde-tea);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    width: 84%;
    margin-top: -70px;
  }
}
.contentCategories{
  position: absolute;
  z-index: 97;
  width: 100%;
}
@media(min-width: 768px) { 
  .contentCategories{
    position: absolute;
    z-index: 99;
    width: 35%;
  }
}
.hidden{
  display: none;
}
.menuCategorias, .menuSubCategorias, .menuProductos{
  list-style: none;
  padding: 0;
  margin: 0;
}
.menuCategorias{
  width: 100%;
  background-color: #555;
  box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.8);
}
.menuLink{
  display: flex;
  align-items: center;
  padding: 20px;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  border-bottom: solid 1px var(--gris-medio);
}
.material-symbols-outlined{
  /* margin-left: 5px; */
  font-weight: 700;
}
.menuSubCategorias .menuLink{
  background-color: #333;
  padding-left: 30px;
}
.menuProductos .menuLink{
  background-color: #111;
  padding-left: 60px;
}
.menuSubCategorias, .menuProductos{
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

