/* Typography */

@import url("https://use.typekit.net/kka5ysv.css");

html {
	scroll-behavior: smooth;
}

*, p {
	font-family: work-sans, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0;
	font-size: 15px;
	line-height: 20px;
	color: rgba(35,37,58,0.75);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.1);
}

p {
	margin: 16px 0;
}

p.lead {
	font-size: 15px;
	letter-spacing: 0;
	line-height: 20px;
}

@media (min-width: 576px) { 
	*, 
	p {
		font-size: 16px;
		line-height: 22px;
	} 
}

@media (min-width: 992px) { 
	*, 
	p {
		font-size: 18px;
		line-height: 24px;
	} 
}

@media (min-width: 1200px) { 
	*, 
	p {
		font-size: 15px;
		line-height: 24px;
	}
	p.lead {
		font-size: 18px;
		line-height: 24px;
	} 
}

h1, h2, h3, h4, h5, h6 {
	font-family: bookman-jf-pro, serif;
	font-weight: 400;
	font-style: normal;
	color: #2E2E63;
}

h1, .headline {
	font-size: 40px;
	letter-spacing: -1.15px;
	line-height: 42px;
} 

@media (min-width: 992px) { 
	h1 {
		font-size: 66px;
		line-height: 76px;
	} 
	.headline {
		font-size: 46px;
		line-height: 56px;
	}
}

h2, .title {
	font-size: 32px;
	letter-spacing: 0;
	line-height: 40px;
}

h3 {
	font-size: 21px;
	letter-spacing: 0;
	line-height: 28px;
}

strong {
	font-weight: 700;
}

ol {
	list-style: none;
	counter-reset: counter;
	margin: 0;
	padding: 0;
}
ol li {
	counter-increment: counter;
	position: relative;
	min-height: 80px;
	margin: 32px 0 24px 104px;
	padding: 0;
	vertical-align: middle;
}

ol li::before {
	content: "0" counter(counter);
	font-family: bookman-jf-pro, serif;
	height: 72px;
	width: 72px;
	color: #2E2E63;
	font-size: 32px;
	letter-spacing: 0;
	text-align: center;
	line-height: 72px;
	border-radius: 36px;
	background-color: #fff;
	position: absolute;
	margin: 0;
	margin-left: -104px;
	margin-top: -24px;
	padding-top: 2px;
}

a, a:hover { 
	color: #23253A;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0; top: 0;
	width: 24px; 
	height: 24px;
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 3px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
	margin-right: 24px;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
	content: '\2022\0020';
	position: absolute;
	top: -16px; left: 0;
	font-size: 56px;
	line-height: 56px;
	color: #2E2E63;
	transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
[type="checkbox"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
	color: #999;
}
[type="checkbox"]:disabled + label {
	color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
	border: 2px dotted blue;
}

label:hover:before {
	border: 2px solid #4778d9!important;
}

/* Bootstrap Element Overrides */

.navbar-toggler {
	padding: .25rem .75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid rgba(53,54,114,0.2);
	border-radius: .25rem;
}

.navbar-toggler-icon {
  background-image: url("../i/icon__toggler.svg");
}

.nav-link {
	font-size: 15px;
	letter-spacing: 0;
	line-height: 24px;
	opacity: 0.6;
	transition: opacity 300ms;
	cursor: pointer;
}

.nav-item {
	margin: 16px auto;
}

.nav-item:first-child { 
	margin-top: 32px; 
}

@media (min-width: 992px) {
	.nav-item:first-child { 
		margin-top: 16px; 
	}
}

.nav-link:hover {
	opacity: 1.0;
}

.fixed-top {
	background-color: rgba(250,250,250,0.98);
	-webkit-box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
	-moz-box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
	box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
}

.btn {
	width: 80%;
	margin-bottom: 8px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.3px;
	line-height: 24px;
	text-align: center;
	transition: background-color 300ms;
}

@media (min-width: 992px) {
	.btn {
		width: auto;
	}
}

.btn-primary {
	background-color: #2E2E63;
	border-color: #2E2E63;
}

.btn-primary:hover {
	color: #fff;
	background-color: #102738;
	border-color: #102738;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
	background-color: #102738;
	border-color: #102738;
}

.btn-secondary {
	background-color: rgba(0,0,0,0);
	color: #2E2E63;
	border: 1px solid #2E2E63;
}

.btn-secondary:hover {
	background-color: rgba(0,0,0,0);
	color: #2E2E63;
	border: 1px solid #2E2E63;
}

.btn-lg {
	padding: .8rem 1.2rem;
	border-radius: .2rem;
	min-width: 160px;
}

/* Theme Blocks */

section {
	padding: 64px 0;
} 

@media (min-width: 992px) { 
	section {
		padding: 72px 0;
	} 
}

@media (min-width: 1200px) { 
	section {
		padding: 128px 0;
	} 
}
section.header {
	padding: 16px;
	background-color: #FBE8C5;
}

.header__navbar-collapse {
	text-align: center;
}

.header__nav-item {
	border-bottom: 1px solid rgba(53,54,114,0.2);
}

@media (min-width: 992px) {
	.header__nav-item {
		border-bottom: none;
	}
}

section.hero {
	background: linear-gradient(180deg, #FBE8C5 0%, #F9DFB4 100%);
	padding-bottom: 0;
	-webkit-box-shadow: inset 0px -20vh #fff;
	-moz-box-shadow: inset 0px -20vh #fff;
	box-shadow: inset 0px -20vh #fff;
	box-sizing: border-box;
}

@media (min-width: 992px) {
	section.hero {
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
}

.hero__col-header {
	margin-bottom: 32px;
	text-align: center;
}

.hero__col-header > h1 {
	margin-bottom: 24px;
}

.hero__col-header > p {
	margin-bottom: 48px;
}

@media (min-width: 992px) { 
	.hero__col-header {
		margin-bottom: 96px;
		text-align: left;
	}
}

.hero__image {
	position: relative;
	width: 99%;
}

@media (min-width: 992px) {
	.hero__image {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		width: auto;
		max-height: 540px;
		margin: 0 auto;
	} 
}

section.about {
}

.about__col-header {
	margin-bottom: 16px;
}

@media (min-width: 992px) {
	.about__col-header {
		margin-bottom: 64px;
	}
}

section.partners {
	background-color: #F6F6F7;
}

.partners__col-header {
	margin-bottom: 64px;
}

.partners__card-deck {
	border: 0;
}

.partners__card-deck {
  display: flex;
  flex-wrap: wrap;
}
.partners__card-deck > [class*='col-'] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partners__card {
	border: 0;
	border-radius: 0.2em;
	text-align: center;
	padding: 24px;
	margin-bottom: 16px;
	background-color: #fff;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
	-moz-box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
	box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
	min-height: 50vh;
}

@media (min-width: 1200px) { 
	.partners__card {
		padding: 48px 24px;
	}
}

.partners__card > img {
	width: 200px;
	height: auto;
	margin: 0 auto;
}

section.features {
	background-color: #C3DCB9;
}

.features__col-header {
	margin-bottom: 64px;
}

.features__list-item {
	margin: 0 0 40px 0;
	padding: 0 16px;
}

.features__list-item:last-child {
	margin: 0px;
}

@media (min-width: 1200px) { 
	.features__list-item {
		margin: 0 0 40px 0;
		padding: 0;
	}
}

.features__list-contents {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 23px;
	border-bottom: 1px solid rgba(35,37,58,0.12);
	text-align: center;
}

@media (min-width: 1200px) { 
	.features__list-contents {
		text-align: left;
	}
}

.features__list-icon {
	display: block;
	height: 80px;
	width: 80px;
	background: #fff;
	border-radius: 56px;
	line-height: 80px;
	text-align: center;
	margin: 0 auto 32px auto;
}

section.privacy {

}

.privacy__col-header {
	margin-bottom: 64px;
}

.privacy__card-deck {
	border: 0;
}

.privacy__card {
	border: 0;
	border-radius: 0.2em;
	text-align: center;
	padding: 24px;
	margin-bottom: 16px;
	background-color: #F6F6F7;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
	-moz-box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
	box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.02);
	min-height: 55vh;
}

@media (min-width: 1200px) { 
	.privacy__card {
		padding: 48px 32px;
	}
}

.privacy__card-icon {
	height: 112px;
	width: 112px;
	background: #fff;
	border-radius: 56px;
	line-height: 112px;
	margin: 32px auto;
	text-align: center;
}

section.how-to {
	background-color: #FAE3BA;
	padding-bottom: 0;
}

.how-to__ol {
	margin: 64px 0 0 0;
}

@media (min-width: 992px) {
	.how-to__ol {
		margin: 96px 0 0 0;
	}
}

.how-to__image {
	display: block;
	margin: 0 auto;
	width: 99%;
	position: relative;
	bottom: 0;
}

section.contact {
	background-color: #2E2E63;
}

.contact__headline--negative {
	color: #FFFFFF;
	margin-bottom: 64px;
}

.contact__form-control {
	margin-bottom: 16px;
	color: #23253A;
	font-size: 15px;
	letter-spacing: 0;
	line-height: 24px;
	height: 56px;
	border-radius: 3px;
	background-color: #F6F6F7;
	border: 0;
}

.contact__form-check {
	margin: 16px 0 16px 0;
}

.contact__form-check--first {
	margin: 32px 0 16px 0;
}

.contact__form-check--last {
	margin: 16px 0 32px 0;
}

.contact__form-check-label {
	margin-left: 24px;
}

.contact__form-check-label {
	color: rgba(255,255,255,0.6);
}

.contact__form-check-label > a {
	color: rgba(255,255,255,0.8);
	border-bottom: 1px solid rgba(255,255,255,0.0);
	transition: color 300ms, border-bottom 60ms;
}

.contact__form-check-label > a:hover {
	color: rgba(255,255,255,1.0);
	border-bottom: 1px solid rgba(255,255,255,0.6);
}

.contact__btn {
	height: 56px;
	line-height: 56px;
	width: 100%;
	border-radius: 3px;
	background-color: #FFC776;
	padding: 0;
	color: #2E2E63;
}

.contact__btn:hover,
.contact__btn:active,
.contact__btn:not(:disabled):not(.disabled).active, 
.contact__btn:not(:disabled):not(.disabled):active, 
.show>.contact__btn.dropdown-toggle {
	color: #2E2E63;
	background-color: #c78e42;
}

footer {
	padding: 32px 0;
	background-color: #2E2E63;
}

.footer__inner-container,
.footer__inner-container > p,
.footer__inner-container > p > a {
	color: rgba(255,255,255,0.6);
}

.footer__inner-container,
.footer__inner-container > p {
	text-align: center;
}

.footer__inner-container > p > a {
	color: rgba(255,255,255,0.8);
	border-bottom: 1px solid rgba(255,255,255,0.0);
	transition: color 300ms, border-bottom 60ms;
}

.footer__inner-container > p > a:hover {
	color: rgba(255,255,255,1.0);
	border-bottom: 1px solid rgba(255,255,255,0.6);
}

@media (min-width: 992px) { 
	.footer__inner-container,
	.footer__inner-container > p {
		text-align: left;
	}		
	.footer__inner-container--privacy-terms > p {
		text-align: right;
	}
}

.error {
  color: #F00;
}