/* ==============================================================
* VERMICOMPOSTING
* ============================================================== */

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

.vermicomposting-node {
	text-align: center; 
	margin:1rem; 
	display: block;
	border-radius: 1rem;
	padding: 1rem;
	color: black;
	width: 28%;
}
.vermicomposting-node img {
	border-radius: 50%; 
	display: inline-block;
	overflow: hidden;
}

#vermicomposting-node-1 {
	background: #b4e6ff;
}
#vermicomposting-node-1 img {
	border: solid 3px #3cbdfd; 
}
#vermicomposting-node-2 {
	background: #F3EB7E; /*ff7300*/
}
#vermicomposting-node-2 img {
	border: solid 3px #a14900; 
}
#vermicomposting-node-3 {
	background: #8ac640;
}
#vermicomposting-node-3 img {
	border: solid 3px #009343; 
}

.image-node-wrapper .g-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.image-node {
    padding: .5rem;
	margin: 1rem;
    border-radius: 1rem;
    display: inline-block;
	width: 28%;
}
.image-node img {
    border-radius: .5rem;
	width: 100%;
}

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

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