/*
	CARVE NOTES (Delete when done reading):
	- When targeting the editor instance use cke_editable instead of ww_editor_body to prevent issues with the sanitizer

	- Fonts must have the font-display property set. Use "block" when no fallback font exists (e.g., font awesome)
	  and "swap" when a fallback font is set (e.g., font-family: "Lato", sans-serif;)

	- Don't forget to change body and input fonts to match the default font used in the "p" tag

	- Avoid leaving old, commented-out code when it is no longer needed

	- Styles should be added following their parent elements. (e.g., body > header > .top-row a).
	  This improves readability when tracking down where an element exists on the DOM.
	  It also prevents conflicting definitions.
*/

/*************************************************
 /$$$$$$$$  /$$$$$$  /$$   /$$ /$$$$$$$$  /$$$$$$
| $$_____/ /$$__  $$| $$$ | $$|__  $$__/ /$$__  $$
| $$      | $$  \ $$| $$$$| $$   | $$   | $$  \__/
| $$$$$   | $$  | $$| $$ $$ $$   | $$   |  $$$$$$
| $$__/   | $$  | $$| $$  $$$$   | $$    \____  $$
| $$      | $$  | $$| $$\  $$$   | $$    /$$  \ $$
| $$      |  $$$$$$/| $$ \  $$   | $$   |  $$$$$$/
|__/       \______/ |__/  \__/   |__/    \______/
**************************************************/
@font-face
{
	font-family: 'font_awesome';
	font-style: normal;
	font-weight: 900;
	src: url('/fonts/fa-solid-900.woff2') format('woff2');
	font-display: block;
}

@font-face
{
    font-family: 'montserrat';
    src: url('/fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face
{
    font-family: 'montserrat';
    src: url('/fonts/Montserrat-Italic-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 200 300 400 500 600 700 800 900;
    font-style: italic;
    font-display: swap;
}

@font-face
{
    font-family: 'league_spartan';
    src: url('/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 200 300 400 500 600 700 800 900;
    font-style: normal;
    font-display: swap;
}



/******************************************************************************************************************************
  /$$$$$$  /$$        /$$$$$$  /$$$$$$$   /$$$$$$  /$$              /$$$$$$  /$$$$$$$$ /$$     /$$ /$$       /$$$$$$$$  /$$$$$$
 /$$__  $$| $$       /$$__  $$| $$__  $$ /$$__  $$| $$             /$$__  $$|__  $$__/|  $$   /$$/| $$      | $$_____/ /$$__  $$
| $$  \__/| $$      | $$  \ $$| $$  \ $$| $$  \ $$| $$            | $$  \__/   | $$    \  $$ /$$/ | $$      | $$      | $$  \__/
| $$ /$$$$| $$      | $$  | $$| $$$$$$$ | $$$$$$$$| $$            |  $$$$$$    | $$     \  $$$$/  | $$      | $$$$$   |  $$$$$$
| $$|_  $$| $$      | $$  | $$| $$__  $$| $$__  $$| $$             \____  $$   | $$      \  $$/   | $$      | $$__/    \____  $$
| $$  \ $$| $$      | $$  | $$| $$  \ $$| $$  | $$| $$             /$$  \ $$   | $$       | $$    | $$      | $$       /$$  \ $$
|  $$$$$$/| $$$$$$$$|  $$$$$$/| $$$$$$$/| $$  | $$| $$$$$$$$      |  $$$$$$/   | $$       | $$    | $$$$$$$$| $$$$$$$$|  $$$$$$/
 \______/ |________/ \______/ |_______/ |__/  |__/|________/       \______/    |__/       |__/    |________/|________/ \______/
*******************************************************************************************************************************/
html
{
	margin: 0;
	padding: 0;
	width: 100%;
}

body
{
	margin: 0;
	padding: 0 !important;
	width: 100%;
	font-family: montserrat, sans-serif;
	font-size: 16px;
	background-color: transparent !important;
}

.container img:not(.img-non-responsive),
.container-fluid img:not(.img-non-responsive)
{
	display: inline-block;
	max-width: 100%;
	height: auto !important;
	border: none;
}

a:link,
a:visited,
a:active
{
	color: #2E2E2E;
}

a:hover
{
	color: #51558F;
}

a:focus
{
	outline-offset: 2px;
}

input:focus,
textarea:focus,
select:focus
{
	outline: 1px solid #2684D8;
}

input[type="submit"]
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: montserrat, sans-serif;
	font-size: 16px;
	font-weight: 600;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #51558F;
	padding: 12px 24px;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;

	/*iPad Overrides*/
	border: none;
	-webkit-appearance: none;
}

input[type="submit"]:hover
{
	background-color: #767bc5;
}

input[type="submit"]:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

input[type="text"],
input[type="password"],
select,
option,
textarea
{
	font-family: montserrat, sans-serif;
	font-size: 16px;
}

hr
{
	height: 1px;
	background-color: #9C9C9C;
	border: 0;
}

.button-small,
.button-small:link,
.button-small:active,
.button-small:visited,
.button-small:hover
{
	font-size: 14px !important;
	padding: 3px 8px !important;
}

div.container-max-width
{
	max-width: 1200px;
}

.embeddedContent[data-resizetype="responsive"],
.rem-responsive-16x9-video
{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.embeddedContent[data-resizetype="responsive"] iframe,
.rem-responsive-16x9-video iframe,
.rem-responsive-16x9-video object,
.rem-responsive-16x9-video embed
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Uncomment for custom bullets */
/*
.container ul
{
	padding-left: 20px;
}

.container ul li
{
	position: relative;
	list-style: none;
}

.container ul li::before
{
	content: '\2022';
	position: absolute;
    display: block;
    left: -20px;
    color: #477782;
    font-size: 14pt;
    top: 0;
} */

.vertical-padding-large
{
	padding-top: 80px;
	padding-bottom: 80px;
}

.vertical-padding-medium
{
	padding-top: 60px;
	padding-bottom: 60px;
}

.vertical-padding-small
{
	padding-top: 30px;
	padding-bottom: 30px;
}

@media screen and (max-width:992px)
{
	.vertical-padding-large
	{
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.vertical-padding-medium
	{
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* col-lg and below */
@media screen and (max-width:1200px)
{
	.mobile-left
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin: 0 auto 0 0 !important;
		text-align: center!important;
	}

	.mobile-centered
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}

	.mobile-right
	{
		float: none !important;
		clear: both !important;
		display: block !important;
		margin: 0 0 0 auto !important;
		text-align: center !important;
	}

	.mobile-left-flex
	{
		float: none !important;
		clear: both !important;
		display: flex !important;
		margin: 0 auto 0 0 !important;
		text-align: center !important;
	}

	.mobile-centered-flex
	{
		float: none !important;
		clear: both;
		display: flex !important;
		margin: 0 auto;
		text-align: center;
	}

	.mobile-right-flex
	{
		float: none !important;
		clear: both;
		display: flex !important;
		margin: 0 0 0 auto;
		text-align: center;
	}
}

@media screen and (min-width: 1201px)
{
	.hide-on-desktop
	{
		display: none !important;
	}

	#header-mobile-only
	{
		display: none;
	}

    #desktop_search_button
	{
		font-family: font_awesome !important;
		text-decoration: none;
		font-size: 20pt;
		color: #51558F !important;
	}

	#desktop_search_button:link,
	#desktop_search_button:visited
	{
		transition: all 200ms;
	}

	#desktop_search_button:active
	{
		transform: 	scale(0.85);
	}

	#desktop_search_button:hover
	{
		color: #000000 !important
	}

	#search_form
	{
		position: absolute;
		right: 40px;
		top: 50%;
		transform:translateY(-50%);
	    z-index: 9999;
	}

	#search_form #search_field
	{
		width: 0;
		height: 100%;
		opacity: 0;
		padding: 8px 0;
		border: 0 solid #cccccc;
		border-radius: 3px;
		outline: none;
		background-color: #ffffff;
        border-radius: 3px;
		font-family: montserrat, sans-serif;
        font-size: 12pt;
        color: #5a5a5a;
		box-shadow: 0 0 5px rgba(0,0,0,0.5);
        transition: all 200ms;
	}

	#search_form #search_field.open
	{
		width: 300px;
		opacity: 1;
		padding: 8px 15px;
		border: 1px solid #cccccc;
	}

	#search_form #search_field.closed
	{
		width: 0;
		opacity: 0;
		padding: 8px 0;
		border: 0 solid #cccccc;
	}

	#search_form #search_field:focus
	{
		background-color: #ffffff;
	}

    #search_form #search_field:hover
    {
        background-color: #f4f4f4;
    }
}

@media screen and (max-width: 1200px)
{
	.hide-on-mobile
	{
		display: none !important;
	}

	#block_output_container
	{
		margin-top: 60px;
	}

	div#header-mobile-only #mobile-header-logo
	{
		display: inline-block;
		margin-left: 15px;
		margin-top: 7px;
	}

	div#header-mobile-only
	{
		display: block;
	    position: fixed;
	    top: 0;
	    height: 60px;
	    width: 100%;
	    background-color: rgba(255,255,255,0.8);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
	    z-index: 10000;
	}

	div#header-mobile-only::after
	{
	    clear: both;
	    content: "\00a0";
	    display: block;
	    height: 0;
	    font: 0px/0 serif;
	    overflow: hidden;
	}

   	#mobile_search_button:link,
	#mobile_search_button:active,
	#mobile_search_button:visited,
	#mobile_search_button:hover
	{
		position: absolute;
		top: 18px;
		right: 65px;
		font-family: font_awesome;
		font-size: 24px;
		text-decoration: none;
	}

    #search_form
    {
        position: fixed;
        top: 65px;
        left: 15px;
		height: 0;
        z-index: 999;
    }

    #search_form #search_field
    {
       	position: relative;
       	top: -65px;
       	height: 0;
		width: calc(100vw - 30px);
		opacity: 0;
		padding: 0 15px;
		border: 0 solid #cccccc;
		border-radius: 3px;
		outline: none;
		background-color: #ffffff;
		font-family: montserrat, sans-serif;
		font-size: 12pt;
		box-shadow: 0 0 5px rgba(0,0,0,0.5);
		transition: all 200ms;
    }

    #search_form #search_field.open
	{
		transform: translateY(65px);
		height: 40px;
		opacity: 1;
		padding: 3px 15px;
		border: 1px solid #cccccc;
	}

	#search_form #search_field.closed
	{
		width: calc(100vw - 30px);
		opacity: 0;
		padding: 0 15px;
		border: 0 solid #cccccc;
	}

    #search_form #search_field:focus
    {
        background-color: #ffffff;
    }
}

/* Lightbox Styles */
.sl-overlay
{
	background: #000000 !important;
	opacity: 0.8 !important;
}

.sl-wrapper .sl-close
{
	font-size: 28pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-counter
{
	font-size: 16pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-navigation button.sl-prev,
.sl-wrapper .sl-navigation button.sl-next
{
	font-size: 30pt !important;
	color: #ffffff !important;
}

.sl-wrapper .sl-image .sl-caption
{
	font-size: 16pt !important;
}

.sl-wrapper .sl-image .description
{
	font-size: 12pt !important;
}

.sl-wrapper .sl-image .lightbox-link
{
	margin-top: 10px !important;
}

.sl-wrapper .sl-image a:link,
.sl-wrapper .sl-image a:active,
.sl-wrapper .sl-image a:visited
{
	font-size: 12pt !important;
}

@media screen and (max-width:1200px)
{
	.sl-wrapper .sl-close
	{
		right: 20px !important;
    	top: 80px !important;
	}
}

.background-image-wrapper
{
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
	background-size: cover;
}

.background-image-wrapper.forced-white-text
{
	background-color: #000000;
}

/* .background-image-wrapper.design
{
	position: relative;
}

.background-image-wrapper.design::after
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 1;
} */

.forced-white-text *
{
	color: #ffffff !important;
}

/**********************************************************
 /$$   /$$ /$$$$$$$$  /$$$$$$  /$$$$$$$  /$$$$$$$$ /$$$$$$$
| $$  | $$| $$_____/ /$$__  $$| $$__  $$| $$_____/| $$__  $$
| $$  | $$| $$      | $$  \ $$| $$  \ $$| $$      | $$  \ $$
| $$$$$$$$| $$$$$   | $$$$$$$$| $$  | $$| $$$$$   | $$$$$$$/
| $$__  $$| $$__/   | $$__  $$| $$  | $$| $$__/   | $$__  $$
| $$  | $$| $$      | $$  | $$| $$  | $$| $$      | $$  \ $$
| $$  | $$| $$$$$$$$| $$  | $$| $$$$$$$/| $$$$$$$$| $$  | $$
|__/  |__/|________/|__/  |__/|_______/ |________/|__/  |__/
***********************************************************/
@media screen and (max-width: 1200px)
{
	#header-desktop #menu-builder-header-nav
	{
		position: fixed;
		top: 60px;
		z-index: 1500;
		left: 0;
		width: 100%;
		max-height: calc(100% - 60px);
		box-shadow: -1px -2px 20px 0px rgba(0,0,0,0.5);
		overflow-y: auto;
		background-color: rgba(255,255,255,0.9);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

@media screen and (min-width: 1201px)
{
	
	.header-contact-wrapper
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;	
		max-width: 2000px;	
		margin: 0 auto;			
		background: linear-gradient(to right, #93D4F0 50%, #BABCDA 50%);
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.header-contact-wrapper .header-contact-left-container
	{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		/* background-color: #93D4F0; */
		padding: 0 30px;
	}

	.header-contact-wrapper .header-contact-right-container
	{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		/* background-color: #BABCDA; */
		padding: 0 30px;
	}

	.header-contact-wrapper .header-contact-left-container .header-contact-container,
	.header-contact-wrapper .header-contact-right-container .header-contact-container
	{	
		font-family: montserrat, sans-serif;
		font-size: 13px;
		color: #2E2E2E;
	}

	.header-contact-wrapper .header-contact-left-container a,
	.header-contact-wrapper .header-contact-right-container a
	{
		position: relative;
		text-decoration: underline;
		font-family: montserrat, sans-serif;
		font-weight: 400;
		font-size: 13px;
		color: #2E2E2E;
	}

	.header-contact-wrapper a.phone-icon::before
	{
		content: '\f095';
		position: relative;
		font-family: font_awesome;
		font-size: 16px;
		color: #197195;
		text-decoration: none;
		margin-right: 5px;
	}

	.header-contact-wrapper a.email-icon::before
	{
		content: '\f0e0';
		position: relative;
		font-family: font_awesome;
		font-size: 16px;
		color: #197195;
		text-decoration: none;
		margin-right: 5px;
	}

	.header-contact-wrapper a.pin-icon::before
	{
		content: '\f3c5';
		position: relative;
		font-family: font_awesome;
		font-size: 16px;
		color: #197195;
		text-decoration: none;
		margin-right: 5px;
	}

	.header-contact-wrapper a.person-icon::before
	{
		content: '\f0f0';
		position: relative;
		font-family: font_awesome;
		font-size: 16px;
		color: #197195;
		text-decoration: none;
		margin-right: 5px;
	}
			
	#header-desktop
	{
		width: 100%;
		max-width: 2000px;
		margin: 0 auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	
	#header-desktop.sticky
	{
		position: fixed;
		background: #ffffff;
		-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2); 
		box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
		z-index: 10000;
		top: 0;
		left:0;
		right: 0;
	}

	#header-desktop > div:first-of-type
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: calc(100% - 30px);
		margin: 0 auto;
	}

	.header-logo
	{
		margin-right: 40px;
	}

	#header-desktop .header-right
	{
		display: flex;
		justify-content: flex-end;
		width: 100%;
	}

	#header-desktop #menu-builder-header-nav
	{
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;		
	}

	.header-translate #language_switcher
	{
		position: relative;
		display: flex;
		appearance: none;
		font-family: montserrat, sans-serif;
		font-size: 16px;
		text-transform: uppercase; 
		background-color: #ffffff;
		color: #2E2E2E;
		font-weight: 600;		
		margin-left: 40px;
		padding: 13px 17px;
		border: 1px solid #BABABA;
		border-radius: 5px;
	}

	#language_switcher::after
	{
		content: '\f078';
		position: relative;
		display: block;
		font-family: font_awesome;
		font-size: 14px;
		color: #51558F;
		margin-left: 5px;
		transition: all 200ms;
		pointer-events: none;
		border: none !important;
	}


	#language_switcher a
	{

	}

	#language_switcher a.dropdown-toggle:hover::after
	{
		bottom: -2px
	}

	.header-translate .dropdown-menu
	{
		width: 100% !important;
		min-width: 0 !important;
        max-width: 78px !important;
	}

	#language_switcher .dropdown-menu
	{
	}

	#language_switcher .dropdown-menu:hover
	{
		font-family: montserrat, sans-serif;
		font-size: 16px;
		text-transform: uppercase;
		background-color: #D1D3D3;
		color: #3F3F3F;
		border: none !important;
		border-radius: 0;
	}

	.header-translate .dropdown-menu li
	{
		font-weight: normal;
		text-transform: uppercase;
	}

	.header-translate .dropdown-menu li::marker
	{
		content: '';
		display: none;
	}

	.header-search-wrapper
	{
		position: relative;
		display: flex;
		align-items: center;
		margin-left: 17px;
	}
}


/**********************************************************
 /$$$$$$$$ /$$$$$$   /$$$$$$  /$$$$$$$$ /$$$$$$$$ /$$$$$$$
| $$_____//$$__  $$ /$$__  $$|__  $$__/| $$_____/| $$__  $$
| $$     | $$  \ $$| $$  \ $$   | $$   | $$      | $$  \ $$
| $$$$$  | $$  | $$| $$  | $$   | $$   | $$$$$   | $$$$$$$/
| $$__/  | $$  | $$| $$  | $$   | $$   | $$__/   | $$__  $$
| $$     | $$  | $$| $$  | $$   | $$   | $$      | $$  \ $$
| $$     |  $$$$$$/|  $$$$$$/   | $$   | $$$$$$$$| $$  | $$
|__/      \______/  \______/    |__/   |________/|__/  |__/
**********************************************************/
body > footer
{
	padding: 60px 0px;
	border-top: 2px solid #BABABA;
	max-width: 2000px;
	margin: 0 auto;
}

@media screen and (max-width: 991px)
{
	body > footer
	{
		text-align: center;
	}	
}

.footer-social-media-wrapper
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;	
	padding: 10px 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-social-media-wrapper .social-media-title
{
	margin-right: 16px;
}

.footer-secured-wrapper
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;	
	padding: 10px 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-secured-wrapper a
{
	position: relative;
	display: flex;
	align-items: center;
	font-weight: 600;
	text-decoration: none;	
}

.footer-secured-wrapper a::before
{
	content: '\f007';
	position: relative;
	display: block;
	font-family: font_awesome;
	font-size: 16px;
	color: #51558F;
	margin-right: 5px;
	transition: all 200ms;
}



body > footer .copyright-container,
body > footer .copyright-container a:link,
body > footer .copyright-container a:active,
body > footer .copyright-container a:visited
{
	font-family: montserrat, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #2E2E2E;
	text-decoration: none;
	transition: color 150ms;
}

body > footer .copyright-container a:hover
{
	color: #51558F;
}

/*********************************************************************************************
 /$$      /$$ /$$      /$$        /$$$$$$  /$$$$$$$$ /$$     /$$ /$$       /$$$$$$$$  /$$$$$$
| $$  /$ | $$| $$  /$ | $$       /$$__  $$|__  $$__/|  $$   /$$/| $$      | $$_____/ /$$__  $$
| $$ /$$$| $$| $$ /$$$| $$      | $$  \__/   | $$    \  $$ /$$/ | $$      | $$      | $$  \__/
| $$/$$ $$ $$| $$/$$ $$ $$      |  $$$$$$    | $$     \  $$$$/  | $$      | $$$$$   |  $$$$$$
| $$$$_  $$$$| $$$$_  $$$$       \____  $$   | $$      \  $$/   | $$      | $$__/    \____  $$
| $$$/ \  $$$| $$$/ \  $$$       /$$  \ $$   | $$       | $$    | $$      | $$       /$$  \ $$
| $$/   \  $$| $$/   \  $$      |  $$$$$$/   | $$       | $$    | $$$$$$$$| $$$$$$$$|  $$$$$$/
|__/     \__/|__/     \__/       \______/    |__/       |__/    |________/|________/ \______/
*********************************************************************************************/
p,
.ww_p
{	
	font-family: montserrat, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

.ww_p_double_space
{
	font-family: montserrat, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 2;
	margin: 0;
	padding: 0;
}

.ww_p_alternate
{
	font-family: montserrat, sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

.ww_p_call_out
{
	font-family: league_spartan, sans-serif;
	font-size: 22px;
	font-weight: 400;
	color: #2E2E2E;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

h1,
h1.ww_h1
{
	font-family: league_spartan, sans-serif;
	font-size: 46px;
	font-weight: 400;
	line-height: 1.2;
	color: #2E2E2E;
	margin: 0 0 5px 0 !important;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h1,
	h1.ww_h1
	{
		font-size: 30px;
	}
}

h1 strong,
h1.ww_h1 strong
{
	font-weight: 700;
	color: #51558F;
}

h2,
h2.ww_h2
{
	font-family: league_spartan, sans-serif;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	color: #2E2E2E;
	margin: 0 0 5px 0 !important;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	h2,
	h2.ww_h2
	{
		font-size: 28px;
	}
}

h2 strong,
h2.ww_h2 strong
{
	font-weight: 700;
	color: #51558F;
}

h3,
h3.ww_h3
{
	font-family: league_spartan, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	color: #197195;
	margin: 0;
	padding: 0;
}

h3 strong,
h3.ww_h3 strong
{
	color: #51558F;
}

h4,
h4.ww_h4
{
	font-family: league_spartan, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	color: #197195;
	margin: 0;
	padding: 0;
}

h5,
h5.ww_h5
{
	font-family: league_spartan, sans-serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
	color: #197195;
	margin: 0;
	padding: 0;
}

h6,
h6.ww_h6
{
	font-family: league_spartan, sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #197195;
	margin: 0;
	padding: 0;
}

.ww_emphasis
{
	font-weight: 700;
	color: #2E2E2E;
}

.ww_strong_emphasis
{
	font-weight: 700;
	color: #197195;
}

.ww_action_button1
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: montserrat, sans-serif;
	font-size: 16px;	
	font-style: normal !important;
	font-weight: 500;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #51558F;
	padding: 12px 24px;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

a .ww_action_button1,
a .ww_action_button1:link,
a .ww_action_button1:visited,
.ww_action_button1 a:link,
.ww_action_button1 a:visited
{
	color: #ffffff;
	text-decoration: none !important;
}

.ww_action_button1:hover
{
	background-color: #767bc5;
}

.ww_action_button1:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_action_button2
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: montserrat, sans-serif;
	font-size: 16px;	
	font-style: normal !important;
	font-weight: 500;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #197195;
	padding: 12px 24px;
	border-radius: 5px;	
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

a .ww_action_button2,
a .ww_action_button2:link,
a .ww_action_button2:visited,
.ww_action_button2 a:link,
.ww_action_button2 a:visited
{
	color: #ffffff;
	text-decoration: none !important;
}

.ww_action_button2:hover
{
	background-color: #32aadb;
}

.ww_action_button2:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_action_button3
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: montserrat, sans-serif;
	font-size: 16px;	
	font-style: normal !important;
	font-weight: 500;
	color: #2E2E2E !important;
	text-decoration: none !important;
	background-color: #ffffff;
	padding: 12px 24px;
	border: 1px solid #51558F;
	border-radius: 5px;	
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

a .ww_action_button3,
a .ww_action_button3:link,
a .ww_action_button3:visited,
.ww_action_button3 a:link,
.ww_action_button3 a:visited
{
	color: #2E2E2E;
	text-decoration: none !important;
}

.ww_action_button3:hover
{
	background-color: #767bc5;
	color: #ffffff;
}

.ww_action_button3:hover a,
a .ww_action_button3:hover
{	
	color: #ffffff;
}

.ww_action_button3:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.ww_editor_body
{
	background-color: #FFFFFF;
}


/*********************************************************************
  /$$$$$$   /$$$$$$  /$$   /$$ /$$$$$$$$ /$$$$$$$$ /$$   /$$ /$$$$$$$$
 /$$__  $$ /$$__  $$| $$$ | $$|__  $$__/| $$_____/| $$$ | $$|__  $$__/
| $$  \__/| $$  \ $$| $$$$| $$   | $$   | $$      | $$$$| $$   | $$
| $$      | $$  | $$| $$ $$ $$   | $$   | $$$$$   | $$ $$ $$   | $$
| $$      | $$  | $$| $$  $$$$   | $$   | $$__/   | $$  $$$$   | $$
| $$    $$| $$  | $$| $$\  $$$   | $$   | $$      | $$\  $$$   | $$
|  $$$$$$/|  $$$$$$/| $$ \  $$   | $$   | $$$$$$$$| $$ \  $$   | $$
 \______/  \______/ |__/  \__/   |__/   |________/|__/  \__/   |__/
*********************************************************************/
@media screen and (max-width: 991px)
{
	.mobile-light-background
	{	
		background-color: rgba(255, 255, 255, 0.8);
		padding: 20px;
		width: calc(100% - 40px);
		margin: 0 auto;
	}
}

.large-rounded-corner
{
	border-radius: 40px;
}

.small-rounded-corner
{
	border-radius: 20px;
}

.extra-small-rounded-corner
{
	border-radius: 10px;
}

.service-wrapping-container
{
	position: relative;
	display: flex;
	justify-content: center;
	max-width: 2000px;
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 1200px)
{
	.service-wrapping-container
	{
		flex-flow: column wrap;
	}
}

.rounded-box-container-blue
{
	background-color: #197195;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
}

.rounded-box-container-purple
{
	background-color: #51558F;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
}

.rounded-box-container-blue .white-text,
.rounded-box-container-purple .white-text
{
	position: relative;
	color:#ffffff !important;
	line-height: 1.2;
}

.rounded-box-container-light-blue
{
	background-color: #EEF5F9;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
}

.rounded-box-container-light-purple
{
	background-color: #E3E4F1;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
}

.rounded-box-container-white
{
	background-color: #ffffff;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
}

.service-wrapping-container .service-container.blue
{
	background-color: #197195;
}

.service-wrapping-container .service-container.purple
{
	background-color: #51558F;
}

.service-wrapping-container .service-container
{
	display: flex;
	flex-flow: column;
	padding: 10px;
	width: 100%;
	text-decoration: none;
}

.service-wrapping-container .service-inner-container
{
	padding: 20px;
}

.service-wrapping-container .service-container:hover .service-inner-container
{
	background-color: #ffffff;
}

.service-wrapping-container .service-inner-container .service-icon-container
{
	position: relative;
	display: block;
	height: 74px;
	margin-bottom: 30px;
}

.service-wrapping-container .service-inner-container .service-icon-container img
{
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	opacity: 1;
	transition: all 0.2s;
}

.service-wrapping-container .service-inner-container .service-icon-container img.hover
{
	opacity: 0;
	transition: all 0.2s;
}

.service-wrapping-container .service-container:hover .service-inner-container .service-icon-container img.default
{
	opacity: 0;
	transition: all 0.2s;
}

.cke_editable .service-wrapping-container .service-container:hover .service-inner-container .service-icon-container img.default
{	
	opacity: 1;
}


.cke_editable .service-wrapping-container .service-container .service-inner-container .service-icon-container img.default
{
	position: relative;
	opacity: 1;
}

.cke_editable .service-wrapping-container .service-container:hover .service-inner-container .service-icon-container img.default
{
	opacity: 1;
}

.service-wrapping-container .service-container:hover .service-inner-container .service-icon-container img.hover
{
	opacity: 1;
	transition: all 0.2s;
}


.service-wrapping-container .service-container .service-title
{
	position: relative;
	font-family: league_spartan, sans-serif;
	font-size: 27px;
	color:#ffffff;
	line-height: 1.2;
	margin-top: 40px;
}

.service-wrapping-container .service-container:hover .service-title
{
	color: #2E2E2E;
	font-weight: 700;
}

.caring-container
{
	position: relative;
	display: block;
	text-decoration: none;
	text-align: center;
}

@media screen and (max-width: 991px)
{
	.caring-container
	{
		max-width: 400px;
    	margin: 15px auto;
		border-radius: 40px 40px 0 0;
		background-color: #ffffff;
		border-radius: 20px;
	}	
}

.caring-container:hover
{
	background-color: #ffffff;
	border-radius: 20px;
}

.caring-container .caring-image-container
{
	position: relative;
	display: block;
	text-decoration: none;
}

.caring-container .caring-image-container img
{
	position: relative;
	display: block;
	border-radius: 20px;
	width: 100% !important;
	transition: all 0.2s;
}

.cke_editable .caring-container .caring-image-container img
{	
	border-radius: 0;	
}

@media screen and (max-width: 991px)
{
	.caring-container .caring-image-container img
	{	
		border-radius: 20px 20px 0 0;
		transition: all 0.2s;
	}
}

.caring-container:hover .caring-image-container img
{	
	border-radius: 20px 20px 0 0;
	transition: all 0.2s;
}

.caring-container .caring-title
{
	position: relative;
	display: block;
	font-family: league_spartan, sans-serif;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	color: #197195;
	margin: 20px 0px;
	padding: 0px 10px;
}

.caring-container .caring-description
{
	position: relative;
	display: block;
	font-family: montserrat, sans-serif;
	font-size: 16px;	
	color: #2E2E2E;
	margin-bottom: 30px;
	line-height: 1.5;
	padding: 0px 10px;
}

.caring-container .caring-learn-more
{
	display: none;
}

.caring-container .caring-learn-more::after
{
	content: '\f054';
	position: relative;
	display: block;
	font-family: font_awesome;
	font-size: 16px;	
	color: #51558F;
	transition: all 0.2s;	
}


.cke_editable .caring-container .caring-learn-more
{	
	opacity: 1;
	display: flex
}

.caring-container:hover .caring-learn-more
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: montserrat, sans-serif;
	font-size: 16px;
	font-weight: bold;	
	color: #51558F;
	transition: all 0.2s;
	padding-bottom: 15px;
}

.caring-container:hover .caring-learn-more::after
{
	content: '\f054';
	position: relative;
	display: block;
	font-family: font_awesome;
	font-size: 16px;	
	color: #51558F;
	transition: all 0.2s;	
}



/* @media screen and (max-width: 991px)
{
	.caring-container .caring-learn-more
	{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		align-items: center;
		font-family: montserrat, sans-serif;
		font-size: 16px;	
		color: #51558F;
		opacity: 1;
		transition: all 0.2s;
	}
}


.caring-container:hover .caring-learn-more::after
{
	opacity: 1;
} */



.mission-wrapper-container
{
	position: relative;
    display: flex;
    justify-content: center;
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 991px)
{
	.mission-wrapper-container
	{
		flex-flow: column wrap;
	}
}

.mission-wrapper-container .mission-container.purple
{
	background-color: #51558F;
}

.mission-wrapper-container .mission-container.blue
{
	background-color: #197195;
}

.mission-wrapper-container .mission-container
{
	display: flex;
	justify-content: flex-start;
	padding: 30px;
	width: 33%;
}

@media screen and (max-width: 991px)
{
	.mission-wrapper-container .mission-container
	{
		width: 100%;
	}
}

.mission-wrapper-container .mission-container .mission-description-wrapping-container
{
	display: flex;
	flex-flow: column;
	justify-content: flex-start;	
	margin-left: 30px;
	max-width: 400px;
}

.mission-wrapper-container .mission-container .mission-description-wrapping-container .mission-title
{
	font-family: league_spartan, sans-serif;
	font-size: 24px;
	font-weight: normal;
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 10px 0 !important;
	padding: 0;
}

.mission-wrapper-container .mission-container .mission-description-wrapping-container .mission-description
{
	font-family: montserrat, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: #ffffff;
	line-height: 1.5;
	padding: 0;
}

@media screen and (max-width: 991px)
{
	.bottom-spacing-for-action-buttons
	{
		margin-bottom: 10px;
	}
}