/* Widen homepage text box */
@media only screen and (min-width: 700px) {
    .banner-block .copy {
        max-width: 700px;
    }
}


/* Homepage partner logos */
.logoContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.logoBox {	
	align-self: center;
}
.logoBox img {	
	margin: 1em;
}
@media only screen and (min-width: 830px)
{
	.logoContainer--row {
		flex-direction: row;
		justify-content: space-around;
	}
}


/* Homepage quote - coded as templates image of curly quote doesn't work for grey background */
#block-quote {
    width: 100%; 
}
#block-quote p {
margin:auto; 
width:80%; 
max-width: 800px; 
text-align: center;
font-size: 1.3em;
line-height: 1.5;
color: #6A2383;
}
.curlyQuote::before {
    content: "\201c";
    position: relative;
    top: -58px;
    display: block;
    height: 0;
    font-family: Georgia, serif;
    font-size: 71px;
}
#block-quote p a.name {
    font-weight: 600;
    color: #343536;
}
