/* ==============================================================
* GARDEN SPACES
* ============================================================== */

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

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

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

.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) {
    .garden-spaces-node {
		width: 40%;
	}
	.image-node {
		width: 40%;
	}
}

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


/* ==============================================================
* TRIPTIC NODES
* ============================================================== */
.triptic-nodes-wrapper .g-content {
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

.triptic-node {
    max-width: 30%;
    display: flex;
    align-items: flex-start;
	justify-content: center;
	padding: 2rem;
}

.triptic-node-image {
    border: 4px solid;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 35%;
	z-index: 1;
}

.triptic-node-image img {
    width: 100%;
}

.triptic-node-content {
    width: 60%;
    text-align: left;
}

.triptic-node-title {
    display: inline-block;
    width: 70%;
    text-align: right;
	font-weight: bold;
}

.triptic-node-line {
    height: 4px;
    width: 95%;
    border-radius: 2px;
    margin-left: -20%;
}

.triptic-node-text {
    padding-left: 1rem;
    padding-top: 1rem;
}


@media screen and (max-width: 1440px) {
	.triptic-node {
		max-width: 45%;
	}
}

@media screen and (max-width: 1024px) {
	.triptic-node {
		max-width: 50%;
		padding: 1rem;
	}
}

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