/*
	Theme Name: AAC
	Theme URI: https://aacresearchhub.org
	Description: Custom Wordpress theme for AAC
	Version: 1.0
	Author: Eric Richards
	Tags: HTML5, CSS3, jQuery, custom, mobile, responsive

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php


.asap-<uniquifier> {
	font-family: "Asap", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
	"wdth" 100;
	}

.source-sans-3-<uniquifier> {
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	}

.asap-condensed-regular {
	font-family: "Asap Condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
	}


*/



/* -------------------------------------------------------------------------------------------------------------- */
/* css for site basics ------------------------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------------- */

html,body {
	width: 100%;
	height: 100%;
    }
body {
	position: relative;
	padding: 0;
	margin: 0;
	min-width: 100%;
	background: #F8FAFC;
	font-family: "Source Sans 3", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 170%;
	color: #334155;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
	font-smoothing: antialiased;	
	}
img {
	padding: 0; 
	margin: 0;
	border: 0;
	max-width: 100%;
	height: auto;
	}
a {
	color: #2563EB;
	font-weight: 600;
    transition: color 0.2s linear;
	text-decoration: underline;
	}
a:hover {
	color: #1E40AF;
	outline: none;
    transition: color 0.2s linear;
   	}
ul {
	padding: 0 0 20px 25px;
	margin: 0;
	list-style: disc;
	}
	ul li::marker {
		color: #22263e;
		}
	ul li {
		padding: 5px 0 0px 0px;
		margin: 0;
		}
ol {
	padding: 0 0 12px 29px;
	margin: 0;
	}
	ol li {
		padding: 0 0 5px 0px;
		margin: 0;
		}
	ol li::marker {
    	color: #334155;
		font-size: 16px;
		font-weight: 400;
		}
p {
	padding: 0 0 12px 0;
	margin: 0;
	}
sup {
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
	font-size: 14px; 
	line-height: 14px;
	}	
strong,
b {
	font-weight: 600;
	}
h1.display,
h2.display {
 	padding: 0 0 12px 0;
	margin: 0;
	font-family: "Asap", sans-serif;
	font-size: 40px;
	line-height: 110%;
	font-weight: 500;
	}	
h1 {
 	padding: 0 0 18px 0;
	margin: 0;
	font-family: "Asap", sans-serif;
	font-size: 36px;
	line-height: 110%;
	font-weight: 500;
	}
h2 {
 	padding: 0 0 20px 0;
	margin: 0;
	font-family: "Asap", sans-serif;
	font-size: 30px;
	line-height: 115%;
	font-weight: 500;
	}
h3 {
 	padding: 0 0 20px 0;
	margin: 0;
	font-family: "Asap", sans-serif;
	font-size: 22px;
	line-height: 120%;
	font-weight: 500;
	color: #9257A9;
	}
	h3.contact {
		color: #334155;
		}
h4 {
 	padding: 0 0 2px 0;
	margin: 0;
	font-family: "Asap", sans-serif;
	font-size: 18px;
	line-height: 125%;
	font-weight: 600;
	color: #64748B;
	}
h5 {
 	padding: 0 0 4px 0;
	margin: 0;
	font-size: 15px;
	line-height: 140%;
	font-weight: 600;
	color: #475569;
	}
h6 {
 	padding: 0 0 7px 0;
	margin: 0;
	font-size: 11px;
	line-height: 140%;
	font-weight: 500;
	letter-spacing: 8%;
	text-transform: uppercase;
	color: #475569;
	}

.body-small {
	font-size: 14px;
	line-height: 165%;	
	}	
.body-large {
	font-size: 18px;
	line-height: 150%;
	}	
blockquote {
	margin: 12px 0 20px 0;
	padding: 17px 20px 5px 15px;
	font-size: 16px;
	line-height: 165%;	
	font-weight: 500;
	font-style: italic;
	background: #F8FAFC;
	border-left: 4px solid #E2E8F0;
	}	
.pull-quote {
	font-size: 22px;
	line-height: 140%;	
	color: #784A88;
	}	
.caption {
	font-size: 12px;
	line-height: 160%;
	font-weight: 400;
	color: #64748B;
	font-style: normal;
	}
.wp-caption {
	padding: 0 0 40px 0;
	font-size: 12px;
	line-height: 160%;
	font-weight: 400;
	color: #64748B;
	font-style: normal;
	text-align: center;
	}	
	.vert-align .wp-caption {
		padding: 0 !important;
		}
.info-text {
	font-family: "Asap Condensed", sans-serif;
	font-size: 30px;
	line-height: 110%;
	font-weight: 500;
	font-style: normal;
	color: #2A5E4F;
	}
	
hr {
	padding: 0;
	margin: 6px 0 21px 0;
	height: 1px;
	border: none;
	border-bottom: 1px solid #E2E8F0;
	}
	hr.black {
		border-bottom: 1px solid #334155;
		}
	hr.white {
		border-bottom: 1px solid #fff;
		}
	hr.purple {
		border-bottom: 1px solid #E2CEEA;
		}


/* -------------------------------------------------------------------------------------------------------------- */
/* css for site structure --------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 76px;
	z-index: 999;
    transition: all 0.2s linear;
	background: #fff;
	border-bottom: 1px solid #E2E8F0;
    }
.container {
	position: relative;
	margin: 0 auto 0 auto;
	width: 94%;
	padding: 30px 3% 60px 3%;
	max-width: 1360px; 
	}
	header .container {
		padding: 24px 3% 0 3%;
		}
#main {
	margin-top: 76px;
	}		
.basic-page {
	background: #fff;
	}
	.basic-page .main-content {
		width: 100%;
		max-width: 740px; 
		margin: 0 auto;
		}
.research-page {
	background: #fff;
	}
	.research-page .main-content {
		width: 100%;
		max-width: 640px; 
		margin: 0 auto;
		}

/* -------------------------------------------------------------------------------------------------------------- */
/* css for buttons -----------------------------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------------------------------------------- */

.button {
	display: inline-block;
	padding: 14px 24px 14px 24px;
	margin: 0 0 35px 0;
	background: #CF431D;
	border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s linear;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
    color: #fff;
	}
	.button:hover {
		background: #A73311;
		color: #fff;
		transition: background-color 0.2s linear;
		text-decoration: none;
		}	
	.button-white {
		color: #38779A;
		margin: 0;
		background: #fff;
		border: 1px solid #38779A;
		}	
		.button-white:hover {
			color: #2D5C76;
			background: #EBF5FA;
			}
	.button-box-shadow {		
		box-shadow: 0px 1px 3px 1px rgba(0,0,0,.3);
		}
	.navigation {
		text-align: center;
		}		
	.ajax-button {
		margin: 50px 0 50px 0;
		}	
	.alm-load-more-btn.done {
		display: none !important;
		}			
.button-arrow {
	display: block;
	float: right;
	width: 21px;
	height: 21px;
    text-decoration: none;
    background: url(images/button-arrow.svg) no-repeat right center;
    background-size: 21px 21px;
	}
.offsite {
	display: inline-block;
	padding: 9px 38px 9px 18px;
	margin: 0 0 15px 0;
	background: #fff;
	border: 1px solid #38779A;
	border-radius: 8px;
    text-decoration: none;
	transition: background-color 0.2s linear;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
    color: #38779A;
    background: #fff url(images/icon-offsite.svg) no-repeat right 20px center;
	}
	.offsite:hover {
		color: #2D5C76;
		background-color: #EBF5FA;
		border: 1px solid #2D5C76;
		transition: background-color 0.2s linear;
		}	
.contact-arrow {
	padding: 9px 22px 9px 0;
	width: 16px;
	height: 12px;
    text-decoration: none;
    color: #38779A;
    background: url(images/contact-arrow.svg) no-repeat right top 14px;
    background-size: 16px 12px;
	}
	.contact-arrow:hover {
	    color: #38779A;
		}	
	
	

/* -------------------------------------------------------------------------------------------------------------- */
/* contact form ------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

#contact input[type='tel'],
#contact input[type='email'],
#contact input[type='text'] {
	padding: 0 0 0 3%;
	margin: 0 3% 15px 0;
	width: 94%;
	height: 40px;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	background: #fff;
	outline: none;
	font-size: 16px;
	line-height: 16px;
	color: #1E293B;
	}
#contact textarea {
	vertical-align: top;
	padding: 10px 0 3px 2%;
	margin: 0 0 11px 0;
	height: 120px;
	width: 95%;
	border-radius: 8px;
	border: 1px solid #E2E8F0;
	outline: none;
	background: #fff;
	font-size: 16px;
	line-height: 170%;
	color: #1E293B;
	transition: all 0.2s linear;
	}		
#contact ::placeholder { 
	color: #1E293B;
	opacity: .5; 
	}
#contact label {
	color: #1E293B;
	}
#contact select {
	padding: 0 60px 0 10px;
	margin: 0 1% 25px 0;
	width: auto;
	min-width: 345px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid #E2E8F0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('images/arrow-down.png');
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 17px 15px;
	cursor: pointer;
	font-family: "Source Sans 3", sans-serif;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: #1E293B;
	transition: all 0.2s linear;
	}
		
#contact input[type=checkbox] + label {
	display: block;
	margin: 0 0 5px 0;
	cursor: pointer;
	font-size: 16px;
	line-height: 125%;
	color: #334155;
	}
	#contact input[type=checkbox] {
		display: none;
		}
	#contact input[type=checkbox] + label:before {
		display: inline-block;
		content: " ";
		padding: 2px 0 0 2px;
		margin: 0 10px 3px 0;
		width: 12px;
		height: 12px;
		border: 1px solid #334155;
		background: transparent;
		vertical-align: middle;
		font-size: 14px; 
		line-height: 14px;
		color: #fff;
		transition: .2s;
		}
	#contact input[type=checkbox] + label:active:before {
		transform: scale(0);
		}
	#contact input[type=checkbox]:checked + label:before {
		content: "\2713";
		color: #fff;
		background: #38779A;
		border: 1px solid #38779A;
		}
	
#contact .custom-radio label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	margin-right: 15px;
	}
	#contact .custom-radio input[type="radio"] {
		appearance: none;
		-webkit-appearance: none;
		width: 1.4em;
		height: 1.4em;
		margin: 0;
		border: 1px solid #8b8c89;
		border-radius: 50%;
		background-color: #ffffff;
		display: grid;
		place-content: center;
		}
	#contact .custom-radio input[type="radio"]::before {
		content: "";
		width: 0.65em;
		height: 0.65em;
		border-radius: 50%;
		transform: scale(0);
		transition: 120ms transform ease-in-out;
		background: #38779A !important;
		}
	#contact .custom-radio input[type="radio"]:checked {
		border-color: #38779A;
		}
	#contact .custom-radio input[type="radio"]:checked::before {
		transform: scale(1);
		}
	#contact .custom-radio input[type="radio"]:focus-visible {
		outline: 2px solid #38779A;
		outline-offset: 2px;
		}

#contact input[type='submit'],	
#contact .wpforms-submit {	
	padding: 12px 25px 12px 25px !important;
	margin: 30px 30px 20px 0 !important;
	width: auto !important;
	height: auto !important;
	border: 1px solid #fff !important;
	border-radius: 8px !important;
	background: #38779A !important;
	font-size: 16px !important;
	line-height: 125% !important;
	font-weight: 600 !important;
	text-align: center !important;
	cursor: pointer !important;
	color: #fff !important;
	transition: all 0.4s linear !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	}
	#contact input[type='submit']:hover,	
	#contact .wpforms-submit:hover {
		background: #2D5C76 !important;
		color: #fff !important;
		}
	#contact input[type='submit']:focus,	
	#contact .wpforms-submit:focus {
		outline: 3px solid #2D5C76;
		outline-offset: 1px;	
		}

		
/* -------------------------------------------------------------------------------------------------------------- */
/* css for header ----------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

.logo  {
	display: inline-block;
	position: relative;
	width: 218px;
    transition: all 0.2s linear;
    z-index: 999;
	}
	.logo img {
		width: 100%;
		max-width: 218px;
		height: auto;
		}

nav {
	float: right;
	position: relative;
	z-index: 997;
    transition: all 0.2s linear;
	}
	.menu-main-container,	
	nav ul {
		display: inline-block;		
		margin: 0;
		padding: 0;
		list-style: none;
		}
	nav ul li {
		display: inline-block;
		margin: 0;
		padding: 0;
		}
		nav ul li::before {
			display: none; 
			}
		nav ul li a {
			margin: 0;
			padding: 0 46px 0 0;
			line-height: 16px;
			color: #334155;
			text-decoration: none;
			}
		nav ul li a:hover {
			color: #CF431D;
			text-decoration: none;
			}
		nav .current-menu-item a {
			color: #CF431D;
			}
	nav .button {
		clear: both;
		margin-left: 20px;
		margin-top: -9px;
		float: right;
		}



/* -------------------------------------------------------------------------------------------------------------- */
/* css for home ------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

.hero {
	background: #EBF5FA;
	height: 380px;
	}
	.hero .container {
		padding: 0 3% 0 3%;
		max-width: 1020px; 
		}
	.hero .col-md-5,
	.hero .col-md-6,
	.hero .col-md-7 {
		position: relative;
		height: 380px;
		}
	.hero .stat-box {
		padding: 12px 15px 10px 15px;
		margin: 0 5px 10px 5px;
		border-radius: 8px;
		background: #fff;
		text-align: left;
		font-size: 14px;
		line-height: 140%;
		}
		.hero .stat-box .info-text {
			padding: 0 0 3px 0;
			color: #F04E23;
			}
		.hero .single-box {
			padding: 22px 25px 20px 25px;
			font-size: 18px;
			line-height: 150%;
			}	
			
.pillars {
	background: #64748B;
	}
	.pillars h2,
	.pillars p {
		margin: 0 auto;
		text-align: center;
		color: #fff;
		max-width: 670px;
		}
	.pillars .container {
		padding: 36px 3% 0 3%;
		max-width: 1280px; 
		}
	.pillars .button-white {
		margin: 20px 0 21px 0;
		}
	.pillars .card-title {
		text-decoration: none; 
		}	
		.pillars .card:hover .card-title {
			text-decoration: none; 
			}
	.pillars .card {
		box-shadow: 0px 1px 3px 1px rgba(0,0,0,.25);
		}
		.pillars .card:hover {
			box-shadow: 0px 1px 3px 1px rgba(0,0,0,.25);
			}
.featured {
	background: #F5EEF8;
	padding: 45px 0 25px 0;
	height: 413px;
	}
	.featured .col-md-5,
	.featured .col-md-6,
	.featured .col-md-7 {
		position: relative;
		height: 413px;
		}
	.featured .container {
		padding: 0 3% 0 3%;
		max-width: 1020px; 
		color: #5D3C68;
		}
		.featured-wide .container {
			max-width: 1160px; 
			}
	.featured h3 {
		color: #5D3C68;
		}	
	.featured-box {
		padding: 15px 15px 15px 30px;
		border-radius: 8px;
		background: rgba(255,255,255,.4);
		font-size: 14px;
		line-height: 140%;
		font-weight: 400;
		}
		.featured-box .col-2 {
			padding: 11px 0 0 0;
			font-family: "Asap Condensed", sans-serif;
			font-size: 22px;
			line-height: 22px;
			font-weight: 500;
			color: #F04E23;
			text-align: center;
			width: 44px;
			height: 44px;
			background-color: #F5EEF8;
			border-radius: 50%;
			}

.subscribe {
	border-top: 1px solid #E2E8F0;
	}
	.subscribe .container {
		padding: 63px 3% 18px 3%;
		}
	.subscribe .display {
 		padding: 0 0 16px 0;
		}
	.subscribe .button {
		margin-top: 4px;
		}
.questions {
	margin-top: 25px;
	}


/* -------------------------------------------------------------------------------------------------------------- */
/* css cards ---------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

.card {
	display: inline-block;
	width: 91%;
	padding: 22px 3% 20px 6%;
	margin: 12px 0 5px 0;
	border-radius: 8px;
	background: #fff;
	text-align: left;
	font-size: 16px;
	line-height: 150%;
	box-shadow: 0px 1px 3px 1px rgba(0,0,0,.25);
	text-decoration: none;
	font-weight: inherit;
	text-align: left;
	color: #334155;
	transition: all 0.2s linear;
	}
	.card:hover {
		color: #334155;
		box-shadow: 0px 2px 6px 2px rgba(0,0,0,.25);
		transition: all 0.2s linear;
		}
	.card-title {
		padding: 0 0 16px 0;
		font-family: "Asap", sans-serif;
		font-size: 17px;
		line-height: 130%;	
		font-weight: 500;
		color: #334155;
		text-decoration: underline solid rgba(0, 0, 0, 0); 
		text-underline-offset: 4px;
		transition: all 0.2s linear;
		}	
		.card:hover .card-title {
			text-decoration: underline solid rgba(0, 0, 0, 1); 
			text-underline-offset: 4px;
			transition: all 0.2s linear;
			}
	.card p {
		color: #334155;
		text-align: left;
		}
	.card-arrow {
		margin: 10px 0 10px 0;
		}	
	.research-author-date {
		margin-top: 8px;
		}

/* -------------------------------------------------------------------------------------------------------------- */
/* css for basic pages ------------------------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------------- */

.banner {
	margin: 76px 0 0 0; 
	height: 240px; 
	border-bottom: 1px solid #E2E8F0;
	}
	.banner .container {
		padding: 0; 
		height: 240px;
		}
		
			
/* -------------------------------------------------------------------------------------------------------------- */
/* css for research --------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

.breadcrumbs {
	margin-top: 95px;
	max-width: 1116px;
	padding: 0;
	}
	.breadcrumbs ul {
		margin: 0 0 0 -10px;
		padding: 0;
		list-style: none;
		}
	.breadcrumbs li {
		margin: 0;
		padding: 0 7px 0 0;
		display: inline-block;
		}
		.breadcrumbs li:after {
			content: "";
			display: inline-block;
			width: 8px;
			height: 8px;
			margin-left: 10px;
			vertical-align: middle;
			background-image: url(images/breadcrumb.svg);
			background-repeat: no-repeat;
			background-size: contain;
			}
		.breadcrumbs li:last-of-type::after {
			background-image: none;
			}
	.breadcrumbs a {
		color: #475569;
		font-weight: 400;
		text-decoration: none;
		}	
.authors {
	padding: 0 0 4px 0;
	line-height: 140%;
	}			
#research {
	max-width: 1116px;
	margin-bottom: 30px;
	padding-top: 15px;
	}
	#research h3 {
		margin: 0 0 15px -10px;
		padding: 0 0 0 5px;
		border-left: 4px solid #E2CEEA;
		}	
	#research img {
		margin: 10px 0 0 0;
		}	
	.bg-white {
		background: #fff;
		border-radius: 8px;
		padding: 29px 65px 30px 65px;
		}
.badge {
	display: inline-block;
	margin: 0 0 17px 0;
	padding: 6px 10px 6px 10px;
	background: #F5EEF8;
	border-radius: 15px;
	font-size: 11px;
	line-height: 11px;
	font-weight: 500;
	color: #5D3C68;
	letter-spacing: 8%;
	text-transform: uppercase;
	text-decoration: none;
	}
	.badge:hover {
		color: #5D3C68;
		}
	.card .badge {
		margin: 0 0 8px 0;
		}
	div.green-badge,	
	a.green-badge,	
	.card .green-badge,
	.green-card .badge {
		background: #F0FAF6;
		color: #2A5E4F;
		}	
	div.yellow-badge,	
	a.yellow-badge,	
	.card .yellow-badge,
	.yellow-card .badge {
		background: #FEFBE8 !important;
		color: #836F10 !important;
		}
	.slate-card .badge {
		background: #F1F5F9 !important;
		color: #475569 !important;
		}
.tags div,
.tags a {
	display: inline-block;
	margin: 0 7px 2px 0;
	padding: 8px 14px 8px 14px;
	background: #EBF5FA;
	border: 1px solid #EBF5FA;
	border-radius: 15px;
	font-size: 14px;
	line-height: 14px;
	font-weight: 500;
	color: #38779A;
    transition: border 0.2s linear;
    text-decoration: none;
	}
	.tags a:hover {
		color: #2D5C76;
		border: 1px solid #2D5C76;
		transition: border 0.2s linear;
		}
.meta {
	padding: 0 0 9px 0;
	color: #64748B;
	}	
.section {
	margin-top: 15px;
	}	
.table-of-contents-container {
	position: relative;
	padding: 43px 0 0 20px;
	}
	.table-of-contents a {
		margin: 0 0 5px 0;
		padding: 0;
		display: inline-block;
		font-weight: 400;
		color: #64748B;
		text-decoration: none;
		}
		.table-of-contents a:hover {
			text-underline-offset: 5px;
			color: #334155;
			text-decoration: underline dotted #334155;
			}
	a.back-to-top {
		display: inherit;
		margin-top: 10px;
		padding: 12px 0 0 30px;
		border-top: 1px solid #E2E8F0;
		background: url(images/icon-up-arrow.svg) no-repeat left 5px top 15px;
		background-size: 11px 13px;
		font-weight: 400 !important;
		color: #64748B !important;
		}
		a.back-to-top:hover {
			text-underline-offset: 5px;
			color: #334155 !important;
			text-decoration: underline dotted #334155;
			}
		a.back-on {
			text-underline-offset: 5px;
			color: #334155;
			}	
	.is-sticky {
		position: sticky;
		top: 100px; 
		right: 0;
		}

.pull-quote {
	margin: 8px 0 21px 0;
	padding: 17px 20px 5px 20px;
	border-radius: 12px;
	background: #F5EEF8;
	}
.info-graphic {
	margin: 8px 0 21px 0;
	padding: 17px 20px 0 20px;
	border-radius: 12px;
	background: #F0FAF6;
	font-size: 14px;
	line-height: 165%;
	font-weight: 600;
	color: #475569;
	}

table,
.table {
	margin: 8px 0 30px 0;
	border-bottom: 1px solid #E2E8F0;
	}
table td,	
.table div {
	vertical-align: top;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 14px;
	line-height: 150%;
	font-weight: 400;
	}
	tr:nth-child(even),
	.table .even {
		background: #F8FAFC;
		}
table th,		
.table-header {
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 11px;
	line-height: 150%;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	background: #64748B;
	}
	.table-header:first-child {
		border-top-left-radius: 8px;
		}
	.col3 .table-header:nth-child(3) {
		border-top-right-radius: 8px;
		}
	.col4 .table-header:nth-child(4) {
		border-top-right-radius: 8px;
		}
	.col5 .table-header:nth-child(5) {
		border-top-right-radius: 8px;
		}
	.col6 .table-header:nth-child(6) {
		border-top-right-radius: 8px;
		}
	.col7 .table-header:nth-child(7) {
		border-top-right-radius: 8px;
		}

.slide .wp-caption {
	margin-top: 10px;
	}	
	.slide img {
		max-width: 99.9% !important;
		}
	

/* -------------------------------------------------------------------------------------------------------------- */
/* css for video ------------------------------------------------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------------------------- */
	
.video-contain {
	margin: -50px 0 0 0;
	position: relative;
	overflow: hidden;
	width: 97%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
	}

.video-contain iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	}
	

/* -------------------------------------------------------------------------------------------------------------- */
/* css for window shade ----------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

.winshade {
	position: relative;
	}
	.winshade-question {
		position: relative;
		padding: 30px 0 5px 0;
		width: 100%;
		border-bottom: 1px solid #f4a940;
		}
	.winshade-answer {
		text-align: left;
		width: 100%;
		padding: 25px 0 60px 0;
		display: none;
		font-size: 20px;
		line-height: 35px;
		color: #aaabab;
		}
	.plus {
		position: absolute;
		right: 0;
		top: 20px;
		width: 60px;
		height: 60px;
		background: url(images/open-info-button.svg) no-repeat center center;
		cursor: pointer;
		}
		.plus:hover {
			background: url(images/plus-hover.svg) no-repeat center center;
			text-decoration: none;
			}
	.minus {
		position: absolute;
		right: 0;
		bottom: 20px;
		width: 60px;
		height: 60px;
		background: url(images/close-info-button.svg) no-repeat center center;
		cursor: pointer;
		}
		.minus:hover {
			background: url(images/close-info-button-hover.svg) no-repeat center center;
			text-decoration: none;
			}

			
/* -------------------------------------------------------------------------------------------------------------- */
/* css for footer ----------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

footer {
	position: relative;
	width: 100%;
	height: 72px;
	margin: 0;
	padding: 0;
	background: #F8FAFC;
	border-top: 1px solid #E2E8F0;
	font-size: 14px;
	line-height: 165%;
	}
	footer .container {
		padding: 25px 0 25px 0;
		}
	footer ul {
		margin: 0;
		padding: 0;
		list-style: none;
		text-align: right;
		}
		footer ul li {
			position: relative;
			display: inline-block;
			padding: 0 0 0 38px;
			}
		footer ul li a {
			font-size: 14px;
			line-height: 14px;
			font-weight: 500;
			color: #38779A;
			text-decoration: none;
			transition: all 0.1s linear;
			}
			footer ul li a:hover {
				transition: all 0.1s linear;
				color: #38779A;
				text-underline-offset: 5px;
				text-decoration: underline dotted #2D5C76;
				}
.copyright {
	display: inline;
	}
.footer-note {
	display: inline;
	}



/* -------------------------------------------------------------------------------------------------------------- */
/* css for popups ----------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

.popup-bck {
	display: none;
	background-color: rgba(0,0,0, .4);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 99998;
	cursor: default;
	}
.popup-content {
	display: none;
	position: fixed;
	top: 0;
	right: -344px;
	width: 344px;
	height: 100%;
	z-index: 99999;
	background: #fff;
	cursor: default;
	text-align: left; 
	}
	.popup-content h4 {
		padding: 0 20px 15px 20px;
		padding-right: 30px;
		color: #334155;
		}		
	.popup-content h3 {
		padding: 24px 20px 19px 20px;
		padding-right: 30px;
		color: #334155;
		}		
.close-popup {
	position: absolute;
	top: 24px;
	right: 0;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background: url(images/close.svg) no-repeat;
	background-size: 25px 25px;
	}
.popup-btn {
	display: inline-block;
	padding: 9px 18px 9px 38px;
	margin: 0 0 15px 0;
	border: 1px solid #38779A;
	border-radius: 8px;
    text-decoration: none;
	transition: background-color 0.2s linear;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
    color: #334155;
    cursor: pointer;
    background: #fff url(images/icon-filter.svg) no-repeat left 10px center;
	}
	.popup-btn:hover {
		color: #2D5C76;
		background-color: #EBF5FA;
		border: 1px solid #2D5C76;
		transition: background-color 0.2s linear;
		}	
	
.sf-field-filter {
	float: left;
	width: 60%;
	}
.sf-field-sorting {
	float: right;
	width: 40%;
	}
.sf-field-selections {
	margin: 0 0 5px 0;
	}	
.sf-field-categories {
	padding: 0 20px 15px 20px;
	}	
.sf-field-tags {
	padding: 0 20px 15px 20px;
	}	
.sf-field-reset {
	display: inline-block;
	padding: 0 10px 0 20px;
	width: 130px;
	}
.sf-field-submit {
	display: inline-block;
	padding: 0 20px 0 10px;
	width: 130px;
	}	



	
/* -------------------------------------------------------------------------------------------------------------- */
/* css for misc items ------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */


.vert-hor-align {
	position: absolute;
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	width: 100%;
	}
.vert-align {
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	}
.spacer {
	height: 50px;
	}
.screen-reader-text {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	}			
.clear {
	width: 100%;
	display: block;
	flex: none;
	float: none;
	clear: both;
	font-size: 0px;
	line-height: 0px;
	}
.center-text {
	text-align: center;
	}		
.aligncenter {
	display: block;
	margin: 0 auto 20px auto;
	text-align: center;
	}
.alignnone {
	margin: 0 auto 20px auto;
	}	
.alignright {
	padding: 0;
	margin: 0 0 50px 4px;
	display: inline-block;
	}
.alignleft {
	float:left;
	margin: 7px 20px 20px 0;
	}
.mobile {
	display: none;
	}
.desktop {
	display: inherit;
	}
#wp-admin-bar { 
	position: absolute !important; 
	}
.admin-bar-search {
	display: none;
	}
.grecaptcha-badge { 
	visibility: hidden !important; 
	}


/* -------------------------------------------------------------------------------------------------------------- */
/* css for animations ------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------------------- */

.animation-element {
	position: relative;
	transition: .6s all ease;
	}
.slow {
	transition: 1.2s all ease;
	}
.delay1 {
	-webkit-transition-delay: .1s; 
    transition-delay: .1s;
	}
.delay2 {
	-webkit-transition-delay: .2s; 
    transition-delay: .2s;
	}
.delay3 {
	-webkit-transition-delay: .3s; 
    transition-delay: .3s;
	}
.delay4 {
	-webkit-transition-delay: .4s; 
    transition-delay: .4s;
	}
.delay5 {
	-webkit-transition-delay: .5s; 
    transition-delay: .5s;
	}
.delay6 {
	-webkit-transition-delay: .6s; 
    transition-delay: .6s;
	}
.delay7 {
	-webkit-transition-delay: .7s; 
    transition-delay: .7s;
	}
.fade-in {
	opacity: 0;
	}
.fade-in.in-view {
	opacity: 1;
	}
.slide-left {
	opacity: 0;
	-webkit-transform: translateX(120px);
	-ms-transform: translateX(120px);
	transform: translateX(120px);
	}
.slide-right {
	opacity: 0;
	-webkit-transform: translateX(-120px);
	-ms-transform: translateX(-120px);
	transform: translateX(-120px);
	}
.slide-up {
	opacity: 0;
	-webkit-transform: translateY(120px);
	-ms-transform: translateY(120px);
	transform: translateY(120px);
	}
.slide-left.in-view,
.slide-right.in-view,
.slide-up.in-view {
	opacity: 1;
	-webkit-transform: translate3d(0, 0 , 0);
	-ms-transform: translate3d(0, 0 , 0);
	transform: translate3d(0, 0 , 0);
	}
.grow {
	opacity: 0;
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
	}
.grow.in-view {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	}
.text-highlight {
	color: inherit;
	}
.text-highlight.in-view {
	color: #34a31f;
	}
.rotate {
	opacity: 0;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);   
	transform: rotateY(180deg);
	display: inline-block;
	}










@media only screen 
and (max-width : 1200px) {


}





@media only screen 
and (max-width : 992px) {


header {
	height: 52px;
	}
	header .container {
		padding: 17px 5% 0 5%;
		}
.logo  {
	width: 182px;
	}
#main {
	margin-top: 52px;
	}		

.container {
	width: 90%;
	padding: 30px 5% 60px 5%;
	}
	
#navbar {
	position: absolute;
	top: 7px;
	right: 25px;
	width: 35px;
	height: 35px;
	background: url(images/menu.svg) no-repeat;
	background-size: 35px 35px;
	cursor: pointer;
	z-index: 9999;
    transition: top 0.2s linear;
	}
#navbar-on {
	display: none;
	position: absolute;
	top: 7px;
	right: 25px;
	width: 35px;
	height: 35px;
	background: url(images/close.svg) no-repeat;
	background-size: 35px 35px;
	cursor: pointer;
	z-index: 9999;
    transition: top 0.2s linear;
	}
nav {
	display: none;
	position: absolute;
	left: 0;
	width: 100%;
	top: 52px;
	background: #fff;
	float: none;
    transition: none;
    text-align: center;
	box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.7);
	}
	.menu-main-container,	
	nav ul {
		padding: 12px 0 1px 0;
		display: block;		
		}
	nav ul li {
		display: block;
		margin: 0;
		padding: 0 0 26px 0;
		}
		nav ul li a {
			padding: 0;
			font-size: 16px;
			line-height: 16px;
			}
	nav .button {
		clear: both;
		margin: 0 0 25px 0;
		float: none;
		}

.bg-white {
	padding: 29px 35px 30px 35px;
	}
	

/* -------------------------------------------------------------- */
/* css for home 992px ------------------------------------------- */
/* -------------------------------------------------------------- */

.hero {
	height: auto;
	}
	.hero .container {
		padding: 40px 5% 30px 5%;
		}
	.hero .col-md-5,
	.hero .col-md-6,
	.hero .col-md-7 {
		height: auto;
		}

.featured {
	height: auto;
	}
	.featured .col-md-5,
	.featured .col-md-6,
	.featured .col-md-7 {
		height: auto;
		}
	.featured .container {
		padding: 40px 3% 30px 3%;
		}

	.featured .col-md-5 {
		margin-top: 30px;
		}

.subscribe .container {
	padding: 35px 3% 20px 3%;
	}
	.subscribe .button {
		margin-bottom: 0;
		}


/* -------------------------------------------------------------- */
/* css for basic pages 992px ------------------------------------ */
/* -------------------------------------------------------------- */

.banner {
	margin: 52px 0 0 0; 
	height: 180px; 
	}
	.banner .container {
		height: 180px;
		}


/* -------------------------------------------------------------- */
/* css for research pages 992px --------------------------------- */
/* -------------------------------------------------------------- */

.breadcrumbs {
	margin-top: 75px;
	max-width: 1116px;
	padding: 0;
	}
	.breadcrumbs ul {
		margin: 0;
		}
		
#research {
	margin-bottom: 0px;
	}
	#research.container {

		}
	.bg-white {
		background: #fff;
		border-radius: 0;
		padding: 20px 3% 30px 3%;
		margin: 20px 0 0 0;
		width: 94%;
		}


/* -------------------------------------------------------------- */
/* css for misc 992px ------------------------------------------- */
/* -------------------------------------------------------------- */

.vert-align {
	position: relative;
	transform: none;
	top: auto;
	}
.mobile {
	display: inherit;
	}
.desktop {
	display: none;
	}


/* -------------------------------------------------------------- */
/* css for footer 992px ----------------------------------------- */
/* -------------------------------------------------------------- */

footer ul {
	padding: 0 0 20px 0;
	text-align: left;
	}
	footer ul li {
		display: block;
		padding: 0 0 10px 0;
		}
.copyright {
	display: block;
	text-align: center;
	}
	footer .container {
		padding: 20px 0 5px 0;
		}
.footer-note {
	display: block;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
	text-align: center;
	border-bottom: 1px solid #E2E8F0;
	}


}





@media only screen 
and (max-width : 768px) {

/* -------------------------------------------------------------- */
/* css for site basics 768px ------------------------------------ */
/* -------------------------------------------------------------- */

body {
	font-size: 16px;
	line-height: 170%;
	}
h1.display,
h2.display {
	font-size: 30px;
	}	
h1 {
	font-size: 30px;
	}
h2 {
	font-size: 24px;
	}
h3 {
	font-size: 20px;
	}
h4 {
	font-size: 16px;
	}

.body-small {
	font-size: 13px;
	}	
.body-large {
	font-size: 17px;
	}	
blockquote {
	font-size: 15px;
	}	
.pull-quote {
	font-size: 20px;
	}	
.info-text {
	font-size: 24px;
	}

.table-of-contents-container {
	display: none;
	}

}




@media only screen 
and (max-width : 576px) {



	
}
