.quote-container {
  display: flex;
  flex-direction: row;
  width:100%;
}
@media (max-width: 1000px) {
  .quote-container {
    flex-direction: column;
  }
}

/* Pull Quote Right */
.body-text-left {
  flex: 60%;
}
.pull-quote-right2 {
  flex: 40%;
/*	padding: 15px; */
/*	border:solid 1px orange; */
/*	margin-bottom:20px; */
	margin-left:20px;
	padding-bottom:0px;
	text-align:right;
}

@media (max-width: 1000px) {
  .pull-quote-right2 {
    margin:10px;
    text-align:left;
  }
}


/*Pull Quote Left*/

.body-text-right {
  flex: 60%;
}
.pull-quote-left2 {
  flex: 40%;
/*	padding: 15px; */
/*	border:solid 1px orange; */
/*	margin-bottom:20px; */
	margin-right:20px;
	padding-bottom:0px;
}
@media (max-width: 1000px) {
  .pull-quote-left2 {
    margin:10px;
    text-align:left;
  }
}

/* Text Style */
.pull-quote-text{
	font-size: 20px;
	font-weight: bold;
	color: #0086C8;
	font-family:garamond;
}