/* ==============================================================
* NODOS
* ============================================================== */

.nodes-wrapper .g-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.node {
	text-align: center; 
	margin:1rem; 
	display: block;
	border-radius: 1rem;
	padding: 1rem;
	color: black;
}

.node--w4 {
	width: calc(25% - 33px);
}

.node img {
	display: inline-block;
	overflow: hidden;
}


@media screen and (max-width: 1024px) {
    .node {
		width: 40%;
	}
}

@media screen and (max-width: 768px) {
    .node--w4 {
        width: 100%;
    }
}