*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container_productos{
    background: #fff;
    width: 95%;
    max-width: 1800px;
    margin: 20px auto;
}

.menu_productos ul{
    list-style: none;
    width: 100%;
    background: #000;
    display: table;
}

.menu_productos ul li {
    display: table-cell;
    width: calc(30px * 5);
}

.menu_productos ul li:hover {
  background-color: rgba(0,0,0,.9);
}


.menu_productos ul li a{
font: normal 'Open Sans', cursive;
text-decoration: none;
display:block;
color: #fff;
padding: 20px 0;
text-align: center;
}

.menu_productos ul .todos {background:#74a735;}
.menu_productos ul .Tratamientos {background:#638f2e}
.menu_productos ul .rehabilitacion {background: #557a28;}
.menu_productos ul .deporte {background: #456321;}
.menu_productos ul .motor {background: #344b19;}

/*CSS galer*/

.galeria_productos{
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    display: flex;
    flex: wrap;
    flex-wrap: wrap;
    flex-direction: row;
}
.galeria_productos .title-img{
    width: 100%;
    border-top: 4px solid #fff;
}

.galeria_productos .title-img h3{
    font: normal 36px 'Open Sans', cursive;
    color:#7eb43a;
    text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    text-align: center;
    padding: 5px 0;
    font-weight: 100;
}

.galeria_productos .box-img{
    width: calc(100px * 2);
    margin: 10px;
    border-radius: 2px;
    box-shadow: 0 0 7px 0 rgba(0,0,0,.6);
    overflow: hidden;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  
}
.galeria_productos .box-img img{
    width: 100%;
    vertical-align: top;
    cursor: pointer;
    transition: all .5s ease;
    margin: auto;

}
.galeria_productos .box-img img:hover{
transform: scale(1.2);
}

.active{
    border-bottom: 4px solid #f9c0d1;
}

@media screen and (max-width:450px){

    .container_productos{
        background: #fff;
        width: 100%;
        max-width: 1200px;
        margin-top: 45px;
    }
    
    .menu_productos ul{
        list-style: none;
        width: 100%;
        background: #000;
        display: block;
    }
    
    .menu_productos ul li {
        display: block;
        width: calc(40px * 5);
        margin-left: auto;
        margin-right: auto;
        height: 30px;
    }
    .menu_productos ul li a{
        font: normal 14px 'Open Sans', cursive;
        text-decoration: none;
        display:block;
        color: #fff;
        padding: 5px 0;
        text-align: center;
        }
    
    .galeria_productos{
        width: 100%;
        padding: 10px;
        margin-top: 20px;
        display: flex;
        flex: wrap;
        flex-wrap: wrap;
        flex-direction: row;
        }
    .galeria_productos .title-img{
        width: 100%;
        border-top: 4px solid #fff;
        }
        
    .galeria_productos .title-img h3{
        font: normal 36px 'Open Sans', cursive;
        color:#7eb43a;
        text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
        text-align: center;
        padding: 5px 0;
        font-weight: 100;
        }
        
    .galeria_productos .box-img{
        width: calc(80px * 2);
        margin: 10px;
        border-radius: 2px;
        box-shadow: 0 0 7px 0 rgba(0,0,0,.6);
        overflow: hidden;
        text-align: center;
        margin-right: auto;
        margin-left: auto;
          
        }
    .galeria_productos .box-img img{
    width: 100%;
    vertical-align: top;
     cursor: pointer;
    transition: all .5s ease;
    margin: auto;
        
    }
}   