:root {
	--ts-darkest-blue: #223e72;
	--ts-blue: #3663b1;
	--ts-lightest-blue: #508ff4;
	--ts-green: #91ca41;
	--ts-dark-gray: #666666;
}
.hero-section {
	background-color: var(--ts-blue);
	color: #fff;
	padding: calc(2vw + 35px) 15px calc(2vw + 35px) 15px;
	text-align: center;
}
.hero-section .heading {
	margin: auto;
	max-width: 800px;
}
.hero-section .h1 {
	color: #fff;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 700;
}
.hero-section .h1 span {
	font-size: inherit;
	line-height: inherit;
}

.bg-white {
	background-color: #fff;
	margin-bottom: 35px;
}
.color-dark > p,
.color-dark > li,
.color-dark > * > li {
	color:  var(--ts-dark-gray);
}
.color-green {
	color: var(--ts-green);
}
.color-blue {
	color: var(--ts-blue);
}

.item-flex-set {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 0 -10px 15px;
}
/* potentially just this page */
.item-flex-set {
	padding: clamp(35px, 5vw, 80px) 0 clamp(35px, 5vw, 50px);
}
.item-flex-50 {
	flex: 1 1 400px;
	margin: 0 10px 15px
}
@media (max-width: 854px) {
	.mobile-first {
		order: -1
	}
}
.item-flex-100 {
	flex: 1 0 95%;
	margin: 0 10px 15px
}


.c-wrapper {
	line-height: 1.6;
	max-width: 880px;
	margin: 0 auto;
}
.c-wrapper h2,
.c-wrapper h3 {
	color: var(--ts-blue);
	font-family: Montserrat, "Helvetica Neue", sans-serif;
}
.c-wrapper h2 {
	font-size: clamp(26px, 3vw, 32px);
	font-weight: 700;
	margin-bottom: 35px;
}

.list-dots li {
	list-style: disc outside;
	margin-top: 26px;
	margin-left: 20px;
}
.list-dots li::marker {
	color: var(--ts-green);
}
