@charset "UTF-8";
/* CSS Document */


#content {
	width: 100%;
	max-width: 900px;
	box-sizing: border-box;
	overflow: hidden;
}


.testimony {  
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	border-radius: 0.3rem;
	width: 100%;
	box-sizing: border-box;
	background-color: #111;
    border: 1px solid #222;
}

.testimony-pic-box {  /* column 1 */
	width: 100%;
	display: block;
	margin: 0 auto;
	align-items: center;
	
	padding: 2rem;
	background-color: #222;
	/*width: 100%;*/
	/*max-width: 200px;*/
	/*box-sizing: border-box;*/
}

.testimony-pic {
	/*width: 100%;*/
	max-width: 200px;
	height: 200px;
	border-radius: 100%;
	display: block;
	margin: 0 auto;
}


.person-name {
	font-size: .75rem !important;
	text-align: center;
	margin-top: .5rem;
	color: #777;
}

.person-title {
	font-size: .65rem !important;
	text-align: center;
	margin-top: .5rem;
	color: #777;
}

.quote-box {  /* column 2 */
	max-width: 100%;
	padding: 1rem;
	/*padding: 1rem;*/
}

blockquote {
	padding: 2rem 2rem;
	font-size: 1.5rem;
}


.display-1 {
	font-size: 4.25rem !important;
	letter-spacing: 2px;
	text-indent: 2px;
}





/************************************************************************/
/***************************** MEDIA QUERIES ****************************/
/************************************************************************/

@media (min-width: 480px) {  

}

@media (min-width: 576px) {  

}

@media (min-width: 768px) {  

	.testimony {
		flex-wrap: nowrap;
		justify-content: center;
	}
	.testimony-pic-box {
		margin: ;
		max-width: 200px;
	}

/*	.testimony-pic {
		width: 100%;
    	max-width: 200px;
    	max-height: 200px;
}*/

	blockquote {
	padding: 2rem 2rem;
	font-size: 1.5rem;
	}

	.display-1 {
		font-size: 5rem !important;
		letter-spacing: 2px;
		text-indent: 2px;
	}
}

@media (min-width: 992px) { 

}

@media (min-width: 1200px) {  

}