<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.featuresContainer {
	
	display: flex;
	display: -webkit-flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	width: CALC(100% - 40px);
	padding: 20 0px;
	margin: 20px;
	
	
}

.featuresHeader {
	
	font-size: 23px;
	font-weight: bold;
	margin: 20px;
	
}

.featuresLI {
	
}

UL.feature-list {

	padding: 20px;
	margin: 0;
	box-sizing: border-box;
	width: 100%;
	line-height: 2em;
	
}

LI.featuresLI {
	
	margin: 10px 20px;

}

.leftBox, .rightBox {
	
	width: calc(50% - 10px);
	border-radius: 20px;
	
}

.leftBox {
	
	background: #EAEFDA;
	
}

.rightBox {
	
	background: #D8E6F1;
	
}

.leftBoxHeader {
	
	background: #7B913C;
	padding: 15px 20px;
	border-radius: 20px 20px 0 0;
	color: white;
	font-size: 18px;
	font-weight: bold;
	width: 100%;
	box-sizing: border-box;

}

.boxText {
	
	padding: 0;
	
}



.rightBoxHeader {
	
	background: #528DC2;
	padding: 15px 20px;
	border-radius: 20px 20px 0 0;
	color: white;
	font-size: 18px;
	font-weight: bold;
	width: 100%;
	box-sizing: border-box;

}





/* Media Queries */

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


}



@media only screen and (max-width: 900px) {
	
}





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


}



@media only screen and (max-width: 600px) {
	
	.featuresContainer {
		
		flex-direction: column;
		-webkit-flex-direction: column;
		
	}
	
	.leftBox, .rightBox {
		
		width: 100%;
		margin: 0;
		
	}
	
	.rightBox {
		
		margin-top: 20px;
		margin-bottom: 20px;
		
	}


}

@media only screen and (max-width: 400px) {
	
		
	.featuresContainer {
		
		margin: 10px;
		width: CALC(100% - 20px);
		
	}

}

</pre></body></html>