/*===COLORS=================================*/
.primary { background: #123961 } /*==Navy==*/
.secondary { background: #77C4C4 } /*==Teal==*/
.tertiary { background: #C35E63; } /*==Red==*/
.quaternary { background: #EF833C; } /*==Orange==*/
.link { background: #861657; }
.linkFocus { background: #05853E; }
.white { background: #fff; }
.gray { background:#e8f1f2; }
.red { background: #c05459; }
.redTxt { color: #c05459; }
.black { background: #1E1E1E; }
.yellow { background: #E9D192; }
.yellowLt { background: #f2e3be; }
.yellowXLt { background:#f9f2e4; }
.tealLt { background: #d6eded; }
.whiteTxt, .whiteTxt a { color: #fff; }


/*===UTILITIES & GLOBAL ELEMENTS=================================*/
.skiplink {
	position: absolute;
    z-index: 99999;
    top: 0;
    right: 100%;
	background: #FFF;
	border: 2px solid #222;
	color: #222;
	text-decoration: none;
	padding: 20px 40px;
	font-size: 1em;
	font-weight: 700;
}
.skiplink:focus {
	right: auto;
}
.smoothing {
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
.caps {
	text-transform: uppercase;
}
.underline {
	text-decoration: underline;
}
.overflow {
	overflow: hidden;
}
.relative {
	position: relative;
}
.parallax {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.hidden {
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.borderFullTeal {
	border: 10px solid #77C4C4;
}
.borderFullRed {
	border: 10px solid #C35E63;
}
.borderFullOrange {
	border: 10px solid #EF833C;
}
.borderTop {
    border-top: 1px solid #1b98e0;
}
.borderBtm {
    border-bottom: 1px solid #1b98e0;
}
.alignright {
	float: right;
	margin: 0 0 1.25rem 1.25rem;
	max-width: 40%;
}
.alignleft {
	float: left;
	margin: 0 1.25rem 1.25rem 0;
	max-width: 40%;
}
.aligncenter {
	display: block;
	margin: 1.5rem auto;
	max-width: 80%;
}
.objectLeft {
	object-fit: cover;
	object-position: left;
}
.objectCenter {
	object-fit: cover;
	object-position: center;
}
.objectRight {
	object-fit: cover;
	object-position: right;
}
html, body {
	font: normal 400 20px 'Raleway', sans-serif;
	font-optical-sizing: auto;
	line-height: 1.755;
}
body {
	background: #fff;
	color: #1E1E1E;
}
#outer-container {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}
.container-wide {
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 1200px;
}
#page-content {
	position: relative;
	background: #fff;
/*	padding-bottom: 4rem;*/
}
h1, h2, h3, h4 {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	margin: 0;
	line-height: 1.5;
}
h1 {
	font-size: 2rem;
}
h2 {
	font-size: 1.75rem;
	margin-bottom: .75rem;
}
h3, h2.h2sm {
	font-size: 1.25rem;
}
.lgTxt {
	font-size: 1.2rem;
}
.mdTxt {
	font-size: 1.1rem;
}
.smTxt {
	font-size: 0.875rem;
}
.xsmTxt {
	font-size: 0.75rem;
}
p {
	margin-bottom: 1.755rem;
}
section p:last-child {
	margin-bottom: 0;
}
strong {
	font-weight: 700;
}
em {
	font-style: italic;
}
small {
	font-size: 0.8rem;
}
address {
	line-height: 1.5;
}
img, video {
	max-width: 100%;
	height: auto;
}
a {
	color: #C05459;
	transition: all .2s;
	text-decoration: underline;
}
	a:is(:hover,:focus) {
		color: #4879AD;
	}
	.red a:is(:hover,:focus) {
		color: #fff;
	}
a.cta {
	-webkit-appearance: none;
	border: none;
	border-radius: 1rem;
	font: normal 500 1rem 'Raleway', sans-serif;
	font-optical-sizing: auto;
	background: #123961;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding: 0.45rem 1.4rem;
	line-height: normal;
	letter-spacing: .01rem;
	cursor: pointer;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
a.cta:is(:hover,:focus) {
	background: #5082B6;
	transform: scale(1.03);
}
a.cta.ctaRev{
	background: #77C4C4;
	color: #1E1E1E;
}
a.cta.ctaRev:is(:hover,:focus) {
	background: #BDECEC;
	color: #1E1E1E;
	transform: scale(1.05);
}
a.cta.ctaOutlineWht{
	background: none;
	color: #fff;
	border: 2px solid #fff;
}
a.cta.ctaOutlineWht:is(:hover,:focus) {
	background: #fff;
	color: #861657;
	transform: scale(1.05);
}
figcaption {
	font-style: italic;
	margin-top: .75rem;
	text-align: center;
	font-size: .9rem;
}
.videoContainer {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.videoContainer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.pageHeader {
	color: #fff;
}
.bullet2col {
	columns: 2;
	column-gap: 3.75rem;
}
.bullet3col {
	columns: 3;
	column-gap: 40px;
}
.bullet2col li, .bullet3col li {
	break-inside: avoid;
}
#page-content ul {
	padding: 0;
	margin-left: 20px;
	margin-bottom: 1.5rem;
}
#page-content li {
	position: relative;
	padding-left: 0;
	margin-bottom: 1rem;
}

@media (max-width: 991px) {
	a.cta, button.cta, a.ctaRev, span.ctaRev {
		font-size: 1rem;
	}
	h1 {
		font-size: 1.75rem;
		line-height: normal;
	}
	h2 {
		font-size: 1.4rem;
	}
	h3, h2.h2sm {
		font-size: 1.15rem;
	}
}
@media (max-width: 767px) {
	html, body {
		font-size: 19px;
	}
	h1 {
		font-size: 1.5rem;
		line-height: normal;
	}
	/*h2 {
		font-size: 1.4rem;
	}
	h3 {
		font-size: 1.2rem;
	}
	h4 {
		font-size: 1.1rem;
	}*/
	.bullet2col, .bullet3col {
		columns: 1;
	}
	.alignright, .alignleft {
		float: none;
		display: block;
		max-width: 60%;
		margin: 1.5rem auto;
	}
	.headerImage img {
		height: auto;
		min-height: 22vh;
	}
	.lgTxt {
		font-size: 1.15rem;
	}
}
@media (min-width: 576px) {
	.container-wide {
	    max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container-wide {
	    max-width: 900px;
	}
}
@media (min-width: 992px) {
	.container-wide {
	    max-width: 1100px;
	}
}
@media (min-width: 1200px) {
	.container-wide {
	    max-width: 1300px;
	}
	header .container-wide, #homeHeader .container-wide {
		max-width: 1500px;
	}
}


/*===HEADER=================================*/
#logo {
	width: 100%;
	max-width: 260px;
}
header.basic {
	width: 100%;
	z-index: 3;
	padding: 0;
}
header.basic nav ul li.no-click {
    cursor: pointer;
}
header.basic nav ul#main-menu {
	width: 100%;
}
header.basic nav ul li {
	margin: 0 5px;
}
header.basic nav ul#main-menu li a {
	font-size: .9rem;
	font-weight: 500;
	padding: .4rem;
	position: relative;
	color: #1E1E1E;
	text-decoration: none;
}
header.basic nav ul#main-menu li.hasDropdown a {
	padding-right: .15rem;
}
header.basic nav .hasDropdown span {
	font-size: .8rem;
	color: #1E1E1E;
	margin-left: 0;
}
header.basic nav .hasDropdown ul {
	width: 280px;
    background: #FFF;
    top: 38px;
    padding: 0;
    left: 0;
    z-index: 3;
    -webkit-box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 60%);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 60%);
}
header.basic nav .hasDropdown ul li {
	padding: 0;
}
header.basic nav ul#main-menu li:hover > a, header.basic nav ul#main-menu li:focus > a, header.basic nav ul#main-menu li:hover span, header.basic nav ul#main-menu li:focus span {
	color: #c05459;
}
/*header.basic nav ul#main-menu li.current-menu-item a {
	color: #006494;
}*/
header.basic nav ul#main-menu li.current-menu-item:not(.navCTA) a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - .8rem);
	border-bottom: 3px solid #c05459;
}
header.basic nav ul#main-menu li.hasDropdown ul li.current-menu-item {
	background: rgba(148, 168, 150, 0.2);
}
header.basic nav ul#main-menu li.hasDropdown.current-menu-item ul li a:after, header.basic nav ul#main-menu li.hasDropdown ul li.current-menu-item a:after  {
	display: none;
}
header.basic nav ul#main-menu li.navCTA a {
    -webkit-appearance: none;
	border: 3px solid #c05459;
	font: normal 600 1rem 'Raleway', sans-serif;
	font-optical-sizing: auto;
	background: #c05459;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	padding: .75rem 1.5rem;
	line-height: normal;
	letter-spacing: .01rem;
	cursor: pointer;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
header.basic nav ul#main-menu li.navCTA a:is(:hover,:focus) {
	background: #d27c18;
	border: 2px solid #d27c18;
	transform: scale(1.03);
}
@media (min-width: 992px) {
	/*header.basic {
		position: absolute;
		width: 100%;
	}*/
	header.basic nav ul#main-menu li.menuDonate a {
		background: #C35E63;
		color: #fff;
		border-radius: 1.5rem;
		padding: 0.45rem 1.25rem;
		-webkit-font-smoothing: antialiased;
		font-smoothing: antialiased;
	}
	header.basic nav ul#main-menu li.menuDonate a:is(:hover,:focus) {
		background: #123961;
	}
	header.basic nav ul li.hasDropdown ul li.hasDropdown span {
		position: absolute;
    	top: 4px;
		right: 2px;
		background: none!important;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li a {
		display: block;
		font-size: .8rem;
		color: #3e3e3e;
		padding: 0.5rem 0.85rem ;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li a:hover, header.basic nav ul#main-menu li.hasDropdown ul li a:focus {
		color: #c05459;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li:not(:first-child) {
		border-top: 1px solid #efefef;
	}
}

@media (max-width: 1199px) {
	header.basic nav ul li {
	    margin: 3px;
	}
	header.basic nav ul#main-menu li a {
		font-size: .8rem;
		padding: .5rem .25rem;
	}
	#headerCTA {
		font-size: .9rem;
	}
}
@media (max-width: 991px) {
	header.basic .navButton span, header.basic .navButton span:before, header.basic .navButton span:after {
		background: #123961;
	}
	header.basic.opened .navButton span:before, header.basic.opened .navButton span:after {
		background: #19253C;
	}
	#mobile-nav-group {
		position: relative;
	}
	header.basic .navButton {
		position: absolute;
	    top: 50%;
	    right: 2rem;
	    transform: translateY(-50%);
	}
	header.basic nav {
		border-top: none;
		display: block;
		background-color: #123961;
		width: 80%;
		-webkit-font-smoothing: antialiased;
		font-smoothing: antialiased;
		z-index: 10;
		padding: 80px 0 0 0;
		-webkit-box-shadow: 3px 0px 20px 0px rgba(0,0,0,0.7); 
		box-shadow: 3px 0px 20px 0px rgba(0,0,0,0.7);
	}
	header.basic nav ul#main-menu {
		display: block;
	}
	header.basic nav ul li {
		display: block;
		text-align: left;
		width: 100%;
		margin: 0;
		padding: 0;
		border-bottom: 2px solid #77C4C4;
	}
	header.basic nav ul#main-menu li a {
		color: #fff;
		font-size: 1.15rem;
		display: block;
		padding: .8rem 0 .8rem 1.25rem;
		text-transform: none;
		text-decoration: none!important;
	}
	header.basic nav ul#main-menu li.navCTA {
		border:none;
		padding-top: 30px;
	}
	header.basic nav ul#main-menu li.navCTA a {
		display: inline-block;
		margin-left: 1.2rem;
		padding: 0.6rem 1.25rem;
    	color: #242240;
	}
	header.basic nav .hasDropdown:hover, basic nav .hasDropdown:focus, header.basic nav ul#main-menu li:hover > a, header.basic nav ul#main-menu li:focus > a, header.basic nav ul#main-menu li.hasDropdown:hover span, header.basic nav ul#main-menu li.hasDropdown:focus span, header.basic nav ul#main-menu li.hasDropdown ul li a:hover, header.basic nav ul#main-menu li.hasDropdown ul li a:focus {
		background: none;
		color: #fff;
	}
	header.basic.opened:after {
		content: '';
	    position: fixed;
	    top: 0;
	    left: 0;
	    background: rgba(255, 255, 255, 0.75);
	    width: 100%;
	    height: 100%;
	    z-index: 9;
	}
	header.basic nav .hasDropdown ul {
		width: 100%;
		top: 0;
		left: 0;
		background: #0a2846;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		z-index: 1;
	}
	header.basic nav .hasDropdown ul .hasDropdown ul {
		background: #376592;
	}
	header.basic nav .hasDropdown ul .hasDropdown ul .hasDropdown ul {
		background: #437AB1;
	}
	header.basic nav .hasDropdown ul li {
		text-align: left;
		border: none;
		margin: 0;
		padding: 0;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li a {
	    text-transform: none;
	    text-align: left;
	    color: #fff;
	    padding: 0.75rem 0.75rem 0.75rem 2.1rem;
	    width: 100%;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li a:before {
		content: '-';
	    position: absolute;
	    top: 50%;
	    transform: translateY(-50%);
	    left: 1.25rem;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li.hasDropdown ul li a {
		padding-left: 2.75rem;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li.hasDropdown ul li a:before {
		content: '--';
	    position: absolute;
	    top: 50%;
	    transform: translateY(-50%);
	    left: 1.4rem;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li.hasDropdown ul li.hasDropdown ul li a {
	    padding-left: 3.25rem;
	}
	header.basic nav ul#main-menu li.hasDropdown ul li.hasDropdown ul li.hasDropdown ul li a:before {
	    content: '---';
	    position: absolute;
	    top: 50%;
	    transform: translateY(-50%);
	    left: 1.75rem;
	}
	header.basic nav ul#main-menu li.hasDropdown span {
		top: 0;
	    right: 0;
	    font-size: .9rem;
	    color: #fff;
	    padding: 0.86rem 0.8rem;
	    margin-left: 0;
	}
	header.basic nav ul#main-menu li.hasDropdown:hover span, header.basic nav ul#main-menu li.hasDropdown:focus span {
		color: #fff;
	}
	header.basic nav ul#main-menu li.current-menu-item a {
		text-decoration: none;
		color: #fff;
	}
	header.basic nav ul#main-menu li.current-menu-item a:after {
		display: none;
	}
	nav ul li.menu-item-has-children a {
	    width: calc(100% - 2.75rem);
	}
}
@media (max-width: 767px) {
	header.basic nav {
		padding: 60px 0 0 0;
	}
	#logo {
	    max-width: 150px;
	}
	header.basic nav ul#main-menu li a {
		font-size: 1rem;
	}
}


/*===EMERGENCY BANNER=================================*/
#messageBanner {
	font-size: .9rem;
	font-weight: 600;
	color: #0F143D;
}
#messageBanner a {
	color: #0F143D;
	text-decoration: none;
}
#messageBanner.red, #messageBanner.black, #messageBanner.red a, #messageBanner.black a {
	color: #fff;
}

@media (max-width: 991px) {
	#messageBanner {
		font-size: .8rem;
	}
}


/*===Page Headers=================================*/
@media (min-width: 992px) {
	#headerImg .headerImage img {
		width: 100%;
		max-width: none;
		height: 30vw;
        max-height: 450px;
        object-fit: cover;
        position: relative;
        z-index: 1;
	}
	#headerHome .headerImage img {
		width: 100%;
		max-width: none;
		height: 40vw;
        max-height: 700px;
        object-fit: cover;
        position: relative;
        z-index: 1;
	}
	#headerImg #headerContent {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: 2;
		color: #fff;
	}
	#headerHome #headerContent {
		position: absolute;
		top: 50%;
		left: 10%;
		transform: translateY(-50%);
		z-index: 2;
		color: #fff;
		text-align: left!important;
	}
	#headerText {
		color: #123961;
		padding-top: 50px;
		padding-bottom: 15px;
	}
}
@media (max-width: 991px) {
	#headerText {
		padding-top: 3rem;
		padding-bottom: 1.5rem;
	}
	#headerImg #headerContent, #headerHome #headerContent {
		position: static;
		transform: none;
		background: #123961;
		color: #fff;
		-webkit-font-smoothing: antialiased;
		font-smoothing: antialiased;
	}
}
@media (max-width: 991px) {
	#headerText {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}


/*===Flex Content=================================*/
.fullWidthImg img {
	width:100%;
}
.imageRows img {
	height: 100%;
	object-fit: cover;
}
.coloredBoxes .coloredBox:first-child .coloredBoxInner {
	border: 10px solid #77C4C4;
}
.coloredBoxes .coloredBox:nth-child(2) .coloredBoxInner {
	border: 10px solid #C35E63;
}
.coloredBoxes .coloredBox:nth-child(3) .coloredBoxInner {
	border: 10px solid #EF833C;
}
.coloredBoxInner {
	width: 100%;
	height: 100%;
}
.coloredBoxes .cta {
	font-size: 1rem;
}
.text3boxes strong {
	font-size: 1.2rem;
}
.text3boxes i {
	font-size: 3rem;
	color: #1b98e0;
}
.text3boxes .text-center li {
	list-style: none;
}
.faqContainer button {
	-webkit-appearance: none;
	width: 100%;
	border: none;
	background: #fff;
	padding: 0;
	text-align: left;
}
.faqContainer button h3 {
	padding-right: 2.5rem;
}
.faqContainer button span {
	position: absolute;
	top: 50%;
	right: .25rem;
	transform: translateY(-50%);
	color: #C35E63;
}
.faq-content {
	font-style: italic;
}
.ctaRepeater .cta:last-child {
	margin-right: 0!important;
}
a.youtubeImg {
	position: relative;
	cursor: pointer;
	text-decoration: none;
}
.youtubeImg i {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #282828;
	font-size: 68px;
	opacity: 0.8;
	transform: translate(-50%, -50%);
	transition: all 0.3s;
	z-index: 1;
}
.youtubeImg:hover i {
	color: #ff0000;
	opacity: 1;
}
.youtubeImg i:after {
	content: '';
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 25px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}
.videoGalleryOverlay a.close {
	position: absolute;
	background-color: #c40e03;
	top: -40px;
	right: 0;
	padding: 2px 14px;
	color: #fff;
	font-family: 'Raleway', sans-serif;
	cursor: pointer;
	text-decoration: none;
}
.videoGalleryOverlay {
	background-color: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s;
}
.videoGalleryOverlay .videoWrapper {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    max-width: 1280px;
    transform: translate(-50%, -50%);
}
.videoGalleryOverlay.videoPlay {
	opacity: 1;
	visibility: visible;
}
.videoGalleryOverlay.videoPlay .videoWrapper {
    display: block;
}
.home .iconImg {
	height: 70px;
}
.staffCommittee .staffPhoto {
	max-width: 200px;
}
.bioText {
    margin-bottom: 20px;
    padding: 15px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out; /* Smooth animation */
}
.bioText p {
    margin-top: 0;
    margin-bottom: 10px;
}
.bioText .truncated-text {
    display: inline;
}
.bioText .full-text-hidden {
    display: none;
}
.bioText button {
    background: none;
    color: #861657;
    border: none;
    padding: 0;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    margin-left: .75rem;
    transition: background-color 0.3s ease;
}
.bioText button:hover {
    background:none;
}
.formEmbed.primary, .formEmbed.primary .gfield_label, .formEmbed.primary .gform-field-label, .formEmbed.primary .gfield_description {
	color: #fff;
}
body .formEmbed.primary .gform-theme.gform-theme--foundation.gform-theme--framework.gform_wrapper .gform_footer input[type=submit] {
	background: #BDECEC;
	color: #1E1E1E;
	transform: scale(1.05);
}
body .formEmbed.primary .gform-theme.gform-theme--foundation.gform-theme--framework.gform_wrapper .gform_footer input[type=submit]:is(:hover,:focus) {
	background: #77C4C4;
	color: #1E1E1E;
}
.formEmbed.primary .gform-theme--framework .gform_validation_errors {
	background: #c02b0a;
	margin-bottom: 1.5rem;
}
.formEmbed.primary .gform-theme--framework .gform_validation_errors .gform_submission_error {
	color: #fff;
}
.formEmbed.primary .gform-theme--framework .gform_validation_errors .gform-icon, body .formEmbed.primary .gform-theme.gform-theme--foundation.gform-theme--framework.gform_wrapper .gform_confirmation_message {
	color: #fff;
	border: 1px solid #fff;
}
.formEmbed.primary .gfield_validation_message {
    background: #c02b0a;
    display: inline-block !important;
    padding: .15rem;
    margin-top: 0 !important;
	color: #fff;
}

@media (max-width: 767px) {
	.splitTextImg + .splitTextImg.white:before {
		content: '';
		width: 100px;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		border-top: 1px solid #77C4C4;
	}
	.staffPhoto {
		max-width: 200px;
	}
}



/*===BLOG & NEWS=================================*/

#blogFeed article a {
    text-decoration: none;
    display: block;
    height: 100%;
    color: #1E1E1E;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}
#blogFeed article a:is(:hover,:focus) {
	transform: translate(-.25rem, -.25rem);
    box-shadow: 7px 9px 12px 0px rgba(0, 0, 0, 0.3);
}
#blogFeed .postExcerpt {
	font-size: .85rem;
}
#blogFeed article a .readBlog {
	color: #861657;
	font-size: .9rem;
	font-weight: 700;
	text-decoration: underline;
}
#blogFeed article a .readBlog span {
	text-decoration: none;
}
.articleSource {
	display: inline-block;
	background: #77C4C4;
    color: #1E1E1E;
    font-size: .7rem;
    font-weight: 600;
    border-radius: 1rem;
    padding: .15rem .75rem;
}
.single h2 {
	font-size: 1.4rem;
	color: #123961;
}
.single h3 {
	font-size: 1.1rem;
}
.back2news {
	border-top: 1px solid #DEDEDE;
}


/*===SLICK SLIDER=================================*/
#page-content ul.slick-dots {
	margin: 0;
	bottom: -2rem;
}
.slick-dots {
	background: #949494 button;
}
.slick-dots li.slick-active button {
	background: #4e79a9;
}
.slickPlay, .slickPause {
	cursor: pointer;
	color: #757575;
	font-size: 1.2rem;
	background: none;
	border: none;
}
.slick-arrow {
    color: #919191;
    font-size: 1.5rem;
    padding: 0.75rem;
}
.slick-prev {
    left: -1.25rem;
}
.slick-next {
    right: -1.25rem;
}
.slickPlay:hover, .slickPause:hover, .slick-arrow:hover, .slick-arrow:hover {
	color: #506D8D;
}
.slick-prev:hover, .slick-prev:focus {
    left: -1.5rem;
}
.slick-next:hover, .slick-next:focus {
    right: -1.5rem;
}

@media (max-width: 767px) {
	#page-content ul.slick-dots {
		position: static;
	}
}


/*===MODALS=================================*/
.formWrapper {
	background-color: rgba(25,37,60,0.8);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.formWrapper.open {
	opacity: 1;
	visibility: visible;
}
.formWrapper .formPop {
	display: none;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 500px;
/*	height: 100%;*/
	max-height: 480px;
	padding: 35px 20px 20px 20px;
	overflow-y: scroll;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.formWrapper.open .formPop {
	display: block;
}
.formWrapper .formPop a.close {
	display: none;
	position: absolute;
	background-color: #506D8D;
	top: 0;
    right: 0;
    padding: 4px 10px;
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
}
.formWrapper.open .formPop .close {
	display: block;
}
.formWrapper .formPop a.back {
	position: absolute;
	background-color: #646464;
	top: 0;
    left: 0;
    padding: 4px 10px;
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
}
.formWrapper .formPop a.close:hover, .formWrapper .formPop a.close:focus {
	background-color: #211F21;
}

@media (min-height: 900px) {
	.formWrapper .formPop {
		max-height: 850px;
	}
}


/*===FORMS=================================*/
.gform-theme--foundation .gform_fields {
	row-gap: 1.75rem!important;
}
.gform_required_legend {
	display:none;
}
body .gform-theme.gform-theme--foundation.gform-theme--framework.gform_wrapper .gform_footer input[type=submit] {
	-webkit-appearance: none;
	border: none;
	border-radius: 1rem;
	font: normal 500 1rem 'Raleway', sans-serif;
	font-optical-sizing: auto;
	background: #123961;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	margin-top: .5rem;
	padding: 0.45rem 1.4rem;
	line-height: normal;
	letter-spacing: .01rem;
	cursor: pointer;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
body .gform-theme.gform-theme--foundation.gform-theme--framework.gform_wrapper .gform_footer input[type=submit]:is(:hover,:focus) {
	background: #5082B6;
	transform: scale(1.03);
}
body .gform-theme.gform-theme--foundation.gform-theme--framework.gform_wrapper .gform_confirmation_message {
	font-size: 1.25rem;
	font-weight: 600;
	text-align: center;
	color: #3DA498;
}
.gfield input:not([type="submit"]), .gfield textarea {
	background: #F5F3F3!important;
	border: 1px solid #F5F3F3!important;
	box-shadow: none!important;
	font-size: .85rem !important;
    padding: .5rem !important;
    color: #1E1E1E !important;
}
.gfield input:not([type="submit"]):focus, .gfield textarea:focus {
	border: 1px solid #123961!important;
}
body .gform_wrapper ::placeholder, body .gform_wrapper ::-webkit-input-placeholder, body .gform_wrapper input[placeholder] {
  color: #6B747D;
}
.gform-theme--framework .gf_progressbar .percentbar_blue {
	background-color: #05853E!important;
}
.gfield_required {
	position:absolute!important;
	left:-10000px!important;
	top:auto!important;
	width:1px!important;
	height:1px!important;
	overflow:hidden!important;
}
.gform-theme--foundation #gform_fields_1 {
	grid-row-gap: 30px !important;
}
.gfield input[type="radio"] {
	border: 1px solid #999!important;
}
.podcastconsent .gfield_description {
	display: none!important;
}
@media (max-width: 767px) {
	.gform-theme--foundation #gform_fields_1 {
		grid-row-gap: 20px !important;
	}
}


/*===FOOTER=================================*/
#footerLogo {
	max-width: 300px;
}
footer h2 {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 0;
}
footer nav ul {
	margin: 0;
	padding: 0;
	width: 100%;
}
footer nav li {
	list-style: none;
	display: inline-block;
}
footer nav li:not(:first-child) {
	margin-left: 1rem;
}
footer nav#footerNav li {
	display: block;
	margin: 7px 0;
}
footer nav li a {
	font-size: .7rem;
	font-weight: 500;
	line-height: 1.75;
	text-decoration: none;
}
footer nav li a:is(:focus,:hover) {
	color: #fff;
	text-decoration: underline;
}
#footerCopyright {
	font-size: .7rem;
	font-weight: 500;
	line-height: 1.75;
}
#footerSocial a {
	font-size: 1.5rem;
}
#footerSocial a:is(:focus,:hover) {
	color: #77C4C4;
}

@media (max-width: 991px) {
	#footerLogo {
		max-width: 180px;
	}
	footer h2, #footerSocial a {
		font-size: 1.15rem;
	}
}


/*===ANIMATION=================================*/
.fancyAnimationSlideDown {
	opacity: 0;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	transition-delay: 250ms;
}
.fancyAnimationSlideDown.run {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.fancyAnimationSlideUp {
	opacity: 0;
	-webkit-transform: translate3d(0, 50%, 0);
	transform: translate3d(0, 50%, 0);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	transition-delay: 250ms;
}
.fancyAnimationSlideUp.run {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.fancyAnimationSlideLeft {
	opacity: 0;
	-webkit-transform: translate3d(50%, 0, 0);
	transform: translate3d(50%, 0, 0);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	transition-delay: 250ms;
}
.fancyAnimationSlideLeft.run {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.fancyAnimationSlideLeftSlow {
	opacity: 0;
	-webkit-transform: translate3d(50%, 0, 0);
	transform: translate3d(50%, 0, 0);
	-webkit-transition: all 0.8s;
	transition: all 0.8s;
	transition-delay: 250ms;
}
.fancyAnimationSlideLeftSlow.run {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.fancyAnimationSlideRight {
	opacity: 0;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	transition-delay: 250ms;
}
.fancyAnimationSlideRight.run {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.fancyAnimationPop {
	opacity: 0;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	-webkit-transition: all 0.4s cubic-bezier(.17,.67,.34,1.52);
	transition: all 0.4s cubic-bezier(.17,.67,.34,1.52);
	transition-delay: 250ms;
}
.fancyAnimationPop.run {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.fancyAnimationFade {
	opacity: 0;
	transition: all 0.4s;
	transition-delay: 250ms;
}
.fancyAnimationFade.run {
	opacity: 1;
}
.delay500 {
  transition-delay: 500ms;
}
.delay750 {
  transition-delay: 750ms;
}
.delay1000 {
  transition-delay: 1000ms;
}
.delay1500 {
  transition-delay: 1500ms;
}
.delay2000 {
  transition-delay: 2000ms;
}
.delay2500 {
  transition-delay: 2000ms;
}
.delay3000 {
  transition-delay: 2000ms;
}