html {
	box-sizing: border-box;
	font-size: 16px;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

* {
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

body {
	background-color: #fafafa;
	font-weight: normal;
	font-style: normal;
}

header {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	font-family: 'Source Sans Pro', serif;
	position: sticky;
	width: 100%;
	left: 0;
	top: 50px;
	z-index: 9999;
	border-top: 0;
}

.container {
	width: 100%;
	max-width: 770px;
	min-width: 200px;
	margin: 0 auto;
}

section {
	margin: 40px 0 20px;
}

h1,
h2,
h3 {
	font-family: 'Source Sans Pro', serif;
	color: #333;
	font-size: 2.1em;
	line-height: 1.2;
	font-weight: 800;
	margin-bottom: 20px
}

p,
li {
	font-family: 'Source Serif Pro', sans-serif;
	font-size: 1.15em;
	line-height: 1.5em;
	margin-bottom: 15px;
	text-align: justify;
}

p span {
	font-weight: 700
}

ul {
	list-style: disc outside none;
	margin-left: 40px;
}

.list__lettered {
	list-style-type: lower-latin;
}

.list__numbers {
	list-style: none;
	margin-left: 30px;
}

.list__numbers li {
	padding-left: 0px;
}

ol {
    counter-reset: section; 
    list-style-type: none; 
    padding-left: 0; 
}

ol > li {
    counter-increment: section;
    font-size: 1.10em;

}

ol > li:before {
    content: counters(section, ".") " ";
    font-size: 18px;
}

ol > li > ol {
    padding-left: 20px; 
}


#hero {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
}

h1 {
	font-size: 6em;
	line-height: 1;
}
h2.wp-block-heading {margin-top: 40px;}

#sublead {
	font-size: 2.3em;
	text-align: center;
}

#hero div {
	text-align: center
}

li {
	margin-bottom: 10px;
	padding-left: 15px;
}

.name__list p {
	margin-bottom: 10px;
	line-height: 1.3em;
	text-align: initial;
}

.text-center {
	text-align: center
}

a:link,
a:visited {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: red;
}

.row-button {
	display: inline-flex;
	gap: 30px;
}

footer {
	text-align: center;
}



.row-button p {
	font-size: 13px;
	color: #777;
	text-align: center;
}


@media (max-width: 768px) {
	header {
		position: sticky;

		top: 0px;
	}

	.container {
		width: 100%;
		padding-right: 25px;
		padding-left: 25px;
		margin-right: auto;
		margin-left: auto
	}

	#hero {
		height: 60vh;
	}

	ul {
		margin-left: 20px;
	}

	li {
		padding-left: 5px;
	}

	h1 {
		font-size: 4em
	}

	.row-button {
		gap: 30px
	}
}