
.contBotonGrande{
    display: flex;
    margin-bottom: 80px;

}

.contBotonGrande:hover .BotonGrande{

        background-color:var(--bg2);/* var(--secondColor);*/

}


.BotonGrande{
    /*Las variables para poder cambiar los colores de los botones sin tener
    que crear nuevos botones*/
    --bg1: black;
    --bg2: white;
    border: none;
    background-color: var(--bg1);
    width: 50vw;
    height: 20vh;
    color: white;
    display: block;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
    
}


.BotonRehabFitnes{
    border: none;
    width: 50vw;
    height: 25vh;
    color: white;
    display: flex;
    justify-content: center;
}


.BotonRehabFitnes img{
    position: absolute;
    object-fit: contain;
    width: 100%;
    height: 25vh;
    z-index: 0;
}



.DescripcionBanner{
    font-family: 'MonserratBold';
    /*Voy a experimentar con eso de ahi
    para hacer ajustes finos sobre valores plantilla*/
    font-size : 30pt;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}


.Descripcion{
    font-size: var(--TamNormalGrande);
    color: white;
    z-index: 1;
    margin: auto;
}
.fila{
    display: flex;
    justify-content: center;

}

.fila div img{
    width: 5vw;
    height: 6vw;
    margin-left: 0%;
    
}

.elemento{
    
    font-size: 20pt;
    margin-left: 25px;
    text-align: start;
}

.GridProductos{

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap : 30px 20px;
  width: 70%;
  max-width: 80vw; 
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
 


}

.ItemProductos{

    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;

}


.BotonProducto{
  background-color: #96A5B5;
        
  overflow: hidden;   
  display: flex;     
  border: 1px;
  border-radius: 50%;
  cursor: pointer;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
}
.BotonProducto img{
    object-fit: cover;
    display: block;
    width: 130px;
    height: 130px;
}

.BotonProducto:hover{
    background-color: #e62a26;
}


.TextoProducto{
    font-family: 'MonserratCustom';
    color :black;
    text-align: center;
    font-size: calc(var(--TamNormalGrande) + 5pt);
}





@media (max-width : 768px){

.fila div img{
    width: 10vw;
    height: 12vw;
    margin-left: 0%;
    
}

.DescripcionBanner{
    font-size : calc(var(--TamTitulos) - 2pt);
}
.elemento{
    font-size: var(--TamNormalGrande);
}
.elemento.especial{
    font-size:calc(var(--TamNormalGrande) + 4pt);
}

.GridProductos{
      /*grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));*/
}


.BotonProducto img{

    width: 60px;
    height: 60px;
}


.BotonProducto{

  width: 67px;
  height: 67px;

}

.TextoProducto{

    font-size: var(--TamNormalGrande);
}

}