@import url(main-image.css);

html {
    overflow-x: hidden;
}

body {
    background-color: #f5f5f5;
    overflow-x: hidden;
    overflow-y: hidden;
}

#hide {
    z-index: 20;
}

/* Imágen principal */

#image {
    background-image: url(../img/catalogo/catalogo3.webp);
}

/* Subtitulo */

#sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    background-image: url(../img/distribuidores/trian.webp);
    background-position: 300px;
    font-size: calc(2vw);
    font-weight: 900;
    color: white;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    padding: 20px;
}

/* Contenido */

/* Filtros */

.container{
    max-width: 80vw;
}

#col-filter > h5{
    font-size: calc(1.4vw);
}

.filter-box {
    margin-bottom: 2vh;
}

.filter-box > strong{
    font-size: calc(1.2vw);
    color: black;
}

#col-filter {
    flex-grow: 0;
}

#filters {
    width: 15vw;
    margin-top: 3vh;
}

.form-select {
    border: 1px solid rgba(128, 128, 128, 0.445);
    border-radius: .6vw;
    padding: .5vw;
    outline: none;
}

/* Productos */

.product {
    width: 100%;
    height: 30vh;
    border-radius: 1.2vw;
    transition: .5s;
}

.product-image {
    position: relative;
    width: 32%;
    height: 100%;
    cursor: pointer;
    margin-bottom: 1.5vh;
}


.product-image:hover>img {
    filter: brightness(.2);
}


.floatt {
    display: flex;
    width: 100%;
    height: 25%;
    align-items: center;
    position: absolute;
    bottom: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.521);
    transition: 1s;
    color: white;
    font-size: calc(1.5vw);
    border-radius: 0px 0px 1vw 1vw;
    padding-left: .8vw;
}

.float-reverse {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    z-index: 10;
    transition: 1s;
    color: white !important;
    text-decoration: none !important;
    font-size: calc(1.5vw);
    border-radius: .6vw;
}


.info-btn {
    color: white;
}

.filas {
    margin-top: 20px;
}


@media screen and (max-width: 850px) {

    /* .product {
        height: 25vh;
    } */
}


@media screen and (max-width: 769px) {

    /* .row{
        display: block;
    } */

    .container{
        max-width: none;
    }

    #sub-title {
        font-size: calc(8px + 2vw);
    }

    #filters{
        display: flex;
    }


    #col-filter > h5{
        font-size: calc(8px + 1.2vw);
    }

    .form-select{
        width: 20vw!important;
    }

    .filter-box > strong{
        font-size: calc(6px + 1.2vw);
    }

    .floatt {
        font-size: calc(6px + 1.5vw);
    }

    #filters {
        width: 25vw;
    }
    
    .float-reverse {
        font-size: calc(6px + 1.5vw);
    }

}

@media screen and (max-width: 480px) {

    /* .product {
        height: 18vh;
    } */

}