* {
	box-sizing: border-box;font-family: 'specter', Arial;
}
html, body {
	margin: 0px;
	padding: 0px;
}
.wrapper {
	margin: 0 auto;
	max-width: 990px;
	width: 100%;
	display: flex;
	padding: 0px 20px;
	flex-direction: column;
}
header {
	background-color: #044E7F;
	padding: 17px 0px 22px;
}
.lapro {
	color: #fff;
	font-size: 11px;
	display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
	margin-bottom: 13px;
	text-decoration: none;
}
p strong {
	font-weight: 500;
}
p a {
	color: #20B7BB;
	text-decoration: none;
}
p a:hover {
	text-decoration: underline;
}
.lapro img {
	margin-right: 34px;
}
#para2 {
	padding-top: 50px;
}
header .logo {
	width: 260px;
}
nav {
	border: solid 2px #fff;
	border-radius: 40px;
	display: flex;
	padding: 4px 4px 4px 35px;
}
nav ul {
	padding: 0px;
	margin: 0px;
	display: flex;
    align-items: center;
    gap: 20px;
}
nav ul li {
	display: inline-block;
}
#navigation {
	flex-direction: row;
	align-items: center;
    justify-content: space-between;
}
nav li a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	display: block;
	position: relative;
	padding: 4px 2px;
}
nav li a.button {
	background-color: #fff;
	color: #044E7F;
	font-weight: 500;
    padding: 10px 18px;
    border-radius: 30px;
	transition: all ease-in .2s;
	margin-left: 10px;
}
nav li a.button:hover {
	background-color: #24B8BC;
	color: #fff;
}
nav li a:not(.button):after {
	display: block;
	background-color: #fff;
	content: ' ';
	height: 0px;
	width: 0px;
	position: absolute;
	transition: all ease-in .2s;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0px;
}
nav li a:not(.button):hover:after {
	width: calc(100% + 4px);
	height: 2px;
}
nav li a.active {
	color: #20B7BB;
}
nav li a.active:after {
	background-color: #20B7BB;
}
#home-banner {
	background-image: url("images/home-header.jpg");
	background-size: cover;
	text-align: center;
	min-height: 648px;
	background-position: bottom;
	display: flex;
	align-items: center;
	margin-bottom: 75px;
}
#home-intro {
	max-width: 783px;
}
#home-main {
	margin-bottom: 75px;
}
#icons {
	max-width: 880px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 30px auto;
	gap: 20px;
}
#icons img {
	width: 168px;
	margin-bottom: 10px;
}
#icons p {
	font-size: 21px;
	line-height: 24px;
}
.icon-block {
	text-align: center;
}
main a.button, footer a.button, form input[type=submit] {
	font-size: 18px;
	line-height: 24px;
	padding: 18px 45px;
	color: #044E7F;
	border: solid 2px #044E7F;
	text-align: center;
	width: fit-content;
	text-decoration: none;
	margin: 0 auto;
	border-radius: 50px;
	transition: all ease-in .2s;
}
form input[type=submit] {
	background-color: transparent;
	cursor: pointer;
}
main a.button:hover, footer a.button:hover, form input[type=submit]:hover {
	background-color: #044E7F;
	color: #fff;
}
#contact-form {
	padding-bottom: 75px;
}
#news-events {
	background-color: #044E7F;
	text-align: center;
	padding: 30px 0px;
}
h1 {
	color: #fff;
	font-size: 50px;
	line-height: 60px;
	font-weight: 500;
	font-family: "specter", Arial;
	margin-bottom: 0px;
}
h2 {
	font-size: 42px;
	line-height: 48px;
	color: #fff;
	font-weight: 500;
}
h2.blue {
	color: #044E7F;
}
main .wrapper {
	column-gap: 50px;
}
main p {
	color: #044E7F;
	font-size: 21px;
	line-height: 25px;
	font-family: 'specter', Arial;
	text-align: center;
}
#home-intro p {
	font-size: 26px;
	line-height: 30px;
}
#news-events-blocks {
	max-width: 828px;
	display: flex;
	flex-direction: row;
	margin:20px auto 75px auto;
}
.news-block {
	border-radius: 16px;
	overflow: hidden;
	width: 100%;
	background-color: #fff;
	max-width: 384px;
    margin: 0 auto;
}
.news-block div {
	padding: 20px;
	text-align: left;
}
main .news-block p {
	text-align: left;
	margin-bottom: 15px;
}
.news-block a {
	color: #044E7F;
	text-decoration: none;
	font-size: 18px;
}
.news-block a:hover {
	text-decoration: underline;
}
main a.button.white, footer a.button.white {
	color: #fff;
	border: solid 2px #fff;
}
main a.button.white:hover, footer a.button.white:hover {
	background-color: #fff;
	color: #044E7F;
}
.wave {
	background-image: url("images/wave.png");
	background-repeat: repeat-x;
	height: 30px;
	width: 100%;
	margin-top: 75px;
	margin-bottom: 20px;
}
#about {
	background-color: #EFEFEF;
	padding: 100px 0px 80px;
}
.about-title {
	background-color: #fff;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-radius: 100px;
    overflow: hidden;
	padding: 0px 65px;
	margin-bottom: 75px;
}


#accordion {
	margin-bottom: 50px;
}
#accordion h2 {
	font-size: 26px;
	font-weight: 500;
	background-color: #044E7F;
	border-radius: 30px;
	border: none;
	color: #fff;
	margin-bottom: 20px;
}
.ui-state-active .ui-icon, .ui-button:active .ui-icon, .ui-icon, .ui-widget-content .ui-icon {
	background-image: url('data:image/svg+xml,<svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 47.7 19.4"><defs><style> .cls-1 { fill: none; stroke: %23fff; stroke-linecap: round; stroke-miterlimit: 10; stroke-width: 3px; } </style></defs><g id="Layer_1-2" data-name="Layer 1"><polyline class="cls-1" points="1.5 1.5 23.85 17.56 46.2 1.5"/></g></svg>') !important;
    background-position: center !important;
    width: 44px !important;
	margin-right: 15px;
	transition: all ease-in .2s;
}
.ui-state-active .ui-icon {
	transform: rotate(180deg);
}
.ui-accordion-content p, .ui-accordion-content li {
	color: #044E7F;
	line-height: 32px;
	font-size: 21px;
}
#accordion p, #accordion ul {
	padding-bottom: 20px;
	text-align: left;
}
.wrapper .ui-accordion .ui-accordion-content {
	border: none !important;
	padding: 0px 35px 0px 78px !important;
	background-color: transparent;
	text-align: left;
}
footer {
	overflow: hidden;
}
#top {
	padding: 70px 0px 50px;
	background-color: #044E7F;
	text-align: center;
}
#top p {
	font-weight: 500;
	color: #fff;
	font-size: 26px;
	margin-bottom: 45px;
	max-width: 450px;
    margin: 0 auto 25px;
}
#middle {
	background-color: #EFEFEF;
    text-align: center;
    padding: 30px 0px 50px;
    margin-top: 0px;
	background-image: url("images/curve.svg");
	background-position: 0px -1px;;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
#middle p {
	color: #044E7F;
	line-height: 32px;
    font-size: 21px;
	margin-bottom: 0px;
	max-width: 745px;
	margin: 0 auto;
}
#middle p:last-of-type {
	margin-bottom: 30px;
}
#middle p strong {
	font-size: 26px;
}
#middle img {
	max-width: 298px;
	margin: 0 auto;
}
#bottom {
	background-color: #063854;
	padding: 20px 0px;
}
#bottom p, #bottom a {
	color: #fff;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
	position: relative;
}
#bottom a {
	display: inline-flex;
	align-items: center;
}
#bottom a:hover {
	text-decoration: underline;
}
#bottom a:before {
	height: 10px;
	width: 1px;
	display: inline-block;
	background-color: #fff;
	content: ' ';
	vertical-align: bottom;
	margin: 0px 7px;
}
p, h1 {
	margin-top: 0px;
}
p:last-of-type {
	margin-bottom: 0px;
}
#burger {
	display: none;
}
body:not(.home) #top {
	padding-top: 20px;
}
body:not(.home) h1 {
	font-size: 42px;
    line-height: 48px;
	color: #044E7F;
	font-weight: 500;
	margin-bottom: 45px;
	text-align: center;
}
body:not(.home) #home-intro {
	max-width: 853px;
	padding-top: 50px;
}
#faqs {
	padding-bottom: 30px;
}
#faqs .button {
	margin-bottom: 30px;
}
form {
	display: flex;
	flex-direction: column;
	max-width: 640px;
	margin: 0px auto;
}
form p {
	color: #000;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 30px !important;
}
form input[type=email], form input[type=text], form textarea {
	border: solid 2px #044E7F;
	padding: 15px 30px;
	border-radius: 32px;
	font-size: 24px;
	line-height: 30px;
	color: #044E7F;
	margin-bottom: 30px;
	background-color: #EFEFEF;
	width: 100%;
}
form textarea {
	height: 450px;
}
::placeholder {
	color: #044E7F;
}
#policy * {
	text-align: left;
}
#policy h2 {
	color: #044E7F;
	font-size: 30px;
    margin-bottom: 10px;
}
#articles {
	padding-bottom: 30px;
}
.news-article {
	border-radius: 23px;
	overflow: hidden;
	background-color: #044E7F;
	color: #fff;
	margin-bottom: 30px;
}
.news-article h2 {
	font-size: 24px;
	margin-top: 0px;
}
.news-article > div:not(.wave) {
	padding: 30px;
	text-align: left;
}
.news-article img {
	width: 100%;
	height: auto;
}
.news-article .wave {
	margin-top: 0px;
	margin-bottom: 30px;
}
main .news-article p {
	color: #fff;
	text-align: left;
}
#articles .wrapper {
	max-width: 960px;
}
#news + footer #top {
	padding-top: 50px;
}
#mc_embed_shell {
	padding-top: 50px;
}
#mc_embed_shell p {
	margin-top: 30px;
}
#mce-success-response, #mce-error-response {
	text-align: center;
}
.curve {
	display: none;
}
.faq #featured {
	background-color: transparent;
}
#featured {
	background-color: #EFEFEF;
	padding-bottom: 80px;
	padding-left: 20px;
	padding-right: 20px;
}
#featured .wrapper {
	background-color: #044E7F;
	border-radius: 30px;
	padding: 50px 20px;
	text-align: center;
}
#featured p {
	font-size: 26px;
	color: #fff;
	font-weight: 500;
}
.buttons {
	width: fit-content;
	margin: 30px auto 0px;
	display: flex;
	gap: 10px;
}
.button.white:hover svg rect, .button.white:hover svg path, .button.white:hover svg line {
	stroke: #044E7F !important;
}
.button.white.svg {
	padding: 0px !important;
	width: 64px;
	height: 64px;
	display: flex;
    align-items: center;
    justify-content: center;
}
main .black p {
	color: #000;
	font-size: 19px;
}
hr {
	border-color: #044E7F;
	margin-top: 50px !important;
	max-width: 950px !important;
}
.black h2 {
	line-height: 30px;
}
.black p span {
	font-size: 22px;
}
#policy h2.cntr {
	text-align: center;
}
.button.fullwidth {
	width: 100%;
	display: flex;
	display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
	padding: 12px 30px;
}
.button.fullwidth:first-of-type {
	margin-top: 20px;
}
.button.fullwidth:hover svg rect, .button.fullwidth:hover svg path, .button.fullwidth:hover svg line {
	stroke: #ffffff !important;
}
#video {
	background-color: #044E7F;
	border-radius: 30px;
	max-width: 950px !important;
	text-align: center;
	color: #fff;
	padding-bottom: 20px;
}
#video h3 {
	font-size: 28px;
	line-height: 30px;
	color: #fff;
	max-width: 700px;
	margin: 30px auto 10px;
}
#video p {
	color: #fff;
	max-width: 620px;
	margin: 0px auto 20px;
}
#video iframe {
	width: 100% !important;
	height: 100% !important;
	margin-bottom: 20px;
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.video-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}
@media (max-width: 1000px) {
	#video {
	    width: calc(100% - 40px);
		margin: 0px 20px;
	}
}
@media (max-width: 880px) {
	body:not(.home) #home-intro {
		padding-top: 85px;
	}
	.curve {
		transform: rotate(180deg);
		display: block;
		width: 100%;
	}
	.curve svg {
		display: block;
	}
	header {
		background-color: transparent;
		position: relative;
	}
	header > .curve {
		position: absolute;
		top: calc(100% - 2px);
	}
	header > span {
		background-color: #044E7F;
		display: block;
		padding: 10px 0px 0px;
	}
	header .logo {
		width: 206px;
	}
	#burger {
		display: inline-block;
	}
	#burger ul {
		padding: 0px;
		margin: 0px;
		display: flex;
		width: 30px;
		height: 30px;
		flex-direction: column;
		justify-content: center;
		cursor: pointer;
		position: relative;
		overflow: hidden;
		gap: 7px;
	}
	#burger li {
		display: block;
		width: 100%;
		height: 3px;
		background-color: #fff;
		border-radius: 2px;
		transition: all ease-in .2s;
	}
	#burger.opened li:last-of-type {
		opacity: 0;
	}
	#burger.opened li:first-of-type {
		transform: rotate(45deg);
		transform-origin: top left;
		position: absolute;
		top: 0px;
		left: 5px;
	}
	#burger.opened li:nth-of-type(2) {
		transform: rotate(-45deg);
		transform-origin: top right;
		position: absolute;
		top: 0px;
		right: 5px;
	}
	nav {
		border: none;
		border-radius: 0px;
		position: absolute;
        width: 100%;
        left: 0px;
		justify-content: center;
		top: 123px;
		overflow: hidden;
		max-height: 0px;
		transition: all ease-in .2s;
		padding: 0px;
		flex-direction: column;
	}
	nav > div:not(.curve) {
		background-color: #20B7BB;
		width: 100%;
		padding-top: 85px;
	}
	nav ul {
		gap: 25px;
	}
	nav.opened {
		max-height: 450px;
	}
	nav svg {
		display: block;
	}
	nav ul {
		flex-direction: column;
		padding: 20px;
		padding-bottom: 0px;
	}
	nav li a {
		font-size: 20px;
	}
	.lapro img {
		margin-right: 0px;
	}
	header {
		padding: 0px;
	}
	nav li a.active {
		color: #fff !important;
	}
}
@media (max-width: 768px) {
	nav > div:not(.curve) {
		background-color: #20B7BB;
		width: 100%;
		padding-top: 50px;
	}
	#home-main {
		margin-bottom: 60px;
	}
	#home-banner {
		min-height: 304px;
		margin-bottom: 50px;
	}
	#news-events-blocks {
		margin-bottom: 50px;
	}
	#accordion {
		margin-bottom: 30px;
	}
	.wave {
		margin-top: 50px;
	}
	h1 {
		font-size: 30px;
		line-height: 36px;
	}
	h2 {
		font-size: 32px;
		line-height: 38px;
	}
	#accordion h2 {
		font-size: 18px;
	}
	#about {
		padding: 50px 0px;
	}
	.about-title {
		padding: 0px 25px 0px 36px;
		margin-bottom: 47px;
	}
	.about-title img {
		width: 130px;
	}
	.about-title h2 {
		font-size: 20px;
		line-height: 26px;
	}
	.ui-accordion-content p, .ui-accordion-content li {
		line-height: 28px;
		font-size: 18px;
	}
	#top {
		padding-top: 50px;
	}
	#top p {
		font-size: 24px;
		line-height: 29px;
		margin-bottom: 30px;
	}
	#top a {
		padding: 9px 47px;
		font-size: 20px;
	}
	#icons, #news-events-blocks {
		flex-direction: column;
		gap: 45px;
	}
	.wrapper .ui-accordion .ui-accordion-content {
		padding: 0px 10px !important;
	}
}
@media (max-width: 450px) {
	.lapro {
		font-size: 8px;
	}
}
