html {
	--light-blue: #bcd3e3;
	--blue: #719ab7;
	--dark-blue: #213b73;
	--darker-blue: #1b2f59;
	--black: #343537;
	--gray: #959596;
	--yellow: #ffa900;
	--white-color: #fff;
	--max-content-width: 1024px;
	--max-narrow-content-width: 800px;
	--content-padding: 5em;
}

body {
	box-sizing: border-box;
	margin: 0;
	color: var(--darker-blue);
	font-family: "Titillium Web", sans-serif;
	overflow-x: hidden;
}

.container {
	max-width: var(--max-narrow-content-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--content-padding);
	padding-right: var(--content-padding);
}

.container.wide {
	max-width: var(--max-content-width);
}

.button {
	border: 2px solid var(--dark-blue);
	border-radius: 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.75em;
	font-weight: bold;
	color: var(--dark-blue);
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.15s;
}

.button:hover {
	background: var(--dark-blue);
	color: white;
}

.button.button-inverted {
	background: var(--dark-blue);
	color: white;
}

.button.button-inverted:hover {
	background: transparent;
	color: var(--dark-blue);
}

.button.button-light {
	color: white;
	border-color: white;
}

.button.button-light:hover {
	background: white;
	color: var(--dark-blue);
}

.button img {
	margin-right: 0.33em;
}

.button .button-icon {
	font-size: 1.2rem;
	margin-right: 0.33em;
}

.nav-wrapper {
	padding-top: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid var(--darker-blue);
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav .nav-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

nav .nav-right a {
	margin-right: 2rem;
	color: var(--dark-blue);
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
}

nav .nav-right a:last-child {
	margin-right: 0;
}

.mobile-hero {
	background-color: var(--dark-blue);
	color: var(--white-color);
	height: 60svh;
	min-height: 400px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	padding: 0 1rem;
}

.mobile-hero h1 {
	color: var(--white-color);
	font-size: 2.5rem;
	margin: 0;
}

.mobile-hero-buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.mobile-hero-buttons .learn-more {
	background-color: var(--white-color);
	color: var(--dark-blue);
	margin-right: 1rem;
	padding: 1rem;
}

.mobile-hero-buttons .register {
	background-color: var(--yellow);
	color: var(--dark-blue);
	padding: 1rem;
}

@media screen and (min-width: 992px) {
	.mobile-hero {
		display: none;
	}
}

.hero {
	display: none;
}

@media screen and (min-width: 992px) {
	.hero {
		margin-top: -1.5em;
		display: flex;
		align-items: center;
	}
}



.hero .hero-content {
	flex-grow: 6;
	width: 60%;
	padding-right: 2em;
}

.hero .hero-content .hero-buttons {
	margin-top: 3em;
	display: flex;
	align-items: center;
	column-gap: 1em;
}

.hero .hero-image-section {
	width: 40%;
	display: flex;
	justify-content: center;
}

.hero .hero-image-section img {
	max-width: 100%;
}

.jump-links {
	margin-top: 20px;
	display: flex;
	justify-content: flex-end;
}

.jump-links .divider {
	margin: 0 7px;
}

.indent {
	margin-left: 25px;
}

.font-weight-bold {
	font-weight: bold;
}

.margin-bottom {
	margin-bottom: 40px;
}

@media screen and (min-width: 768px) and (max-width: 950px) {
	.hero .hero-image-section img {
		margin-top: 4em;
	}
}

h1 {
	font-size: 2.5em;
	line-height: 1.3;
}

h1 > div:first-child {
	color: var(--dark-blue);
}

h1 > div:nth-child(2) {
	color: var(--black);
	font-weight: normal;
}

h2 {
	font-size: 1.6em;
	margin-bottom: -0.25em;
}

.wave-bg-top {
	position: relative;
	z-index: -1;
}

.wave-bg-top > img {
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: calc(10em - 20vw);
	width: 100%;
}

.wave-section {
	padding-top: 5em;
	background: var(--light-blue);
}

@media screen and (min-width: 992px) {
	.wave-section {
		margin-top: calc(-16em + 20vw);
		padding-top: calc(18em - 20vw);
	}
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
	.wave-section {
		margin-top: -1em;
		padding-top: 6em;
	}
}

.wave-section .content p:first-child {
	margin-top: 0;
	margin-bottom: 2em;
}

.wave-section .content p:last-child {
	margin-bottom: 0;
}

.wave-bg-bottom {
	position: relative;
}

.wave-bg-bottom > img {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
}

.wave-card {
	position: relative;
	margin-top: 4em;
	margin-bottom: 7em;
	background: var(--darker-blue);
	padding: 2em;
	color: white;
	border-radius: 1em;
	box-shadow: 1em 1em 0 var(--blue);
}

.wave-card p:first-child {
	margin-top: 0;
}

.wave-card p:last-child {
	margin-bottom: 0;
}

.wave-card img {
	position: absolute;
	width: 50px;
	top: -3.625em;
	right: 3em;
}

.feature-rows {
	position: relative;
}

.feature-rows .bg-squares:nth-child(1) {
	position: absolute;
	top: 20em;
	left: 0;
}

.feature-rows .bg-squares:nth-child(2) {
	position: absolute;
	top: 5em;
	right: 0;
}

@media screen and (max-width: 1280px) {
	.feature-rows .bg-squares:nth-child(1) {
		display: none;
	}

	.feature-rows .bg-squares:nth-child(2) {
		display: none;
	}
}

.feature-row {
	display: flex;
	align-items: center;
}

.feature-row:nth-child(even) {
	flex-direction: row-reverse;
}

.feature-row > * {
	width: 50%;
}

.feature-row > img {
	flex-shrink: 0;
}

.feature-row > div {
	padding-left: 2em;
	padding-right: 2em;
}

.how-it-works {
	background: #f4f4f4;
	margin-top: 7em;
}

.how-it-works .container {
	display: flex;
}

.how-it-works .container > * {
	flex-shrink: 0;
}

.how-it-works .container > .text {
	width: 40%;
	padding-left: 2em;
	padding-top: 1em;
	padding-bottom: 1em;
}

.how-it-works .container .img-container {
	position: relative;
	width: 100%;
}

.how-it-works .container .img-container img {
	position: absolute;
	bottom: -3em;
	left: 0;
	width: 100%;
}

.register-section {
	background: var(--dark-blue);
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5em;
	padding-bottom: 5em;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2em;
	padding-bottom: 2em;
}

.footer-content .footer-links {
	display: flex;
	align-items: center;
	column-gap: 3em;
}

.footer-content .footer-links li {
	list-style-type: none;
}

.footer-content .footer-links a {
	text-decoration: none;
	color: var(--dark-blue);
}

.responsive-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}

@media screen and (max-width: 768px) {
	html {
		--content-padding: 1em;
	}

	.logo {
		width: 125px;
	}

	h1 {
		font-size: 1.75em;
		margin-top: 3em;
	}

	.hero {
		flex-direction: column;
	}

	.hero .hero-content {
		width: 100%;
		padding-right: 0;
		padding-bottom: 3em;
	}

	.hero .hero-image-section {
		width: 100%;
	}

	.hero .hero-image-section img {
		max-width: 350px;
	}

	.wave-bg-top > img {
		top: -16em;
	}

	

	.wave-card {
		position: relative;
		z-index: -2;
		margin-left: -1em;
		margin-right: -1em;
		margin-top: -10em;
		border-radius: 0;
		box-shadow: none;
		padding-top: calc(20vw + 14em);
		padding-bottom: 5em;
	}

	.wave-card img {
		display: none;
	}

	.feature-row {
		flex-direction: column;
	}

	.feature-row:nth-child(even) {
		flex-direction: column;
	}

	.feature-row > * {
		width: 100%;
	}

	.feature-row > div {
		padding-left: 0;
		padding-right: 0;
	}

	.how-it-works {
		text-align: center;
	}

	.how-it-works .container {
		flex-direction: column;
	}

	.how-it-works .container > .text {
		width: 100%;
		padding: 0;
	}

	.how-it-works .container .img-container img {
		position: relative;
		bottom: 0;
		padding-bottom: 4em;
	}

	.footer-content .footer-links {
		column-gap: 1.5em;
	}
}

@media screen and (max-width: 768px) {
	.button.pricing-button,
	.button.button.button-inverted.login-button {
		font-size: 0.9rem;
		padding: 0;
		margin: 0 1rem 0 0;
		background: none;
		border: 0;
		border-radius: 0;
		transition: none;
		color: var(--dark-blue);
	}

	.button.button.button-inverted.login-button {
		margin-right: 0;
	}

	.button .button-icon {
		display: none;
	}
}

.pricing {
	text-align: center;
	margin: 3rem 0;
}

.pricing .container {
	max-width: 1200px;
	padding-left: 0;
	padding-right: 0;
}

.subs-main {
	text-align: center;
	width: 100%;
}

.subs-heading {
	margin-bottom: 20px;
}

.subs {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 3rem 0;
}

.sub {
	margin: 0 20px 20px 20px;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--dark-blue);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0px 0px 10px 0px var(--blue);
}



	.sub h3 {
			font-weight: bold;
			color: var(--dark-blue);
			font-size: 2rem;
			margin: 0 0 1rem 0;
	}

	.sub ul {
			list-style: none;
			padding: 0;
		 /* height: 200px;*/
	}

.sub-price {
	font-size: 2rem;
	font-weight: bold;
	color: var(--dark-blue);
}

.sub-button {
	display: inline-block;
	
	margin-top: 20px;
	background-color: var(--dark-blue);
	color: #FFF;
	text-decoration: none;;
	border: 1px solid var(--dark-blue);
	border-radius: 10px;
	padding: 10px 30px;
	font-size: 1.3rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.sub-button span {
	display: inline-block;
	margin-right: 5px;
}

.sub-button:hover {
	box-shadow: 0px 0px 10px 0px var(--blue);
	border: 1px solid var(--dark-blue);
	background-color: var(--white-color);
	color: var(--dark-blue);
}

.sub.selected {
	background-color: var(--light-blue);
}

	.sub.selected .sub-button {
			background-color: var(--white-color);
			color: var(--dark-blue);
	}

@media (min-width: 992px) {
	.subs-heading {
			margin-bottom: 50px;
	}

	.subs-main {
			width: 100%;
			max-width: 1600px;
	}

	.subs {
			flex-direction: row;
			justify-content: center;
	}

	.sub:last-child {
			margin-right: 0;
	}

	.sub {
			width: 100%;
			max-width: 600px;
	}
}

.logos-section {
	margin: 3rem 0;
	text-align: center;
}

.logos-section h2 {
	margin-bottom: 3rem;
}

.logos-section  img {
	max-width: 200px;
	max-height: 100px;
}

@media (min-width: 768px) {
	.logos-section  img {
		max-width: 200px;
		max-height: 100px;
	}
}