/* HOMEPAGE STYLES
************************************************************/

section:not(section.about)	{
	border-bottom: 1px solid var(--color-row-border);
}

section.bannerImage	{
	min-height: 30vh;
}

.sectionTitle	{
	text-align: center;
}

section.heroStatement .container	{
	max-width: 52rem;
}

section.heroStatement	{	
	text-align: center;
}

section.heroStatement h2	{	
	margin-top: 1em;
	font-size: 2em;
	font-style: italic;
	font-family: var(--font-quote);
}

section.about	{
	padding-top: 50px;
}

/*li.current_page_item	{
	display: none;
}*/

.thumb {
	text-align: right;

}

.thumb img	{
	display: inline-block;
	margin-bottom: 30px;
		width: 100%;
		height:auto;
}

@media (min-width: 900px) {
	.thumb img	{
		max-height: 200px;
		width: auto;
	}
}

h4, p {
	margin-left: 0;
}



/* custom ordered list numbers */

ol {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
  margin-left: 0;
}

ol li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 2rem;
  font-weight: bold;
  font-family: sans-serif;
}


