/* ==============================================================
/*	PRODUCTOS
/* ============================================================== */
#productos {
    background-color: #f6f6f6;
    padding: 0 3%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.producto-nodo {
    display: inline-flex;
    width: 15%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #49c1b1;
    transition: all ease .3s;
    margin: 1rem 0;
}
.producto-nodo:hover {
    color: #277067;
}
.producto-nodo:hover .producto-nodo-img {
    background: linear-gradient(to top, #277067, #49c1b1);
}

.producto-nodo-img {
    background: linear-gradient(to top, #49c1b1, #0affc9);
    border-radius: 50%;
    padding: 0.15rem;
    margin-bottom: 0.75rem;
    transition: all ease .3s;
}
.producto-nodo-img img {
    border-radius: 50%;
    border: 1rem solid #f6f6f6;
    transition: all ease .3s;
}
.producto-nodo p {
    font-size: 18px;
    line-height: normal;
}

@media only screen and (max-width: 1024px) {
    .producto-nodo {
        width: 20%;
    }
}
@media only screen and (max-width: 576px) {
    .producto-nodo {
        width: 30%;
    }
}
@media only screen and (max-width: 425px) {
    .producto-nodo {
        width: 40%;
    }
}


/* ==============================================================
/*	COTIZACION
/* ============================================================== */
#cotizacion {
    padding: 0 3%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
/**/