@charset "utf-8";
/* CSS Document */

.astoundQuoteContainer{
	display: flex;
	flex-direction: column;
	margin-top:100px;
	margin-bottom:100px;
}
.astoundQuoteTopBar{
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	width:100%;
	border-bottom:solid 1px #000;
	margin-bottom:50px;
}
.astoundQuoteTopIcon{
	background-color:#fff;
	transform: translateY(2px);
	padding-left:50px;
	padding-right:50px;
}
.astoundQuoteBottomBar{
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	width:100%;
	border-top:solid 1px #000;
	margin-top:50px;
}
.astoundQuoteBottomIcon{
	background-color:#fff;
	transform: translateY(-2px);
	padding-left:50px;
	padding-right:50px;
}

.astoundQuoteCarousel{
	display: flex;
	flex-direction: row;
	margin-left:100px;
	margin-right:100px;
}
.astoundQuoteElement{
	width:33.33%;
	padding:25px;
}

@media (max-width: 576px){
.astoundQuoteCarousel{
	margin-left:20px;
	margin-right:20px;
}
	.astoundQuoteElement{
		padding: 0;
	}

	.astoundQuoteElement p{
		margin-top: 20px;
	}

}