/*================================================================
                BOILERPLATE - BASE STYLES
================================================================*/
html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-family: arial, sans-serif;
    line-height: 1.4;
    
}

::-moz-selection {
    background: #b5b47e;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #b5b47e;
    color: #fff;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #9B9B9B;
    margin: 1em 0;
    padding: 0;
}

img {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.hide {
    display: none;
}

.smallest {
    font-size: 0.8em;
}

.smaller {
    font-size: 0.9em;
}

.larger {
    font-size: 1.1em;
}

.largest {
    font-size: 1.2em;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.strike {
    text-decoration: line-through;
}

.red {
    color: #f00;
}

.blue {
    color: #00f;
}

.green {
    color: #390;
}

.lgreen {
    color: #97937d;
}

.vtop {
    vertical-align: top;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.fright {
    float: right;
}

.fleft {
    float: left;
}

.nowrap {
    white-space: nowrap;
}

.breakforprint {
    page-break-after: always;
}

.clear {
    overflow: hidden;
    clear: both;
    height: 0;
    margin: 0;
    font-size: 1px;
    line-height: 0;
}

.skip {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/*================================================================
					FLUID GRID STYLES
================================================================*/
.container {
	position: relative;
	margin: 0 auto;
	padding: 0;
	min-width: 16em;
	max-width: 60em;
	-webkit-transition: all 0.1s linear;
	   -moz-transition: all 0.1s linear;
		-ms-transition: all 0.1s linear;
		 -o-transition: all 0.1s linear;
			transition: all 0.1s linear;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

.container [class*="grid_"] {
	padding: 0 10px;
}

.lt-ie8 .container [class*="grid_"] {
	width: 98%;
	padding: 0 1%;
}

.gutterless {
	padding: 0 10px;
}

.gutterless > [class*="grid_"] {
	padding: 0;
}

.container .alpha {
	padding-left: 0;
}

.container .omega {
	padding-right: 0;
}

.container .padless {
	padding: 0;
}

/* 16px baseline (256px) s = small */
@media only screen and (min-width:16em) {
	.container [class*="grid_"] {
		position: relative;
		float: left;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	.s-1half > [class*="grid_"] {
		width: 50%;
	}
}

/* 16px baseline (420px+) s-w = small wide [Usually ends around 767px] */
@media only screen and (min-width:30em) and (max-width:47.99em) {
	.sw_1half > [class*="grid_"] { width: 50%; }
	.sw_1half > [class*="push_"] { left: 50%; }
	.sw_1half > [class*="pull_"] { left: -50%; }

	.sw_1third > [class*="grid_"] { width: 33.333%; }
	.sw_1third > [class*="push_"] { left: 33.333%; }
	.sw_1third > [class*="pull_"] { left: -33.333%; }

	.sw-3fourths-left  > [class*="grid_"] { width: 50%; }
	.sw-3fourths-left  > [class*="grid_"]:nth-child(2n) { width: 25%; }
	.sw-3fourths-left  > [class*="grid_"]:nth-child(2n+1) { width: 75%; }

	.sw-3fourths-right  > [class*="grid_"] { width: 50%; }
	.sw-3fourths-right  > [class*="grid_"]:nth-child(2n) { width: 75%; }
	.sw-3fourths-right  > [class*="grid_"]:nth-child(2n+1) { width: 25%; }
}

/* 16px baseline (768px+) m = medium [start caring about grid now] */
@media only screen and (min-width:48em) {
	.container .grid_1  { width: 8.333%; }
	.container .grid_2  { width: 16.666%; }
	.container .grid_3  { width: 25%; }
	.container .grid_4  { width: 33.333%; }
	.container .grid_5  { width: 41.666%; }
	.container .grid_6  { width: 50%; }
	.container .grid_7  { width: 58.333%; }
	.container .grid_8  { width: 66.666%; }
	.container .grid_9  { width: 75%; }
	.container .grid_10 { width: 83.333%; }
	.container .grid_11 { width: 91.666%; }
	.container .grid_12 { width: 100%; }

	.container .push_1  { left: 8.333%; }
	.container .push_2  { left: 16.666%; }
	.container .push_3  { left: 25%; }
	.container .push_4  { left: 33.333%; }
	.container .push_5  { left: 41.666%; }
	.container .push_6  { left: 50%; }
	.container .push_7  { left: 58.333%; }
	.container .push_8  { left: 66.666%; }
	.container .push_9  { left: 75%; }
	.container .push_10 { left: 83.333%; }
	.container .push_11 { left: 91.666%; }
	.container .push_12 { left: 100%; }

	.container .pull_1  { left: -8.333%; }
	.container .pull_2  { left: -16.666%; }
	.container .pull_3  { left: -25%; }
	.container .pull_4  { left: -33.333%; }
	.container .pull_5  { left: -41.666%; }
	.container .pull_6  { left: -50%; }
	.container .pull_7  { left: -58.333%; }
	.container .pull_8  { left: -66.666%; }
	.container .pull_9  { left: -75%; }
	.container .pull_10 { left: -83.333%; }
	.container .pull_11 { left: -91.666%; }
	.container .pull_12 { left: -100%; }

	.lt-ie8 .container [class*="grid_"] { padding: 0 1%; }
	.lt-ie8 .container .grid_1  { width: 6%; }
	.lt-ie8 .container .grid_2  { width: 14%; }
	.lt-ie8 .container .grid_3  { width: 23%; }
	.lt-ie8 .container .grid_4  { width: 30%; }
	.lt-ie8 .container .grid_5  { width: 39%; }
	.lt-ie8 .container .grid_6  { width: 48%; }
	.lt-ie8 .container .grid_7  { width: 56%; }
	.lt-ie8 .container .grid_8  { width: 64%; }
	.lt-ie8 .container .grid_9  { width: 73%; }
	.lt-ie8 .container .grid_10 { width: 81%; }
	.lt-ie8 .container .grid_11 { width: 89%; }
	.lt-ie8 .container .grid_12 { width: 98%; }

}

/* 16px baseline (768px - 959px) m = medium */
@media only screen and (min-width:48em) and (max-width:59.99em){
	.m-1half > .grid_col { width: 50%; }
	.m-1third > .grid_col { width: 33.333%; }
	.m-1fourth > .grid_col { width: 25%; }

	.m-2thirds-left > [class*="grid_"] { width: 50%; }
	.m-2thirds-left > [class*="grid_"]:nth-child(2n) { width: 33.33%; }
	.m-2thirds-left > [class*="grid_"]:nth-child(2n+1) { width: 66.66%; }

	.m-2thirds-right > [class*="grid_"] { width: 50%; }
	.m-2thirds-right > [class*="grid_"]:nth-child(2n) { width: 66.66%; }
	.m-2thirds-right > [class*="grid_"]:nth-child(2n+1) { width: 33.33%; }

	.m-3fourths-left > [class*="grid_"] { width:50%; }
	.m-3fourths-left > [class*="grid_"]:nth-child(2n) { width: 25%; }
	.m-3fourths-left > [class*="grid_"]:nth-child(2n+1) { width: 75%; }

	.m-3fourths-right > [class*="grid_"] { width: 50%; }
	.m-3fourths-right > [class*="grid_"]:nth-child(2n) { width: 75%; }
	.m-3fourths-right > [class*="grid_"]:nth-child(2n+1) { width: 25%; }
}

/* 16px baseline (960px - 1139px) m-w = medium wide*/
@media only screen and (min-width:60em) and (max-width:61.49em) {

}

/* 16px baseline (1140px) l = large */
@media only screen and (min-width:61.5em) {
	.container { max-width: 64em; }
}

@font-face {
	font-family: 'icomoon', verdana, sans-serif;
	src:url('/content/fonts/icomoon.eot');
	src:url('/content/fonts/icomoon.eot?#iefix') format('embedded-opentype'),
	url('/content/fonts/icomoon.ttf') format('truetype'),
	url('/content/fonts/icomoon.woff') format('woff'),
	url('/content/fonts/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* better font rendering */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.lt-ie8 .icon-icon-register {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe602;');
	font-size: 3em;
}

.lt-ie8 .icon-icon-profile {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe603;');
	font-size: 2.65em;
}

.lt-ie8 .icon-icon-jobhistory {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe604;');
	font-size: 2.55em;
}

.lt-ie8 .icon-icon-education {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe606;');
	font-size: 2.25em;
}

.lt-ie8 .icon-icon-resume {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe601;');
	font-size: 3.0em;
}

.lt-ie8 .icon-icon-right-arrow {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe600;');
}

.lt-ie8 .icon-remove {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe605;');
}

.lt-ie8 .icon-close {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe607;');
}

.lt-ie8 .icon-disk {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe608;');
	font-size: 2.25em;
}

.lt-ie8 .icon-notification {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe609;');
	font-size: 1.60em;
}

.lt-ie8 .icon-key {
	*zoom: expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe60a;');
	color: gold;
}

/* ================================================================
					PRIMARY LAYOUT STYLES
================================================================ */

/* ===============  Top Bar  =============== */
.topLinks {
	padding: 4px 0;
	text-align: right;
	background: #fff;
	position: relative;
	z-index: 9999999999999999;
}

.topLinks ul {
	float: right;
	margin: 0;
	padding: 0;
	list-style: none;
}

.topLinks li {
	float: left;
	margin-right: 15px;
	line-height: 1.2em;
}

.topLinks a {
	font-family: verdana, arial, sans-serif;
	font-size: 0.7em;
	color: #828488;
	text-transform: uppercase;
}

.topLinks a:hover,
.topLinks a:focus {
	color: #353953;
}

.topLinks a.on {
	color: #9ba190;
}

.topLinks .languages {
	display: block;
}

.topLinks ul ul {
	display: none;
	position: absolute;
	z-index: 9999999999;
	margin-left: -8px;
}

.topLinks li li {
	overflow: hidden;
	float: none;
	margin-right: 0;
	background: #fff;
}

.topLinks li li a {
	float: left;
	display: block;
	padding: 5px 10px;
	text-align: left;
	background: #fff;
}

.topLinks li li a span {
	display: block;
	padding: 5px 5px 0 0;
}

.topLinks li li a:hover,
.topLinks li li a:focus {
	color: #353953;
}

.topLinks .languages:hover ul,
.topLinks .languages:focus ul {
	display: block;
}

/* ===============  Header  =============== */
.header {
	background:#6f76a6 url(/content/images/hdbg.gif) repeat-y -3% top;
	-webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.logo {
	margin: 0.6em 0;
}

.logo a {
	display: block;
	width: 230px;
	margin: 0;
	padding: 0;
	height: 36px;
	text-indent: -99999em;
	background: url(/content/images/logo.png) no-repeat 0 0;
	-webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

@media only screen and (max-width:41.9em) {
	.header .grid_9 {
		padding: 0;
	}
	.lt-ie8 .header .container .grid_9,
	.lt-ie8 .header .container .grid_3 {
		padding: 0;
	}
}

@media only screen and (min-width:42em) and (max-width:61.49em) {
	.header {
		background-position: -15%;
	}

	.header .grid_9,
	.header .grid_3 {
		width: 100%;
	}

	.lt-ie8 .header .container .grid_9,
	.lt-ie8 .header .container .grid_3 {
		width: 100%;
		padding: 0;
	}

	.logo a {
		margin: 0 auto;
	}
}

@media only screen and (min-width:61.5em) {
	.header {
		background-position: center top;
	}

	.logo {
		margin: 0.5em 0 0.4em;
	}

	.logo a {
		margin: 0;
	}
}

/* ===============  Main Content  =============== */

.focalLinks {
	padding: 6px 0 14px;
	overflow: hidden;
	font-size: 0.9em;
}

.focalLinks ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.focalLinks li {
	float: left;
	margin-right: 15px;
}

.focalLinks a:hover,
.focalLinks a:focus {
	color: #9ba190;
}

.mainContent {
	background: #ededed;
	width: 93%;
	float: right;
	padding: 3%;
}

.oneCol .mainContent {
	width: 96%;
	padding: 2%;
}

.contentWrap {
	font-size: 0.8em;
	color: #5a5a5a;
}

.contentWrap a {
	color: #596195;
	text-decoration: underline;
	font-weight: bold;
}

.contentWrap a:hover,
.contentWrap a:focus {
	color: #7cb085;
}

.contentWrap > p:first-child {
	margin-top: 0;
}

.focusText,
.focusText p,
.focusText blockquote {
	margin: 0;
	font-size: 1em;
	color: #52463b;
}

blockquote {
	padding: 0;
	font-size: 1.3em;
	color: #52463b;
}

.contentWrap .focusText a,
.contentWrap .focusText p a,
.contentWrap .focusText blockquote a,
.contentWrap blockquote a,
.contentWrap h5 a {
	font-weight: bold;
	color: #596195;
	text-decoration: underline;
}

.contentWrap > h5:first-child {
	margin-top: 0;
}

/* ===============  Left Rail =============== */
.grid_4.leftRail {
	padding: 0 16px;
	border-right: 1px solid #959595;
}

.grid_4.leftRail img {
	width: 100%;
	height: auto;
}

@media only screen and (max-width:48em) {
	.grid_4.leftRail {
		margin-top: 10px;
		border: 0;
		padding-right: 10px;
	}

	.grid_4.leftRail img {
		width: auto;
		height: auto;
		float: right;
	}
}

@media only screen and (max-width:25em) {
	.grid_4.leftRail img {
		width: 100%;
		height: auto;
	}
}

/* ===============  Right Rail =============== */
.rightRail {
	color: #fff;
	font-size: 0.8em;
}

.rightRail h4 {
	border: 0;
	margin: 0 0 0.5em;
	color: #7cb085;
	font-size: 1.2em;
}

.rightRail h4 a:hover,
.rightRail h4 a:focus {
	color: #9ba190;
}

.emailLink {
	display: block;
	margin-top: 20px;
	padding-right: 35px;
	height: 23px;
	color: #fff;
	line-height: 23px;
	background: url(/content/images/emailico.png) no-repeat 35% top;
}

.printPDF {
	display: block;
	margin-top: 20px;
	padding-right: 35px;
	height: 23px;
	color: #fff;
	border: hidden;
	border-style: hidden;
	background: url(/content/images/pdfBio.png) no-repeat 35% top;
	background-position-x: right;
	background-size: 25px 23px;
}

/* ===============  Footer  =============== */
.footer {
	background: #848484;
	color: #fff;
	padding-bottom: 30px;
}

.footerSocial {
	padding: 10px 0 30px;
}

.footerSocial ul {
	float: right;
	margin: 0;
	padding:0;
	list-style: none;
}

.footerSocial li {
	float: left;
	margin-right: 5px;
}

.footerSocial li a {
	display: block;
	width: 31px;
	height: 29px;
	text-indent: -9999em;
	background: url(/content/images/socialicons.gif) no-repeat;
}

.footerSocial .rss {
	background-position: 0 0;
}

.footerSocial .linkedn {
	background-position: -31px 0;
}

.footerSocial .twitter {
	background-position: -62px 0;
}

.footerSocial .facebook {
	background-position: -93px 0;
}

.footerSocial .a2a_kit {
	float: left;
	margin: 0 0 0 5px !important;
	padding-top: 6px;
}

.footerBottom ul {
	float: left;
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
	font-size: 0.7em;
}

.footerBottom li {
	border-bottom: 1px solid #fff;
	-webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.footerBottom a {
	display: block;
	padding: 2%;
	width: 96%;
	text-decoration: none;
	color: #fff;
}

.footerBottom a:hover,
.footerBottom a:focus,
.footerBottom a.on {
	color: #7cb085;
}

.footerBottom .copy {
	float: right;
	font-size: 0.7em;
	margin: 10px 0 0;
}


@media only screen and (min-width:48em) {
	.footerBottom ul {
		width: auto;
	}

	.footerBottom li:first-child {
		padding-left: 0;
		border-left: 0;
	}

	.footerBottom li {
		float: left;
		padding-left: 10px;
		margin-right: 10px;
		width: auto;
		border-left: 1px solid #fff;
		border-bottom: 0;
	}

	.footerBottom a {
		display: inline;
		padding: 0;
		width: auto;
		text-decoration: none;
		color: #fff;
	}

	.footerBottom .copy {
		float: right;
		font-size: 0.7em;
		margin: 0;
	}

	.footerSocial .a2a_kit {
		float: right;
		margin: 0 5px 0 0 !important;
	}
}


/* ==============================================================
						GLOBAL STYLES
============================================================== */


/* ===============  General  =============== */
body {
	font-family: arial, sans-serif;
	
}

a {
	color: #3b964b;
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	color: #9ba190;
	text-decoration: none;
	outline: 0;
}

a:active {
	outline: 0;
}

ul {
	margin: 0;
	padding: 0 0 1em 1.2em;
}

.contentWrap ul > li {
	padding: 0.5em 0;
}

.contentWrap ul.noSpace > li {
	padding: 0;
}

h6 {
	margin: 1.5em 0 0.8em;
}

.block {
	margin: 8px 0;
}

.alert {
	margin: 1em 0;
	padding: 10px;
	min-height: 50px;
	border: 1px solid #fe0000;
	overflow: hidden;
	color: #fff;
	background-color: #feff99;
}

.alert a {
	color: #fff;
}

.bdr {
	border: 1px solid #555244;
	padding: 1px;
	background-color: #a7a496;
}

.bdrtop {
	border-top: 1px solid #999;
}

.bdrright {
	border-right: 1px solid #999;
}

.bdrbottom {
	border-bottom: 1px solid #999;
}

.bdrleft {
	border-left: 1px solid #999;
}

.alternate {
	background-color: #f8f5e4;
}

.row {
	background-color: #fff;
}

.date {
	font-size: 0.8em;
	margin-bottom: 30px;
	color: #888;
}

.date a {
	color: #363a54;
}

.date a:hover,
.date a:focus {
	color: #7cb085;
}

.btn,
a.btn {
	padding: 10px 20px;
	text-decoration: none;
	color: #6f76a6;
	background: #fff;
	cursor: pointer;
	font-weight: bold;
	font-size: 1.973em;
	border: 3px solid #7d7d7d;
	text-transform: uppercase;
	-webkit-border-radius: 12px;
	   -moz-border-radius: 12px;
			border-radius: 12px;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
		 -o-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
			transition: all 0.3s ease;
}

.btn:hover {
	color: #6f76a6;
	-webkit-box-shadow: 0 0 5px rgba(50, 50, 50, 0.55);
	   -moz-box-shadow: 0 0 5px rgba(50, 50, 50, 0.55);
			box-shadow: 0 0 5px rgba(50, 50, 50, 0.55);
}

.btn:focus {
	color: #6f76a6;
}

.nextbtn {
	padding: 6px 20px 6px 12px;
	text-decoration: none;
	color: #fff;
	background: #6f76a6 url(/content/images/bg-arrow-next.png) right no-repeat;
	cursor: pointer;
	font-weight: bold;
	font-size: 0.975em;
	border: 3px solid #fff;
	text-transform: uppercase;
	float: right;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
}

.nextbtn:hover,
.nextbtn:focus {
	color: #fff;
}

.prevbtn,
a.prevbtn {
	padding: 6px 12px 6px 20px;
	text-decoration: none;
	color: #6f76a6;
	background: #fff url(/content/images/bg-arrow-prev.png) left no-repeat;
	cursor: pointer;
	font-weight: bold;
	font-size: 0.975em;
	border: 3px solid #7d7d7d;
	text-transform: uppercase;
	float: left;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
}

.prevbtn:hover,
.prevbtn:focus {
	color: #6f76a6;
}

.nextbtn:hover,
.nextbtn:focus,
.contentWrap a.nextbtn:hover,
.contentWrap a.nextbtn:focus {
	color: #fff;
}

.prevbtn:hover,
.prevbtn:focus,
.contentWrap a.prevbtn:hover,
.contentWrap a.prevbtn:focus {
	color: #6f76a6;
}

.smallbtn {
	padding: 8px 12px;
	text-decoration: none;
	color: #6f76a6;
	background: #fff;
	cursor: pointer;
	font-weight: bold;
	font-size: 0.975em;
	border: 3px solid #7d7d7d;
	text-transform: uppercase;
	float: left;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
}

.smallbtn:hover,
.smallbtn:focus {
	color: #6f76a6;
}

.altbtn {
	color: #fff;
	background: #6f76a6;
}

.altbtn:hover,
.altbtn:focus {
	color: #fff;
}

.btn.NF {
	float: none;
}

a.more {
	display: block;
	width: 90px;
	font-size: 0.8em;
	font-weight: bold;
	font-family: verdana, arial, sans-serif;
	color: #596195;
	text-transform: uppercase;
}

a.more:hover,
a.more:focus {
	color: #b5b47e;
}

/* ===============  Link Indicators  =============== */
a.indicator {
	color: #363a54;
	font-weight: bold;
	text-decoration: none;
}

.indicator span {
	display: inline-block;
	padding: 2px;
	width: 11px;
	height:11px;
	text-indent: -9999em;
	font-family: arial;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 0.8em;
}

.indicator.arrow span {
	background: url(/content/images/arrowicon.png) no-repeat;
}

.indicator.drop span {
	background: url(/content/images/showhide.png) no-repeat;
}

.indicator.drop span.active,
.indicator.drop.active span {
	background-position: 0 -15px;
}

a.more.indicator span {
	display: block;
	float: right;
	line-height: 1.7em;
	font-size: 0.6em;
}

a.indicator:hover {
	color: #9ba190;
}

.read-more {
	display: block;
	margin-top: 5px;
}

/* =================================================================
						MODULE STYLES
===================================================================*/

/* ===============  Mods Default  =============== */
.mod {
	float: right;
	clear: both;
	margin-top: 10px;
	width: 100%;
	max-width: 160px;
}

.rightRail .mod {
	font-size: 1.1em;
}

.modHdg {
	padding: 0.4em;
	background: #363a54;
	background:-webkit-linear-gradient(left, #363a54 0, #6f76a6 100%);
	background:   -moz-linear-gradient(left, #363a54 0, #6f76a6 100%);
	background:    -ms-linear-gradient(left, #363a54 0, #6f76a6 100%);
	background:     -o-linear-gradient(left, #363a54 0, #6f76a6 100%);
	background:		   linear-gradient(to right, #363a54 0, #6f76a6 100%);
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#363a54', endColorstr='#6f76a6',GradientType=1 );
}

.modHdg h3 {
	margin: 0;
	font-size: 0.8em;
	font-family: verdana, arial, sans-serif;
	font-weight: normal;
	color: #fff;
	text-transform: uppercase;
}

.modContent {
	padding: 0.4em;
	background:#d6d6d6;
}

.modContent a {
	display: block;
	line-height: 1.2em;
	color: #363a54;
	font-family: verdana, arial, sans-serif;
	font-size: 0.7em;
	font-weight: bold;
	text-transform: uppercase;
}

.modContent a:hover {
	color: #363a54;
}

.modContent a:link:hover {
	color: #7cb085;
}

.modImageInfo {
	padding: 10px 0;
	border-top: 1px solid #ccc;
	overflow: hidden;
}

.modImageInfo:first-child {
	border-top: 0;
}

.modImageInfo img {
	float: left;
	margin-right: 5px;
}

.modImageInfo a {
	font-weight: normal;
	text-transform: none;
}

.modImageInfo a:hover,
.modImageInfo a:focus {
	color: #7cb085;
}

.rightRail .modContent > a {
	font-size: 0.6em;
}

.leftRail .modContent > a {
	font-size: 0.5em;
	display: block;
	width: 85%;
}

.rightRail .modContent .modImageInfo img {
	max-width: 40px;
	height: auto;
}

.leftRail .modContent .modImageInfo img {
	max-width: 60px;
	height: 78px;
}

.hdng {
	margin: 0 0 10px;
	padding: 6px 10px;
	border-bottom: 1px dotted #c4bca8;
}

.hdng2 {
	margin: 0 0 8px;
	padding: 3px 10px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background-color: #666;
}

.hdngbox {
	margin: 0;
	padding: 3px 10px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background-color: #999;
}

/* ===============  Split Content Region Styles  =============== */
@media only screen and (min-width:42em) {
	.contentWrap > .grid_6 {
		display: inline-block;
		float: none;
		vertical-align: top;
		padding: 0;
		width: 48%;
		margin-right: 0;
	}

	.contentWrap > .grid_6:nth-child(even) {
		margin-right: 2%;
	}

	.lt-ie9 .contentWrap > .grid_6 {
		margin-right: 2%;
		width: 47%;
	}

	.lt-ie8 .contentWrap > .grid_6 {
		display: block;
		float: left;
		min-height: 140px;
	}

	.contentWrap > .grid_6 + .grid_6 + .gird_6 {
		margin-right: 2%;
	}

	.mainContent .grid_4 {
		padding: 0;
		width: 32%;
		margin-right: 1%;
	}
}

.splitContentHdg {
	margin-top: 10px;
	padding: 2px 5px;
	background: #ced1e2;
}

.splitContentHdg h3 {
	margin: 0;
	padding: 0;
	font-size: 1.2em;
	color: #2c3246;
}

.contentWrap .splitContentHdg h3 a {
	margin: 0;
	padding: 0;
	color: #2c3246;
	text-decoration: none;
}

.contentWrap .splitContentHdg h3 a:hover {
	color: #7cb085;
}

.splitContentHdg .indicator.arrow span {
	float: right;
	margin-top: 2px;
}

.splitContentBox {
	padding: 0 7px;
	font-size: 0.9em;
	color: #5a5a5a;
}

.lt-ie8 .splitContentBox {
	padding: 0;
}

.splitContentBox ul {
	margin: 10px 0;
	padding: 0;
	list-style: none;
}

.splitContentBox li {
	margin: 5px 0;
}

.splitContentBox li a {
	color: #353953;
}

.splitContentBox .contentDrop > li > a,
.splitContentBox .contentDrop > li > a.indicator {
	text-decoration: none;
	font-weight: bold;
	color: #363752;
}

.splitContentBox li a:hover,
.splitContentBox li a:focus {
	color: #7cb085;
}

.grid_6 .splitContentBox li {
	margin: 5px 0;
	padding: 0;
}

.grid_6 .splitContentBox li a {
	font-size: 1em;
	text-decoration: none;
}

.splitContentBox li li a {
	font-weight: normal;
	color: #596195 !important;
}

.splitContentBox li li a:hover {
	color: #7cb085 !important;
}

.splitContentBox .contentDrop li li {
	padding: 4px;
	font-size: 1em;
}

.splitContentBox .contentDrop a.drop + ul {
	margin-top: 0;
}

/* ===============  Site Search  =============== */
.siteSearch {
	float: right;
	-webkit-box-shadow: inset 0 12px 6px -6px #aaa;
			box-shadow: inset 0 12px 6px -6px #aaa;
}

.siteSearch input[type="text"] {
	float: left;
	padding: 4px 10px 3px;
	border: 0;
	font-size: 0.7em;
	text-transform: uppercase;
	background: transparent;
}

.siteSearch input[type="button"] {
	margin: 2px 5px;
	width: 13px;
	height: 13px;
	border: 0;
	text-indent: -9999em;
	background: url(/content/images/searchSubmit.png) no-repeat;
}

.siteSearch input[type="text"]:focus {
	outline: 0;
}

.siteSearch input[type="text"] {
	background: url(/content/images/sitesearchbg.gif) repeat-x;
}

/* ===============  Grey content box  =============== */
.greyBox {
	display: block;
	margin-top: 7px;
	background: #ddd;
	padding: 1em;
	border: 1px solid #333;
}

ul.greyBox {
	padding: 1em 2em;
}

/* ===============  Page Heading  =============== */
.pageHead {
	position: relative;
	float: left;
	padding: 2% 0 2% 1%;
	width: 99%;
	font-family: verdana, arial, sans-serif;
	line-height: 2.3em;
}

.pageHead p,
.pageHead h2.pageTitleSecondary {
	margin: 0;
	font-weight: normal;
	font-size: 2.7em;
	font-family: "Avenir LT W01 35 Light", verdana, arial, helvetica, sans-serif;
	color: #a39f89;
}

.DE .pageHead p {
	line-height: 1.1em;
}

.pageHead p span,
.pageHead h2.pageTitleSecondary span {
	font-weight: bold;
}

.pageHead h2.pageTitle {
	margin: 0;
	padding: 0;
	font-size: 1.3em;
	font-weight: normal;
	font-family: verdana, arial, sans-serif;
	color: #fff;
}

.oneCol .pageHead {
	padding: 0;
}

.twoCol .pageHead {
	padding: 2% 0 0 1%;
}

@media only screen and (max-width:32em) {
	.pageHead h2 {
		font-size: 2.4em;
	}
}

@media only screen and (min-width:61.5em) {
	.oneCol .pageHead,
	.threeCol .pageHead {
		width: 100%;
	}
}


/* ===============  Page Tools  =============== */
.pageTools {
	position: absolute;
	bottom: 0;
	right: 0;
}

.a2a_kit {
	float: right;
	margin: 10px 0 0;
}

.a2a_kit > span {
	display: block;
}

.a2a_kit > a {
	float: right;
}

.a2a_button_compact {
	clear: both;
}

.a2a_kit .pdfLink {
	display: block;
	float: right;
	width: 100px;
	margin-top: -35px;
	background: url(/content/images/pdfBio.png) right center no-repeat;
}

.a2a_kit .rssLink {
	float: right;
	margin-top: -9px;
}

.a2a_kit .rssLink a {
	margin-left: 7px;
}

.a2a_kit .pdfLink a,
.a2a_kit .rssLink a {
	text-transform: uppercase;
	padding-right: 25px;
	color: #fff;
	font-weight: normal;
}

.a2a_kit .rssLink a {
	display: block;
	font-size: 13px !important;
	height: 26px;
	background: url(/content/images/rss.png) no-repeat right bottom;
}

.a2a_kit a:hover,
.a2a_kit a:focus {
	color: #ccc;
}

.a2a_button_email {
	padding-right: 30px !important;
	background: url(/content/images/emailBio.png) no-repeat right -1px;
}

.a2a_button_email span {
	display: block;
	margin-top: -9px;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
}

.a2a_button_email .at15t_email {
	background: transparent !important;
}

.a2a_button_email .at_a11y {
	height: auto !important;
	width: auto !important;
	font-size: 13px;
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
	overflow: visible !important;
}

a.rssLink {
	display: block;
	float: right;
	padding-right: 26px;
	height: 26px;
	color: #fff;
	font-size: 13px !important;
	background: url(/content/images/rss.png) no-repeat right bottom;
}

a.rssLink:hover {
	color: #ccc;
}

/* ===============  Content Heading  =============== */
.contentHead {
	margin: 0;
	padding-bottom: 6px;
	border-bottom: 1px solid #959595;
	font-size: 1.5em;
	line-height: 1.1em;
	color: #3a3641;
}

/* ===============  Left Nav  =============== */
.leftRail .lnav {
	clear: both;
}

.lnav {
	margin: 15px 0;
	padding: 0;
	list-style-type: none;
}

.lnav a,
.lnav a:visited {
	display: block;
	float: right;
	clear: both;
	padding: 6px 0;
	max-width: 245px;
	font-family: verdana, arial, sans-serif;
	font-weight: normal;
	text-decoration: none;
	text-align: right;
	color: #3b964b;
}

.lnav a:hover,
.lnav a:focus,
.lnav a:active {
	text-decoration: none;
	background-color: none;
}

.lnav ul {
	clear: both;
	margin: 0;
	padding: 0 0 2px;
	list-style-type: none;
}

a.drop + ul {
	padding: 0 22px 0 0;
}

.lnav ul a,
.lnav ul a:visited,
.lnav ul span {
	display: block;
	padding: 5px 0;
	font-family: arial;
	font-size: 0.8em;
	color: #fff;
	text-decoration: none;
	text-align: right;
}

.lnav a.on {
	color: #7cb085 !important;
}

.lnav ul a:hover,
.lnav a:focus,
.lnav ul a:active {
	color: #7cb085;
}

.lnav > li > a.indicator.active {
	color: #9ba190;
}

.lnav > li > a.indicator:hover {
	color: #9ba190;
}

/* ===============  Home Callouts  =============== */
.homeBanner {
	clear: both;
	padding-top: 25px;
	font-size: 0.8em;
	line-height: 1.3em;
	color: #fff;
	overflow: hidden;
}

.homeBanner:first-child {
	padding-top: 0;
}

.homeBanner > a {
	display: block;
	clear: both;
	padding-top: 25px;
}

.homeBanner h3 {
	margin: 9px 0 3px 0;
	padding: 0;
	font-size: 1.3em;
}

.homeBanner h3 a {
	font-weight: normal;
}

.homeBanner p {
	margin-top: 0;
}

@media only screen and (min-width:25em) and (max-width:47.99em) {
	.homeBanner img {
		float: left;
		margin: 8px 10px 0 0;
	}

	.homeBanner > a {
		padding-top: 25px;
	}
}

@media only screen and (min-width:48em) and (max-width:55em) {
	.homeBanner img {
		width: 100%;
		height: auto;
	}

	.homeBanner > a {
		padding-top: 0;
	}
}

@media only screen and (min-width:48em) {
	.homeBanner > a {
		padding-top: 0;
	}
}

/* ===============  Twitter Component  =============== */
a.twitterAccount {
	display: block;
	float: left;
	width: 150px;
	font-size: 1.1em;
	line-height: 1em;
	color: #fff;
}

a.twitterAccount span {
	display: block;
	float: left;
	margin: 3px 15px 0 0;
	width: 31px;
	height: 29px;
	background: url(/content/images/socialicons.gif) no-repeat -62px 0;
}

.tweetPost {
	float: left;
	margin: 0;
	padding: 3% 0;
	width: 100%;
	font-size: 0.8em;
	color: #fff;
}

.twitLink {
	display: block;
}

@media only screen and (min-width:48em) {
	.tweetPost {
		padding: 0 3% 0 0;
		width: 33%;
	}
}

/* ===============  Interior Drop Downs  =============== */
.contentDrop,
.contentWrap .lnav {
	padding: 0;
	margin: 0;
	list-style: none;
}

.contentDrop,
.contentWrap .lnav a {
	display: block;
	margin: 10px 0;
	font-size: 1.1em;
	line-height: 1.1em;
	text-align: left;
}

.contentDrop,
.contentWrap .lnav a span {
	margin-top: -8px;
	margin-left: 5px;
	line-height: 1.6em;
}

.contentDrop,
.contentWrap .lnav a.drop + ul {
	padding: 8px 10px;
	list-style: none;
}

.contentDrop {
	padding: 8px 0;
	margin-left: 0;
}

.contentDrop li li {
	list-style: none;
	padding: 12px 0;
	font-size: 0.9em;
}

.contentDrop li li li {
	list-style: disc;
	padding: 4px 0;
}

.contentWrap .contentDrop li {
	padding: 0.2em 0;
}

.contentDrop > li > a.indicator {
	color: #596195;
}

.contentDrop > li > a.indicator:hover {
	color: #7cb085;
}

.contentWrap .lnav a {
	color: #596195;
	font-weight: bold
	margin: 0;
	padding: 0;
}

.contentWrap .lnav a.drop + ul {
	padding: 5px 0;
	list-style: none;
}

.contentWrap .lnav a span {
	line-height: 1em;
	margin-left: 5px;
}

.contentWrap .lnav li li a,
.contentWrap .lnav li li a:visited {
	margin: 0;
	padding: 7px 0;
	font-size: 0.9em;
	color: #393d54;
}

.contentWrap .lnav li li a:hover {
	color: #7cb085;
}

/* =============== Bold List of links =============== */
.boldList {
	margin: 0;
	padding: 0 15px 15px;
}

.boldList a {
	font-weight: bold;
	color: #596195;
	text-decoration: underline;
}

.boldList a:hover {
	color: #7cb085;
}

/* ===============  Search  =============== */
.searchBox input[type="text"],
.searchBox select {
	margin: 0 0 5px;
	padding: 5px;
	width: 100%;
	border-top: 2px solid #999;
	border-left: 2px solid #999;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-moz-box-sizing: border-box;
		 box-sizing: border-box;
}

.searchBox a {
	float: left;
	margin: 5px 25px 0 0;
}

.searchBox .submit,
.scfSubmitButton {
	float: right;
	margin: 0;
	padding: 5px 15px;
	color: #fff;
	background: #353953;
	border: 1px solid #353953;
}

.searchBox .submit:hover,
.searchBox .submit:focus,
.scfSubmitButton:hover,
.scfSubmitButton:focus {
	color: #9ba190;
}

.searchResults {
	clear: both;
	margin-top: 15px;
}

.searchResults table {
	width: 100%;
}

.searchResults thead {
	display: none;
}

.searchResults tr {
	display: block;
	padding: 10px 0 20px;
	border-bottom: 1px solid #ddd;
	overflow: hidden;
}

.searchResults th {
	padding: 1em;
	text-align: left;
	color: #764c4f;
}

/* Adding this to account for sorting options LinkButton */
.searchResults th a {
	padding: 0;
	text-align: left;
	color: #764c4f;
}

.searchResults th:first-child a {
	font-weight: bold;
}

.searchResults th:first-child {
	min-width: 150px;
}

.searchResults td {
	display: block;
	padding: 1em;
	vertical-align: top;
}

.searchResults ul {
	padding: 0;
	margin: 0 0 0 15px;
}

.searchResults ul > li {
	float: left;
	margin-right: 30px;
	color: #000;
	padding: 0 0 0.5em;
}

.searchResults td:first-child a {
	font-weight: bold;
}

.searchResults a {
	color: #49425f;
}

.searchResults h4 {
	margin-top: 0;
}

.toolTipImg {
	display: none;
	position: absolute;
	left: 120px;
	margin-top: -50px;
	width: 150px;
	height: auto;
	border: 7px solid #3c3943;
}

.consultantTip:after {
	opacity: 0;
	-webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.consultantTip:hover:after {
	content: "";
	position: absolute;
	left: 110px;
	border-right: 10px solid #3c3943;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	opacity: 1;
}

.consultantBioInfo h6 {
	margin: 1em 0 0;
}

.consultantBioInfo ul {
	padding: 0 15px;
}

.consultantBioInfo li {
	margin: 5px 0;
}

@media only screen and (min-width:48em) {
	.searchResults thead {
		display: table-header-group;
	}

	.searchResults tr {
		display: table-row;
	}

	.searchResults td {
		display: table-cell;
	}
}

/* ===============  Research and Insights/News  =============== */
.researchLanding h3 {
	margin: 10px 0 7px;
	font-size: 1.4em;
	color: #5a5a5a;
}

.researchLanding a {
	text-decoration: none;
	font-weight: normal;
}

.researchLanding a.indicator {
	font-weight: bold;
}

.leaderTopics ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.leaderTopics li {
	float: left;
	width: 115px;
	margin-right: 1px;
}

.leaderTopics li img {
	margin-bottom: 10px;
}

.lt-ie8 .leaderTopics li img {
	display: block;
}

.featuredResearch {
	margin: 20px 0;
	padding: 20px 10px 30px !important;
	border-top: 1px solid #353953;
	border-bottom: 1px solid #353953;
}

.featuredResearch h1 {
	font-family: "Avenir LT W01 35 Light", arial, helvetica, sans-serif;
	font-weight: normal;
	color: #556198;
}

.featuredResearch img {
	text-align: center;
	max-width: 100%;
	height: auto;
}

.featuredInfo {
	overflow: hidden;
	font-weight: bold;
}

.featuredInfo h1 {
	margin: 0 0 10px;
	font-family: verdana, arial, sans-serif;
	font-size: 2.5em;
	line-height: 1.1em;
}

.featuredInfo h1 a {
	font-weight: normal;
	text-decoration: none;
	color: #363A54;
}

.featuredInfo h1 a:hover,
.featuredInfo h1 a:focus {
	color: #7cb085;
}

.featuredInfo p {
	font-weight: normal;
}

@media only screen and (min-width:32em) {
	.researchLanding h3 {
		margin: 0 0 7px;
		font-size: 1.4em;
		color: #5a5a5a;
	}

	.featuredResearch img {
		float: left;
		margin: 8px 15px 0 0;
		width: auto;
	}
}

.recentArticlesWrap {
	padding: 0 2em;
}

.recentArticles ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.recentArticles li {
	float: left;
	width: 308px;
	text-align: center;
}

.recentArticles li a img {
	margin: 4px 0 0;
}

.recentArticles li h4 {
	margin-top: 0;
	font-size: 1.3em;
}

.recentArticles .articleItem {
	clear: both;
	color: #363a54;
}

.recentArticles .articleItem h4 {
	font-weight: normal;
	border: 0;
	line-height: 1em;
	color: #363a54;
	font-family: arial, sans-serif;
}

.recentArticles .articleItem h4 a {
	font-weight: normal;
	font-family: arial, helvetica, sans-serif;
	font-size: 0.95em;
	line-height: 1.3em;
	color: #353953;
}

.recentArticles .articleItem a:hover,
.recentArticles .articleItem a:focus {
	color: #7cb085;
}

.recentArticles li a:hover,
.recentArticles li a:focus {
	text-decoration: none;
	color: #515151;
}

.recentArticles li a:hover .articleItem,
.recentArticles li a:focus .articleItem {
	text-decoration: none;
	color: #515151;
}

.recentArticles li a:hover h4,
.recentArticles li a:focus h4 {
	color: #7cb085 !important;
}

.researchResults th:first-child,
.researchResults td:first-child {
	width: 100px;
	text-align: center;
	padding: 1em 0;
}

.researchResults th + th,
.researchResults td + td {
	width: 300px;
	padding: 1em 1.5em 1em 0;
}

.researchResults img {
	margin-top: 4px;
}

.researchResults h4 {
	margin-bottom: 0;
	border: 0;
	font-weight: bold;
	font-size: 1em;
}

.researchResults h4 a {
	font-weight: bold;
	color: #353953;
	font-size: 1em;
}

.researchResults h4 a:hover,
.researchResults h4 a:focus {
	color: #7cb085;
}

.researchResults h4 + p {
	margin-top: 0;
}

@media only screen and (min-width:28em) {
	.recentArticles li a img {
		float: left;
	}

	.recentArticles li {
		text-align: left;
	}

	.recentArticles .articleItem {
		clear: none;
		overflow: hidden;
		padding: 0 25px 0 15px;
	}
}

/* ===============  Consultants  =============== */
.consultantsLanding .focusText {
	margin-top: 40px;
}

.consultantsLanding a {
	text-decoration: none;
	font-weight: normal;
}

.intSlideHeading {
	margin: 0;
	font-family: verdana, arial, sans-serif;
	font-weight: normal;
	color: #3b964b;
	text-align: right;
	text-transform: uppercase;
}

.leftRail .intSlideHeading {
	font-size: 1em;
}

.consultantListing ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.consultantListing li {
	float: left;
	margin: 0 2px 2px 0;
}

.consultantListing li a {
	display: block;
	width: 33px;
	height: 33px;
	line-height: 2.7em;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	background: #9fa192;
	-webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.consultantListing li a:hover,
.consultantListing li a:focus,
.consultantListing li a.on {
	background: #353953;
}

.consultantSearch {
	clear: both;
}

@media only screen and (min-width:46em) and (max-width:65em) {
	.consultantListing li a {
		width: 32px;
		height: 32px;
	}
}

/* ===============  Paging  =============== */
.paging {
	padding-bottom: 25px;
	text-align: right;
}

.paging > span > a {
	padding: 5px;
	border: 1px solid #ccc;
	color: #fff;
	background: #49425f;
}

.paging > span > span {
	padding: 5px;
	border: 1px solid #ccc;
	color: #333;
	background: #9fa192;
}

.paging > span > div {
	margin: 0 0 10px;
}

/* ===============  Locations Map  =============== */

/* Basic Map Listing */
.locationsMapList {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #fff;
}

.locationsMapList h2 {
	padding: 0.3em;
	font-size: 1.2em;
	background: #ced1e2;
	cursor: pointer;
}

.locationsMapList h2.indicator span {
	float: right;
	margin-top: 7px;
}

.locationsMapList h2 a {
	color: #3a3641;
}

.locationsMapList li > a {
	color: #2c3246;
}

.locationsMapList ul {
	margin-top: 0;
	padding: 0 1%;
	list-style: none;
}

.locationsMapList ul > li:first-child h3 {
	padding-top: 0;
}

.locationsMapList li li {
	padding: 0 1%;
}

.locationsMapList h3 {
	margin: 0;
	padding-top: 1em;
	border-bottom: 2px solid #eee;
	cursor: pointer;
}

.locationsMapList h3.indicator span {
	float: right;
	margin-top: 4px;
}

.locationsMapList ul ul {
	margin-bottom: 0;
	list-style: none;
	overflow: hidden;
}

.locationsMapList h4 {
	margin-bottom: 0;
}

.locationsMapList p,
.locationsMapList dl {
	font-size: 0.8em;
}

.locationsMapList dt {
	float: left;
}

@media only screen and (min-width:25em) {
	.locationsMapList p,
	.locationsMapList dl {
		font-size: 0.8em;
		float: left;
		width: 50%;
	}

	.locationsMapList h4 {
		clear: both;
	}
}

@media only screen and (min-width:48em) {
	.locationsMapList li li li {
		float: left;
		padding: 0 2%;
		width: 46%;
		min-height: 180px;
	}
}

/* Full Sized Map */
.locationsMap {
	display: none;
}

.regionLinks {
	display: none;
}

@media only screen and (min-width:998px) {
	.lowResMapImg {
		position: absolute;
		z-index: 9999;
	}

	.mapLoader {
		position: absolute;
		z-index: 99999;
		left: 50%;
		top: 50%;
	}

	.locationsMap {
		display: block;
		position: relative;
		margin-top: 10px;
		width: 1004px;
		height: 579px;
	}

	#mapBackground {
		width: 1004px;
		height: 579px;
		position: absolute;
		z-index: 1;
		background-image: url(/content/images/worldmap.jpg);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		-webkit-transition: all 0.4s linear;
		   -moz-transition: all 0.4s linear;
			 -o-transition: all 0.4s linear;
				transition: all 0.4s linear;
	}

	.mapSwitch {
		width: 1004px;
		height: 579px;
		position: absolute;
		z-index: 1;
		background-image: url(/content/images/worldmap.jpg);
		background-repeat: no-repeat;
		background-size: 100% 100%;
		-webkit-transition: all 0.4s linear;
		   -moz-transition: all 0.4s linear;
			 -o-transition: all 0.4s linear;
				transition: all 0.4s linear;
	}

	.locationsMap.northAmerica .mapSwitch {
		background-image: url(/content/images/worldmap-northAmerica.jpg);
	}

	.locationsMap.southAmerica .mapSwitch {
		background-image: url(/content/images/worldmap-southAmerica.jpg);
	}

	.locationsMap.africa .mapSwitch {
		background-image: url(/content/images/worldmap-africa.jpg);
	}

	.locationsMap.middleEast .mapSwitch {
		background-image: url(/content/images/worldmap-middleEast.jpg);
	}

	.locationsMap.europe .mapSwitch {
		background-image: url(/content/images/worldmap-europe.jpg);
		background-repeat: no-repeat;
		background-size: 100% 100%;
	}

	.locationsMap.asiaPacific .mapSwitch {
		background-image: url(/content/images/worldmap-asiaPacific.jpg);
	}

	.no-js .locationsMap {
		display: none;
	}

	#hideMap {
		position: relative;
		z-index: 2;
		width: 1004px;
		height: 579px;
		overflow: hidden;
	}

	#worldMap {
		position: absolute;
		top: 0;
		z-index: 2;
	}

	#planetmap area.on {
		cursor: default;
	}

	#planetmap area:focus {
		outline: 0;
	}

	.locations-marker {
		display: block;
		position: absolute;
		width: 5px;
		height: 5px;
		background: #eee;
		-webkit-border-radius: 5px;
				border-radius: 5px;
		-webkit-transition: all 0.3s linear;
		   -moz-transition: all 0.3s linear;
			 -o-transition: all 0.3s linear;
				transition: all 0.3s linear;
	}

	.locations-marker .marker-bubble {
		display: none;
		margin: -137px 0 0 -275px;
		padding: 5px;
		width: 570px;
		min-height: 110px;
		background: #3c3943;
		position: relative;
		z-index: 99999;
	}

	.locations-marker .marker-bubble:after {
		content: "";
		position: absolute;
		top: 120px;
		left: 268px;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-top: 10px solid #3c3943;
		-webkit-transition: all 0.2s linear;
		   -moz-transition: all 0.2s linear;
			 -o-transition: all 0.2s linear;
				transition: all 0.2s linear;
	}

	.locations-marker:hover .marker-bubble,
	.locations-marker:focus .marker-bubble,
	.locations-marker.hover .marker-bubble {
		display: block;
		position: relative;
		z-index: 99998;
	}

	/* why? */
	.locations-marker.corporate {
		display: none;
	}

	.location-site.corporate {
		display: none;
	}

	.countryInfo .corporate {
		display: none;
	}

	.hideCountry {
		display: none;
	}

	.regionDiv .hideCountry {
		display: none;
	}

	.pointRegionWrap.hover .locations-marker,
	.locations-marker:hover,
	.locations-marker.hover {
		background: #b5b47c;
		-webkit-box-shadow: 0 0 4px #fff;
				box-shadow: 0 0 4px #fff;
	}

	.pointRegionWrap:hover .locations-marker:hover {
		background: #333;
	}

	.pointRegionWrap .hideCountry {
		display: none;
	}

	.pointContainer {
		position: absolute;
		z-index: 999;
	}

	.marker-bubble img {
		float: left;
		margin-right: 15px;
	}

	.marker-bubble .title {
		display: block;
		margin-bottom: 4px;
		font-size: 1em;
		color: #ada86d;
		text-decoration: none;
		text-transform: uppercase;
	}

	.marker-bubble .address {
		display: block;
		float: left;
		width: 240px;
		font-size: 0.7em;
		color: #a1b7c7;
	}

	.marker-bubble .contact {
		display: block;
		float: left;
		margin: 0;
		width: 150px;
		font-size: 0.7em;
		color: #a1b7c7;
	}

	.marker-bubble .contact dt {
		float: left;
	}

	.marker-bubble .contact dd {
		margin-left: 20px;
	}

	.mapSidebar {
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 579px;
		background: #3c3943;
		z-index: 99999;
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-transition: all 0.4s linear;
		   -moz-transition: all 0.4s linear;
			 -o-transition: all 0.4s linear;
				transition: all 0.4s linear;
	}

	.mapSidebar.active {
		width: 200px;
	}

	.regionDiv {
		display: none;
		width: 200px;
		padding-bottom: 5px;
	}

	.regionDiv.active {
		display: block;
	}

	.countryName {
		color: #3b964b;
		padding: 15px 20px 5px;
	}

	.countryInfo a {
		display: block;
		color: #fff;
		padding: 2px 20px;
		font-size: 0.8em;
	}

	.countryInfo a:hover {
		background: #848484;
	}

	.mapTopLinks {
		position: relative;
		z-index: 9;
	}

	.regionLinks {
		margin-top: 20px;
		display: block;
	}

	.regionLinks .topRegionName {
		margin-right: 15px;
		color: #ced1e1;
		text-transform: uppercase;
		font-size: 0.9em;
		cursor: pointer;
		-webkit-transition: all 0.2s linear;
		   -moz-transition: all 0.2s linear;
			 -o-transition: all 0.2s linear;
				transition: all 0.2s linear;
	}

	.regionLinks .topRegionName:hover,
	.regionLinks .topRegionName.hover {
		color: #353953;
	}

	.regionLinks .topRegionName.active {
		color: #fff;
		cursor: default;
	}

	.ie8Overflow {
		position: absolute;
		width: 1004px;
		height: 579px;
		overflow: hidden;
	}

	.ie8Img {
		position: absolute;
		top: 0;
		left: 0;
		width: 1004px;
		height: 579px;
		z-index: 1;
	}

	.mapBack {
		position: absolute;
		left: 210px;
		top: 10px;
		z-index: 9;
		padding: 10px 15px;
		background: #3c3943;
		font-size: 0.9em;
		border: 1px solid #3b964b;
	}

	.corporateDrop {
		position: absolute;
		top: -35px;
		right: 0;
		z-index: 999;
		height: 30px;
		background: #393d54;
		overflow: hidden;
		max-width: 200px;
		-webkit-transition: height 0.3s linear;
		   -moz-transition: height 0.3s linear;
			 -o-transition: height 0.3s linear;
				transition: height 0.3s linear;
	}
	.corporateDrop.open {
		height: 615px;
	}

	.corporateDrop > a {
		color: #fff;
		display: block;
		width: 96%;
		padding: 5px 5%;
		text-transform: uppercase;
		font-size: 0.9em;
		background: #848484;
	}

	.corporateLink span {
		float: right;
		margin: 2px 12px 0 0;
		-webkit-transition: all 0.3s linear;
		   -moz-transition: all 0.3s linear;
			 -o-transition: all 0.3s linear;
				transition: all 0.3s linear;
	}

	.corporateDrop.open .corporateLink span {
		-webkit-transform: rotate(90deg);
		   -moz-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
			 -o-transform: rotate(90deg);
		filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0.5);
	}

	.corporateDrop .corporateOffices {
		display: block !important;
	}

	.corporateOffices {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.corporateOffices li {
		margin: 7px 0;
	}

	.corporateOffices li a {
		display: block;
		padding: 10px;
		text-transform: uppercase;
		max-width: 200px;
		font-size: 0.9em;
	}

	.corporateOffices li a:hover,
	.corporateOffices li a:focus {
		background: #848484;
	}

	.corporateOffices li a span {
		display: block;
		padding: 10px;
		text-transform: none;
		color: #fff;
		font-size: 0.9em;
		line-height: 1.8em;
	}
}

/* ===============  Office  =============== */
.container .grid_6.gMap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 2px;
	height: 305px;
	overflow: hidden;
	float: right !important;
}

.gMap iframe,
.gMap object,
.gMap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.officeLocations .grid_6,
.officeLocations .grid_12 {
	padding: 0;
}

.officeLocations .consultants {
	margin: 10px 0 0;
	padding: 20px 0;
	border-top: 1px solid #999;
}

.officeLocations .consultants + .grid_12 {
	border-top: 1px solid #999;
	padding-top: 27px;
}

.officeLocations .grid_6:first-child {
	min-height: 308px;
}

.contentWrap .grid_6 > h4:first-child {
	margin-top: 0;
}

.officeLocations h4 {
	border: 0;
	font-size: 1.4em;
	margin: 0;
	font-family: arial, sans-serif;
	font-weight: bold;
}

.consultants a {
	color: #3c303d;
	text-decoration: none;
}

.consultants a:hover {
	color: #7cb085;
}

.lt-ie8 .consultants {
	padding: 20px 0 !important;
}

.lt-ie8 .consultants + .grid_12 {
	padding: 20px 0 !important;
}

.officeLocations .grid_12 .grid_6 {
	margin-top: 15px;
}

.officeLocations .grid_12 .grid_6 br {
	margin-bottom: 10px;
}

.officeLocations .grid_6:first-child a {
	text-decoration: underline;
	color: #596195;
}

.officeLocations .grid_6:first-child a:hover {
	color: #7cb085;
}

.officeLocations .grid_6:first-child a.indicator {
	text-decoration: none;
	color: #363a54;
	margin-top: 15px;
	position: absolute;
	bottom: 0;
}

.officeLocations .grid_6:first-child a.indicator:hover {
	color: #7cb085;
}

.officeLocations .grid_6:first-child h4 {
	color: #525355;
	font-size: 1em;
	font-weight: bold;
	margin-bottom: 0;
	margin-top: 20px;
}

.officeLocations .grid_6:first-child h4:first-child {
	border: 0;
	font-size: 1.6em;
	margin: 0 0 10px;
	font-family: arial, sans-serif;
}

/* ===============  Registration Form  =============== */
.scfForm {
	font-family: arial, sans-serif !important;
}

.scfForm [class*="grid_"] {
	padding: 0;
}

.scfSubmitSummary + span {
	display: block;
	margin-bottom: 15px;
}

/* Input/label top parent div */
.scfDropListBorder,
.scfEmailBorder,
.scfMultipleLineTextBorder,
.scfSingleLineTextBorder,
.scfPasswordBorder,
.scfNumberBorder,
.scfDatePickerBorder,
.scfDateBorder,
.scfRadioButtonListBorder,
.scfListBoxBorder,
.scfCheckBoxListBorder,
.scfFileUploadBorder,
.scfDateSelectorBorder,
.scfCreditCardBorder,
.scfConfirmPasswordBorder,
.scfCaptchaBorder,
.scfTelephoneBorder,
.scfSmsTelephoneBorder {
	overflow: hidden;
	position: relative !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Input surrounding divs */
.scfEmailGeneralPanel,
.scfMultipleLineGeneralPanel,
.scfSingleLineGeneralPanel,
.scfPasswordGeneralPanel,
.scfNumberGeneralPanel,
.scfDatePickerGeneralPanel,
.scfDateGeneralPanel,
.scfRadioButtonListGeneralPanel,
.scfCheckBoxListGeneralPanel,
.scfFileUploadGeneralPanel,
.scfDateSelectorGeneralPanel,
.scfCreditCardGeneralPanel,
.scfConfirmPasswordGeneralPanel,
.scfCaptchaGeneralPanel,
.scfTelephoneGeneralPanel,
.scfSmsTelephoneGeneralPanel,
.scfDropList,
.scfListBoxGeneralPanel,
.scfDropListGeneralPanel {
	width: 100% !important;
}

.scfFileUploadGeneralPanel {
	margin-bottom: 20px;
}

.scfForm .scfDatePickerBorder {
	overflow: visible;
}

/* Labels */
.scfForm label {
	display: none;
	height: 0;
}

.scfForm .scfCheckboxBorder {
	margin-bottom: 10px;
}

.scfForm .scfCheckBoxListGeneralPanel {
	float: none;
}

.scfForm .scfCheckbox {
	display: flex;
}

.scfForm .scfCheckbox label {
	display: block;
	margin-left: 10px;
	font-size: .7rem;
	font-weight: 700;
	color: inherit;
	height: auto;
}

.scfForm .scfSubmitButtonBorder {
	overflow: hidden;
}

.scfForm .scfRadioButtonListGeneralPanel label {
	visibility: visible;
	height: auto;
	display: inline;
}

.scfForm .scfDateSelectorLabel {
	width: 100% !important;
	margin-top: -25px;
}

.scfForm .scfDateSelectorShortLabelYear,
.scfForm .scfDateSelectorShortLabelMonth,
.scfForm .scfDateSelectorShortLabelDay {
	display: none;
}

.scfForm .scfFileUploadLabel,
.scfForm .scfCaptchaLabelText {
	position: relative;
	left: 0;
}

.scfRadioButtonListLabel {
	width: 100% !important;
}

.scfForm .ui-icon {
	top: 0 !important;
	margin-top: -20px;
	margin-bottom: 13px;
}

/* Input/Selects */
.scfForm input[type="text"],
.scfForm select,
.scfForm textarea {
	margin-bottom: 10px !important;
	padding: 1%;
	border-top: 2px solid #8a8a8a;
	border-left: 2px solid #8a8a8a;
	border-right: 0 solid #fff;
	border-bottom: 0 solid #fff;
	-webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
		 -o-transition: all 0.2s linear;
			transition: all 0.2s linear;
}

.scfForm input.formAlert[type="text"],
.scfForm select.formAlert,
.scfForm textarea.formAlert {
	border-top: 1px solid #f00;
	border-left: 1px solid #f00;
	border-right: 1px solid #900;
	border-bottom: 1px solid #900;
}

.scfRadioButtonList td {
	padding: 5px 0;
}

.scfRadioButtonList td input {
	margin-right: 5px;
}

::-webkit-input-placeholder {
	color: #333;
}

:-moz-placeholder {
	color: #333;
}

::-moz-placeholder {
	color: #333;
}

:-ms-input-placeholder {
	color: #999;
}

.scfForm input[type="text"].hasDatepicker {
	margin-bottom: 0 !important;
}

.scfForm select:focus,
.scfForm input[type="text"]:focus {
	outline: 0;
	border-top: 2px solid #363a54;
	border-left: 2px solid #363a54;
	border-right: 0 solid #fff;
	border-bottom: 0 solid #fff;
}

.scfValidationSummary {
	padding: 12px 0;
}

/*.scfForm .scfRequired,
.scfValidatorRequired {
	float: left !important;
	color: red !important;
	margin: -36px 0 0 1px !important;
}*/

.scfForm .scfRequired,
.scfValidatorRequired {
	display: none;
}

.scfFileUploadGeneralPanel + .scfRequired,
.scfFileUploadGeneralPanel + .scfValidatorRequired {
	margin-top: -53px !important;
}

.scfForm .scfCaptchStrongTextPanel .scfRequired {
	margin: 0;
}

/* Headings */
.scfForm .bold:first-child {
	padding-top: 0;
	margin-top: 0;
}

.scfForm .bold,
.scfForm fieldset .bold:first-child {
	display: block;
	margin: 10px 0;
	padding-top: 15px;
	clear: both;
}

.scfCaptchaLabel {
	height: 0;
}

.scfCaptchaGeneralPanel table {
	margin-top: 0 !important;
}
.scfCaptcha{
    clear:both;
}
#phcontentmain_2_phcontentright_0_phformwrapper_0_field_0D911CDD60C9438084F8ED5D4D1B2FD4_scope {
	margin-top: 10px !important;
}
.scfEmailUsefulInfo{
        font-size: 1rem !important;
    color: #4c4c4e !important;
}
@media only screen and (min-width:48em) {
	.scfForm .grid_6 {
		width: 50%;
	}

	.scfForm .grid_12 .grid_6:first-child {
		margin-right: 4%;
	}
}

/* =============== FORMS  =============== */
.reqKeyWrpr {
	position: absolute;
	right: 30px;
	top: 65px;
	color: #6f76a6;
	font-weight: bold;
}

label {
	color: #6f76a6;
	font-weight: bold;
	text-transform: uppercase;
	font-family: verdana, sans-serif;
	line-height: 2em;
}

/* ===============  Career Advice Listing  =============== */
.careerArticle {
	padding: 15px 0;
	border-bottom: 1px solid #939393;
	overflow: hidden;
}

.careerArticle:first-child {
	padding-top: 0;
}

.careerArticle img {
	float: left;
	margin: 4px 10px 0 0;
}

.careerArticle a {
	font-weight: bold;
	text-decoration: none;
}

.careerArticle p {
	margin: 0 0 2px;
	overflow: hidden;
}

/* ===============  Executive Team  =============== */
.executiveTeam {
	margin-top: 20px;
}

.executiveTeam h6 {
	clear: both;
	margin: 10px 0 7px;
}

.executiveTeam ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.executiveTeam li {
	width: 100%;
	margin-bottom: 15px;
}

.executiveTeam li a {
	display: block;
	font-weight: bold;
	color: #596195;
	text-decoration: underline;
}

@media only screen and (min-width:48em) {
	.executiveTeam li {
		width: 30%;
		margin-right: 3%;
		margin-bottom: 0;
		float: left;
		min-height: 80px;
	}
}

/* ===============  Site Search and Media Center  =============== */
.search-results-category:first-child {
	margin-top: 0;
}

.search-results-category {
	margin-top: 50px;
}

.search-results-category .link {
	float: left;
	font-family:FFScalaSansWebBold, Helvetica, Arial, sans-serif;
	font-size: 1.6em;
}

.search-results-category .link a {
	color: #3a3641;
	text-decoration: none;
}

.search-results-category .title {
	float: right;
	margin-top: 7px;
}

.search-results-category .title a {
	color: #3a3641;
	font-family:FFScalaSansWebBold, Helvetica, Arial, sans-serif;
	margin-left: 7px;
	text-decoration: none;
}

.search-results-category .title a:hover,
.search-results-category .title a:focus,
.search-results-category .link a:hover,
.search-results-category .link a:focus {
	color: #7cb085;
}

.search-results-hit {
	border-top: 1px solid #848484;
	clear: both;
	padding:.75em 0;
}

.search-results-hit a {
	color: #353953;
	font-family:FFScalaSansWebBold, Helvetica, Arial, sans-serif;
	font-size: 0.9em;
	text-decoration: none;
}

.search-results-hit a:hover,
.search-results-hit a:focus {
	color: #7cb085;
}

.mediaCenter h6 + .search-results-hit {
	border: 0;
}

.mediaCenter h6 {
	margin-bottom: 20px;
	clear: both;
}

.mediaCenter .player {
	height: 220px;
	margin: 10px 0 15px;
	padding: 0;
}

.mediaCenter .player img {
	max-width: 100%;
}

.mediaCenter .search-results-hit a {
	color: #373a53;
	text-decoration: none;
}

.mediaCenter .search-results-hit a:hover,
.mediaCenter .search-results-hit a:focus {
	color: #7cb085;
}

.mediaCenter .search-results-hit p {
	color: #4c4c4c;
}

.mediaCenter .playerText {
	margin-top: 22px;
}

.playerText strong {
	color: #000;
}

.mediaCenter .playerText h3 {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 1.8em;
	font-weight: normal;
	font-family: verdana, arial, sans-serif;
}

.mediaCenter .slidePlayVid {
	display: block;
	position: absolute;
	top: 145px;
	left: 30%;
	z-index: 900;
	width: 90px;
	height: 90px;
	visibility: visible !important;
}

.mediaCenter .playVid {
	display: block;
	visibility: visible !important;
	position: absolute;
	z-index: 900;
	width: 90px;
	height: 90px;
	background: url(/content/images/video_play_button.png) no-repeat;
	text-transform: uppercase;
	text-indent: 3px;
	color: #fff;
	font-size: 0.9em;
	line-height: 18em;
}

.playVid:hover,
.playVid:focus {
	background-position: -110px 0;
}


@media only screen and (min-width:48em) {
	.mediaCenter .slidePlayVid {
		top: 65px;
		left: 40%;
	}
}

/* ===============  Site Search and Media Center  =============== */
.siteMap {
	list-style: none;
	margin: 0;
	padding: 0;
}

.siteMap > li {
	margin-bottom: 10px;
}

.siteMap > li > a {
	display: block;
	margin-bottom: 7px;
	overflow: hidden;
	font-size: 1.7em;
	border-bottom: 1px solid #9c9c9c;
}

.siteMap > li a span.indicator {
	display: inline-block;
	margin-top: 8px;
	float: right;
}

.siteMap > li ul {
	list-style: none;
}

.siteMap > li ul li {
	padding: 5px 0;
}

.siteMap > li ul li a {
	text-decoration: none;
	color: #363a54;
}

.siteMap > li ul ul,
.siteMap > li ul ul ul {
	padding: 10px 25px;
}

/* =================================================================
						THIRD PARTY STYLES
===================================================================*/

/* ===============  IcoMoon  =============== */
@font-face {
	font-family:'icomoon';
	src:url('/content/fonts/icomoon.eot');
	src:url('/content/fonts/icomoon.eot?#iefix') format('embedded-opentype'),
	    url('/content/fonts/icomoon.woff') format('woff'),
	    url('/content/fonts/icomoon.ttf') format('truetype'),
	    url('/content/fonts/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

.icon-search,
.icon-play,
.icon-menu,
.icon-plus,
.icon-arrow-left,
.icon-arrow-right,
.flex-direction-nav .flex-next,
.flex-direction-nav .flex-prev,
.corporateLink span {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

.icon-search:before {
	content: "\3e";
}

.icon-play:before,
.corporateLink span:before {
	content: "\25b6";
}

.icon-menu:before {
	content: "\3d";
}

.icon-plus:before {
	content: "\2b";
}

.icon-arrow-left:before,
.flex-direction-nav .flex-prev:before {
	content: "\2190";
}

.icon-arrow-right:before,
.flex-direction-nav .flex-next:before {
	content: "\2192";
}

/*
* jQuery FlexSlider v2.0
* http://www.woothemes.com/flexslider/
*
* Copyright 2012 WooThemes
* Free to use under the GPLv2 license.
* http://www.gnu.org/licenses/gpl-2.0.html
*
* Contributing author: Tyler Smith (@mbmufffin)
*/

/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
	outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* FlexSlider Necessary Styles */
.flexslider {
	margin: 0;
	padding: 0;
}

.flexslider .slides > li {
	display: none;
	-webkit-backface-visibility: hidden;
} /* Hide the slides before the JS is loaded. Avoids image jumping */

.flexslider .slides img {
	width: 100%;
	display: block;
}

.flex-pauseplay span {
	text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

html[xmlns] .slides {
	display: block;
}

* html .slides {
	height: 1%;
}

/* No JavaScript Fallback */
.no-js .slides > li:first-child {
	display: block;
}


/* FlexSlider Default Theme
*********************************/
.flexslider {
	position: relative;
	margin: 0 0 60px;
	border: 4px solid #fff;
	background: #fff;
	zoom: 1;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
		 -o-border-radius: 4px;
			border-radius: 4px;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
		 -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
			box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
			transition: all 1s ease;
}

.loading .flex-viewport {
	max-height: 300px;
}

.flexslider .slides {
	zoom: 1;
}

.carousel li {
	margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
	*height: 0;
}

.flex-direction-nav a {
	display: block;
	position: absolute;
	top: 50%;
	z-index: 10;
	margin: -20px 0 0;
	width: 30px;
	height: 30px;
	font-size: 1.8em;
	/* background: url(images/bg_direction_nav.png) no-repeat 0 0; */
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
}

.flex-direction-nav .flex-next {
	background-position: 100% 0;
	right: -26px;
}

.flex-direction-nav .flex-prev {
	left: -18px;
}

.flexslider:hover .flex-next {
	opacity: 0.8;
	right: 5px;
}

.flexslider:hover .flex-prev {
	opacity: 0.8;
	left: 5px;
}

.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
	opacity: 1;
}

.flex-direction-nav .flex-disabled {
	opacity: 0.3 !important;
	filter: alpha(opacity=30);
	cursor: default;
}

/* Control Nav */
.flex-control-nav {
	width: 100%;
	position: absolute;
	bottom: -40px;
	text-align: center;
}

.flex-control-nav li {
	margin: 0 6px;
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.flex-control-paging li a {
	display: block;
	width: 11px;
	height: 11px;
	cursor: pointer;
	text-indent: -9999px;
	background: #666;
	background: rgba(0, 0, 0, 0.5);
	-webkit-border-radius: 20px;
	   -moz-border-radius: 20px;
		 -o-border-radius: 20px;
			border-radius: 20px;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
			box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
	background: #333;
	background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
	background: #000;
	background: rgba(0, 0, 0, 0.9);
	cursor: default;
}

.flex-control-thumbs {
	margin: 5px 0 0;
	position: static;
	overflow: hidden;
}

.flex-control-thumbs li {
	width: 25%;
	float: left;
	margin: 0;
}

.flex-control-thumbs img {
	width: 100%;
	display: block;
	opacity: 0.7;
	cursor: pointer;
}

.flex-control-thumbs img:hover {
	opacity: 1;
}

.flex-control-thumbs .flex-active {
	opacity: 1;
	cursor: default;
}

@media screen and (max-width: 860px) {
	.flex-direction-nav .flex-prev {
		opacity: 1;
		left: 0;
	}

	.flex-direction-nav .flex-next {
		opacity: 1;
		right: 0;
	}
	.hideCountry {
		display: none ;
	}
}

/* ===============  Colorbox  =============== */

/* Colorbox Core Style */
#colorbox,
#cboxOverlay,
#cboxWrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999999999;
	overflow: hidden;
}

#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
	clear: left;
}

#cboxContent {
	position: relative;
}

#cboxLoadedContent {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#cboxTitle {
	margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	cursor: pointer;
}

.cboxPhoto {
	display: block;
	float: left;
	margin: auto;
	max-width: none;
	border: 0;
	-ms-interpolation-mode: bicubic;
}

.cboxIframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
			box-sizing: content-box;
}

/*  User Style */
#cboxOverlay {
	background: #000;
}

#colorbox {
	outline: 0;
}

#cboxContent {
	margin-top: 20px;
	background: #000;
}

.cboxIframe {
	background: #fff;
}

#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}

#cboxLoadedContent {
	border: 5px solid #000;
	background: #fff;
}

#cboxTitle {
	position: absolute;
	top: -20px;
	left: 0;
	color: #ccc;
}

#cboxCurrent {
	position: absolute;
	top: -20px;
	right: 0;
	color: #ccc;
}

#cboxLoadingGraphic {
	background: url(/content/images/colorbox/loading.gif) no-repeat center center;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
	border: 0;
	padding: 0;
	margin: 0;
	overflow: visible;
	width: auto;
	background: none;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
	outline: 0;
}

#cboxSlideshow {
	position: absolute;
	top: -20px;
	right: 90px;
	color: #fff;
}

#cboxPrevious {
	position: absolute;
	top: 50%;
	left: 5px;
	margin-top: -32px;
	width: 28px;
	height: 65px;
	text-indent: -9999px;
	background: url(/content/images/colorbox/controls.png) no-repeat top left;
}

#cboxPrevious:hover {
	background-position: bottom left;
}

#cboxNext {
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -32px;
	width: 28px;
	height: 65px;
	text-indent: -9999px;
	background: url(/content/images/colorbox/controls.png) no-repeat top right;
}

#cboxNext:hover {
	background-position: bottom right;
}

#cboxClose {
	display: block;
	position: absolute;
	top: 5px;
	right: 5px;
	width: 38px;
	height: 19px;
	text-indent: -9999px;
	background: url(/content/images/colorbox/controls.png) no-repeat top center;
}

#cboxClose:hover {
	background-position: bottom center;
}


/* =================================================================
							PRINT STYLES
===================================================================*/

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	/*a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	} */

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}

	.topLinks {
		display: none;
	}

	.header .grid_3 {
		width: 100%;
	}

	.header .grid_9 {
		display: none;
	}

	.logo a {
		text-indent: 0;
		text-decoration: none;
		font-size: 1.1em;
		line-height: 1em;
		width: 100%;
	}

	.focalLinks {
		display: none;
	}

	.leftRail {
		display: none;
	}

	.footerBottom ul {
		display: none;
	}
}

/* =================================================================
					MISC/NON-CRITICAL/TEMPLATES
=================================================================== */
.divRegion {
	padding: 10px;
	margin: 5px 0;
	border: 3px dashed darkred;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 4px #111;
}

/* Custom SSI CSS Changes */
@media only screen and (max-device-width: 480px), only screen and (max-width: 480px) {
	.mainContent .contentWrap .grid_6 {
		float: none !important;
		width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.mainContent .contentWrap .ss_lastitem {
		margin: 0 !important;
		padding: 0 !important;
	}

	.mainContent .contentWrap .ss_2colcollapse {
		padding-bottom: 0 !important;
	}

	.mainContent .contentWrap .ss_mobilespace {
		padding-bottom: 15px !important;
	}
}

.mainContent .contentWrap .ss_firstpar {
	margin-top: 1.5em;
}

.mainContent .contentWrap .ss_lastitem {
	padding-bottom: 1em;
}

.mainContent .contentWrap .ss_introbullets {
	margin: 1.5em 0;
	padding: 0 0 0 1.2em;
}

.mainContent .contentWrap .ss_fullsizebullet1 {
	font-size: 1em;
}

.mainContent .contentWrap .noSpace li {
	padding-top: 0;
	padding-bottom: 0;
}

/* =================================================================
							RegSteps
=================================================================== */
.reqKeyWrpr {
	top: 52px;
}

table.regTable {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

table.regTable td {
	vertical-align: top;
	border-collapse: collapse;
	border-spacing: 0;
}

table.regTable.cols2 tr td:first-child {
	width: 33%;
	height: 28px;
	padding-left: 0;
}

Xtable.regTable.cols2 td:nth-child(2n+0) {
	width: 66%;
}

table.regTable.cols3 td {
	width: 33%;
}

table.condense {
	width: auto;
	margin: 0 auto;
}

table.regTable .typeahead {
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
}

.regTable td select {
	height: 29px;
	line-height: 20px;
}

.regTable td input[type="text"] {
	height: 19px;
	line-height: normal !important;
	border-color: #d0d0d0 !important;
}

.regTable td input.req {
	color: #222;
	border-color: red !important;
}

.regTable td label {
	color: #5A5A5A;
	font-weight: normal;
	text-transform: capitalize;
}

.createAcnt td label {
	color: #6f76a6;
	font-weight: bold;
	text-transform: uppercase;
}

h4.blockheading {
	margin-bottom: 20px;
}

.halfcolumn {
	float: left;
	width: 45%;
	min-width: 300px;
	border-top: none;
	padding-top: 0%;
	margin-top: 0%;
}

.halfcolumn + .halfcolumn + .halfcolumn:before {
	content: '-';
	text-indent: -999em;
	display: block;
	border-top: 1px solid #9B9B9B;
	margin-top: 20px;
	width: 94%;
}

.section > .halfcolumn:nth-of-type(odd) {
	border: none;
	padding-left: 0;
	clear: left;
}

.section > .halfcolumn:nth-of-type(even) {
	border-left: 1px solid #9B9B9B;
	padding-left: 3%;
	margin-left: 3%;
}

.section > .subsection {
	padding-top: 3px;
}

.section > .subsection > .halfcolumn:nth-of-type(odd) {
	border: none;
	padding-left: 0;
}

.section > .subsection > .halfcolumn:nth-of-type(even) {
	border-left: 1px solid #9B9B9B;
	padding-left: 3%;
	margin-left: 3%;
}

.section .halfcolumn.noBrdr {
	border: none;
	padding-left: 0;
	clear: left;
}

.section > .subsection > .halfcolumn.noBrdr {
	border: none;
	padding-left: 0;
	clear: left;
}

.section .halfcolumn.Brdr {
	border-left: 1px solid #9B9B9B;
	padding-left: 3%;
	margin-left: 3%;
}

.section .halfcolumn.BrdrTop {
	border-top: 1px solid #9B9B9B;
	padding-top: 20px;
}

.section > .subsection > .halfcolumn.BrdrTop {
	border-top: 1px solid #9B9B9B;
	padding-top: 20px;
}

.section .halfcolumn.colPadTop {
	margin-top: 28px;
}

.icon-icon-register:before {
	content: "\e602";
	font-size: 3em;
}

.icon-icon-profile:before {
	content: "\e603";
	font-size: 2.65em;
}

.icon-icon-jobhistory:before {
	content: "\e604";
	font-size: 2.55em;
}

.icon-icon-education:before {
	content: "\e606";
	font-size: 2.25em;
}

.icon-icon-resume:before {
	content: "\e601";
	font-size: 3em;
}

.icon-icon-disk:before {
	content: "\e608";
	font-size: 2.25em;
}

.icon-icon-notification:before {
	content: "\e609";
	font-size: 1.6em;
}

.icon-icon-remove:before {
	content: "Remove this item";
	font-size: 2.25em;
}

.icon-key {
	color: gold;
	float: left;
}

.lt-ie8 .icon-key {
	display: table-cell;
	float: none;
}

.icon-key:before {
	content: "\e60a";
	color: gold;
	font-family: 'icomoon';
	font-size: 1em;
	padding: 3px 8px 0 0;
	display: block;
	float: left;
	text-shadow: 1px 1px 1px rgba(150, 150, 150, 1);
}

.icon-icon-key img,
a#phheader_0_lnkMemberLink img {
	display: none;
}

.lt-ie9 .icon-icon-register:before {
	content: "\e602";
	font-size: 2.20em;
}

.lt-ie9 .icon-icon-profile:before {
	content: "\e603";
	font-size: 2.05em;
}

.lt-ie9 .icon-icon-jobhistory:before {
	content: "\e604";
	font-size: 1.95em;
}

.lt-ie9 .icon-icon-education:before {
	content: "\e606";
	font-size: 1.65em;
}

.lt-ie9 .icon-icon-resume:before {
	content: "\e601";
	font-size: 2.10em;
}

.icon-remove {
	border: none;
	background: #fff url(/content/images/bg-trash.png) 94% 3px no-repeat;
	cursor: pointer;
	font-size: 1.05em;
	padding: 6px 30px 6px 10px;
	position: absolute;
	font-family: sans-serif;
	border: 3px solid #fff;
	text-decoration: none;
	color: #6f76a6;
	cursor: pointer;
	font-weight: bold;
	font-size: 0.975em;
	border: 3px solid #7d7d7d;
	text-transform: uppercase;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

.icon-remove:hover {
	-webkit-box-shadow: 0 0 5px rgba(50, 50, 50, 0.55);
	   -moz-box-shadow: 0 0 5px rgba(50, 50, 50, 0.55);
			box-shadow: 0 0 5px rgba(50, 50, 50, 0.55);
}

.btn-clear {
	border: none;
	background: #fff;
	cursor: pointer;
	font-size: 1.05em;
	padding: 1px 4px;
	position: absolute;
	font-family: sans-serif;
	border: 3px solid #fff;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

.icon-remove.altsm {
	font-size: 1.60em;
	padding: 0 4px;
	position: absolute;
	left: 515px;
}

.icon-remove.altrem {
	left: 93px;
	position: relative;
}

.icon-remove.altremB {
	left: 550px;
	position: relative;
}

.icon-remove.altComp {
	left: 173px;
	position: relative;
}

.icon-icon-resume.large {
	color: #6F75A8;
	font-size: 5em;
	float: left;
}

.icon-icon-right-arrow:before {
	content: "\e600";
}

.icon-right-arrow {
	color: #363955;
	font-size: 12em;
	float: left;
	margin-top: 23px;
}

.RegSteps {
	height: 60px;
	width: 369px;
	overflow: hidden;
	top: -18px;
	right: 9px;
	float: right;
	width: 100%;
}

.RegSteps ul {
	float: right;
	width: auto;
	list-style-type: none;
}

.RegSteps .icon {
	color: #C8C8C8;
	background: #DBDBDB;
	width: 60px;
	height: 43px;
	display: table-cell;
	text-align: center;
	margin-left: 10px;
	padding-left: 0.5em;
	padding-top: 0.5em;
	cursor: default;
	vertical-align: middle;
	border-left: 1em solid #EDEDED;
}

.RegSteps .icon.active {
	color: #fff;
	background: #6F75A8;
}

.RegSteps .icon .rsTitle {
	position: absolute;
	top: 0;
	margin-left: -11px;
	background: #3C3F5D;
	color: #fff;
	padding: 2px 3px;
	text-align: left;
	width: 65px;
	display: block;
	font-family: verdana, sans-serif;
	text-transform: uppercase;
	font-size: 0.801em;
}

/* 16px baseline (256px)  */
@media only screen and (min-width:16em) and (max-width:29.99em) {
	.RegSteps .icon {
		width: 40px;
		height: 23px;
	}

	.regTable td,
	.regTable.cols2 td + td {
		float: left;
		display: block;
		width: 100% !important;
	}

	.regTable td input {
		width: 90% !important;
	}

	.regTable td select {
		width: 93% !important;
	}

	.regTable td input.btn-clear {
		width: auto !important;
	}

	.container {
		min-width: 420px;
	}

	.halfcolumn:nth-child(2n),
	.halfcolumn + .halfcolumn {
		border-left: none !important;
		padding-left: 0 !important;
		width: 100%;
		border-top: 1px solid #9B9B9B !important;
		padding-top: 3% !important;
		margin-top: 2% !important;
		margin-left: 0% !important;
	}

	.halfcolumn + .halfcolumn + .halfcolumn:before {
		display: none;
	}

	.accountHeading h4 {
		padding-right: 52px !important;
	}

	.icon-remove.altrem,
	.icon-remove.altComp {
		left: 5px;
		position: relative;
	}

	.tdHide {
		display: none !important;
	}
}

/* 16px baseline (420px+) */
@media only screen and (min-width:30em) and (max-width:47.99em) {
	.RegSteps .icon {
		width: 45px;
		height: 28px;
	}

	.regTable td,
	.regTable.cols2 td + td {
		float: left;
		display: block;
		width: 100% !important;
	}

	.halfcolumn:nth-child(2n),
	.halfcolumn + .halfcolumn {
		border-left: none !important;
		padding-left: 0 !important;
		width: 100%;
		border-top: 1px solid #9B9B9B !important;
		padding-top: 3% !important;
		margin-top: 2% !important;
	}

	.halfcolumn + .halfcolumn + .halfcolumn:before {
		display: none;
	}

	.accountHeading h4 {
		padding-right: 70px !important;
	}

	.tdHide {
		display: none !important;
	}
}

/* 16px baseline (768px+) */
@media only screen and (min-width:48em) {
	.RegSteps .icon {
		width: 50px;
		height: 33px;
	}

	.regTable td {
		float: none;
		width: auto;
		display: table-cell;
	}

	.regTable td input {
		width: auto;
	}
}

/* 16px baseline (768px - 959px) */
@media only screen and (min-width:48em) and (max-width:59.99em) {
	.RegSteps .icon {
		width: 55px;
		height: 38px;
	}

	.regTable td {
		float: none;
		width: auto;
		display: table-cell;
	}

	.regTable td input {
		width: auto;
	}

	X.regTable td input {
		width: 240px !important;
	}

	X.regTable td select {
		width: 250px !important;
	}
}

/* 16px baseline (1140px)  */
@media only screen and (min-width:61.5em) {
	.RegSteps .icon {
		width: 60px;
		height: 43px;
	}

	.regTable td {
		float: none;
		width: auto;
		display: table-cell;
	}

	.regTable td input {
		width: auto;
	}

	X.regTable td input {
		width: 240px !important;
	}

	X.regTable td select {
		width: 250px !important;
	}
}

table.recaptchatable td {
	float: none;
	width: auto;
	display: table-cell;
}

/* =================================================================
						MEMBERS LANDING
=================================================================== */
.mainContent.membersFullW {
	width: 100%;
	padding: 2% 0;
}

.membersFullW .contentWrap.grid_12 {
	padding: 10px 0;
}

.membersFullW .contentWrap.grid_12 .membersFullWpad {
	margin: 10px 15px;
}

.membersFullW .contentWrap.grid_12 .logoutlink {
	margin: 10px 15px;
}

.logoutlink {
	position: absolute;
	top: 0;
	right: 4px;
	text-transform: uppercase;
	text-decoration: none;
}

.memberLanding {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
	min-width: 320px;
	width: 100%;
}

.accountHeading {
	list-style-type: none;
	margin-left: 0;
	position: relative;
	background: rgb(246, 246, 246);
	background: #ededed;
	background: -webkit-linear-gradient(90deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
	background:    -moz-linear-gradient(90deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
	background: 	 -o-linear-gradient(90deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
	background: 	-ms-linear-gradient(90deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
	background: 		linear-gradient(180deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);

}

.accountHeading h4 {
	color: #fff;
	background: #6F75A8;
	padding: 10px 15px;
	margin-top: 0;
	border-top: 1px solid #5A5A5A;
	border-bottom: 1px solid #5A5A5A;
}

.memberLanding .section {
	margin: 20px 20px 0 20px;
	padding-bottom: 20px;
}

.accountHeading .iconWrpr {
	float: none;
	width: auto;
	height: 33px;
	position: absolute;
	top: 8px;
	right: 4px;
	text-align: right;
}

.accountHeading .icon {
	color: #fff;
	font-size: 0.75em;
	display: block;
	height: 30px;
	float: left;
	margin-top: 3px;
	width: 33px;
	text-align: right;
}

.accountHeading .iconWrpr input.smallbtn {
	padding: 6px 20px 6px 12px;
	text-decoration: none;
	background: #fff url(/content/images/bg-arrow-next-p.png) right no-repeat;
	cursor: pointer;
	float: left;
	margin: 0 0 0 7px;
}

.accountHeading .dlbtn {
	float: none;
	margin: 0 auto;
	display: block;
}

.generalAlert {
	list-style-type: none;
	margin-left: 0;
	position: relative;
	background: rgb(246, 246, 246);
	background: -webkit-linear-gradient(90deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
	background:    -moz-linear-gradient(90deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
	background: 	 -o-linear-gradient(90deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
	background: 	-ms-linear-gradient(90deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
	background: 		linear-gradient(180deg, rgb(246, 246, 246) 20%, rgb(207, 207, 207) 80%);
}

.generalAlert h5 {
	color: #fff;
	background: #E00000;
	padding: 10px;
	margin-top: 0;
	border-top: 1px solid #5A5A5A;
	border-bottom: 1px solid #5A5A5A;
}

.generalAlert h5 .genAlertDetails {
	color: #fff;
	background: #E00000;
	padding: 0;
	margin-top: 0;
	border-top: 0 solid #5A5A5A;
	border-bottom: 0 solid #5A5A5A;
}

.generalAlert h5 .genAlertDetails a {
	color: #fff;
}

.icon-show-hide {
	float:left;
	font-size:1.55em;
	font-weight:bold;
	color:#fff;
	cursor:pointer;
	padding:0;
	width:25px;
	height:25px;
	text-align:center;
	margin-top: 2px;
	margin-right:15px;
	background: #3c3f5d; /* old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjEwMCUiIHkyPSIwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjM2MzZjVkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzc5N2ZiMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(45deg, #3c3f5d 0%, #797fb0 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#3c3f5d), color-stop(100%,#797fb0)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(45deg, #3c3f5d 0%,#797fb0 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(45deg, #3c3f5d 0%,#797fb0 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(45deg, #3c3f5d 0%,#797fb0 100%); /* IE10+ */
	background: linear-gradient(45deg, #3c3f5d 0%,#797fb0 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c3f5d', endColorstr='#797fb0',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}

.ie9 .icon-show-hide {
	filter: none;
}

.lt-ie9 .icon-show-hide {
	filter: none;
	background: url(/content/images/bg-showhide.gif) no-repeat;
	height: 28px;
	width: 28px;
}

.icon-show-hide {
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
		 -o-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
			transition: all 0.3s ease;
}

.icon-show-hide:hover {
	color: #6f76a6;
	-webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.55);
	   -moz-box-shadow: 0 0 5px rgba(255, 255, 255, 0.55);
			box-shadow: 0 0 5px rgba(255, 255, 255, 0.55);
}

.icon-show-hide b {
	color: #fff;
	background: transparent;
	line-height: 15px;
	-webkit-transition: none;
	   -moz-transition: none;
		 -o-transition: none;
		-ms-transition: none;
			transition: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

/* =================================================================
							LANGUAGES
=================================================================== */

/* Japanese */
.JP,
.JP h1,
.JP h2,
.JP h3,
.JP h4,
.JP h5,
.JP .mainNav .sf-menu a,
.JP .lnav a,
.JP .lnav a:visited,
.JP a.more,
.JP .modContent a,
.JP .pageHead h2.pageTitle {
	font-family: "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

/*
.JP .megaMenu .sf-menu a,
.JP .focalLinks,
.JP .pageTools span,
.JP .modHdg h3,
.JP .regionLinks span,
.JP .corporateLink,
.JP .location-region > a,
.mainContent.ja-jp,
.JP .pageHead p,
.JP .pageHead h2 {
	font-family: "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}*/

/* BOOTSTRAP TEST */
.dropup,
.dropdown {
	position: relative;
}

.dropdown-toggle {
	*margin-bottom: -3px;
}

.dropdown-toggle:active,
.open .dropdown-toggle {
	outline: 0;
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	vertical-align: top;
	border-top: 4px solid #000;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: "";
}

.dropdown .caret {
	margin-top: 8px;
	margin-left: 2px;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	list-style: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	*border-right-width: 2px;
	*border-bottom-width: 2px;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
			box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	-webkit-background-clip: padding-box;
	   -moz-background-clip: padding;
			background-clip: padding-box;
}

.dropdown-menu.pull-right {
	right: 0;
	left: auto;
}

.dropdown-menu .divider {
	*width: 100%;
	height: 1px;
	margin: 9px 1px;
	*margin: -5px 0 5px;
	overflow: hidden;
	background-color: #e5e5e5;
	border-bottom: 1px solid #fff;
}

.dropdown-menu > li > a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: normal;
	line-height: 20px;
	color: #333;
	white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
	color: #fff;
	text-decoration: none;
	background-color: #596195;
	background-image: -moz-linear-gradient(top, #596195, #6f76a6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#596195), to(#6f76a6));
	background-image: -webkit-linear-gradient(top, #596195, #6f76a6);
	background-image: -o-linear-gradient(top, #596195, #6f76a6);
	background-image: linear-gradient(to bottom, #596195, #6f76a6);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff596195', endColorstr='#6f76a6', GradientType=0);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	color: #353953;
	text-decoration: none;
	background-color: #6F75A8;
	background-image: -moz-linear-gradient(top, #596195, #6f76a6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#596195), to(#6f76a6));
	background-image: -webkit-linear-gradient(top, #596195, #6f76a6);
	background-image: -o-linear-gradient(top, #596195, #6f76a6);
	background-image: linear-gradient(to bottom, #596195, #6f76a6);
	background-repeat: repeat-x;
	outline: 0;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff596195', endColorstr='#6f76a6', GradientType=0);
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	color: #999;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
	text-decoration: none;
	cursor: default;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.open {
	*z-index: 1000;
}

.open > .dropdown-menu {
	display: block;
}

.dropdown-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 990;
}

.pull-right > .dropdown-menu {
	right: 0;
	left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
	border-top: 0;
	border-bottom: 4px solid #000;
	content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 1px;
}

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu > .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	   -moz-border-radius: 0 6px 6px 6px;
			border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
	display: block;
}

.dropup .dropdown-submenu > .dropdown-menu {
	top: auto;
	bottom: 0;
	margin-top: 0;
	margin-bottom: -2px;
	-webkit-border-radius: 5px 5px 5px 0;
	   -moz-border-radius: 5px 5px 5px 0;
			border-radius: 5px 5px 5px 0;
}

.dropdown-submenu > a:after {
	display: block;
	float: right;
	width: 0;
	height: 0;
	margin-top: 5px;
	margin-right: -10px;
	border-color: transparent;
	border-left-color: #ccc;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	content: " ";
}

.dropdown-submenu:hover > a:after {
	border-left-color: #fff;
}

.dropdown-submenu.pull-left {
	float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	   -moz-border-radius: 6px 0 6px 6px;
			border-radius: 6px 0 6px 6px;
}

.dropdown .dropdown-menu .nav-header {
	padding-right: 20px;
	padding-left: 20px;
}

.typeahead {
	z-index: 1051;
	margin-top: 2px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
}

select {
	-webkit-appearance: menulist !important;
}

select[multiple] {
	-webkit-appearance: none !important;
}

select[multiple] + .droparrow {
	display: none;
}

.droparrow {
	background: url(/content/images/droparrow.gif) no-repeat right center;
	width: 17px;
	height: 19px;
	position: absolute;
	z-index: 1;
	margin: 4px 0 0 -19px;
	pointer-events: none;
}

/* =================================================================
						HOME SLIDESHOW STYLES
===================================================================*/

/* general slideshow styles */
.cycle-slideshow,
.cycle-slideshow * {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

.cycle-slideshow {
	position: relative;
	margin: 0 auto 10px;
	padding: 0;
	height: 464px;
	min-width: 200px;
	overflow: hidden;
}

.cycle-slideshow.homeSlide {
	height: 464px;
}

.cycle-slide {
	width: 100%;
}

.cycle-slideshow img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
}

.cycle-slideshow img:first-child {
	position: static;
	z-index: 100;
}

.no-js .cycle-slideshow.homeSlide {
	overflow-y: scroll;
}

.no-js .cycle-slideshow.homeSlide > div {
	position: relative;
}

/* pager styles */
.cycle-pager {
	position: absolute;
	top: 10px;
	z-index: 500;
	width: 40px;
	text-align: center;
	z-index: 9999;
}

.cycle-pager span {
	display: inline-block;
	width: 16px;
	height: 16px;
	font-size: 50px;
	color: #ddd;
	cursor: pointer;
}

.cycle-pager span.cycle-pager-active {
	color: #d69746;
}

.cycle-pager > * {
	cursor: pointer;
}

.cycle-pager a {
	display: block;
	float: none;
	margin: 0 0 5px 10px;
	width: 20px;
	height: 20px;
	font-weight: normal;
	color: #000;
	font-size: 0.9em;
	background: url(/content/images/slidenav.png) no-repeat 0 -20px;
}

.cycle-pager a:hover {
	text-decoration: none;
	color: #fff;
	background-position: 0 0;
}

.cycle-pager .cycle-pager-active a,
a.cycle-pager-active {
	color: #fff;
	background-position: 0 0;
}

/* caption */
.cycle-caption {
	position: absolute;
	bottom: 4px;
	right: 4px;
	z-index: 700;
	color: white;
}

/* overlay styles */
.cycle-overlay {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 600;
	margin: 0;
	width: 100%;
	text-align: left;
	overflow: hidden;
	-webkit-transition: all 0.2s;
	   -moz-transition: all 0.2s;
		 -o-transition: all 0.2s;
			transition: all 0.2s;
}

.overlayContent {
	background: transparent url(/content/images/slide_overlay.png) repeat-x;
}

.cycle-overlay img {
	display: none;
	margin: 0 15px;
	position: relative;
	width: auto;
}

.cycle-overlay h2 {
	margin: 0 15px;
	padding: 0;
	font-weight: normal;
}

.cycle-overlay h2 a {
	font-size: 40px;
	font-weight: normal;
	font-family: "Avenir LT W01 35 Light", arial, helvetica, sans-serif;
	color: #556198;
}

.cycle-overlay p {
	padding: 1em 15px;
	margin: 0;
	font-family: "Avenir LT W01 35 Light", arial, helvetica, sans-serif;
}

.cycle-overlay a {
	font-size: 1.2em;
}

.cycle-overlay a:hover,
.cycle-overlay a:focus {
	color: #7cb085;
}

.leftRail .cycle-overlay {
	color: #fff;
	font-size: 0.9em;
}

.leftRail .cycle-overlay a {
	color: #fff;
	font-size: 1.1em;
}

.leftRail .cycle-overlay a:hover,
.leftRail .cycle-overlay a:focus {
	color: #7cb085;
}

.slideLinks {
	list-style: none;
	margin: 0;
	padding: 10px 20px;
}

.slideLinks a {
	font-size: 0.8em;
	font-weight: bold;
	color: #363a54;
}

@media only screen and (min-width:48em) {
	.overlayContent {
		height: 464px;
	}

	.cycle-overlay {
		width: 260px;
		top: 0;
		right: 30px;
	}

	.cycle-overlay img {
		display: block;
	}
}

.cycle-slide-active .slidePlayVid {
	display: block;
	position: absolute;
	top: 45px;
	left: 30%;
	z-index: 900;
	width: 90px;
	height: 90px;
	visibility: visible !important;
}

.cycle-slide-active .playVid {
	display: block;
	position: absolute;
	z-index: 900;
	width: 90px;
	height: 90px;
	background: url(/content/images/video_play_button.png) no-repeat;
	visibility: visible !important;
	color: #fff;
	line-height: 14em;
	text-transform: uppercase;
	text-indent: 3px;
	font-size: 0.9em;
}

.playVid:hover,
.playVid:focus {
	background-position: -110px 0;
}

@media only screen and (min-width:48em) {
	.cycle-slide-active .slidePlayVid {
		top: 100px;
		left: 35%;
	}
}

@media only screen and (min-width:61.5em) {
	.cycle-slide-active .slidePlayVid {
		top: 180px;
		left: 30%;
	}
}

/* =================================================================
					INTERIOR SLIDESHOW STYLES
===================================================================*/
.consultantSlide {
	overflow: hidden;
}

.consultantSlide .cycle-slideshow,
.leftRail .cycle-slideshow {
	height: auto;
}

.consultantSlide .cycle-overlay,
.leftRail .cycle-overlay {
	position: relative;
	right: 0;
	margin-top: 5px;
	padding: 0;
	width: auto;
	text-align: right;
	background: transparent;
}

.consultantSlide .cycle-pager,
.leftRail .cycle-pager {
	position: relative;
	width: 100%;
	text-align: right;
	padding: 0 0 7px;
}

.consultantSlide .cycle-pager a,
.leftRail .cycle-pager a {
	display:inline-block;
	margin: 0 0 10px 10px;
	width: 15px;
	height: 15px;
	background: url(/content/images/intslidenav.png) no-repeat 0 -15px;
}

.consultantSlide .cycle-pager a.cycle-pager-active,
.leftRail .cycle-pager a.cycle-pager-active {
	background-position: 0 0;
}

.consultantSlide .cycle-overlay a {
	color: #5A5A5A;
}

.consultantSlide .cycle-overlay a:hover {
	color: #7cb085;
}

@media only screen and (min-width:28em) {
	.consultantSlide .cycle-slideshow,
	.leftRail .cycle-slideshow {
		float: right;
	}
}

@media only screen and (min-width:61.5em) {
	.cycle-overlay {
		position: absolute;
		top: 0;
		right: 30px;
		bottom: 0;
		left: auto;
		z-index: 600;
	}

	.consultantSlide .cycle-overlay,
	.leftRail .cycle-overlay {
		right: 0;
	}

	.consultantSlide .cycle-slideshow,
	.leftRail .cycle-slideshow {
		min-width: 308px;
	}
}

/*================================================================
				SUPERFISH MENU ESSENTIAL STYLES
================================================================*/

/* Make sure to use specificity below rather than changing these styles*/
.sf-menu,
.sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sf-menu {
	line-height: 1.0;
}

.sf-menu ul {
	position: absolute;
	top: 57px;
	width: 14em; /* left offset of submenus need to match (see below) */
}

.sf-menu ul li {
	width: 100%;
}

.sf-menu li {
	float: left;
}

.sf-menu li:hover {
	visibility: inherit; /* fixes IE7 'sticky bug' */
}

.sf-menu a {
	display: block;
	position: relative;
}

.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left: 0;
	top: 33px; /* match top ul list item height */
	z-index: 99;
}

.sf-menu li:hover li ul,
.sf-menu li.sfHover li ul {
	top: 57px;
}

.sf-menu li li:hover ul,
.sf-menu li li.sfHover ul {
	left: 14em; /* match ul width */
	top: 0;
}

.sf-menu li li:hover li ul,
.sf-menu li li.sfHover li ul {
	top: 57px;
}

.sf-menu li li li:hover ul,
.sf-menu li li li.sfHover ul {
	left: 14em; /* match ul width */
	top: 0;
}

/* shadows for all but IE6 */
.sf-shadow ul {
	background: url(/cms/images/layout/menu/shadow.png) no-repeat bottom right;
	padding: 0 9px 9px 0;
}

.sf-shadow .sf-shadow-off {
	background: transparent;
}

/* arrows */
.sf-menu a.sf-with-ul {
	padding-right: 2.25em;
	min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}

.sf-sub-indicator {
	display: block;
	position: absolute;
	right: 0.75em;
	top: 0.8em;
	width: 10px;
	height: 10px;
	text-indent: -999em;
	overflow: hidden;
	background: url(/cms/images/arrows-ffffff.png) no-repeat 0 -100px;
}

a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px;
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator {
	background-position: -10px 0;
}

.sf-menu ul a > .sf-sub-indicator {
	background-position: 0 0;
}

/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers */
}


/*================================================================
						MAIN MENU SKIN
================================================================*/
.mainNav {
	position: relative;
	z-index: 99999999;
	font-size: 0.8em;
	clear: both;
}

.mainNav ul {
	margin: 0;
	padding: 0;
}

.icon-menu {
	display: block;
	float: right;
	font-size: 1.8em;
	padding: 30px 0 2%;
	margin: -95px 5% 0 0;
}

/* Temporary clearfix since we don't actually have a clearfix on sf-menu ( ONLY USE IF SWITCHING TO FLOATS ) */
.mainNav .sf-menu:before,
.mainNav .sf-menu:after {
	content: "";
	display: table;
}

.mainNav .sf-menu:after {
	clear: both;
}

.mainNav .sf-menu {
	zoom: 1;
}

/* Main Tier */
.mainNav .sf-menu {
	display: none;
	float: right;
	width: 100%;
	background: #333;
	-webkit-transition: padding 0.2s linear;
	   -moz-transition: padding 0.2s linear;
		 -o-transition: padding 0.2s linear;
			transition: padding 0.2s linear;
}
.mainNav .sf-menu li {
	float: none;
	-webkit-transition: padding 0.2s linear;
	   -moz-transition: padding 0.2s linear;
		 -o-transition: padding 0.2s linear;
			transition: padding 0.2s linear;
}

.mainNav .sf-menu a {
	display: block;
	padding: 10px 5%;
	font-family: verdana, arial, sans-serif;
	font-size: 1em;
	color: #fff;
	text-transform: uppercase;
	text-align: right;
}

.mainNav .sf-menu a.on,
.mainNav .sf-menu a:hover,
.mainNav .sf-menu a:focus,
.mainNav .sf-menu a:active {
	color: #9ba190;
	text-decoration: none;
}

.mainNav .sf-menu li span {
	display: block;
	float: right;
	margin: -2px 0 0 5px;
	padding: 5px;
	width: 15px;
	height: 10px;
	font-family: arial;
	font-weight: bold;
	text-align: center;
	text-indent: -99999em;
	color: #fff;
	line-height: 11px;
	background: url(/content/images/navdrop.png) no-repeat 5px 0;
}

.mainNav .sf-menu li span.open {
	background-position: 5px -20px;
}

.mainNav .sf-menu li li span {
	margin: -25px 5% 0 0;
}

/* Sub Tier */
.mainNav .sf-menu li .subMenu {
	position: relative;
}

.mainNav .sf-menu li:hover .subMenu > ul,
.mainNav .sf-menu li.sfHover .subMenu > ul {
	top: 60px;
}

.mainNav .sf-menu li ul {
	min-width: 100%;
}

.mainNav .sf-menu li li {
	border-top: 1px solid #999;
}

.mainNav .sf-menu li li:first-child {
	border-top: 0;
}

.mainNav .sf-menu li li a {
	padding: 10px;
	height: auto;
	color: #fff;
	text-decoration: none;
}

/* Sub Sub Tier */
.js .mainNav .sf-menu li li ul {
	display: none;
	visibility: hidden;
}

.mainNav .sf-menu li li:hover > ul,
.mainNav .sf-menu li li.sfHover > ul {
	top: 0;
	left: 100%;
}

.mainNav .sf-menu li li.sfHover > a,
.mainNav .sf-menu li li a:hover,
.mainNav .sf-menu li li a:focus,
.mainNav .sf-menu li li a:active {
	color: #828488;
}

.mainNav .sf-menu li > a:active {
	background: transparent !important;
}

/* last Nav Item Adjustments */
.mainNav .sf-menu .lastnavitemli .subMenu > ul {
	left: auto;
	right: 0;
}

.mainNav .sf-menu .lastnavitemli li:hover > ul,
.mainNav .sf-menu .lastnavitemli li.sfHover > ul {
	left: auto;
	right: 100%;
}

/* ------- Mega Menu adjustments ----------- */
.megaMenu .sf-menu > li > a {
	display: table;
	margin: 5px 0;
	padding: 2%;
	width: 96%;
	height: auto;
	background: transparent;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	-webkit-transition: background 0.33s ease-in, color 0.3s linear;
	   -moz-transition: background 0.33s ease-in, color 0.3s linear;
		 -o-transition: background 0.33s ease-in, color 0.3s linear;
			transition: background 0.33s ease-in, color 0.3s linear;
}
.megaMenu .sf-menu > li > a .menuText {
	display: table-cell;
	padding: 10px;
	height: 40px;
	vertical-align: middle;
	text-align: center;
}

.megaMenu .sf-menu li .subNav {
	display: none;
	left: 0;
	padding: 0 2%;
	margin-top: 7px;
	min-width: 0;
	width: 96%;
	z-index: 999999;
	overflow: hidden;
}

.megaMenu .sf-menu li ul {
	position: static;
	width: 100%;
	min-width: 100%;
}

.megaMenu .sf-menu li ul:first-child {
	width: 100%;
	min-width: 100%;
	border-left: 0;
}

.megaMenu .sf-menu li ul ul {
	display: none;
	visibility: visible !important;
	min-width: 100%;
	width: auto;
	margin: 10px 0;
}

.megaMenu .sf-menu li ul:first-child ul {
	border-left: 0;
}

.megaMenu .sf-menu li li {
	float: left;
	border: 0;
	margin: 0 1%;
	width: 100%;
}

.megaMenu .sf-menu li li a {
	padding: 5px 6.1em 5px 10px;
	text-align: right;
	text-transform: none;
	font-size: 0.9em;
	font-weight: bold;
	font-family: arial, sans-serif;
}

.megaMenu .sf-menu li li strong {
	display: block;
	padding: 10px 6.2em 10px 0;
	text-align: right;
	font-family: verdana, arial, sans-serif;
	color: #3b964b;
	font-size: 0.9em;
}

.megaMenu .sf-menu li li li {
	float: none;
	border: 0;
	margin: 0;
	width: 100%;
}

.megaMenu .sf-menu li li li a {
	border-bottom: 0;
}

@media only screen and (min-width:42em) {
	.icon-menu {
		display: none;
	}

	.mainNav {
		margin: 0;
		clear: none;
	}

	.mainNav .sf-menu li.first,
	.mainNav .sf-menu li.first + li,
	.mainNav .sf-menu li.first + li + li,
	.mainNav .sf-menu li.splitBefore {
		border-bottom: 1px solid #959595;
	}

	.megaMenu .sf-menu li li span {
		display: none;
	}

	.megaMenu .sf-menu li ul {
		width: 29%;
		min-width: 29%;
		margin-right: 1%;
		float: left;
	}

	.megaMenu .sf-menu li ul:first-child {
		width: 35%;
		min-width: 35%;
	}

	.megaMenu .sf-menu li ul ul {
		border-left: 1px solid #fff;
		display: block !important;
		margin: 0;
	}

	.mainNav .sf-menu {
		display: inline-block;
		margin-top: 8px;
		background: transparent;
	}

	.mainNav .sf-menu a {
		text-align: center;
		padding: 0 0 10px;
	}

	.megaMenu .sf-menu > li > a {
		margin: 5px 0;
		padding: 5px;
		width: 100%;
	}

	.megaMenu .sf-menu li .subNav {
		position: absolute;
		top: 65px;
		background: #9ba190;
		padding: 2%;
	}

	.megaMenu .sf-menu li:hover .subNav,
	.megaMenu .sf-menu li.sfHover .subNav {
		top: 65px;
	}

	.mainNav .sf-menu > li {
		float: left;
		clear: none;
		width: 25%;
	}

	.megaMenu .sf-menu li li strong,
	.megaMenu .sf-menu li li a {
		text-align: left;
	}

	.megaMenu .sf-menu li li strong {
		color: #393d54;
		padding: 5px 10px;
	}

	.megaMenu .sf-menu li li a {
		padding: 5px 10px;
		line-height: 1.3em;
	}

	.mainNav .sf-menu li.sfHover > a {
		background: #9ba190;
		color: #fff;
	}
}

@media only screen and (min-width:61.5em) {
	.mainNav .sf-menu {
		width: 95%;
	}

	.mainNav .sf-menu > li.first,
	.mainNav .sf-menu > li.splitAfter {
		width: 22%;
		clear: both;
		margin-left: 3%;
	}

	.megaMenu .sf-menu > li > a {
		text-align: left;
	}

	.mainNav .sf-menu li a span {
		margin: -4px 6px 0 0;
		display: inline-block;
		float: none;
	}
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset "UTF-8";
@import url("https://use.typekit.net/msd5jro.css");
@charset "UTF-8";
@import url("//hello.myfonts.net/count/306b51");
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

.bxslider {
  margin: 0;
  padding: 0;
}

ul.bxslider {
  list-style: none;
}

.bx-viewport {
  -webkit-transform: translatez(0);
}

.bx-wrapper {
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(images/bx_loader.gif) center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0.85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000;
}

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}

.bx-wrapper .bx-prev {
  left: 10px;
  background: url(images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url(images/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: 0.85em;
  padding: 10px;
}
/*# sourceMappingURL=vendor-generated.css.map */

@charset "UTF-8";
@import url("https://use.typekit.net/msd5jro.css");
@charset "UTF-8";
@import url("//hello.myfonts.net/count/306b51");



html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  font-family: sans-serif; -webkit-text-size-adjust: 100%; -moz-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  vertical-align: baseline; display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.6666666667em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  height: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  box-sizing: content-box;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0; color: inherit; font: inherit; }

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button; cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; padding: 0; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  box-sizing: content-box; box-sizing: content-box;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield; }

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0; border: 0; }

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  content: "";
  display: table;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  zoom: 1;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-state-disabled {
  cursor: default !important;
}

.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
}

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  padding: 0.5em 0.5em 0.5em 0.7em;
  zoom: 1;
}

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-noicons {
  padding-left: 0.7em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
  zoom: 1;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

* html .ui-autocomplete {
  width: 1px;
} .ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  margin-right: 0.1em;
  cursor: pointer;
  text-align: center;
  zoom: 1;
  overflow: visible;
} .ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2.2em;
} button.ui-button-icon-only {
  width: 2.4em;
} .ui-button-icons-only {
  width: 3.4em;
}

button.ui-button-icons-only {
  width: 3.7em;
}

.ui-button .ui-button-text {
  display: block;
  line-height: 1.4;
}

.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}

input.ui-button {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
  left: 0.5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}

.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}

.ui-buttonset {
  margin-right: 7px;
}

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}

button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
} .ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0em;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker-cover {
  position: absolute; z-index: -1; -webkit-filter: mask(); filter: mask(); top: -4px; left: -4px; width: 200px; height: 200px; }

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  width: 300px;
  overflow: hidden;
  z-index: 100;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 16px 0.1em 0;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 19px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 18px;
}

.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
  margin-left: -9px;
}

.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
  padding: 0;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
  zoom: 1;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: 0.5em 0 0 0;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none;
}

.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  zoom: 1;
  width: 100%;
}

.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  zoom: 1;
  font-weight: normal;
}

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
}

.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: 0.4em 0 0.2em;
  line-height: 1.5;
}

.ui-menu .ui-state-disabled a {
  cursor: default;
}

.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}

.ui-menu .ui-icon {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}

.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px;
}

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
} .ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
} .ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-spinner .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-tabs {
  position: relative;
  padding: 0.2em;
  zoom: 1;
} .ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav li a {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  cursor: text;
}

.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  cursor: pointer;
} .ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
}

* html .ui-tooltip {
  background-image: none;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
}

.ui-widget-content {
  height: auto;
  border: 1px solid #aaaaaa;
  background: #ffffff url(/content/images/ui/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
  color: #222222;
}

.ui-widget-content a {
  color: #222222;
}

.ui-widget-header {
  border: 1px solid #aaaaaa;
  background: #6F75A8 url(/content/images/ui/ui-bg_flat_100_6F75A8_40x100.png) 50% 50% repeat-x;
  color: #ffffff;
  font-weight: bold;
}

.ui-widget-header a {
  color: #222222;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #e6e6e6 url(/content/images/ui/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #555555;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
  color: #555555;
  text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
  border: 1px solid #999999;
  background: #dadada url(/content/images/ui/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border: 1px solid #aaaaaa;
  background: #ffffff url(/content/images/ui/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee url(/content/images/ui/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
  color: #363636;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url(/content/images/ui/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
  color: #cd0a0a;
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
} .ui-icon {
  width: 16px;
  height: 16px;
  background-image: url(/content/images/ui/ui-icons_222222_256x240.png);
}

.ui-widget-content .ui-icon {
  background-image: url(/content/images/ui/ui-icons_222222_256x240.png);
}

.ui-widget-header .ui-icon {
  background-image: url(/content/images/ui/ui-icons_222222_256x240.png);
}

.ui-state-default .ui-icon {
  background-image: url(/content/images/ui/ui-icons_888888_256x240.png);
}

.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
  background-image: url(/content/images/ui/ui-icons_454545_256x240.png);
}

.ui-state-active .ui-icon {
  background-image: url(/content/images/ui/ui-icons_454545_256x240.png);
}

.ui-state-highlight .ui-icon {
  background-image: url(/content/images/ui/ui-icons_2e83ff_256x240.png);
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url(/content/images/ui/ui-icons_cd0a0a_256x240.png);
}

.ui-icon-carat-1-n {
  background-position: 0 0;
}

.ui-icon-carat-1-ne {
  background-position: -16px 0;
}

.ui-icon-carat-1-e {
  background-position: -32px 0;
}

.ui-icon-carat-1-se {
  background-position: -48px 0;
}

.ui-icon-carat-1-s {
  background-position: -64px 0;
}

.ui-icon-carat-1-sw {
  background-position: -80px 0;
}

.ui-icon-carat-1-w {
  background-position: -96px 0;
}

.ui-icon-carat-1-nw {
  background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 4px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 4px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 4px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 4px;
}

.ui-widget-overlay {
  position: fixed;
  background: #aaaaaa url(/content/images/ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(/content/images/ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
  border-radius: 8px;
}

.ui-dialog .ui-dialog-buttonpane button {
  padding: 4px 12px;
  text-decoration: none;
  color: #6f76a6;
  background: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.675em;
  border: 3px solid #7d7d7d;
  border-radius: 6px;
  text-transform: uppercase;
  float: left;
}

.ui-dialog .ui-dialog-buttonpane button:hover {
  color: #6f76a6;
  -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.55);
  box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.55);
}

.site-width__constraint, .country-offices, .hero-banner__inner-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.site-width__constraint::after, .country-offices::after, .hero-banner__inner-wrapper::after {
  display: table;
  clear: both;
  content: "";
}

@media (max-width: 1059.98px) {
  .site-width__has-gutter, .country-offices, .hero-banner__inner-wrapper {
    max-width: 1060px;
    padding-right: 3%;
    padding-left: 3%;
  }
}

.article-container {
  padding-right: 9%;
  padding-left: 9%;
}
@media screen and (max-width: 800px) {
  .article-container {
    padding-right: 0;
    padding-left: 0;
  }
}

.sgrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.sgrid > * {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sgrid--spaced {
  margin-left: -8px;
}
.sgrid--spaced > * {
  min-width: calc(10% - 8px);
  margin-left: 8px;
}
.sgrid--spaced-wide {
  margin-left: -32px;
}
.sgrid--spaced-wide > * {
  min-width: calc(10% - 32px);
  margin-left: 32px;
}
.sgrid--spaced-extra-wide {
  margin-left: -48px;
}
.sgrid--spaced-extra-wide > * {
  min-width: calc(10% - 48px);
  margin-left: 48px;
}
.sgrid--inset {
  padding-right: 16px;
  padding-left: 16px;
}
@media (max-width: 599.98px) {
  .sgrid--inset-mobile {
    padding-right: 16px;
    padding-left: 16px;
  }
  .site-width__has-gutter .sgrid--inset-mobile, .country-offices .sgrid--inset-mobile, .hero-banner__inner-wrapper .sgrid--inset-mobile {
    padding: 0;
  }
}
.sgrid > .column-10 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 10%;
}
.sgrid--spaced > .column-10 {
  min-width: calc(10% - 8px);
}
.sgrid--spaced-wide > .column-10 {
  min-width: calc(10% - 32px);
}
.sgrid--spaced-wide > .column-10 {
  min-width: calc(10% - 48px);
}
@media (max-width: 599.98px) {
  .sgrid > .column-10, .sgrid--spaced > .column-10, .sgrid--spaced-wide > .column-10 {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
  }
}
.sgrid > .column-25 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 25%;
}
.sgrid--spaced > .column-25 {
  min-width: calc(25% - 8px);
}
.sgrid--spaced-wide > .column-25 {
  min-width: calc(25% - 32px);
}
.sgrid--spaced-wide > .column-25 {
  min-width: calc(25% - 48px);
}
@media (max-width: 599.98px) {
  .sgrid > .column-25, .sgrid--spaced > .column-25, .sgrid--spaced-wide > .column-25 {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
  }
}
.sgrid > .column-33, .sgrid.practice-detail-callout__copy > div:nth-last-child(3):first-child, .sgrid.practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 33.33%;
}
.sgrid--spaced > .column-33, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(3):first-child, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div {
  min-width: calc(33.33% - 8px);
}
.sgrid--spaced-wide > .column-33, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(3):first-child, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div {
  min-width: calc(33.33% - 32px);
}
.sgrid--spaced-wide > .column-33, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(3):first-child, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div {
  min-width: calc(33.33% - 48px);
}
@media (max-width: 599.98px) {
  .sgrid > .column-33, .sgrid.practice-detail-callout__copy > div:nth-last-child(3):first-child, .sgrid.practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div, .sgrid--spaced > .column-33, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(3):first-child, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div, .sgrid--spaced-wide > .column-33, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(3):first-child, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
  }
}
.sgrid > .column-50, .sgrid.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 50%;
}
.sgrid--spaced > .column-50, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div {
  min-width: calc(50% - 8px);
}
.sgrid--spaced-wide > .column-50, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div {
  min-width: calc(50% - 32px);
}
.sgrid--spaced-wide > .column-50, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div {
  min-width: calc(50% - 48px);
}
@media (max-width: 767.98px) {
  .sgrid > .column-50, .sgrid.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div, .sgrid--spaced > .column-50, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: auto;
    min-width: auto;
    max-width: auto;
  }
  .sgrid--spaced-wide > .column-50, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div {
    width: calc(100% - 32px);
    min-width: calc(100% - 32px);
  }
  .sgrid--spaced-wide > .column-50, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div {
    width: calc(100% - 64px);
    min-width: calc(100% - 64px);
  }
}
@media (max-width: 599.98px) {
  .sgrid > .column-50, .sgrid.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div, .sgrid--spaced > .column-50, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid--spaced.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div, .sgrid--spaced-wide > .column-50, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child, .sgrid--spaced-wide.practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
  }
}
.sgrid > .column-66 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 66.66%;
}
.sgrid--spaced > .column-66 {
  min-width: calc(66.66% - 8px);
}
.sgrid--spaced-wide > .column-66 {
  min-width: calc(66.66% - 32px);
}
.sgrid--spaced-wide > .column-66 {
  min-width: calc(66.66% - 48px);
}
@media (max-width: 599.98px) {
  .sgrid > .column-66, .sgrid--spaced > .column-66, .sgrid--spaced-wide > .column-66 {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
  }
}
.sgrid > .column-75 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 75%;
}
.sgrid--spaced > .column-75 {
  min-width: calc(75% - 8px);
}
.sgrid--spaced-wide > .column-75 {
  min-width: calc(75% - 32px);
}
.sgrid--spaced-wide > .column-75 {
  min-width: calc(75% - 48px);
}
@media (max-width: 599.98px) {
  .sgrid > .column-75, .sgrid--spaced > .column-75, .sgrid--spaced-wide > .column-75 {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
  }
}
.sgrid > .column-100 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 100%;
}
.sgrid--spaced > .column-100 {
  min-width: calc(100% - 8px);
}
.sgrid--spaced-wide > .column-100 {
  min-width: calc(100% - 32px);
}
.sgrid--spaced-wide > .column-100 {
  min-width: calc(100% - 48px);
}
@media (max-width: 599.98px) {
  .sgrid > .column-100, .sgrid--spaced > .column-100, .sgrid--spaced-wide > .column-100 {
    width: 100%;
    min-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .sgrid--spaced-wide,
  .sgrid--spaced-extra-wide {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 599.98px) {
  .sgrid {
    display: block;
    margin-left: 0;
  }
}
.bp--only-smartphone {
  display: none !important;
}
@media (max-width: 479.98px) {
  .bp--only-smartphone {
    display: block !important;
  }
}

@media (max-width: 479.98px) {
  .bp--never-smartphone {
    display: none !important;
  }
}

.bp--only-tablet {
  display: none !important;
}
@media (max-width: 767.98px) {
  .bp--only-tablet {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0px !important;
  }
}
@media (max-width: 479.98px) {
  .bp--only-tablet {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .bp--never-tablet {
    display: none !important;
  }
}

@media (max-width: 599.98px) {
  .mobile-hide {
    display: none !important;
  }
}

@font-face {
  font-family: "FFScalaWeb";
  src: url("/webfonts/2D7CCC_1_0.eot");
  src: url("/webfonts/2D7CCC_1_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_1_0.woff2") format("woff2"), url("/webfonts/2D7CCC_1_0.woff") format("woff"), url("/webfonts/2D7CCC_1_0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaWebItalic";
  src: url("/webfonts/2D7CCC_0_0.eot");
  src: url("/webfonts/2D7CCC_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_0_0.woff2") format("woff2"), url("/webfonts/2D7CCC_0_0.woff") format("woff"), url("/webfonts/2D7CCC_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaWebBold";
  src: url("/webfonts/2D7CCC_3_0.eot");
  src: url("/webfonts/2D7CCC_3_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_3_0.woff2") format("woff2"), url("/webfonts/2D7CCC_3_0.woff") format("woff"), url("/webfonts/2D7CCC_3_0.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaWebBoldItalic";
  src: url("/webfonts/306B51_0_0.eot");
  src: url("/webfonts/306B51_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/306B51_0_0.woff2") format("woff2"), url("/webfonts/306B51_0_0.woff") format("woff"), url("/webfonts/306B51_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaSansWebRegular";
  src: url("/webfonts/2D7CCC_5_0.eot");
  src: url("/webfonts/2D7CCC_5_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_5_0.woff2") format("woff2"), url("/webfonts/2D7CCC_5_0.woff") format("woff"), url("/webfonts/2D7CCC_5_0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaSansWebItalic";
  src: url("/webfonts/2D7CCC_4_0.eot");
  src: url("/webfonts/2D7CCC_4_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_4_0.woff2") format("woff2"), url("/webfonts/2D7CCC_4_0.woff") format("woff"), url("/webfonts/2D7CCC_4_0.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaSansWebBold";
  src: url("/webfonts/2D7CCC_2_0.eot");
  src: url("/webfonts/2D7CCC_2_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_2_0.woff2") format("woff2"), url("/webfonts/2D7CCC_2_0.woff") format("woff"), url("/webfonts/2D7CCC_2_0.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaSansWebBoldItalic";
  src: url("/webfonts/30FC9E_0_0.eot");
  src: url("/webfonts/30FC9E_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/30FC9E_0_0.woff2") format("woff2"), url("/webfonts/30FC9E_0_0.woff") format("woff"), url("/webfonts/30FC9E_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
.font-scala, .featuredInfo p, .featuredInfo h1, .recentArticles .articleItem h4, .office-contact-details__item h5, .office-contact-details--consultant .office-contact-details__item h5, .c-office-selector__list, .c-office-selector__trigger, .c-office-selector__title, .c-text-banner__title, .three-up-promo-cards__card, .practice-detail__intro-text, .pull-quote__attribution, .navigation__typeahead-title, .tt-menu, .board-index-landing-banner, .landing-banner, .social-media__featured .featured-media__description, .hero-banner--global-locations .content--subtitle, .page--practice-listing .hero-banner__copy, .section-header.section-header--country-page, h1 {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, serif;
  font-style: normal;
  font-weight: normal;
}
.JP .font-scala, .JP .featuredInfo p, .featuredInfo .JP p, .JP .recentArticles .articleItem h4, .recentArticles .articleItem .JP h4, .JP .office-contact-details__item h5, .office-contact-details__item .JP h5, .JP .c-office-selector__list, .JP .c-office-selector__trigger, .JP .c-office-selector__title, .JP .c-text-banner__title, .JP .three-up-promo-cards__card, .JP .practice-detail__intro-text, .JP .pull-quote__attribution, .JP .navigation__typeahead-title, .JP .tt-menu, .JP .board-index-landing-banner, .JP .landing-banner, .JP .social-media__featured .featured-media__description, .social-media__featured .JP .featured-media__description, .JP .hero-banner--global-locations .content--subtitle, .hero-banner--global-locations .JP .content--subtitle, .JP .page--practice-listing .hero-banner__copy, .page--practice-listing .JP .hero-banner__copy, .JP .section-header.section-header--country-page, .JP h1 {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .font-scala, .CN .featuredInfo p, .featuredInfo .CN p, .CN .recentArticles .articleItem h4, .recentArticles .articleItem .CN h4, .CN .office-contact-details__item h5, .office-contact-details__item .CN h5, .CN .c-office-selector__list, .CN .c-office-selector__trigger, .CN .c-office-selector__title, .CN .c-text-banner__title, .CN .three-up-promo-cards__card, .CN .practice-detail__intro-text, .CN .pull-quote__attribution, .CN .navigation__typeahead-title, .CN .tt-menu, .CN .board-index-landing-banner, .CN .landing-banner, .CN .social-media__featured .featured-media__description, .social-media__featured .CN .featured-media__description, .CN .hero-banner--global-locations .content--subtitle, .hero-banner--global-locations .CN .content--subtitle, .CN .page--practice-listing .hero-banner__copy, .page--practice-listing .CN .hero-banner__copy, .CN .section-header.section-header--country-page, .CN h1 {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.font-scala--bold, .mediaCenter .search-results-hit a, .mediaCenter .playerText h3, .recentArticles h3, .featuredResearch h3, .leaderTopics h3,
.contentWrap .leaderTopics h3, .featuredInfo, .officeLocations .grid_6:first-child h4:first-child, .officeLocations .grid_6:first-child h4, .officeLocations h4, .slideshow__practice .cycle-overlay a,
.consultantSlide .cycle-overlay a, .page-head .page-head__title,
.page-head .page-head__subtitle, .consultant-name, .multi-promo__title, .c-featured-articles__title, .page-head__subtitle, .page-head__title, .impact-messaging__text, .practice-leads__name, .practice-detail-consultant__name, .practice-detail__intro-callout-header, .industry-listing__link, .hover-reveal-panels__title, .country-offices__office-city, .rte--img-background h4, .tt-highlight, .navigation__splash-text, .navigation, .landing-banner__text--title, .recentArticles .articleItem h4, .article__sub-title, .article__title, .social-media__description .description__title, .hero-banner--country .content--title, .hero-banner--global-locations .content--title, .hero-banner--office .hero-banner__content .content--title, .hero-banner__copy, .internal-page-title, .headline, h2,
h3,
h4,
h5,
h6, h1 strong {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif;
  font-style: normal;
  font-weight: bold;
}
.JP .font-scala--bold, .JP .mediaCenter .search-results-hit a, .mediaCenter .search-results-hit .JP a, .JP .mediaCenter .playerText h3, .mediaCenter .playerText .JP h3, .JP .featuredInfo, .JP .officeLocations .grid_6:first-child h4, .officeLocations .grid_6:first-child .JP h4, .JP .slideshow__practice .cycle-overlay a, .slideshow__practice .cycle-overlay .JP a,
.JP .consultantSlide .cycle-overlay a,
.consultantSlide .cycle-overlay .JP a, .JP .consultant-name, .JP .multi-promo__title, .JP .c-featured-articles__title, .JP .page-head__subtitle, .JP .page-head__title, .JP .impact-messaging__text, .JP .practice-leads__name, .JP .practice-detail-consultant__name, .JP .practice-detail__intro-callout-header, .JP .industry-listing__link, .JP .hover-reveal-panels__title, .JP .country-offices__office-city, .JP .tt-highlight, .JP .navigation__splash-text, .JP .navigation, .JP .landing-banner__text--title, .JP .recentArticles .articleItem h4, .recentArticles .articleItem .JP h4, .JP .article__sub-title, .JP .article__title, .JP .social-media__description .description__title, .social-media__description .JP .description__title, .JP .hero-banner--country .content--title, .hero-banner--country .JP .content--title, .JP .hero-banner--global-locations .content--title, .hero-banner--global-locations .JP .content--title, .JP .hero-banner--office .hero-banner__content .content--title, .hero-banner--office .hero-banner__content .JP .content--title, .JP .hero-banner__copy, .JP .internal-page-title, .JP .headline, .JP h2,
.JP h3,
.JP h4,
.JP h5,
.JP h6, .JP h1 strong, h1 .JP strong {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: bold;
}
.CN .font-scala--bold, .CN .mediaCenter .search-results-hit a, .mediaCenter .search-results-hit .CN a, .CN .mediaCenter .playerText h3, .mediaCenter .playerText .CN h3, .CN .featuredInfo, .CN .officeLocations .grid_6:first-child h4, .officeLocations .grid_6:first-child .CN h4, .CN .slideshow__practice .cycle-overlay a, .slideshow__practice .cycle-overlay .CN a,
.CN .consultantSlide .cycle-overlay a,
.consultantSlide .cycle-overlay .CN a, .CN .consultant-name, .CN .multi-promo__title, .CN .c-featured-articles__title, .CN .page-head__subtitle, .CN .page-head__title, .CN .impact-messaging__text, .CN .practice-leads__name, .CN .practice-detail-consultant__name, .CN .practice-detail__intro-callout-header, .CN .industry-listing__link, .CN .hover-reveal-panels__title, .CN .country-offices__office-city, .CN .tt-highlight, .CN .navigation__splash-text, .CN .navigation, .CN .landing-banner__text--title, .CN .recentArticles .articleItem h4, .recentArticles .articleItem .CN h4, .CN .article__sub-title, .CN .article__title, .CN .social-media__description .description__title, .social-media__description .CN .description__title, .CN .hero-banner--country .content--title, .hero-banner--country .CN .content--title, .CN .hero-banner--global-locations .content--title, .hero-banner--global-locations .CN .content--title, .CN .hero-banner--office .hero-banner__content .content--title, .hero-banner--office .hero-banner__content .CN .content--title, .CN .hero-banner__copy, .CN .internal-page-title, .CN .headline, .CN h2,
.CN h3,
.CN h4,
.CN h5,
.CN h6, .CN h1 strong, h1 .CN strong {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.font-scala--bold-italic {
  font-family: FFScalaWebBoldItalic, Georgia, Utopia, Charter, serif;
  font-style: italic;
  font-weight: bold;
}

.font-scala--italic, .researchResults__sub-title, .practice-leads__location, .practice-detail-consultant__location, .consultant-quote__quote, .pull-quote__snippet, .faux-dropdown__input, .JP .faux-dropdown__input, .CN .faux-dropdown__input,
input.navigation__search-input,
.JP input.navigation__search-input,
.CN input.navigation__search-input,
input[type=text].navigation__search-input,
.JP input[type=text].navigation__search-input,
.CN input[type=text].navigation__search-input, h2 em,
h3 em,
h4 em,
h5 em,
h6 em, h1 em {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, serif;
  font-style: italic;
  font-weight: normal;
}
.JP .font-scala--italic, .JP .researchResults__sub-title, .JP .practice-leads__location, .JP .practice-detail-consultant__location, .JP .consultant-quote__quote, .JP .pull-quote__snippet, .JP .faux-dropdown__input,
.JP input.navigation__search-input, .JP h2 em, h2 .JP em,
.JP h3 em,
h3 .JP em,
.JP h4 em,
h4 .JP em,
.JP h5 em,
h5 .JP em,
.JP h6 em,
h6 .JP em, .JP h1 em, h1 .JP em {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: normal;
}
.CN .font-scala--italic, .CN .researchResults__sub-title, .CN .practice-leads__location, .CN .practice-detail-consultant__location, .CN .consultant-quote__quote, .CN .pull-quote__snippet, .CN .faux-dropdown__input,
.CN input.navigation__search-input, .CN h2 em, h2 .CN em,
.CN h3 em,
h3 .CN em,
.CN h4 em,
h4 .CN em,
.CN h5 em,
h5 .CN em,
.CN h6 em,
h6 .CN em, .CN h1 em, h1 .CN em {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, sans-serif;
  font-style: italic;
  font-weight: normal;
}

.font-scala-sans, .featuredResearch .featuredInfo .meta-date, .mod__component .modImageInfo a, .paging, a.rssLink, label, .type-filter, .search-results__pages .btn, .topics__list a, .c-office-info__manager-label, .navigation__search-mobile-content .navigation__primary-search, .navigation__promo-decription, .navigation__call-out p, .navigation__link-item, .site-header .top-links__nav span,
.site-header .top-links__nav a, .microsite__hero, .article__topics-list a, html,
body {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .font-scala-sans, .JP .featuredResearch .featuredInfo .meta-date, .featuredResearch .featuredInfo .JP .meta-date, .JP .mod__component .modImageInfo a, .mod__component .modImageInfo .JP a, .JP .paging, .JP a.rssLink, .JP label, .JP .type-filter, .JP .search-results__pages .btn, .search-results__pages .JP .btn, .JP .topics__list a, .topics__list .JP a, .JP .c-office-info__manager-label, .JP .navigation__search-mobile-content .navigation__primary-search, .navigation__search-mobile-content .JP .navigation__primary-search, .JP .navigation__promo-decription, .JP .navigation__call-out p, .navigation__call-out .JP p, .JP .navigation__link-item, .JP .site-header .top-links__nav span, .site-header .top-links__nav .JP span,
.JP .site-header .top-links__nav a,
.site-header .top-links__nav .JP a, .JP .microsite__hero, .JP .article__topics-list a, .article__topics-list .JP a, .JP html,
.JP body {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .font-scala-sans, .CN .featuredResearch .featuredInfo .meta-date, .featuredResearch .featuredInfo .CN .meta-date, .CN .mod__component .modImageInfo a, .mod__component .modImageInfo .CN a, .CN .paging, .CN a.rssLink, .CN label, .CN .type-filter, .CN .search-results__pages .btn, .search-results__pages .CN .btn, .CN .topics__list a, .topics__list .CN a, .CN .c-office-info__manager-label, .CN .navigation__search-mobile-content .navigation__primary-search, .navigation__search-mobile-content .CN .navigation__primary-search, .CN .navigation__promo-decription, .CN .navigation__call-out p, .navigation__call-out .CN p, .CN .navigation__link-item, .CN .site-header .top-links__nav span, .site-header .top-links__nav .CN span,
.CN .site-header .top-links__nav a,
.site-header .top-links__nav .CN a, .CN .microsite__hero, .CN .article__topics-list a, .article__topics-list .CN a, .CN html,
.CN body {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.font-scala-sans--bold, .mediaCenter .search-results-hit .meta-date, .executiveTeam > ul > li a, .accountHeading b, .regTable td b, .recentArticles .btn, .recentArticles .slides > li .articleItem h4, .featuredResearch .featuredInfo h3, .leaderTopics li a,
.contentWrap .leaderTopics li a, .mod__component .indicator-link, .searchResults td:first-child a, .paging span > a,
.paging span > span, .scfForm input[type=text],
input[type=text],
.scfForm input[type=password],
input[type=password],
.scfForm select,
select,
.scfForm textarea,
textarea, .searchBox input[type=text],
.searchBox select, .office-contact-details__top-section h4, .sidebar-nav__list-item, a.indicator, .list-item__title, .search-results__no-results h3, .search-results__pages .btn.is-active, .is-active .search-results__sort-label, .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading h4, .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button, .search-facets__group-values li input:checked ~ label, .search-facets__group-selected .search-facets__group-heading h4, .search-facets__group .search-facets__group-heading h3, .search-facets__mobile-label, .search-facets__label, .search-facets__filter-toggle button, .search-box__button, .promo__title, .topics__top-section h4, .consultant-card__title, .c-office-selector__region-name, .c-office-selector__region-title, .c-office-info__directions, .c-office-info__location .c-office-info__download, .c-other-search-professionals__title, .ahc-consultant-listing__name, .ahc-consultant-listing__headshot figcaption, .ahc-consultant-listing__title, .c-consultant-listing__name, .c-consultant-listing__headshot figcaption, .c-consultant-listing__title, .consultant-quote__source, .country-offices__office-view-more, .explore__block span, .microsite__main-content-well .rte h1, .microsite__main-content-well .rte h2, .microsite__main-content-well .rte h3, .microsite__main-content-well .rte h4, .microsite__main-content-well .rte h5, .microsite__main-content-well .rte h6, .navigation__top-level, .navigation__call-out a, .navigation__link-item--more, .navigation__title, .navigation__search-icon, input[type=text].navigation__primary-search, .microsite-hamburger, .content-up--featured .content-up__top-section h4, .consultant-banner .language-dropdown__link, .consultant-banner-rev .language-dropdown__link, .consultant-banner .language-dropdown__dropdown-trigger, .consultant-banner-rev .language-dropdown__dropdown-trigger, .article__aside .title, .service-links, .share-bar .share-bar__download, .translated-header-navigation__navigation-links a, .translated-header-navigation__language, .sub-nav__section-title, .site-nav .site-nav__row > li > a, .mobile-hamburger, input[type=text].site-search__search-box, .top-links__nav a,
.top-links__nav span, .button, .corporateDrop > a, .contentWrap .corporateDrop > a, .searchBox .submit,
.searchBox .scfSubmitButton, .contentWrap .searchBox a.submit, .searchBox .contentWrap a.submit,
.contentWrap .searchBox a.scfSubmitButton,
.searchBox .contentWrap a.scfSubmitButton, .contentWrap a.button, .contentWrap .corporateDrop > a, .contentWrap .corporateDrop > a,
.scfSubmitButton, .section-header--small, .mod__component .modHdg h3, .section-header, strong, a.stand-alone, .text-treatment--meta, .article__footer-meta, .article__body .article-media figcaption, .article__info, .text-treatment--dates, .researchResults__date, .article__aside .aside-list__date, .article__date, .featured-content__item .item-date, .top-feature__date, .media-container__media-date, .featured-content__text--date, .content-list__date {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
.JP .font-scala-sans--bold, .JP .mediaCenter .search-results-hit .meta-date, .mediaCenter .search-results-hit .JP .meta-date, .JP .executiveTeam > ul > li a, .executiveTeam > ul > li .JP a, .JP .accountHeading b, .accountHeading .JP b, .JP .regTable td b, .regTable td .JP b, .JP .recentArticles .btn, .recentArticles .JP .btn, .JP .recentArticles .slides > li .articleItem h4, .recentArticles .slides > li .articleItem .JP h4, .JP .featuredResearch .featuredInfo h3, .featuredResearch .featuredInfo .JP h3, .JP .leaderTopics li a, .leaderTopics li .JP a,
.JP .contentWrap .leaderTopics li a,
.contentWrap .leaderTopics li .JP a, .JP .mod__component .indicator-link, .mod__component .JP .indicator-link, .JP .searchResults td:first-child a, .searchResults td:first-child .JP a, .JP .paging span > a, .paging .JP span > a,
.JP .paging span > span,
.paging .JP span > span, .JP .scfForm input[type=text], .scfForm .JP input[type=text],
.JP input[type=text],
.JP .scfForm input[type=password],
.scfForm .JP input[type=password],
.JP input[type=password],
.JP .scfForm select,
.scfForm .JP select,
.JP select,
.JP .scfForm textarea,
.scfForm .JP textarea,
.JP textarea, .JP .searchBox input[type=text], .searchBox .JP input[type=text],
.JP .searchBox select,
.searchBox .JP select, .JP .office-contact-details__top-section h4, .office-contact-details__top-section .JP h4, .JP .sidebar-nav__list-item, .JP a.indicator, .JP .list-item__title, .JP .search-results__no-results h3, .search-results__no-results .JP h3, .JP .search-results__pages .btn.is-active, .search-results__pages .JP .btn.is-active, .JP .is-active .search-results__sort-label, .is-active .JP .search-results__sort-label, .JP .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading h4, .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading .JP h4, .JP .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button, .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading .JP button, .JP .search-facets__group-values li input:checked ~ label, .search-facets__group-values li .JP input:checked ~ label, .JP .search-facets__group-selected .search-facets__group-heading h4, .search-facets__group-selected .search-facets__group-heading .JP h4, .JP .search-facets__group .search-facets__group-heading h3, .search-facets__group .search-facets__group-heading .JP h3, .JP .search-facets__mobile-label, .JP .search-facets__label, .JP .search-facets__filter-toggle button, .search-facets__filter-toggle .JP button, .JP .search-box__button, .JP .promo__title, .JP .topics__top-section h4, .topics__top-section .JP h4, .JP .consultant-card__title, .JP .c-office-selector__region-name, .JP .c-office-selector__region-title, .JP .c-office-info__directions, .JP .c-office-info__location .c-office-info__download, .c-office-info__location .JP .c-office-info__download, .JP .c-other-search-professionals__title, .JP .ahc-consultant-listing__name, .JP .ahc-consultant-listing__headshot figcaption, .ahc-consultant-listing__headshot .JP figcaption, .JP .ahc-consultant-listing__title, .JP .c-consultant-listing__name, .JP .c-consultant-listing__headshot figcaption, .c-consultant-listing__headshot .JP figcaption, .JP .c-consultant-listing__title, .JP .consultant-quote__source, .JP .country-offices__office-view-more, .JP .explore__block span, .explore__block .JP span, .JP .microsite__main-content-well .rte h1, .microsite__main-content-well .rte .JP h1, .JP .microsite__main-content-well .rte h2, .microsite__main-content-well .rte .JP h2, .JP .microsite__main-content-well .rte h3, .microsite__main-content-well .rte .JP h3, .JP .microsite__main-content-well .rte h4, .microsite__main-content-well .rte .JP h4, .JP .microsite__main-content-well .rte h5, .microsite__main-content-well .rte .JP h5, .JP .microsite__main-content-well .rte h6, .microsite__main-content-well .rte .JP h6, .JP .navigation__top-level, .JP .navigation__call-out a, .navigation__call-out .JP a, .JP .navigation__link-item--more, .JP .navigation__title, .JP .navigation__search-icon, .JP input[type=text].navigation__primary-search, .JP .microsite-hamburger, .JP .content-up--featured .content-up__top-section h4, .content-up--featured .content-up__top-section .JP h4, .JP .consultant-banner .language-dropdown__link, .consultant-banner .JP .language-dropdown__link, .JP .consultant-banner-rev .language-dropdown__link, .consultant-banner-rev .JP .language-dropdown__link, .JP .consultant-banner .language-dropdown__dropdown-trigger, .consultant-banner .JP .language-dropdown__dropdown-trigger, .JP .consultant-banner-rev .language-dropdown__dropdown-trigger, .consultant-banner-rev .JP .language-dropdown__dropdown-trigger, .JP .article__aside .title, .article__aside .JP .title, .JP .service-links, .JP .share-bar .share-bar__download, .share-bar .JP .share-bar__download, .JP .translated-header-navigation__navigation-links a, .translated-header-navigation__navigation-links .JP a, .JP .translated-header-navigation__language, .JP .sub-nav__section-title, .JP .site-nav .site-nav__row > li > a, .site-nav .JP .site-nav__row > li > a, .JP .mobile-hamburger, .JP input[type=text].site-search__search-box, .JP .top-links__nav a, .top-links__nav .JP a,
.JP .top-links__nav span,
.top-links__nav .JP span, .JP .button, .JP .corporateDrop > a, .JP .contentWrap .corporateDrop > a, .contentWrap .JP .corporateDrop > a, .JP .searchBox .submit, .searchBox .JP .submit,
.JP .searchBox .scfSubmitButton,
.searchBox .JP .scfSubmitButton, .JP .contentWrap .searchBox a.submit, .contentWrap .searchBox .JP a.submit, .JP .searchBox .contentWrap a.submit, .searchBox .contentWrap .JP a.submit,
.JP .contentWrap .searchBox a.scfSubmitButton,
.contentWrap .searchBox .JP a.scfSubmitButton,
.JP .searchBox .contentWrap a.scfSubmitButton,
.searchBox .contentWrap .JP a.scfSubmitButton, .JP .contentWrap a.button, .JP .contentWrap .corporateDrop > a, .JP .contentWrap .corporateDrop > a, .JP .contentWrap .searchBox a.submit, .searchBox .JP .contentWrap a.submit,
.JP .contentWrap .searchBox a.scfSubmitButton,
.searchBox .JP .contentWrap a.scfSubmitButton, .contentWrap .JP a.button, .contentWrap .JP .corporateDrop > a, .contentWrap .JP .corporateDrop > a, .contentWrap .JP .searchBox a.submit, .searchBox .contentWrap .JP a.submit,
.contentWrap .JP .searchBox a.scfSubmitButton,
.searchBox .contentWrap .JP a.scfSubmitButton,
.JP .scfSubmitButton, .JP .section-header--small, .JP .mod__component .modHdg h3, .mod__component .modHdg .JP h3, .JP .section-header, .JP strong, .JP a.stand-alone, .JP .text-treatment--meta, .JP .article__footer-meta, .JP .article__body .article-media figcaption, .article__body .article-media .JP figcaption, .JP .article__info, .JP .text-treatment--dates, .JP .researchResults__date, .JP .article__aside .aside-list__date, .article__aside .JP .aside-list__date, .JP .article__date, .JP .featured-content__item .item-date, .featured-content__item .JP .item-date, .JP .top-feature__date, .JP .media-container__media-date, .JP .featured-content__text--date, .JP .content-list__date {
  font-family: FFScalaSansWebBold, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: bold;
}
.CN .font-scala-sans--bold, .CN .mediaCenter .search-results-hit .meta-date, .mediaCenter .search-results-hit .CN .meta-date, .CN .executiveTeam > ul > li a, .executiveTeam > ul > li .CN a, .CN .accountHeading b, .accountHeading .CN b, .CN .regTable td b, .regTable td .CN b, .CN .recentArticles .btn, .recentArticles .CN .btn, .CN .recentArticles .slides > li .articleItem h4, .recentArticles .slides > li .articleItem .CN h4, .CN .featuredResearch .featuredInfo h3, .featuredResearch .featuredInfo .CN h3, .CN .leaderTopics li a, .leaderTopics li .CN a,
.CN .contentWrap .leaderTopics li a,
.contentWrap .leaderTopics li .CN a, .CN .mod__component .indicator-link, .mod__component .CN .indicator-link, .CN .searchResults td:first-child a, .searchResults td:first-child .CN a, .CN .paging span > a, .paging .CN span > a,
.CN .paging span > span,
.paging .CN span > span, .CN .scfForm input[type=text], .scfForm .CN input[type=text],
.CN input[type=text],
.CN .scfForm input[type=password],
.scfForm .CN input[type=password],
.CN input[type=password],
.CN .scfForm select,
.scfForm .CN select,
.CN select,
.CN .scfForm textarea,
.scfForm .CN textarea,
.CN textarea, .CN .searchBox input[type=text], .searchBox .CN input[type=text],
.CN .searchBox select,
.searchBox .CN select, .CN .office-contact-details__top-section h4, .office-contact-details__top-section .CN h4, .CN .sidebar-nav__list-item, .CN a.indicator, .CN .list-item__title, .CN .search-results__no-results h3, .search-results__no-results .CN h3, .CN .search-results__pages .btn.is-active, .search-results__pages .CN .btn.is-active, .CN .is-active .search-results__sort-label, .is-active .CN .search-results__sort-label, .CN .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading h4, .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading .CN h4, .CN .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button, .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading .CN button, .CN .search-facets__group-values li input:checked ~ label, .search-facets__group-values li .CN input:checked ~ label, .CN .search-facets__group-selected .search-facets__group-heading h4, .search-facets__group-selected .search-facets__group-heading .CN h4, .CN .search-facets__group .search-facets__group-heading h3, .search-facets__group .search-facets__group-heading .CN h3, .CN .search-facets__mobile-label, .CN .search-facets__label, .CN .search-facets__filter-toggle button, .search-facets__filter-toggle .CN button, .CN .search-box__button, .CN .promo__title, .CN .topics__top-section h4, .topics__top-section .CN h4, .CN .consultant-card__title, .CN .c-office-selector__region-name, .CN .c-office-selector__region-title, .CN .c-office-info__directions, .CN .c-office-info__location .c-office-info__download, .c-office-info__location .CN .c-office-info__download, .CN .c-other-search-professionals__title, .CN .ahc-consultant-listing__name, .CN .ahc-consultant-listing__headshot figcaption, .ahc-consultant-listing__headshot .CN figcaption, .CN .ahc-consultant-listing__title, .CN .c-consultant-listing__name, .CN .c-consultant-listing__headshot figcaption, .c-consultant-listing__headshot .CN figcaption, .CN .c-consultant-listing__title, .CN .consultant-quote__source, .CN .country-offices__office-view-more, .CN .explore__block span, .explore__block .CN span, .CN .microsite__main-content-well .rte h1, .microsite__main-content-well .rte .CN h1, .CN .microsite__main-content-well .rte h2, .microsite__main-content-well .rte .CN h2, .CN .microsite__main-content-well .rte h3, .microsite__main-content-well .rte .CN h3, .CN .microsite__main-content-well .rte h4, .microsite__main-content-well .rte .CN h4, .CN .microsite__main-content-well .rte h5, .microsite__main-content-well .rte .CN h5, .CN .microsite__main-content-well .rte h6, .microsite__main-content-well .rte .CN h6, .CN .navigation__top-level, .CN .navigation__call-out a, .navigation__call-out .CN a, .CN .navigation__link-item--more, .CN .navigation__title, .CN .navigation__search-icon, .CN input[type=text].navigation__primary-search, .CN .microsite-hamburger, .CN .content-up--featured .content-up__top-section h4, .content-up--featured .content-up__top-section .CN h4, .CN .consultant-banner .language-dropdown__link, .consultant-banner .CN .language-dropdown__link, .CN .consultant-banner-rev .language-dropdown__link, .consultant-banner-rev .CN .language-dropdown__link, .CN .consultant-banner .language-dropdown__dropdown-trigger, .consultant-banner .CN .language-dropdown__dropdown-trigger, .CN .consultant-banner-rev .language-dropdown__dropdown-trigger, .consultant-banner-rev .CN .language-dropdown__dropdown-trigger, .CN .article__aside .title, .article__aside .CN .title, .CN .service-links, .CN .share-bar .share-bar__download, .share-bar .CN .share-bar__download, .CN .translated-header-navigation__navigation-links a, .translated-header-navigation__navigation-links .CN a, .CN .translated-header-navigation__language, .CN .sub-nav__section-title, .CN .site-nav .site-nav__row > li > a, .site-nav .CN .site-nav__row > li > a, .CN .mobile-hamburger, .CN input[type=text].site-search__search-box, .CN .top-links__nav a, .top-links__nav .CN a,
.CN .top-links__nav span,
.top-links__nav .CN span, .CN .button, .CN .corporateDrop > a, .CN .contentWrap .corporateDrop > a, .contentWrap .CN .corporateDrop > a, .CN .searchBox .submit, .searchBox .CN .submit,
.CN .searchBox .scfSubmitButton,
.searchBox .CN .scfSubmitButton, .CN .contentWrap .searchBox a.submit, .contentWrap .searchBox .CN a.submit, .CN .searchBox .contentWrap a.submit, .searchBox .contentWrap .CN a.submit,
.CN .contentWrap .searchBox a.scfSubmitButton,
.contentWrap .searchBox .CN a.scfSubmitButton,
.CN .searchBox .contentWrap a.scfSubmitButton,
.searchBox .contentWrap .CN a.scfSubmitButton, .CN .contentWrap a.button, .CN .contentWrap .corporateDrop > a, .CN .contentWrap .corporateDrop > a, .CN .contentWrap .searchBox a.submit, .searchBox .CN .contentWrap a.submit,
.CN .contentWrap .searchBox a.scfSubmitButton,
.searchBox .CN .contentWrap a.scfSubmitButton, .contentWrap .CN a.button, .contentWrap .CN .corporateDrop > a, .contentWrap .CN .corporateDrop > a, .contentWrap .CN .searchBox a.submit, .searchBox .contentWrap .CN a.submit,
.contentWrap .CN .searchBox a.scfSubmitButton,
.searchBox .contentWrap .CN a.scfSubmitButton,
.CN .scfSubmitButton, .CN .section-header--small, .CN .mod__component .modHdg h3, .mod__component .modHdg .CN h3, .CN .section-header, .CN strong, .CN a.stand-alone, .CN .text-treatment--meta, .CN .article__footer-meta, .CN .article__body .article-media figcaption, .article__body .article-media .CN figcaption, .CN .article__info, .CN .text-treatment--dates, .CN .researchResults__date, .CN .article__aside .aside-list__date, .article__aside .CN .aside-list__date, .CN .article__date, .CN .featured-content__item .item-date, .featured-content__item .CN .item-date, .CN .top-feature__date, .CN .media-container__media-date, .CN .featured-content__text--date, .CN .content-list__date {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.font-scala-sans--italic, em,
i {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
}
.JP .font-scala-sans--italic, .JP em,
.JP i {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: normal;
}
.CN .font-scala-sans--italic, .CN em,
.CN i {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
}

.font-scala-sans--bold-italic, strong em, em strong, b i, i b {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
}
.JP .font-scala-sans--bold-italic, .JP strong em, strong .JP em, .JP em strong, em .JP strong, .JP b i, b .JP i, .JP i b, i .JP b {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: bold;
}
.CN .font-scala-sans--bold-italic, .CN strong em, strong .CN em, .CN em strong, em .CN strong, .CN b i, b .CN i, .CN i b, i .CN b {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
}

.font-scala--regular {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.text-treatment--dates, .researchResults__date, .article__aside .aside-list__date, .article__date, .featured-content__item .item-date, .top-feature__date, .media-container__media-date, .featured-content__text--date, .content-list__date {
  font-size: 0.7rem;
  color: #a5a5a6;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.text-treatment--meta, .article__footer-meta, .article__body .article-media figcaption, .article__info {
  font-size: 0.8rem;
  color: #a5a5a6;
}
.text-treatment--meta a, .article__footer-meta a, .article__body .article-media figcaption a, .article__info a {
  color: #a5a5a6;
}
.text-treatment--meta a:hover, .article__footer-meta a:hover, .article__body .article-media figcaption a:hover, .article__info a:hover {
  color: #7cb085;
}

h1 {
  margin: 0 0 0.5em;
  font-size: 3.35rem;
  font-weight: normal;
  line-height: 1.1em;
}
@media (max-width: 599.98px) {
  h1 {
    font-size: 2.68rem;
  }
}

h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.856em;
  font-weight: normal;
}
h2 {
  font-size: 2.2rem;
  line-height: 1.1363636364em;
}
@media (max-width: 599.98px) {
  h2 {
    font-size: 1.76rem;
  }
}

h3 {
  font-size: 1.5rem;
  line-height: 1.2em;
}
@media (max-width: 599.98px) {
  h3 {
    font-size: 1.2rem;
  }
}

h4 {
  margin: 1.3em 0 0.2em;
  font-size: 1.2rem;
}

h5 {
  margin: 0 0 0.1em;
  font-size: 1rem;
}

h6 {
  margin: 0 0 0.1em;
  font-size: 0.9rem;
}

.headline--xl, .internal-page-title {
  font-size: 2.1rem;
}

.headline--l {
  font-size: 1.4rem;
}

.headline--m {
  font-size: 1.2rem;
}

.headlined-copy {
  margin-top: 12px;
}
.headlined-copy--offset {
  padding-top: 38px;
}
.headlined-copy ~ .button, .corporateDrop > .headlined-copy ~ a, .searchBox .headlined-copy ~ .submit,
.searchBox .headlined-copy ~ .scfSubmitButton, .contentWrap .headlined-copy ~ a.button {
  margin-top: 36px;
}
@media (max-width: 767.98px) {
  .headlined-copy.headlined-copy--offset {
    padding-top: 0;
  }
}

.dotted-separator {
  height: 1px;
  margin: 64px 0 58px;
  border-top: 1px dotted #c0c0c1;
}

.internal-page-title {
  display: block;
  margin-top: 24px;
  margin-bottom: 0;
  line-height: 1.4;
}
@media (max-width: 599.98px) {
  .internal-page-title {
    margin: 0 0 48px;
    font-size: 32px;
  }
}

a.highlight-link {
  --underline-color: currentcolor;
  --underline-thickness: 1px;
  -webkit-padding-before: 2px;
          padding-block-start: 2px;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(var(--underline-color)), to(var(--underline-color))), -webkit-gradient(linear, left top, right top, from(rgba(51, 132, 65, 0.15)), to(rgba(51, 132, 65, 0.15)));
  background: linear-gradient(to right, var(--underline-color), var(--underline-color)), linear-gradient(to right, rgba(51, 132, 65, 0.15), rgba(51, 132, 65, 0.15));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% var(--underline-thickness), 100% 0%;
  -webkit-transition: background-size 0.3s, background-position 0.3s;
  transition: background-size 0.3s, background-position 0.3s;
}
a.highlight-link:hover, a.highlight-link:focus {
  color: #338441;
  background-position: left bottom;
  background-size: 100% var(--underline-thickness), 100% 100%;
}

html,
body {
  font-size: 20px;
  color: #4c4c4e;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang=ja-JP],
html[lang=zh-CN],
body.JP,
body.CN {
  font-size: 16px;
}

::-moz-selection {
  background-color: #98a7bc;
  color: white;
}

::selection {
  background-color: #98a7bc;
  color: white;
}

p, ul, ol {
  margin: 0 0 1em 0;
  line-height: 1.35em;
}
.smaller-text-component p, .smaller-text-component ul, .smaller-text-component ol {
  font-size: 0.9rem;
  line-height: 1.3888888889em;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}

hr {
  margin: 0 0 1em 0;
}

ul li, ol li {
  margin-bottom: 1.25em;
}

ul {
  padding: 0 0 0 40px;
  list-style-type: disc;
}
ul ul {
  margin: 0;
}

ol {
  padding: 0 0 0 40px;
}
ol ol {
  margin: 0;
  list-style-type: lower-alpha;
}

a {
  color: #338441;
  text-decoration: none;
}
a:hover {
  color: #7cb085;
}
a.stand-alone {
  color: #4c4c4e;
}
a.stand-alone:after {
  content: " ›";
  display: inline-block;
  margin: 0 0 0 0.1em;
  font-size: 1.3em;
  color: #338441;
}
a.stand-alone:hover {
  color: #7cb085;
}
a.stand-alone:hover:after {
  color: #7cb085;
}

strong {
  font-weight: normal;
}
strong .JP,
strong .CN {
  font-weight: bold;
}

em,
i {
  font-weight: normal;
}
em .JP,
em .CN,
i .JP,
i .CN {
  font-style: italic;
}

.section-header {
  font-weight: normal;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 52px 0;
}
.section-header .inner-text {
  display: inline-block;
  background-color: white;
  padding: 0 18px;
  position: relative;
  z-index: 2;
}
.section-header:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  border-top: 1px dotted #747476;
  left: 0;
  bottom: 50%;
  margin-bottom: 2px;
}

.section-header.section-header--country-page {
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 44px;
  text-align: center;
  text-transform: none;
}
@media screen and (max-width: 900px) {
  .section-header.section-header--country-page {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}
.section-header.section-header--country-page:after {
  content: none;
}

.section-header--small, .mod__component .modHdg h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  border-bottom: 1px dotted #4c4c4e;
  margin-bottom: 1rem;
}

.button, .corporateDrop > a, .contentWrap .corporateDrop > a, .searchBox .submit,
.searchBox .scfSubmitButton, .contentWrap .searchBox a.submit, .searchBox .contentWrap a.submit,
.contentWrap .searchBox a.scfSubmitButton,
.searchBox .contentWrap a.scfSubmitButton, .contentWrap a.button,
.scfSubmitButton {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 4px;
  padding: 15px 15px 11px 15px;
  text-align: center;
  min-width: 220px;
  border: 2px solid #338441;
  background-color: transparent;
  color: #4c4c4e;
  outline: none;
}
.button:hover, .corporateDrop > a:hover, .searchBox .submit:hover, .contentWrap a.button:hover,
.scfSubmitButton:hover {
  background-color: #338441;
  color: white;
}

.button--special {
  border-color: #fbcc11;
}
.button--special:hover {
  background-color: #fbcc11;
}

.js-show-hide--target {
  display: none;
}
.is-on .js-show-hide--target {
  display: block;
}

.social-list {
  padding: 0;
  list-style-type: none;
  max-width: 150px;
  text-align: center;
}
.social-list::after {
  display: table;
  clear: both;
  content: "";
}
.social-list li {
  float: left;
  margin-left: 10px;
}
.social-list li:first-child {
  margin-left: 0;
}
.social-list .icon {
  height: 26px;
  width: 26px;
  background-size: 26px;
  text-indent: -99999px;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.indicator.drop span {
  height: 18px;
  width: 18px;
  display: inline-block;
  text-indent: -99999px;
}
.indicator.drop span.active {
  background-position: 0 0;
}
.indicator.drop.active span {
  background-position: 0 0;
}
.indicator.arrow {
  color: #338441;
}
.indicator.arrow span {
  text-indent: -99999px;
  padding: 0;
}
.indicator.arrow:link:hover {
  color: #7cb085;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background-color: #d5e7da;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover {
  background-color: #7cb085;
}
.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a.active:hover {
  background-color: #338441;
}

.internal-page-header {
  position: relative;
}

.slick-dots button {
  padding: 0;
}

.u-hidden {
  display: none !important;
  visibility: hidden;
}

.u-visuallyhidden {
  border: 0;
  opacity: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.u-invisible {
  visibility: hidden;
}

.u-clearfix:before,
.u-clearfix:after {
  content: " ";
  display: table;
}

.u-clearfix:after {
  clear: both;
}

.u-clearfix {
  *zoom: 1;
}

.u-color-pair *:not(.u-color-pair) {
  color: inherit !important;
}

.icon {
  height: 25px;
  width: 25px;
  background-size: 25px;
  display: block;
}

.icon-arrow, .mod__component .indicator-link:after, .indicator.arrow span {
  background: url("/images/svg/arrow.svg") no-repeat;
}

.icon-arrow-circle, .sidebar-nav__list-item > a:after {
  background: url("/images/svg/arrow_ko.svg") no-repeat;
}

.icon-download {
  background: url("/images/svg/download.svg") no-repeat;
}

.icon-email, .emailLink:before {
  background: url("/images/svg/mail.svg") no-repeat;
}

.icon-facebook {
  background: url("/images/svg/facebook.svg") no-repeat;
}

.icon-linkedin {
  background: url("/images/svg/linkedin.svg") no-repeat;
}

.icon-youtube {
  background: url("//static.spencerstuart.com/assets/site/yt.svg") no-repeat;
}

.icon-minus, .contentDrop > li > a.indicator.drop.active span, .sidebar-nav__list-item > a.indicator.drop.active span, .sidebar-nav__list-item > a.indicator.drop span.active, .is-on .site-nav__sub-nav--trigger, .indicator.drop span.active, .indicator.drop.active span {
  background: url("/images/svg/minus.svg") no-repeat;
}

.icon-plus, .contentDrop > li > a.indicator.drop span, .sidebar-nav__list-item > a.indicator.drop span, .site-nav__sub-nav--trigger, .indicator.drop span {
  background: url("/images/svg/plus.svg") no-repeat;
}

.icon-rss {
  background: url("/images/svg/rss.svg") no-repeat;
}

.icon-search {
  background: url("/images/svg/search.svg") no-repeat;
}
.icon-search:before {
  content: "";
}

.icon-twitter-override {
  background: url("/images/svg/twitter-share.svg") no-repeat;
}

.icon-twitter {
  background: url("/images/svg/twitter.svg") no-repeat;
}

.icon-arrow-down {
  background: url("/images/svg/icon-arrow-down.svg") no-repeat;
}

.icon-arrow-up {
  background: url("/images/svg/icon-arrow-up-white.svg") no-repeat;
}

.icon-wechat {
  background: url("/images/svg/wechat.svg") no-repeat;
  position: relative;
}

.icon-wechat:after {
  content: "";
  display: none;
  height: 100px;
  width: 100px;
  position: absolute;
  top: 26px;
  left: 0;
  background: url("/images/global/icons/WeChatQR.jpg") no-repeat;
}

.icon-wechat:hover:after {
  display: block;
}

.site-header {
  position: relative;
  z-index: 200;
  background-color: #f5f7f9;
}
@media screen and (max-width: 1015px) {
  .site-header .site-width__constraint, .site-header .country-offices, .site-header .hero-banner__inner-wrapper {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .site-header-active {
    height: 100vh;
  }
  .mobile-menu-active {
    overflow: hidden;
  }
}
.top-links {
  display: none;
  background-color: #4c4c4e;
}
.top-links::after {
  display: table;
  clear: both;
  content: "";
}

@media (max-width: 767.98px) {
  .top-links.top-links__mobile-only {
    display: block;
  }
}
@media (min-width: 768px) {
  .top-links {
    display: block;
  }
  .top-links.top-links__mobile-only {
    display: none;
  }
}
.top-links__nav {
  min-height: 35px;
  width: calc(100% - 250px);
  float: left;
  list-style-type: none;
}
.top-links__nav > li {
  float: right;
}
.top-links__nav a,
.top-links__nav span {
  display: block;
  margin: 11px 18px 0;
  color: #ececec;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.top-links__nav a:hover,
.top-links__nav span:hover {
  color: #d5e7da;
}
@media screen and (max-width: 793px) {
  .top-links__nav {
    width: auto;
  }
  .top-links__nav a,
  .top-links__nav span {
    margin-left: 0;
  }
}
@media screen and (max-width: 450px) {
  .top-links__nav .mobile-hide {
    display: none;
  }
}

.top-links__drop-menu {
  position: relative;
}
.top-links__drop-menu .language-list {
  position: absolute;
  top: 100%;
  z-index: 10;
  display: none;
  width: 100%;
  min-width: 94px;
  padding-bottom: 10px;
  text-align: left;
  background-color: #4c4c4e;
}
.top-links__drop-menu .language-list a {
  margin-right: 18px;
  margin-left: 18px;
}
@media (max-width: 767.98px) {
  .top-links__drop-menu .language-list a {
    margin-right: 14px;
    margin-left: 14px;
  }
}
.top-links__drop-menu.is-on .language-list {
  display: block;
}
@media (max-width: 999.98px) {
  .top-links__drop-menu.is-on .language-list {
    right: 0px;
  }
}

.site-search {
  max-height: 100%;
  width: 250px;
  float: right;
  margin-top: 5px;
  background-color: #747476;
  -webkit-transition: max-height 0.3s, margin 0.3s;
  transition: max-height 0.3s, margin 0.3s;
}
@media screen and (max-width: 793px) {
  .site-search {
    max-height: 0;
    width: 100%;
    clear: both;
    float: none;
    overflow: hidden;
    margin: 0;
  }
  .site-search.is-open {
    max-height: 100px;
    margin: 0 0 5px;
  }
  .site-search::after {
    display: table;
    clear: both;
    content: "";
  }
}

input[type=text].site-search__search-box {
  height: 25px;
  width: calc(100% - 25px);
  float: left;
  padding: 1px 10px 0;
  color: #ececec;
  font-size: 0.6rem;
  line-height: 25px;
  letter-spacing: 1px;
  background-color: transparent;
  border: none;
  outline: none;
}
input[type=text].site-search__search-box::-webkit-input-placeholder {
  color: #ececec;
  text-transform: uppercase;
}
input[type=text].site-search__search-box::-moz-placeholder {
  color: #ececec;
  text-transform: uppercase;
}
input[type=text].site-search__search-box:-moz-placeholder {
  color: #ececec;
  text-transform: uppercase;
}
input[type=text].site-search__search-box:-ms-input-placeholder {
  color: #ececec;
  text-transform: uppercase;
}

.site-search__search-submit,
.site-search__mobile .icon {
  display: block;
  float: right;
  padding: 0;
  background-color: transparent;
  background-position: 0 4px;
  background-size: 17px 17px;
  border: none;
  height: 25px;
  width: 25px;
}

.site-search__mobile {
  display: none;
  float: right;
  cursor: pointer;
  height: 25px;
  width: 25px;
}
.site-search__mobile .icon {
  position: relative;
  top: 4px;
}
.site-search__mobile.is-open {
  position: relative;
}
.site-search__mobile.is-open .icon {
  display: none;
}
.site-search__mobile.is-open::before, .site-search__mobile.is-open::after {
  position: absolute;
  bottom: 25%;
  left: 0;
  height: 3px;
  width: 20px;
  content: "";
}
.site-search__mobile.is-open::before {
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.site-search__mobile.is-open::after {
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 793px) {
  .site-search__mobile {
    display: block;
  }
}

.site-logo {
  display: block;
  height: 56px;
  width: 250px;
  clear: left;
  float: left;
  margin: 24px 0 0;
}
.site-logo img {
  display: block;
  height: auto;
  width: 198px;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 959.98px) {
  .site-logo {
    height: 51px;
  }
}
@media screen and (max-width: 1015px) and (min-width: 768px) {
  .site-logo {
    display: inline-block;
    height: 50px;
    width: auto;
    float: none;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .site-logo {
    margin: 23px 0 15px;
    padding: 0 10px;
  }
}

.mobile-hamburger {
  height: 52px;
  width: 30px;
  margin-right: 10px;
  position: relative;
  display: none;
  max-width: calc(100% - 250px);
  float: right;
  margin-top: 10px;
  color: #4c4c4e;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  }
.mobile-hamburger .hamburger-label {
  padding-right: 10px;
}
.mobile-hamburger .icon-hamburger {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 3px;
  width: 30px;
  margin-top: -3px;
  background-color: #262626;
  border-radius: 2px;
}
.mobile-hamburger .icon-hamburger::before, .mobile-hamburger .icon-hamburger::after {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #262626;
  border-radius: 2px;
  content: "";
}
.mobile-hamburger .icon-hamburger::before {
  bottom: 8px;
}
.mobile-hamburger .icon-hamburger::after {
  top: 8px;
}
.mobile-hamburger.mobile-hamburger-active.mobile-hamburger .icon-hamburger {
  background-color: transparent;
}
.mobile-hamburger.mobile-hamburger-active.mobile-hamburger .icon-hamburger::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-hamburger.mobile-hamburger-active.mobile-hamburger .icon-hamburger::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .mobile-hamburger {
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .mobile-hamburger {
    height: 40px;
    margin-top: 15px;
  }
  .mobile-hamburger .hamburger-label {
    display: none;
  }
  .mobile-hamburger .icon-hamburger {
    left: 5px;
  }
}

.site-nav {
  position: relative;
  width: calc(100% - 250px);
  float: left;
  letter-spacing: 1px;
}
.site-nav a {
  text-decoration: none;
}
.site-nav .site-nav__row {
  margin: 0;
  padding: 0;
  border-top: 1px dotted #a5a5a6;
  list-style-type: none;
}
.site-nav .site-nav__row:first-child {
  border-top: none;
}
.site-nav .site-nav__row > li {
  width: 25%;
  float: left;
  margin: 0;
  padding: 7px 10px 4px;
}
.site-nav .site-nav__row > li > a {
  display: inline-block;
  float: left;
  color: #262626;
  font-size: 0.75rem;
  text-align: left;
  text-transform: uppercase;
}
.site-nav .site-nav__row > li > a.on {
  color: #747476;
}
.site-nav .site-nav__row > li::after {
  display: table;
  clear: both;
  content: "";
}
@media screen and (min-width: 768px) {
  .site-nav .site-nav__row > li:hover, .site-nav .site-nav__row > li.is-on {
    background-color: #4c4c4e;
  }
  .site-nav .site-nav__row > li:hover > a, .site-nav .site-nav__row > li.is-on > a {
    color: #ececec;
  }
}
.site-nav .site-nav__row:first-child li {
  padding-top: 17px;
}
.site-nav .site-nav__row:last-child li {
  padding-bottom: 13px;
}
.site-nav .site-nav__row::after {
  display: table;
  clear: both;
  content: "";
}
@media screen and (max-width: 1015px) {
  .site-nav {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .site-nav {
    display: none;
    background-color: #ececec;
  }
  .site-nav .site-nav__row {
    border-top: none;
  }
  .site-nav .site-nav__row > li {
    position: relative;
    width: 100%;
    float: none;
    padding: 0px 10px 0;
    border-top: 1px dotted #a5a5a6;
  }
  .site-nav .site-nav__row > li:first-child {
    border-top: non;
  }
  .site-nav .site-nav__row > li > a {
    padding: 10px 0;
  }
  .site-nav .site-nav__row:first-child > li {
    padding-top: 0;
  }
  .site-nav .site-nav__row:last-child li {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .site-nav.mobile-is-on {
    display: block;
  }
}

.sub-nav__trigger-wrapper {
  white-space: nowrap;
}

.site-nav__sub-nav--trigger {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background-size: 20px;
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .site-nav__sub-nav--trigger {
    width: 40px;
    margin-left: 16px;
    background-position: 10px 0;
  }
  .is-on .site-nav__sub-nav--trigger {
    margin-left: 16px;
    background-position: 10px 0;
    background-size: 20px;
  }
}

.site-nav__sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  background-color: #4c4c4e;
}
.is-on .site-nav__sub-nav {
  display: block;
}
.site-nav__sub-nav.single-col {
  width: 40%;
}
.is-on .site-nav__sub-nav.single-col ul {
  display: block;
}
.site-nav__sub-nav::after {
  display: table;
  clear: both;
  content: "";
}
@media screen and (max-width: 768px) {
  .site-nav__sub-nav {
    position: relative;
    width: calc(100% + 10px);
    clear: both;
    background-color: rgb(229.0625, 234.25, 239.4375);
  }
  .site-nav__sub-nav.single-col {
    width: calc(100% + 10px);
  }
}

.sub-nav__section {
  width: 33.3333333333%;
  float: left;
  padding: 30px;
  text-align: left;
}
.sub-nav__section a {
  clear: left;
  color: #ececec;
}
.sub-nav__section a:hover {
  color: #d5e7da;
}
.sub-nav__section > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.sub-nav__section li {
  margin-bottom: 0.6em;
  font-size: 0.8rem;
  line-height: 1.25em;
}
.sub-nav__section li:last-child {
  margin-bottom: 0;
}
.sub-nav__section.single-col {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-nav__section {
    width: 100%;
    float: none;
    padding: 0;
  }
  .sub-nav__section a {
    display: inline-block;
    padding: 10px 0;
    color: #262626;
  }
  .sub-nav__section > ul {
    display: none;
    padding-left: 20px;
    background-color: #f5f7f9;
  }
}

.sub-nav__section-title {
  display: block;
  margin-bottom: 1.5em;
  color: #ececec;
  font-size: 0.75rem;
  font-weight: normal;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sub-nav__section-title {
    display: inline-block;
    margin-bottom: 0;
    padding: 10px 0 10px 20px;
    color: #262626;
  }
  .sub-nav__section-title::after {
    position: relative;
    top: 5px;
    display: inline-block;
    margin-left: 1rem;
    background-size: 20px;
    content: "";
    height: 20px;
    width: 20px;
  }
  .sub-nav__section-title.is-on + ul {
    display: block;
  }
}

.translated-header-navigation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #00396f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation {
    height: auto;
  }
}

.translated-header-navigation__inner-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__inner-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 900px) {
  .site-header .translated-header-navigation__inner-wrapper.site-width__constraint, .site-header .translated-header-navigation__inner-wrapper.country-offices, .site-header .translated-header-navigation__inner-wrapper.hero-banner__inner-wrapper {
    padding: 0;
  }
}

.translated-header-navigation__mobile-toggle-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__mobile-toggle-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    width: 100%;
  }
}

.translated-header-navigation__logo-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__logo-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 20px;
    width: calc(100% - 65px);
  }
}

.translated-header-navigation__logo img {
  height: 31px;
  width: 205px;
}

.translated-header-navigation__language {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 27px;
  vertical-align: middle;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__language {
    display: none;
  }
}

.translated-header-navigation__navigation-links .translated-header-navigation__language {
  display: none;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__navigation-links .translated-header-navigation__language {
    display: block;
    margin-left: 0;
  }
}

.translated-header-navigation__language a {
  color: #7cb085;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  position: relative;
  top: 3px;
}

.translated-header-navigation__navigation-links .translated-header-navigation__language a {
  color: #7cb085;
  font-size: 25px;
  margin-bottom: 12px;
  text-transform: none;
}

.translated-header-navigation__navigation-links .translated-header-navigation__language a:hover,
.translated-header-navigation__language a:hover {
  color: #d5e7da;
}

.translated-header-navigation__language::before {
  background-color: #ffffff;
  content: "";
  display: inline-block;
  height: 45px;
  margin-right: 27px;
  width: 2px;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__language::before {
    display: none;
  }
}

.translated-header-navigation__mobile-toggle-checkbox,
.translated-header-navigation__mobile-toggle-label {
  display: none;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__mobile-toggle-checkbox,
  .translated-header-navigation__mobile-toggle-label {
    cursor: pointer;
    display: block;
    height: 22px;
    position: absolute;
    right: 20px;
    top: 25px;
    width: 30px;
  }
}

.translated-header-navigation__mobile-toggle-checkbox {
  opacity: 0;
}

.translated-header-navigation__mobile-toggle-icon {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 3px;
  width: 30px;
  margin-top: -3px;
  background-color: #262626;
  border-radius: 2px;
}
.translated-header-navigation__mobile-toggle-icon::before, .translated-header-navigation__mobile-toggle-icon::after {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #262626;
  border-radius: 2px;
  content: "";
}
.translated-header-navigation__mobile-toggle-icon::before {
  bottom: 8px;
}
.translated-header-navigation__mobile-toggle-icon::after {
  top: 8px;
}

.translated-header-navigation__mobile-toggle-label:hover .translated-header-navigation__mobile-toggle-icon,
.translated-header-navigation__mobile-toggle-label:hover .translated-header-navigation__mobile-toggle-icon::before,
.translated-header-navigation__mobile-toggle-label:hover .translated-header-navigation__mobile-toggle-icon::after {
  background-color: #98a7bc;
  cursor: pointer;
}

.translated-header-navigation__navigation-links {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__navigation-links {
    display: block;
    height: 0px;
    margin-left: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    overflow: hidden;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .translated-header-navigation__mobile-toggle-checkbox:checked ~ .translated-header-navigation__navigation-links {
    height: auto;
    padding: 0 0 10px 0;
  }
}

.translated-header-navigation__navigation-links a {
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__navigation-links a {
    display: block;
    padding: 6px 0;
  }
}

.translated-header-navigation__eyebrow-links {
  bottom: 6px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .translated-header-navigation__eyebrow-links {
    border-bottom: 2px solid #7cb085;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 9px 20px 9px 10px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

.translated-header-navigation__eyebrow-links a {
  color: #ffffff;
  font-size: 13px;
}

.translated-header-navigation__eyebrow-links a,
.translated-header-navigation__navigation-links a {
  margin-left: 20px;
}

.translated-header-navigation__navigation-links a:hover,
.translated-header-navigation__eyebrow-links a:hover {
  color: #98a7bc;
}

.share-bar-office-for-mobile {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .share-bar-office-for-mobile {
    display: none;
    margin-bottom: 0;
  }
}
.share-bar-office-for-mobile .share-bar li {
  margin-bottom: 0;
}

.footer-promo + .share-bar-office-for-mobile {
  margin-bottom: 25px;
  margin-top: 70px;
}
@media (max-width: 599.98px) {
  .footer-promo + .share-bar-office-for-mobile {
    margin-top: 75px;
  }
}
@media (min-width: 768px) {
  .footer-promo + .share-bar-office-for-mobile {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.hero-banner-default .share-bar--internal-wrapper {
  margin-top: 0;
}

.share-bar {
  float: right;
  font-size: 0;
  list-style-type: none;
  padding: 0;
  position: relative;
}
.share-bar--internal-wrapper {
  float: right;
  margin-top: -18px;
}
.article-content .share-bar, .share-bar--article-page {
  padding-top: 18px;
}
.share-bar-office-for-mobile .share-bar {
  float: none;
  text-align: center;
}
.share-bar li {
  display: inline-block;
  margin: 6px 0 0 10px;
  vertical-align: top;
}
.share-bar-office-for-mobile .share-bar li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 350px) {
  .share-bar li {
    margin: 0 0 5px 8px;
  }
}
.share-bar .share-bar__download--top {
  margin-left: 0;
  margin-top: 0;
}
.share-bar a {
  color: #4c4c4e;
  display: block;
  line-height: 1em;
}
.share-bar .icon {
  height: 26px;
  width: 26px;
  background-size: 26px;
}
.share-bar .a2a_button_email {
  padding-right: 0 !important;
}
.share-bar .icon-download {
  background: none;
  display: inline-block;
  margin-right: 5px;
  height: 10px;
  width: 9px;
  vertical-align: middle;
}
.share-bar .icon-download path {
  fill: #4D4D4F;
}
.share-bar .share-bar__download {
  border: 2px solid #fbcc11;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 30px;
  margin: 0 20px 0 0;
}
.share-bar .share-bar__download:hover {
  color: #fff;
  background-color: #fbcc11;
}
.share-bar .share-bar__download:hover .icon-download path {
  fill: #fff;
}
@media screen and (max-width: 350px) {
  .share-bar .share-bar__download {
    margin: 0 5px 0 0;
  }
}
.share-bar .share-bar__download--top {
  margin-top: 0;
}
@media (max-width: 599.98px) {
  .share-bar .share-bar__download--top {
    display: block;
    margin-bottom: 25px;
    margin-left: 0;
  }
  .share-bar .share-bar__download--top + li {
    margin-left: 0;
  }
  .share-bar .share-bar__download--top .share-bar__download {
    display: inline-block;
    margin-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .share-bar {
    right: auto;
  }
}
@media (max-width: 599.98px) {
  .share-bar {
    right: auto;
    text-align: center;
  }
  .share-bar li {
    margin-top: 0;
  }
  .share-bar .icon {
    height: 38px;
    width: 38px;
    background-size: 38px;
  }
  .share-bar--internal-wrapper {
    position: absolute;
    bottom: 24px;
    left: 6px;
  }
}

.share-bar--bottom {
  background-color: #f5f7f9;
  padding: 20px;
  text-align: center;
}
.share-bar--bottom::after {
  display: table;
  clear: both;
  content: "";
}
.share-bar--bottom .share-bar, .article-container .share-bar--bottom .share-bar {
  display: inline-block;
  float: none;
  margin: 0;
  right: auto;
  vertical-align: middle;
  padding-top: 0;
}
.share-bar--bottom .share-bar li, .article-container .share-bar--bottom .share-bar li {
  margin-top: 6px;
  margin-bottom: 7px;
  vertical-align: middle;
}
.share-bar--bottom .share-bar .share-bar__download--bottom, .article-container .share-bar--bottom .share-bar .share-bar__download--bottom {
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 599.98px) {
  .share-bar--bottom .share-bar .share-bar__download--bottom, .article-container .share-bar--bottom .share-bar .share-bar__download--bottom {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 650px) {
  .article-container .share-bar--bottom .share-bar, .article-container .article-container .share-bar--bottom .share-bar {
    margin: 0;
  }
}
.share-bar--bottom .share-bar__download {
  margin-right: 0;
}
.share-bar--bottom .share-bar__download--bottom {
  position: relative;
  float: right;
  padding-left: 60px;
  margin-left: 60px;
}
.share-bar--bottom .share-bar__download--bottom:before {
  content: "";
  background-color: #D6D6D8;
  position: absolute;
  left: 0;
  top: -5px;
  height: 50px;
  width: 1px;
}
@media (max-width: 999.98px) {
  .share-bar--bottom .share-bar__download--bottom {
    padding-left: 35px;
    margin-left: 35px;
  }
}
@media (max-width: 599.98px) {
  .share-bar--bottom .share-bar__download--bottom {
    float: none;
    display: block;
    margin-bottom: 25px;
    margin-left: 0;
    padding-left: 0;
  }
  .share-bar--bottom .share-bar__download--bottom:before {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .share-bar--bottom {
    margin-bottom: 60px;
  }
}
@media (max-width: 599.98px) {
  .share-bar--bottom {
    background-color: transparent;
    display: block;
    float: left;
    padding: 0;
    width: 100%;
  }
}

.share-bar__share {
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 599.98px) {
  .share-bar__share {
    display: none;
  }
}

.boardIndexShareBar {
  left: -1px;
}

.hero-banner,
.hero-banner-default {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -10px;
  position: relative;
}
.hero-banner::after,
.hero-banner-default::after {
  display: table;
  clear: both;
  content: "";
}
.page--what-we-do .hero-banner,
.page--what-we-do .hero-banner-default {
  background-color: #272727;
  padding: 24px 0 184px;
}
.page--practice-listing .hero-banner,
.page--practice-listing .hero-banner-default {
  background-color: #00396f; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #00396f), to(#002b53)); background-image: linear-gradient(to bottom, #00396f 1%, #002b53 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00396f", endColorstr="#002b53",GradientType=0 ); padding: 24px 0 48px;
  margin-bottom: 64px;
}

.hero-banner-default.hero-banner--translated {
  background-color: #f5f7f9;
}
.hero-banner-default.hero-banner--translated .breadcrumbs,
.hero-banner-default.hero-banner--translated .breadcrumbs a,
.hero-banner-default.hero-banner--translated .hero-banner__headline,
.hero-banner-default.hero-banner--translated .hero-banner__copy {
  color: #4c4c4e;
}

.hero-banner__overlay {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  opacity: 0.25;
}
.theme--light-on-dark .hero-banner__overlay {
  background-color: #4c4c4e;
}
.theme--dark-on-light .hero-banner__overlay {
  background-color: #f5f7f9;
}

.hero-banner__content {
  position: relative;
  z-index: 3;
  width: 60%;
  padding: 100px 0;
}
.hero-banner__content .content--title {
  color: #ffffff;
  margin: 0 0 7.5px;
}
.JP .hero-banner__content .content--title {
  font-size: 2.65rem;
}
.hero-banner__content .content-description {
  font-size: 1.1rem;
  display: inline-block;
  width: 70%;
  margin: 0 0 30px;
}
.JP .hero-banner__content .content-description {
  font-size: 0.85rem;
}
.hero-banner__content.content--right {
  float: right;
  text-align: right;
}
.hero-banner__content.content--left {
  float: left;
  text-align: left;
}
.hero-banner__content.content--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}
.hero-banner__content.content--center .content-description {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 0;
}
.hero-banner__content.content--center .content-description + .content-link {
  margin-top: 30px;
}
.theme--light-on-dark .hero-banner__content {
  color: #ffffff;
}
.theme--light-on-dark .hero-banner__content .content-link {
  color: #ffffff;
}
.theme--dark-on-light .hero-banner__content {
  color: #262626;
}
.theme--dark-on-light .hero-banner__content .content-link {
  color: #262626;
}
@media screen and (max-width: 975px) {
  .hero-banner__content {
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  .hero-banner__content {
    width: 100%;
  }
  .hero-banner__content .content-description {
    display: none;
  }
  .hero-banner__content .content-link {
    width: 90%;
  }
  .hero-banner__content.content--left, .hero-banner__content.content--right {
    float: none;
    text-align: center;
  }
}

.hero-banner--blog .hero-banner__breadcrumb a {
  color: #fff;
  display: inline-block;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin: 1rem 0;
  padding-left: 10px;
  position: relative;
}
.hero-banner--blog .hero-banner__breadcrumb a:after {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 7px;
  position: absolute;
  top: 9px;
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 7px;
}
.hero-banner--blog article.hero-banner__content {
  float: none;
  margin: 0 auto;
  max-width: 28rem;
  padding: 7.35rem 0 6rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .hero-banner--blog article.hero-banner__content {
    padding: 3.5rem 0 2.15rem;
  }
}
.hero-banner--blog .hero-banner__breadcrumb + article.hero-banner__content {
  padding: 4rem 0 6rem;
}
@media screen and (max-width: 700px) {
  .hero-banner--blog .hero-banner__breadcrumb + article.hero-banner__content {
    padding: 0.15rem 0 2.15rem;
  }
}
.hero-banner--blog .content-description {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, serif;
  font-size: 24px;
  font-style: italic;
  line-height: 32px;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .hero-banner--blog .content-description {
    display: block;
    font-size: 18px;
  }
}
.hero-banner--blog h1.content--title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 12px;
  line-height: 33px;
  margin: 0 auto 1.15rem;
  padding-bottom: 1.15rem;
  text-transform: uppercase;
}
@media screen and (max-width: 700px) {
  .hero-banner--blog h1.content--title {
    line-height: 44px;
  }
}

.hero-banner__headline {
  clear: both;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  padding: 32px 0;
}
.page--practice-listing .hero-banner__headline {
  text-align: left;
  padding-bottom: 0px;
}

.hero-banner__separator {
  background-color: #fbcc11;
  width: 42px;
  height: 5px;
  margin: 0 auto;
  border: 0;
}

.hero-banner__copy {
  clear: both;
  color: #ffffff;
  font-size: 26px;
  text-align: center;
  padding: 48px 84px 0;
}
.page--practice-listing .hero-banner__copy {
  text-align: left;
  padding: 0;
}
.hero-banner-default .hero-banner__copy {
  width: 80%;
}

@media (max-width: 599.98px) {
  .hero-banner__inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero-banner__inner-wrapper .share-bar {
    -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
            order: 99;
  }
  .hero-banner__copy {
    font-size: 1rem;
    padding: 48px 24px 24px;
  }
  .hero-banner-default .hero-banner__copy {
    width: 100%;
  }
  .page--practice-listing .hero-banner__headline {
    padding-top: 0;
  }
  .page--practice-listing .hero-banner__inner-wrapper {
    padding-bottom: 32px;
  }
}
.hero-banner--consultant {
  min-height: 205px;
}
@media (min-width: 768px) {
  .hero-banner--consultant {
    min-height: 300px;
  }
}
.hero-banner--consultant .hero-banner__content {
  padding: 85px 0 0;
  width: auto;
}
@media (min-width: 768px) {
  .hero-banner--consultant .hero-banner__content {
    padding: 110px 0 0;
  }
}
.hero-banner--consultant .hero-banner__content .content--title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-banner--consultant .hero-banner__content .content--title {
    font-size: 70px;
  }
}
.hero-banner--consultant .hero-banner__content .content-description {
  display: block;
  left: 0;
  position: absolute;
  top: 10px;
}
@media (min-width: 768px) {
  .hero-banner--consultant .hero-banner__content .content-description {
    top: 20px;
  }
}
.hero-banner--consultant .hero-banner__content .content-description a {
  font-size: 16px;
  line-height: 27px;
  padding-left: 10px;
  position: relative;
}
.hero-banner--consultant .hero-banner__content .content-description a:before {
  border-top: 2px solid;
  border-left: 2px solid;
  content: "";
  height: 7px;
  left: 0;
  margin-top: -4.5px;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 7px;
}
.hero-banner--consultant .hero-banner__content,
.hero-banner--consultant .hero-banner__content a {
  color: #ffffff;
}
.hero-banner--consultant.theme--dark-on-light .hero-banner__content,
.hero-banner--consultant.theme--dark-on-light .hero-banner__content a {
  color: #262626;
}
.hero-banner--consultant.theme--light-on-dark .hero-banner__content,
.hero-banner--consultant.theme--light-on-dark .hero-banner__content a {
  color: #ffffff;
}

.hero-banner--office {
  min-height: 205px;
}
@media (min-width: 768px) {
  .hero-banner--office {
    min-height: 440px;
  }
}
.hero-banner--office .landing-banner__share-bar {
  display: none;
  position: relative;
  z-index: 4;
}
@media (min-width: 768px) {
  .hero-banner--office .landing-banner__share-bar {
    display: block;
  }
}
.hero-banner--office .hero-banner__content {
  padding: 70px 0;
  width: auto;
}
@media (min-width: 768px) {
  .hero-banner--office .hero-banner__content {
    margin-bottom: 150px;
    padding: 25px 0;
  }
}
.hero-banner--office .hero-banner__content .content--title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 55px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-banner--office .hero-banner__content .content--title {
    font-size: 100px;
  }
}
@media (min-width: 960px) {
  .hero-banner--office .hero-banner__content .content--title {
    font-size: 110px;
  }
}
@media (min-width: 1060px) {
  .hero-banner--office .hero-banner__content .content--title.mobile--only {
    display: none;
  }
}
.hero-banner--office .hero-banner__content .content--title.desktop--only {
  display: none;
}
@media (min-width: 1060px) {
  .hero-banner--office .hero-banner__content .content--title.desktop--only {
    display: block;
  }
}

.hero-banner--global-locations {
  min-height: 205px;
}
@media (min-width: 768px) {
  .hero-banner--global-locations {
    min-height: 300px;
  }
}
.hero-banner--global-locations .hero-banner__content {
  padding: 70px 0 60px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-banner--global-locations .hero-banner__content {
    padding: 100px 0 85px;
  }
}
.hero-banner--global-locations .content--title {
  font-size: 38px;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-banner--global-locations .content--title {
    font-size: 70px;
  }
}
.hero-banner--global-locations .content--subtitle {
  font-size: 24px;
  font-variant-numeric: oldstyle-nums;
  -webkit-font-feature-settings: "onum";
  font-feature-settings: "onum";
  margin: 5px 0 0;
}
@media (min-width: 768px) {
  .hero-banner--global-locations .content--subtitle {
    font-size: 30px;
  }
}

.hero-banner--multilingual {
  min-height: 275px;
}
@media (min-width: 768px) {
  .hero-banner--multilingual {
    min-height: 455px;
  }
}
.hero-banner--multilingual .site-width__constraint.site-width__has-gutter, .hero-banner--multilingual .country-offices, .hero-banner--multilingual .hero-banner__inner-wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .hero-banner--multilingual .site-width__constraint.site-width__has-gutter, .hero-banner--multilingual .country-offices, .hero-banner--multilingual .hero-banner__inner-wrapper {
    position: relative;
  }
}
.hero-banner--multilingual .hero-banner__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 70px 0;
  text-align: center;
  width: auto;
}

.hero-banner--country {
  min-height: 375px;
}
@media (min-width: 768px) {
  .hero-banner--country {
    min-height: 455px;
  }
}
.hero-banner--country .hero-banner__background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  position: absolute;
  width: 100%;
}
.hero-banner--country .landing-banner__share-bar {
  display: none;
  position: relative;
  z-index: 4;
}
@media (min-width: 768px) {
  .hero-banner--country .landing-banner__share-bar {
    display: block;
    left: 0;
    position: absolute;
    right: 0;
  }
}
.hero-banner--country .hero-banner__inner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-banner--country .hero-banner__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 70px 0;
  text-align: center;
  width: auto;
}
@media (min-width: 768px) {
  .hero-banner--country .hero-banner__content {
    padding: 25px 0;
  }
}
.hero-banner--country .content--title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .hero-banner--country .content--title {
    font-size: 96px;
  }
}
@media (min-width: 960px) {
  .hero-banner--country .content--title {
    font-size: 110px;
  }
}
.hero-banner--country.theme--dark-on-light .content--title {
  color: #262626;
}
.hero-banner--country.theme--dark-on-light .language-dropdown__dropdown-trigger {
  color: #262626;
  border-color: #262626;
  background-color: rgba(76, 76, 78, 0.15);
}
.hero-banner--country.theme--dark-on-light .language-dropdown__dropdown-trigger::after {
  border-top-color: #262626;
}

.service-links {
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #00396f;
  padding-top: 20px;
  padding-bottom: 20px;
}

.service-links__mobile-trigger {
  display: none;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
}
.service-links__mobile-trigger:after {
  font-size: 1.5rem;
  content: " +";
}
.is-on .service-links__mobile-trigger:after {
  content: " –";
}
@media screen and (max-width: 800px) {
  .service-links__mobile-trigger {
    display: block;
  }
}

.service-links__list {
  display: table;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .service-links__list {
    display: none;
  }
}

.service-links__item {
  border-left: 1px solid #56738f;
  display: table-cell;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}
@media screen and (min-width: 801px) {
  .service-links__item:nth-last-child(6):first-child, .service-links__item:nth-last-child(6):first-child ~ li {
    width: 16.6666666667%;
  }
  .service-links__item:nth-last-child(5):first-child, .service-links__item:nth-last-child(5):first-child ~ li {
    width: 20%;
  }
  .service-links__item:nth-last-child(4):first-child, .service-links__item:nth-last-child(4):first-child ~ li {
    width: 25%;
  }
  .service-links__item:nth-last-child(3):first-child, .service-links__item:nth-last-child(3):first-child ~ li {
    width: 33.3333333333%;
  }
  .service-links__item:nth-last-child(2):first-child, .service-links__item:nth-last-child(2):first-child ~ li {
    width: 50%;
  }
}
.service-links__item a {
  color: #ffffff;
  text-decoration: none;
  line-height: 1.5333333333em;
}
.service-links__item a:hover {
  color: #98a7bc;
}
.service-links__item:first-child {
  border-left: none;
}
@media screen and (max-width: 800px) {
  .service-links__item {
    display: block;
    width: 100%;
  }
}

.top-feature {
  background-color: #f5f7f9;
  padding: 75px 0;
  margin: 0 0 50px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-feature {
    text-align: center;
  }
}

.top-feature__media {
  float: left;
  margin: 0;
}
.top-feature__media a {
  display: block;
}
.top-feature__media img {
  display: block;
  max-width: 300px;
  height: 211px;
}
@media screen and (max-width: 1060px) {
  .top-feature__media img {
    max-width: 27.5vw;
    height: auto;
  }
}
@media screen and (max-width: 750px) {
  .top-feature__media {
    float: none;
    margin: 0 0 20px 0;
  }
  .top-feature__media img {
    max-width: 100%;
    margin: 0 auto;
  }
}

.top-feature__content {
  width: calc(100% - 320px);
  float: right;
}
@media screen and (max-width: 1060px) {
  .top-feature__content {
    width: calc(100% - (27.5vw + 20px));
    float: right;
  }
}
@media screen and (max-width: 750px) {
  .top-feature__content {
    float: none;
    width: 100%;
  }
}

.top-feature__date, .media-container__media-date, .featured-content__text--date, .content-list__date {
  font-size: 0.7rem;
  margin-bottom: 1.2142857143em;
}

.top-feature__title {
  margin: 0 0 5px 0;
  color: #262626;
}
.top-feature__title a {
  color: #262626;
}
.top-feature__title:hover, .top-feature__title a:hover {
  color: #7cb085;
}

.top-feature__description {
  font-size: 0.9rem;
  margin-bottom: 1.4444444444em;
}

@media screen and (max-width: 750px) {
  .top-feature__button {
    width: 100%;
  }
}

.social-media {
  margin: 0 0 50px;
}
.social-media .social-list {
  display: none;
}
@media screen and (max-width: 750px) {
  .social-media {
    text-align: center;
  }
  .social-media .social-list {
    display: inline-block;
    max-width: 100%;
    margin: 0;
  }
  .social-media .social-list .icon {
    height: 38px;
    width: 38px;
    background-size: 38px;
  }
}

.social-media__content-grouping::after {
  display: table;
  clear: both;
  content: "";
}
.social-media__content-grouping .content-grouping--left {
  float: left;
  width: 50%;
}
.social-media__content-grouping .content-grouping--right {
  float: right;
  width: 46%;
}
@media screen and (max-width: 750px) {
  .social-media__content-grouping .content-grouping--left,
  .social-media__content-grouping .content-grouping--right {
    float: none;
    width: 100%;
  }
}

.social-media__description {
  margin: 0 0 30px;
}
.social-media__description .description__title {
  margin-bottom: 0.5em;
  line-height: 1.1428571429em;
  font-size: 1.4rem;
}

.social-media__featured {
  padding: 28px 26px;
  background-color: #f5f7f9;
}
.social-media__featured::after {
  display: table;
  clear: both;
  content: "";
}
.social-media__featured .featured-media__icon {
  float: left;
  height: auto;
  max-width: 52px;
}
.social-media__featured .featured-media__description {
  margin-left: 70px;
}
@media screen and (max-width: 750px) {
  .social-media__featured {
    display: none;
  }
}
.social-media__featured .featured-media__icon2 {
  float: left;
  max-width: 52px;
  height: auto;
  position: relative;
  clear: left;
}
.social-media__featured .featured-media__icon2:after {
  content: "";
  display: none;
  height: 100px;
  width: 100px;
  position: absolute;
  top: 100px;
  left: 0;
  background: url("/images/global/icons/WeChatQR.jpg") no-repeat;
}
.social-media__featured .featured-media__icon2:hover:after {
  display: block;
}
.social-media__featured .social-media_wrapper {
  margin-bottom: 1em;
}

.social-media__twitter-box img {
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .social-media__twitter-box {
    display: none;
  }
}

.featured-content {
  padding: 0 0 50px 0;
}
.featured-content .buttons {
  text-align: center;
  margin: 50px 0 0 0;
}
.featured-content .button, .featured-content .corporateDrop > a, .featured-content .searchBox .submit, .searchBox .featured-content .submit,
.featured-content .searchBox .scfSubmitButton,
.searchBox .featured-content .scfSubmitButton, .featured-content .contentWrap a.button, .contentWrap .featured-content a.button {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .featured-content .button, .featured-content .corporateDrop > a, .featured-content .searchBox .submit, .searchBox .featured-content .submit,
  .featured-content .searchBox .scfSubmitButton,
  .searchBox .featured-content .scfSubmitButton, .featured-content .contentWrap a.button, .contentWrap .featured-content a.button {
    display: block;
  }
}
.featured-content .bx-wrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  background: transparent;
}
.featured-content.has-background {
  background-color: #f5f7f9;
  padding-top: 100px;
}
.featured-content.has-background .section-header .inner-text {
  background-color: #f5f7f9;
}
.featured-content.section--country-page {
  padding-bottom: 85px;
}

.featured-content__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.featured-content__list::after {
  display: table;
  clear: both;
  content: "";
}

.featured-content__image img {
  height: auto;
}

.featured-insights .featured-content__image {
  margin-bottom: 22px;
}

.featured-content__item {
  float: left;
  margin-left: 5%;
  width: 30%;
}
.featured-content__item:nth-child(3n+1) {
  margin-left: 0;
  clear: left;
}
.featured-content__item:nth-child(n+4) {
  margin-top: 2em;
}
@media (max-width: 599.98px) {
  .featured-content__item {
    width: auto;
    margin-left: 0;
    padding: 0 12px;
  }
  .featured-content__item .item-title {
    margin-top: 0;
  }
}
.featured-content__item--one-up, .featured-content__list--one-up .featured-content__item {
  margin-left: 0;
  width: 100%;
}
.featured-content__item--one-up:nth-child(n+2), .featured-content__list--one-up .featured-content__item:nth-child(n+2) {
  margin-top: 2em;
}
.is-slider .featured-content__item--one-up, .is-slider .featured-content__list--one-up .featured-content__item {
  margin-left: 0;
  margin-top: 0;
  width: auto;
}
.featured-insights .featured-content__item--one-up .featured-content__image, .featured-insights .featured-content__list--one-up .featured-content__item .featured-content__image {
  float: left;
  padding-left: 64px;
  padding-right: 48px;
  width: 45%;
}
.featured-insights .featured-content__item--one-up .item-title, .featured-insights .featured-content__list--one-up .featured-content__item .item-title {
  margin-top: 0;
}
.featured-insights .featured-content__item--one-up .featured-content__text--link,
.featured-insights .featured-content__item--one-up .featured-content__text--summary, .featured-insights .featured-content__list--one-up .featured-content__item .featured-content__text--link,
.featured-insights .featured-content__list--one-up .featured-content__item .featured-content__text--summary {
  margin-left: 45%;
}
@media (max-width: 767.98px) {
  .featured-insights .featured-content__item--one-up .featured-content__image, .featured-insights .featured-content__list--one-up .featured-content__item .featured-content__image {
    padding-left: 0;
    padding-right: 24px;
  }
}
@media (max-width: 599.98px) {
  .featured-insights .featured-content__item--one-up .featured-content__image, .featured-insights .featured-content__list--one-up .featured-content__item .featured-content__image {
    margin-bottom: 16px;
    padding: 0;
    float: none;
    width: 100%;
  }
  .featured-insights .featured-content__item--one-up .featured-content__text--link,
  .featured-insights .featured-content__item--one-up .featured-content__text--summary, .featured-insights .featured-content__list--one-up .featured-content__item .featured-content__text--link,
  .featured-insights .featured-content__list--one-up .featured-content__item .featured-content__text--summary {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .featured-content__item--one-up, .featured-content__list--one-up .featured-content__item {
    margin-left: 0;
    width: 100%;
  }
}
.featured-content__item--two-up, .featured-content__list--two-up .featured-content__item {
  margin-left: 4%;
  width: 48%;
}
.featured-content__item--two-up:nth-child(3n+1), .featured-content__list--two-up .featured-content__item:nth-child(3n+1) {
  margin-left: 4%;
  clear: none;
}
.featured-content__item--two-up:nth-child(2n+1), .featured-content__list--two-up .featured-content__item:nth-child(2n+1) {
  margin-left: 0;
  clear: left;
}
.featured-content__item--two-up:nth-child(n+3), .featured-content__list--two-up .featured-content__item:nth-child(n+3) {
  margin-top: 2em;
}
.is-slider .featured-content__item--two-up:nth-child(3n+1), .is-slider .featured-content__item--two-up:nth-child(2n+1), .is-slider .featured-content__item--two-up:nth-child(n+3), .is-slider .featured-content__item--two-up, .is-slider .featured-content__list--two-up .featured-content__item:nth-child(3n+1), .is-slider .featured-content__list--two-up .featured-content__item:nth-child(2n+1), .is-slider .featured-content__list--two-up .featured-content__item:nth-child(n+3), .is-slider .featured-content__list--two-up .featured-content__item {
  clear: none;
  margin-left: 0;
  margin-top: 0;
  width: auto;
}
@media screen and (max-width: 700px) {
  .featured-content__item--two-up, .featured-content__list--two-up .featured-content__item {
    margin-left: 0;
    width: 100%;
  }
}
.featured-content__item .item-title {
  margin: 0 0 0.1em;
}
.featured-content__item .item-title a {
  color: #262626;
}
.featured-content__item .item-title a:hover {
  color: #7cb085;
}
.featured-content__item .item-date {
  font-size: 0.7rem;
}
.is-slider .featured-content__item {
  margin-left: 0;
  width: auto;
}
@media screen and (max-width: 500px) {
  .featured-content__item {
    text-align: center;
  }
}

.social-media__featured .featured-media__icon2 {
  float: left;
  max-width: 52px;
  height: auto;
  position: relative;
  clear: left;
}

.featured-media__icon2:after {
  content: "";
  display: none;
  height: 100px;
  width: 100px;
  position: absolute;
  top: 100px;
  left: 0;
  background: url("/images/global/icons/WeChatQR.jpg") no-repeat;
}

.featured-media__icon2:hover:after {
  display: block;
}

.social-media_wrapper {
  margin-bottom: 1em;
}

.featured-content-top-padded {
  padding: 50px 0 50px 0;
}
.featured-content-top-padded .buttons {
  text-align: center;
  margin: 50px 0 0 0;
}
.featured-content-top-padded .button, .featured-content-top-padded .corporateDrop > a, .featured-content-top-padded .searchBox .submit, .searchBox .featured-content-top-padded .submit,
.featured-content-top-padded .searchBox .scfSubmitButton,
.searchBox .featured-content-top-padded .scfSubmitButton, .featured-content-top-padded .contentWrap a.button, .contentWrap .featured-content-top-padded a.button {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .featured-content-top-padded .button, .featured-content-top-padded .corporateDrop > a, .featured-content-top-padded .searchBox .submit, .searchBox .featured-content-top-padded .submit,
  .featured-content-top-padded .searchBox .scfSubmitButton,
  .searchBox .featured-content-top-padded .scfSubmitButton, .featured-content-top-padded .contentWrap a.button, .contentWrap .featured-content-top-padded a.button {
    display: block;
  }
}
.featured-content-top-padded .bx-wrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  background: transparent;
}
.featured-content-top-padded.has-background {
  background-color: #f5f7f9;
  padding-top: 100px;
}
.featured-content-top-padded.has-background .section-header .inner-text {
  background-color: #f5f7f9;
}

.article-content .mobile-hide {
  display: block;
}

.article-content .mobile-show {
  display: none;
}

.article-content {
  margin-bottom: 50px;
}
.article-content:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 650px) {
  .article-content .mobile-hide {
    display: none;
  }
  .article-content .mobile-show {
    display: block;
  }
}

.articlepage-content {
  padding-left: 9% !important;
  padding-right: 9% !important;
}

@media screen and (max-width: 800px) {
  .articlepage-content {
    padding-left: 0% !important;
    padding-right: 0% !important;
  }
}
.article-container .site-width__has-gutter, .article-container .country-offices, .article-container .hero-banner__inner-wrapper {
  padding: 0;
}
.article-container .mobile-show {
  display: none;
}
@media screen and (max-width: 650px) {
  .article-container .mobile-hide {
    display: none;
  }
  .article-container .mobile-show {
    display: block;
  }
  .article-container .share-bar {
    float: none;
    margin: 0 0 30px 0;
  }
  .article-container .share-bar::after {
    display: table;
    clear: both;
    content: "";
  }
}

.copyrighttext {
  padding-top: 20px;
}

.copyrighttext em {
  font-size: 18px !important;
}

.article__date {
  padding: 14px 0;
}

.article__title {
  font-size: 2.2rem;
  line-height: 1.1363636364em;
  margin-bottom: 23px;
}
@media (max-width: 599.98px) {
  .article__title {
    font-size: 1.76rem;
  }
}

.article__sub-title {
  font-size: 1.5rem;
  line-height: 1.2em;
  margin-top: 0;
}
@media (max-width: 599.98px) {
  .article__sub-title {
    font-size: 1.2rem;
  }
}

.article__topics-list {
  margin: 0 0 25px 0;
  padding: 0;
  list-style-type: none;
}
.article__topics-list::after {
  display: table;
  clear: both;
  content: "";
}
.article__topics-list li {
  float: left;
  margin: 0 7px 7px 0;
}
.article__topics-list a {
  font-size: 0.65rem;
  line-height: 1.1em;
  color: #7cb085;
  text-transform: uppercase;
  background-color: #f5f7f9;
  padding: 9px 18px 8px 18px;
  border-radius: 5px;
  display: block;
}
@media screen and (max-width: 650px) {
  .article__topics-list {
    display: none;
  }
}

.article__info {
  line-height: 1em;
  margin: 0 0 30px 0;
  color: #a5a5a6;
}
.article__info .info-publisher,
.article__info .info-authors {
  line-height: 1.5em;
}
.article__info .info-publisher {
  color: #a5a5a6;
}
.article__info .info-publisher + .info-authors {
  border-left: 2px solid #a5a5a6;
  padding-left: 10px;
  margin-left: 10px;
}
.article__info .info-authors {
  display: inline;
}
@media screen and (max-width: 650px) {
  .article__info {
    line-height: 1.2em;
  }
  .article__info .info-publisher + .info-authors {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 5px;
  }
  .article__info .info-authors {
    display: block;
  }
}

.article__body img {
  max-width: 100%;
  height: auto;
}
.article__body .article-media {
  margin: 0 0 1em 0;
}
.article__body .article-media figcaption {
  margin: 0 auto;
  width: 95%;
}
.article__body .article__topics-list {
  display: none;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 650px) {
  .article__body .article__topics-list {
    display: block;
  }
}

.article__aside {
  position: relative;
  float: right;
  background-color: #f5f7f9;
  padding: 20px;
  margin: 0 0 20px 0;
  top: 20%;
  width: 270px;
  right: -9%;
}
.article__aside .title {
  font-size: 0.8rem;
  text-transform: uppercase;
  border-bottom: 1px dotted #4c4c4e;
  margin-bottom: 20px;
}
.article__aside .aside-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.article__aside .aside-list__item {
  margin-bottom: 0.9444444444em;
}
.article__aside .aside-list__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .article__aside {
    display: none;
  }
}

.article__footer-meta {
  position: relative;
  padding: 50px 0 0 0;
  margin: 50px 0;
  text-align: center;
}
.article__footer-meta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15%;
  width: 30%;
  height: 1px;
  border-top: 1px dotted #747476;
}

.site-footer {
  background-color: #000000;
  font-size: 0.6rem;
  color: #ffffff;
  text-transform: uppercase;
  padding: 25px 0 50px 0;
  width: 100%;
}
.site-footer::after {
  display: table;
  clear: both;
  content: "";
}
.CN .site-footer {
  padding-bottom: 80px;
}
.site-footer .copyright {
  float: right;
  text-align: right;
  clear: right;
  max-width: 150px;
}
.site-footer .social-list {
  margin: 0 0 10px 0;
  padding: 0;
  float: right;
  clear: right;
  list-style-type: none;
  max-width: 180px;
}
@media screen and (max-width: 875px) {
  .site-footer {
    text-align: center;
  }
  .site-footer .social-list {
    display: block;
    float: none;
    max-width: 100%;
    width: 100%;
  }
  .site-footer .social-list li {
    display: inline-block;
    float: none;
  }
  .site-footer .copyright {
    float: none;
    text-align: center;
    display: block;
    clear: both;
    max-width: 100%;
  }
}

.footer-nav {
  float: left;
  margin-top: 49px;
  max-width: calc(100% - 150px);
}
.footer-nav a {
  display: block;
  float: left;
  padding: 2px 0 0 10px;
  margin: 0 0 0 10px;
  border-left: 1px solid #a5a5a6;
  color: #ffffff;
  text-decoration: none;
}
.footer-nav a:hover {
  color: #a5a5a6;
}
.footer-nav .footer-nav__row {
  float: left;
}
.footer-nav .footer-nav__row:first-child a:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}
@media screen and (max-width: 875px) {
  .footer-nav {
    float: none;
    clear: both;
    margin: 0 0 25px 0;
    text-align: center;
    max-width: 100%;
    display: inline-block;
  }
  .footer-nav::after {
    display: table;
    clear: both;
    content: "";
  }
  .footer-nav a {
    float: none;
    display: inline-block;
    margin-bottom: 5px;
  }
  .footer-nav .footer-nav__row {
    float: none;
  }
  .footer-nav .footer-nav__row a:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .footer-nav .footer-nav__row:first-child a:nth-child(3) {
    padding-left: 2px;
    border-left: none;
  }
  .footer-nav .footer-nav__row:first-child a:nth-child(4) {
    padding-right: 6px;
  }
}

@media (max-width: 599.98px) {
  .recentArticles .slides li {
    margin-bottom: 0;
    text-align: left;
  }
}
@media (max-width: 599.98px) {
  .recentArticles .slides li img {
    float: left;
    margin: 0 0.75rem 0.25rem 0;
  }
}
@media (max-width: 599.98px) {
  .recentArticles .articleItem {
    clear: none;
    overflow: visible;
    padding-left: 0;
    padding-right: 1.25rem;
  }
}
.recentArticles .articleItem h4 a {
  font-family: inherit;
}
@media (max-width: 599.98px) {
  .recentArticles .flex-direction-nav {
    text-align: center;
  }
}
@media (max-width: 599.98px) {
  .recentArticles .flex-direction-nav li {
    display: inline-block;
    float: none;
    padding: 0;
    position: relative;
    width: auto;
  }
}
@media (max-width: 599.98px) {
  .recentArticles .flex-direction-nav li a {
    font-size: 1.7rem;
    position: static;
  }
  .recentArticles .flex-direction-nav li a:before {
    display: block;
  }
}

.landing-banner {
  position: relative;
  top: -4px;
  padding: 0 3%;
  color: #ffffff;
  font-size: 1rem;
  background-color: #00396f;
}
.landing-banner::after {
  display: table;
  clear: both;
  content: "";
}

.landing-banner--white {
  color: #262626 !important;
  background-color: #ffffff;
  border-bottom: #ffffff solid 1px;
}

.landing-banner__text {
  width: 80%;
}
@media screen and (max-width: 800px) {
  .landing-banner__text {
    width: 100%;
  }
}

.landing-banner__text--title {
  margin-bottom: 0.5em;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.114;
  letter-spacing: normal;
}

.landing-banner__text--summary, .page--practice-listing .hero-banner__copy {
  margin-bottom: 2em;
  font-size: 1.2em;
  line-height: 1.333;
}

.landing-banner__share-bar {
  padding: 25px 0;
}

.landing-banner__share-bar .share-bar__download {
  display: none;
}

.board-index-landing-banner {
  position: relative;
  margin-top: -4px;
  padding: 0 3%;
  color: #ffffff;
  font-size: 1rem;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.board-index-landing-banner::after {
  display: table;
  clear: both;
  content: "";
}

.landing-container__main-content {
  background-color: #ffffff;
  padding: 42px 0 2em 0;
}
.landing-container__main-content::after {
  display: table;
  clear: both;
  content: "";
}

.language-dropdown {
  position: relative;
  display: inline-block;
  min-width: 100px;
}
@media (min-width: 768px) {
  .language-dropdown {
    margin-top: 20px;
  }
  .consultant-banner .language-dropdown, .consultant-banner-rev .language-dropdown {
    margin-top: 0;
  }
}

.language-dropdown__dropdown-trigger {
  position: relative;
  display: block;
  min-width: 40px;
  padding: 10px 30px 10px 10px;
  color: #ffffff;
  font-size: 16px;
  text-align: left;
  border: 2px solid #ffffff;
  background-color: rgba(76, 76, 78, 0.85);
  cursor: pointer;
}
.consultant-banner .language-dropdown__dropdown-trigger, .consultant-banner-rev .language-dropdown__dropdown-trigger {
  padding: 0 0 0 10px;
  color: #4c4c4e;
  line-height: 19px;
  letter-spacing: 1.2px;
  border: none;
  background-color: transparent;
}

.language-dropdown__dropdown-trigger::after {
  position: absolute;
  top: 18px;
  right: 10px;
  display: inline-block;
  margin-left: 10px;
  border-top: 5px solid #ffffff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
}
.consultant-banner .language-dropdown__dropdown-trigger::after, .consultant-banner-rev .language-dropdown__dropdown-trigger::after {
  top: 7px;
  border-top-color: #71B77D;
}

.language-dropdown.is-on .language-dropdown__dropdown-trigger::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.language-dropdown__language-list {
  position: absolute;
  top: 100%;
  left: 0;
  display: inline-block;
  width: 100%;
  visibility: hidden;
  margin-top: 3px;
  padding: 5px 0 0;
  list-style: none;
  text-align: left;
  border: 0;
  background-color: #338441;
}
.consultant-banner .language-dropdown__language-list, .consultant-banner-rev .language-dropdown__language-list {
  z-index: 1;
  background-color: #f5f7f9;
  border-top: 2px solid #71B77D;
}

.language-dropdown.is-on .language-dropdown__language-list {
  display: inline-block;
  visibility: visible;
}

.language-dropdown__language-list::after {
  position: absolute;
  top: -10px;
  right: 7px;
  display: inline-block;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #338441;
  border-left: 10px solid transparent;
  content: "";
}
.consultant-banner .language-dropdown__language-list::after, .consultant-banner-rev .language-dropdown__language-list::after {
  display: none;
}

.language-dropdown__item {
  margin: 0;
}

.language-dropdown__link {
  position: relative;
  display: block;
  margin: 0;
  padding: 3px 30px 3px 12px;
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
  background: transparent;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.consultant-banner .language-dropdown__link, .consultant-banner-rev .language-dropdown__link {
  color: #999;
}

.language-dropdown__link:hover {
  color: #ffffff;
  background-color: rgb(41.0508196721, 106.2491803279, 52.3196721311);
}
.consultant-banner .language-dropdown__link:hover, .consultant-banner-rev .language-dropdown__link:hover {
  color: #262626;
  background-color: transparent;
}

.language-dropdown__link--selected::after {
  position: absolute;
  top: 4px;
  right: 12px;
  display: inline-block;
  height: 15px;
  width: 8px;
  margin-left: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.consultant-banner .language-dropdown__link--selected::after, .consultant-banner-rev .language-dropdown__link--selected::after {
  display: none;
}

.content-up {
  text-align: center;
}
.content-up::after {
  display: table;
  clear: both;
  content: "";
}
.content-up * {
  max-width: 100%;
}
@media (max-width: 599.98px) {
  .content-up {
    margin-bottom: 2em;
  }
}

.content-up__top-section {
  width: 820px;
  margin: 0 auto;
}

.content-up__top-section:before {
  display: inline-block;
  height: 5px;
  width: 42px;
  background-color: #fbcc11;
  content: "";
}

.top-section__title h4 {
  margin-top: 0.2em;
  font-size: 1.5em;
}

.top-section__summary {
  margin-bottom: 22px;
}

.content-up__img {
  height: auto;
  width: 100%;
}

.two-up__item {
  width: calc(50% - 25px);
  max-width: 475px;
}
@media (max-width: 599.98px) {
  .two-up__item {
    max-width: 100%;
  }
}
.two-up__item .featured-content__image {
  position: relative;
  height: 0;
  padding-bottom: 66.667%;
  overflow-y: hidden;
}
.two-up__item .featured-content__image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.two-up__item--left {
  margin-right: 25px;
  float: left;
}

.two-up__item--right {
  margin-left: 25px;
  float: right;
}

.rte__3-col {
  word-wrap: break-word;
}

.three-up__item, .rte__3-col {
  width: calc((100% - 4 * 25px) / 3);
  max-width: 300px;
  word-wrap: break-word;
}
@media (max-width: 599.98px) {
  .three-up__item, .rte__3-col {
    max-width: 100%;
  }
}
.three-up__item .featured-content__image, .rte__3-col .featured-content__image {
  position: relative;
  height: 0;
  padding-bottom: 66.667%;
  overflow-y: hidden;
}
.three-up__item .featured-content__image img, .rte__3-col .featured-content__image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.three-up__item--left {
  margin-right: 25px;
  float: left;
}

.three-up__item--middle {
  margin: 0 25px;
  float: left;
}

.three-up__item--right {
  margin-left: 25px;
  float: right;
}

.content-up__item {
  display: inline-block;
  height: auto;
  margin-top: 1em;
  margin-bottom: 2em;
  vertical-align: top;
}
@media (max-width: 599.98px) {
  .content-up__item {
    width: 100%;
    margin: 0;
  }
}

.content-up__item .featured-content {
  padding-bottom: 0;
}

.featured-content__image {
  position: relative;
}
.featured-content__image img {
  width: 100%;
}

.video-icon {
  position: absolute;
  right: 8px;
  bottom: 33px;
  font-size: 0.65em;
  line-height: 1.154;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

.video-icon:before {
  height: 14px;
  width: 21px;
  position: absolute;
  right: 12px;
  bottom: -15px;
  background-color: #ffffff;
  border-radius: 3px;
  content: "";
}

.video-icon:after {
  height: 0;
  width: 0;
  position: absolute;
  top: 17px;
  right: 2px;
  border-color: transparent #ffffff transparent transparent;
  border-style: solid;
  border-width: 6px 20px 6px 0;
  content: "";
}

.featured-content__text {
  text-align: left;
}

.featured-content__text--title {
  margin-top: 18px;
  margin-bottom: 7px;
  font-size: 1.2em;
  line-height: 1.208;
  color: #4c4c4e;
}
.featured-content__text--title a {
  color: #4c4c4e;
}
.featured-content__text--title:hover, .featured-content__text--title a:hover {
  color: #7cb085;
}

.featured-content__text--date, .content-list__date {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.7em;
}

.featured-content__text--summary {
  font-size: 0.9em;
  margin-top: 10px;
}

.featured-content__text--link {
  margin-top: 6px;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1.667;
  text-transform: uppercase;
}
.featured-content__text--link a,
.featured-content__text--link span {
  position: relative;
  display: inline-block;
}
.featured-content__text--link a::after,
.featured-content__text--link span::after {
  display: inline-block;
  height: 10px;
  width: 6px;
  margin-left: 5px;
  content: url("/images/svg/arrow.svg");
}
@media (max-width: 599.98px) {
  .featured-content__text--link {
    padding-bottom: 25px;
  }
}

.listed-links {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.listed-links li {
  padding-bottom: 10px;
}

.content-up__item .listed-links {
  padding-bottom: 70px;
}
.content-up__item .listed-links:last-of-type {
  padding-bottom: 0;
}
@media (max-width: 599.98px) {
  .content-up__item .listed-links {
    padding-bottom: 0;
  }
}

.listed-links__title {
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px dotted;
}

.listed-links__column {
  float: left;
  width: 50%;
  margin-top: 0.65em;
  margin-bottom: 0;
  padding-left: 0;
}
.industries-listing .column-25 .listed-links__column {
  width: 100%;
}
@media (max-width: 599.98px) {
  .listed-links__column {
    padding-bottom: 10px;
  }
  .industries-listing .listed-links__column {
    width: 100%;
    float: none;
    margin-top: 0;
  }
}

.listed-links__column * {
  margin-bottom: 0px;
  list-style: none;
  word-wrap: break-word;
  line-height: 1.2;
  padding-left: 0;
  font-size: 0.8rem;
}
.industries-listing .listed-links__column * {
  margin-bottom: 16px;
  font-size: 20px;
}

.listed-links__column--one {
  padding-right: 0.65em;
}

.listed-links__column--two {
  padding-left: 0.65em;
}

@media (max-width: 599.98px) {
  .listed-links__column--one,
  .listed-links__column--two {
    padding-right: 0;
    padding-left: 0;
  }
}
.content-list__item {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  padding: 20px 20px 0 20px;
  text-align: left;
  background-color: #ececec;
}

.content-list__title {
  color: #4c4c4e;
  font-family: FFScalaWebBold;
  font-size: 1.2em;
}

.content-list__date {
  margin-top: 6px;
  border-bottom: 1px dotted #4c4c4e;
  padding-bottom: 20px;
}

.two-up__item--left .content-list__item:last-of-type,
.two-up__item--right .content-list__item:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}

.two-up__item--left .content-list__item:last-of-type .content-list__date,
.two-up__item--right .content-list__item:last-of-type .content-list__date {
  border-bottom: none;
}

.two-up-body-promo .column-50:first-child, .two-up-body-promo .practice-detail-callout__copy > div:first-child:nth-last-child(2), .two-up-body-promo .practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div:first-child {
  padding-right: 12px;
}

.content-up--featured .content-up__top-section:before {
  display: none;
}
.content-up--featured .content-up__top-section h4 {
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: 19px;
  text-align: left;
  text-transform: uppercase;
}
.content-up--featured .featured-content__text--link {
  display: inline;
}
.content-up--featured .featured-content__text--date, .content-up--featured .content-list__date {
  display: none;
}

.sidebar .content-up--featured .content-up__list-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.sidebar .content-up--featured .content-up__item.three-up__item, .sidebar .content-up--featured .content-up__item.rte__3-col {
  display: block;
  width: 100%;
  margin: 10px 0px 30px;
}
@media (max-width: 767.98px) {
  .sidebar .content-up--featured .content-up__item.three-up__item:nth-of-type(3), .sidebar .content-up--featured .content-up__item.rte__3-col:nth-of-type(3) {
    display: none;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child {
    max-width: none;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content {
    text-align: left;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content > .featured-content__image, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content > .featured-content__image {
    width: 31%;
    display: inline-block;
    margin-right: 2%;
    vertical-align: top;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content__image, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content__image {
    padding-bottom: 0;
    height: auto;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content__image img, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content__image img {
    position: relative;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content__text, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content__text {
    display: inline-block;
    width: 66%;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content__text--title, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content__text--title {
    margin-top: 0px;
  }
}
@media (max-width: 599.98px) {
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child {
    max-width: 100%;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content {
    text-align: center;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content > .featured-content__image, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content > .featured-content__image {
    width: auto;
    display: block;
    margin-right: 0;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content__image, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content__image {
    padding-bottom: 66.667%;
    height: 0;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content__image img, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content__image img {
    position: absolute;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content__text, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content__text {
    display: block;
    width: auto;
  }
  .sidebar .content-up--featured .content-up__item.three-up__item:only-child .featured-content__text--title, .sidebar .content-up--featured .content-up__item.rte__3-col:only-child .featured-content__text--title {
    margin-top: 18px;
  }
}
.sidebar .content-up--featured a.button, .sidebar .content-up--featured .corporateDrop > a, .sidebar .content-up--featured .searchBox a.submit, .searchBox .sidebar .content-up--featured a.submit,
.sidebar .content-up--featured .searchBox a.scfSubmitButton,
.searchBox .sidebar .content-up--featured a.scfSubmitButton {
  width: 100%;
}
@media (max-width: 767.98px) {
  .sidebar .content-up--featured a.button, .sidebar .content-up--featured .corporateDrop > a, .sidebar .content-up--featured .searchBox a.submit, .searchBox .sidebar .content-up--featured a.submit,
  .sidebar .content-up--featured .searchBox a.scfSubmitButton,
  .searchBox .sidebar .content-up--featured a.scfSubmitButton {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 599.98px) {
  .sidebar .content-up--featured a.button, .sidebar .content-up--featured .corporateDrop > a, .sidebar .content-up--featured .searchBox a.submit, .searchBox .sidebar .content-up--featured a.submit,
  .sidebar .content-up--featured .searchBox a.scfSubmitButton,
  .searchBox .sidebar .content-up--featured a.scfSubmitButton {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .sidebar .content-up--featured {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.media-container {
  margin: 0 0 40px 0;
}
@media (max-width: 599.98px) {
  .media-container {
    margin: 0 !important;
  }
}

.media-container__title {
  font-size: 1.5em;
  text-align: center;
  max-width: 820px;
  margin: 0.2em auto 0 auto;
}
.media-container__title a {
  color: #4c4c4e;
}
.media-container__title a:hover {
  color: #7cb085;
}
.media-container__title:before {
  display: block;
  width: 42px;
  height: 5px;
  background-color: #fbcc11;
  content: "";
  margin: 0 auto 20px;
}

.media-container__description {
  text-align: center;
  max-width: 820px;
  margin: 0.2em auto 26px auto;
}

.media-container__media-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.media-container__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; height: 0;
}

.video-wrapper__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-container__image-wrapper img {
  max-width: 100%;
  height: auto;
}

.media-container__featured-left {
  display: inline-block;
  width: 35%;
  padding-right: 15px;
  float: left;
}
@media (max-width: 599.98px) {
  .media-container__featured-left {
    width: 100%;
  }
}

.media-container__featured-right {
  display: inline-block;
  float: right;
  width: 60%;
  float: right;
}
@media (max-width: 599.98px) {
  .media-container__featured-right {
    width: 100%;
  }
}
.media-container__featured-right .featured-content__text--summary {
  line-height: 1.5em;
  margin-top: 0;
}
.media-container__featured-right .featured-content__text--link a,
.media-container__featured-right .featured-content__text--link span {
  position: relative;
  display: inline-block;
}
.media-container__featured-right .featured-content__text--link a::after,
.media-container__featured-right .featured-content__text--link span::after {
  display: inline-block;
  height: 10px;
  width: 6px;
  margin-left: 5px;
  content: url("/images/svg/arrow.svg");
}

.media-container__about {
  margin-top: 15px;
  overflow: hidden;
  text-align: left;
}

.media-container__media-title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif;
  margin-top: 0;
  font-size: 1.2em;
}
.media-container__media-title a {
  color: #4c4c4e;
}
.media-container__media-title a:hover {
  color: #7cb085;
}

.media-container__media-date {
  font-size: 0.7em;
  margin-top: 18px;
  color: #a5a5a6;
}

.microsite-header {
  padding-top: 23px;
  background-color: #4c4c4e;
  height: 84px;
  width: 100%;
  position: fixed;
  z-index: 10;
}
.microsite-header::after {
  display: table;
  clear: both;
  content: "";
}
@media screen and (max-width: 760px) {
  .microsite-header {
    height: 64px;
    padding-top: 19px;
  }
}

.microsite-logo {
  padding-left: 40px;
  padding-right: 10px;
}
@media screen and (max-width: 760px) {
  .microsite-logo {
    padding-left: 20px;
  }
}
@media screen and (max-width: 375px) {
  .microsite-logo {
    padding-left: 11px;
  }
}

.microsite-logo img {
  height: 36px;
}
@media screen and (max-width: 760px) {
  .microsite-logo img {
    height: 32px;
  }
}
@media screen and (max-width: 375px) {
  .microsite-logo img {
    height: 27px;
  }
}

.microsite-menu {
  float: right;
  color: #a5a5a6;
  list-style: none;
  padding-top: 8px;
}
@media screen and (max-width: 1550px) {
  .microsite-menu {
    max-width: 1000px;
  }
}
@media screen and (max-width: 760px) {
  .microsite-menu {
    display: none;
  }
}
.microsite-menu.mobile-is-on {
  margin-top: 12px;
  display: block;
  width: 100%;
  max-width: 100%;
  padding-top: 0;
  background-color: #404040;
  position: absolute;
  z-index: 1;
}

.microsite-menu__item {
  display: inline-block;
}
.microsite-menu__item:not(:last-child):after {
  content: " |";
  padding: 0 25px;
}
@media screen and (max-width: 1550px) {
  .microsite-menu__item:not(:last-child):after {
    padding: 0 10px;
  }
}
@media screen and (max-width: 760px) {
  .microsite-menu__item {
    display: block;
    background-color: #404040;
  }
  .microsite-menu__item:not(:last-child) {
    border-bottom: 1px dotted #c8c8c8;
  }
  .microsite-menu__item:not(:last-child):after {
    content: "";
    padding: 0;
  }
}

.microsite-menu__item a:hover {
  color: #a5a5a6;
}

.microsite-menu__item a,
.microsite-menu__item > span {
  padding: 0 20px;
  font-size: 0.9em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 1550px) {
  .microsite-menu__item a,
  .microsite-menu__item > span {
    padding: 0 10px;
  }
}
@media screen and (max-width: 760px) {
  .microsite-menu__item a,
  .microsite-menu__item > span {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
  }
}

.microsite-menu__item--dropdown {
  margin-right: 40px;
}
.microsite-menu__item--dropdown.is-on .js-show-hide--target {
  z-index: 1;
}
.microsite-menu__item--dropdown.is-on .microsite-dropdown__link {
  color: #a5a5a6;
}
.microsite-menu__item--dropdown.is-on .microsite-dropdown__link .icon-arrow-up {
  background: url("/images/svg/icon-arrow-up.svg") no-repeat;
}
@media screen and (max-width: 760px) {
  .microsite-menu__item--dropdown {
    margin-right: 0;
  }
  .microsite-menu__item--dropdown.is-on .microsite-dropdown__link {
    border-bottom: 1px dotted #c8c8c8;
  }
}

.microsite-dropdown__arrow {
  display: inline-block;
  vertical-align: middle;
  background-size: 10px;
  height: 10px;
  width: 10px;
  cursor: pointer;
  margin-left: 8px;
}
@media screen and (max-width: 760px) {
  .microsite-dropdown__arrow {
    display: inline-block;
  }
}

.microsite-dropdown__list {
  text-align: center;
  background-color: #404040;
  margin-right: 50px;
  position: absolute;
  margin-top: 25px;
  right: 0;
  width: 210px;
}
@media screen and (max-width: 760px) {
  .microsite-dropdown__list {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
  }
}

a.microsite-dropdown__item {
  text-transform: none;
  display: block;
  padding: 10px 30px;
}
a.microsite-dropdown__item:hover {
  background-color: #338441;
}
@media screen and (max-width: 760px) {
  a.microsite-dropdown__item {
    padding: 0 15px 0 45px;
  }
}

.microsite-hamburger {
  position: relative;
  display: none;
  max-width: calc(100% - 250px);
  float: right;
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0;
  padding: 0 0 0 20px;
  margin-right: 20px;
  max-width: 100%;
}
@media screen and (max-width: 760px) {
  .microsite-hamburger {
    display: block;
  }
}
.microsite-hamburger .icon-hamburger {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 3px;
  width: 14px;
  margin-top: -3px;
  background-color: #262626;
  border-radius: 2px;
}
.microsite-hamburger .icon-hamburger::before, .microsite-hamburger .icon-hamburger::after {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #262626;
  border-radius: 2px;
  content: "";
}
.microsite-hamburger .icon-hamburger::before {
  bottom: 5px;
}
.microsite-hamburger .icon-hamburger::after {
  top: 5px;
}

.blue-theme .microsite__hero,
.blue-theme .microsite__hero::after {
  border-bottom-color: #00396f;
}

.green-theme .microsite__hero,
.green-theme .microsite__hero::after {
  border-bottom-color: #338441;
}

.red-theme .microsite__hero,
.red-theme .microsite__hero::after {
  border-bottom-color: #7f2238;
}

.gray-theme .microsite__hero,
.gray-theme .microsite__hero::after {
  border-bottom-color: #4c4c4e;
}

.microsite__body {
  width: 100%;
  background-color: transparent;
  padding-top: 84px;
}
@media screen and (max-width: 1025px) {
  .microsite__body {
    padding-top: 64px;
  }
}

.microsite__overhang {
  background-color: #ffffff;
  width: 1000px;
  height: 234px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  top: -176px;
}
.microsite__overhang:before {
  -webkit-box-shadow: -15px 0 15px -15px inset;
          box-shadow: -15px 0 15px -15px inset;
  content: " ";
  height: 100%;
  left: -15px;
  position: absolute;
  top: 0;
  width: 15px;
}
.microsite__overhang:after {
  -webkit-box-shadow: 15px 0 15px -15px inset;
          box-shadow: 15px 0 15px -15px inset;
  content: " ";
  height: 100%;
  position: absolute;
  right: -15px;
  width: 15px;
}
@media screen and (max-width: 1025px) {
  .microsite__overhang {
    display: none;
  }
}

.microsite__shadowsoft {
  width: 1030px;
  height: 30px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: -206px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255))); background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 ); }
@media screen and (max-width: 1025px) {
  .microsite__shadowsoft {
    display: none;
  }
}

.microsite__main-content-well {
  padding-top: 30px;
  position: relative;
  margin: -410px auto 0 auto;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 1025px) {
  .microsite__main-content-well {
    margin: 0 auto;
  }
  .microsite__main-content-well > * {
    padding-left: 3%;
    padding-right: 3%;
  }
  .microsite__main-content-well > .full-width {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 375px) {
  .microsite__main-content-well {
    margin-top: -20px;
  }
  .microsite__main-content-well > * {
    padding-left: 10px;
    padding-right: 10px;
  }
  .microsite__main-content-well > .full-width {
    padding-left: 0;
    padding-right: 0;
  }
}
.microsite__main-content-well .full-width ul {
  padding-left: 20px;
}
.microsite__main-content-well .top-feature {
  margin: 40px auto;
}
@media screen and (max-width: 1025px) {
  .microsite__main-content-well .top-feature {
    left: 0;
    width: 100%;
    margin: 40px auto;
  }
}
.microsite__main-content-well .media-container {
  margin: 40px auto;
}
.microsite__main-content-well .featured-content {
  margin: auto;
}
.microsite__main-content-well .img-background-component {
  margin: 40px auto;
}
.microsite__main-content-well .explore-functions {
  margin: 40px auto;
}

.microsite-header {
  padding-top: 23px;
  background-color: #4c4c4e;
  height: 84px;
  width: 100%;
  position: fixed;
  z-index: 10;
}
.microsite-header::after {
  display: table;
  clear: both;
  content: "";
}
@media screen and (max-width: 760px) {
  .microsite-header {
    height: 64px;
    padding-top: 19px;
  }
}

.microsite-logo {
  padding-left: 40px;
  padding-right: 10px;
}
@media screen and (max-width: 760px) {
  .microsite-logo {
    padding-left: 20px;
  }
}
@media screen and (max-width: 375px) {
  .microsite-logo {
    padding-left: 11px;
  }
}

.microsite-logo img {
  height: 36px;
}
@media screen and (max-width: 760px) {
  .microsite-logo img {
    height: 32px;
  }
}
@media screen and (max-width: 375px) {
  .microsite-logo img {
    height: 27px;
  }
}

.microsite-menu {
  float: right;
  color: #a5a5a6;
  list-style: none;
  padding-top: 8px;
}
@media screen and (max-width: 1550px) {
  .microsite-menu {
    max-width: 1000px;
  }
}
@media screen and (max-width: 760px) {
  .microsite-menu {
    display: none;
  }
}
.microsite-menu.mobile-is-on {
  margin-top: 12px;
  display: block;
  width: 100%;
  max-width: 100%;
  padding-top: 0;
  background-color: #404040;
  position: absolute;
  z-index: 1;
}

.microsite-menu__item {
  display: inline-block;
}
.microsite-menu__item:not(:last-child):after {
  content: " |";
  padding: 0 25px;
}
@media screen and (max-width: 1550px) {
  .microsite-menu__item:not(:last-child):after {
    padding: 0 10px;
  }
}
@media screen and (max-width: 760px) {
  .microsite-menu__item {
    display: block;
    background-color: #404040;
  }
  .microsite-menu__item:not(:last-child) {
    border-bottom: 1px dotted #c8c8c8;
  }
  .microsite-menu__item:not(:last-child):after {
    content: "";
    padding: 0;
  }
}

.microsite-menu__item a:hover {
  color: #a5a5a6;
}

.microsite-menu__item a,
.microsite-menu__item > span {
  padding: 0 20px;
  font-size: 0.9em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 1550px) {
  .microsite-menu__item a,
  .microsite-menu__item > span {
    padding: 0 10px;
  }
}
@media screen and (max-width: 760px) {
  .microsite-menu__item a,
  .microsite-menu__item > span {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
  }
}

.microsite-menu__item--dropdown {
  margin-right: 40px;
}
.microsite-menu__item--dropdown.is-on .js-show-hide--target {
  z-index: 1;
}
.microsite-menu__item--dropdown.is-on .microsite-dropdown__link {
  color: #a5a5a6;
}
.microsite-menu__item--dropdown.is-on .microsite-dropdown__link .icon-arrow-up {
  background: url("/images/svg/icon-arrow-up.svg") no-repeat;
}
@media screen and (max-width: 760px) {
  .microsite-menu__item--dropdown {
    margin-right: 0;
  }
  .microsite-menu__item--dropdown.is-on .microsite-dropdown__link {
    border-bottom: 1px dotted #c8c8c8;
  }
}

.microsite-dropdown__arrow {
  display: inline-block;
  vertical-align: middle;
  background-size: 10px;
  height: 10px;
  width: 10px;
  cursor: pointer;
  margin-left: 8px;
}
@media screen and (max-width: 760px) {
  .microsite-dropdown__arrow {
    display: inline-block;
  }
}

.microsite-dropdown__list {
  text-align: center;
  background-color: #404040;
  margin-right: 50px;
  position: absolute;
  margin-top: 25px;
  right: 0;
  width: 210px;
}
@media screen and (max-width: 760px) {
  .microsite-dropdown__list {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
  }
}

a.microsite-dropdown__item {
  text-transform: none;
  display: block;
  padding: 10px 30px;
}
a.microsite-dropdown__item:hover {
  background-color: #338441;
}
@media screen and (max-width: 760px) {
  a.microsite-dropdown__item {
    padding: 0 15px 0 45px;
  }
}

.microsite-hamburger {
  position: relative;
  display: none;
  max-width: calc(100% - 250px);
  float: right;
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0;
  padding: 0 0 0 20px;
  margin-right: 20px;
  max-width: 100%;
}
@media screen and (max-width: 760px) {
  .microsite-hamburger {
    display: block;
  }
}
.microsite-hamburger .icon-hamburger {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 3px;
  width: 14px;
  margin-top: -3px;
  background-color: #262626;
  border-radius: 2px;
}
.microsite-hamburger .icon-hamburger::before, .microsite-hamburger .icon-hamburger::after {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #262626;
  border-radius: 2px;
  content: "";
}
.microsite-hamburger .icon-hamburger::before {
  bottom: 5px;
}
.microsite-hamburger .icon-hamburger::after {
  top: 5px;
}

.microsite__hero {
  width: 100%;
  height: auto;
  border-bottom-style: solid;
  border-bottom-width: 17px;
  background-image: url("../../images/background_image.png");
  background-size: cover;
  position: relative;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 3px 2.91px rgba(0, 0, 0, 0.47);
}
.microsite__hero:after {
  content: "";
  width: 100%;
  height: calc(100% + 17px + 13px); border-bottom-style: solid;
  border-bottom-width: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

.microsite__hero-text {
  padding-top: 230px;
  padding-bottom: 190px;
}
@media screen and (max-width: 1025px) {
  .microsite__hero-text {
    padding-top: 275px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 375px) {
  .microsite__hero-text {
    padding-top: 99px;
    padding-bottom: 95px;
  }
}

.microsite__hero-text--title {
  font-size: 81px;
}
@media screen and (max-width: 375px) {
  .microsite__hero-text--title {
    font-size: 50px;
    line-height: 50px;
  }
}

.microsite__hero-text--subtitle {
  font-size: 40px;
}
@media screen and (max-width: 375px) {
  .microsite__hero-text--subtitle {
    font-size: 25px;
    line-height: 25px;
  }
}

@font-face {
  font-family: "FFScalaWeb";
  src: url("/webfonts/2D7CCC_1_0.eot");
  src: url("/webfonts/2D7CCC_1_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_1_0.woff2") format("woff2"), url("/webfonts/2D7CCC_1_0.woff") format("woff"), url("/webfonts/2D7CCC_1_0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaWebItalic";
  src: url("/webfonts/2D7CCC_0_0.eot");
  src: url("/webfonts/2D7CCC_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_0_0.woff2") format("woff2"), url("/webfonts/2D7CCC_0_0.woff") format("woff"), url("/webfonts/2D7CCC_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaWebBold";
  src: url("/webfonts/2D7CCC_3_0.eot");
  src: url("/webfonts/2D7CCC_3_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_3_0.woff2") format("woff2"), url("/webfonts/2D7CCC_3_0.woff") format("woff"), url("/webfonts/2D7CCC_3_0.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaWebBoldItalic";
  src: url("/webfonts/306B51_0_0.eot");
  src: url("/webfonts/306B51_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/306B51_0_0.woff2") format("woff2"), url("/webfonts/306B51_0_0.woff") format("woff"), url("/webfonts/306B51_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaSansWebRegular";
  src: url("/webfonts/2D7CCC_5_0.eot");
  src: url("/webfonts/2D7CCC_5_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_5_0.woff2") format("woff2"), url("/webfonts/2D7CCC_5_0.woff") format("woff"), url("/webfonts/2D7CCC_5_0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaSansWebItalic";
  src: url("/webfonts/2D7CCC_4_0.eot");
  src: url("/webfonts/2D7CCC_4_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_4_0.woff2") format("woff2"), url("/webfonts/2D7CCC_4_0.woff") format("woff"), url("/webfonts/2D7CCC_4_0.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaSansWebBold";
  src: url("/webfonts/2D7CCC_2_0.eot");
  src: url("/webfonts/2D7CCC_2_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_2_0.woff2") format("woff2"), url("/webfonts/2D7CCC_2_0.woff") format("woff"), url("/webfonts/2D7CCC_2_0.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaSansWebBoldItalic";
  src: url("/webfonts/30FC9E_0_0.eot");
  src: url("/webfonts/30FC9E_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/30FC9E_0_0.woff2") format("woff2"), url("/webfonts/30FC9E_0_0.woff") format("woff"), url("/webfonts/30FC9E_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
.font-scala, .featuredInfo p, .featuredInfo h1, .recentArticles .articleItem h4, .office-contact-details__item h5, .office-contact-details--consultant .office-contact-details__item h5, .c-office-selector__list, .c-office-selector__trigger, .c-office-selector__title, .c-text-banner__title, .three-up-promo-cards__card, .practice-detail__intro-text, .pull-quote__attribution, .navigation__typeahead-title, .tt-menu, h1, .section-header.section-header--country-page, .page--practice-listing .hero-banner__copy, .hero-banner--global-locations .content--subtitle, .social-media__featured .featured-media__description, .landing-banner, .board-index-landing-banner {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, serif;
  font-style: normal;
  font-weight: normal;
}
.JP .font-scala, .JP .featuredInfo p, .featuredInfo .JP p, .JP .recentArticles .articleItem h4, .recentArticles .articleItem .JP h4, .JP .office-contact-details__item h5, .office-contact-details__item .JP h5, .JP .c-office-selector__list, .JP .c-office-selector__trigger, .JP .c-office-selector__title, .JP .c-text-banner__title, .JP .three-up-promo-cards__card, .JP .practice-detail__intro-text, .JP .pull-quote__attribution, .JP .navigation__typeahead-title, .JP .tt-menu, .JP h1, .JP .section-header.section-header--country-page, .JP .page--practice-listing .hero-banner__copy, .page--practice-listing .JP .hero-banner__copy, .JP .hero-banner--global-locations .content--subtitle, .hero-banner--global-locations .JP .content--subtitle, .JP .social-media__featured .featured-media__description, .social-media__featured .JP .featured-media__description, .JP .landing-banner, .JP .board-index-landing-banner {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .font-scala, .CN .featuredInfo p, .featuredInfo .CN p, .CN .recentArticles .articleItem h4, .recentArticles .articleItem .CN h4, .CN .office-contact-details__item h5, .office-contact-details__item .CN h5, .CN .c-office-selector__list, .CN .c-office-selector__trigger, .CN .c-office-selector__title, .CN .c-text-banner__title, .CN .three-up-promo-cards__card, .CN .practice-detail__intro-text, .CN .pull-quote__attribution, .CN .navigation__typeahead-title, .CN .tt-menu, .CN h1, .CN .section-header.section-header--country-page, .CN .page--practice-listing .hero-banner__copy, .page--practice-listing .CN .hero-banner__copy, .CN .hero-banner--global-locations .content--subtitle, .hero-banner--global-locations .CN .content--subtitle, .CN .social-media__featured .featured-media__description, .social-media__featured .CN .featured-media__description, .CN .landing-banner, .CN .board-index-landing-banner {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.font-scala--bold, .mediaCenter .search-results-hit a, .mediaCenter .playerText h3, .recentArticles h3, .featuredResearch h3, .leaderTopics h3,
.contentWrap .leaderTopics h3, .featuredInfo, .officeLocations .grid_6:first-child h4:first-child, .officeLocations .grid_6:first-child h4, .officeLocations h4, .slideshow__practice .cycle-overlay a,
.consultantSlide .cycle-overlay a, .page-head .page-head__title,
.page-head .page-head__subtitle, .consultant-name, .multi-promo__title, .c-featured-articles__title, .page-head__subtitle, .page-head__title, .impact-messaging__text, .practice-leads__name, .practice-detail-consultant__name, .practice-detail__intro-callout-header, .industry-listing__link, .hover-reveal-panels__title, .country-offices__office-city, .rte--img-background h4, .tt-highlight, .navigation__splash-text, .navigation, h1 strong, h2,
h3,
h4,
h5,
h6, .headline, .internal-page-title, .hero-banner__copy, .hero-banner--office .hero-banner__content .content--title, .hero-banner--global-locations .content--title, .hero-banner--country .content--title, .social-media__description .description__title, .article__title, .article__sub-title, .recentArticles .articleItem h4, .landing-banner__text--title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif;
  font-style: normal;
  font-weight: bold;
}
.JP .font-scala--bold, .JP .mediaCenter .search-results-hit a, .mediaCenter .search-results-hit .JP a, .JP .mediaCenter .playerText h3, .mediaCenter .playerText .JP h3, .JP .featuredInfo, .JP .officeLocations .grid_6:first-child h4, .officeLocations .grid_6:first-child .JP h4, .JP .slideshow__practice .cycle-overlay a, .slideshow__practice .cycle-overlay .JP a,
.JP .consultantSlide .cycle-overlay a,
.consultantSlide .cycle-overlay .JP a, .JP .consultant-name, .JP .multi-promo__title, .JP .c-featured-articles__title, .JP .page-head__subtitle, .JP .page-head__title, .JP .impact-messaging__text, .JP .practice-leads__name, .JP .practice-detail-consultant__name, .JP .practice-detail__intro-callout-header, .JP .industry-listing__link, .JP .hover-reveal-panels__title, .JP .country-offices__office-city, .JP .tt-highlight, .JP .navigation__splash-text, .JP .navigation, .JP h1 strong, h1 .JP strong, .JP h2,
.JP h3,
.JP h4,
.JP h5,
.JP h6, .JP .headline, .JP .internal-page-title, .JP .hero-banner__copy, .JP .hero-banner--office .hero-banner__content .content--title, .hero-banner--office .hero-banner__content .JP .content--title, .JP .hero-banner--global-locations .content--title, .hero-banner--global-locations .JP .content--title, .JP .hero-banner--country .content--title, .hero-banner--country .JP .content--title, .JP .social-media__description .description__title, .social-media__description .JP .description__title, .JP .article__title, .JP .article__sub-title, .JP .recentArticles .articleItem h4, .recentArticles .articleItem .JP h4, .JP .landing-banner__text--title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: bold;
}
.CN .font-scala--bold, .CN .mediaCenter .search-results-hit a, .mediaCenter .search-results-hit .CN a, .CN .mediaCenter .playerText h3, .mediaCenter .playerText .CN h3, .CN .featuredInfo, .CN .officeLocations .grid_6:first-child h4, .officeLocations .grid_6:first-child .CN h4, .CN .slideshow__practice .cycle-overlay a, .slideshow__practice .cycle-overlay .CN a,
.CN .consultantSlide .cycle-overlay a,
.consultantSlide .cycle-overlay .CN a, .CN .consultant-name, .CN .multi-promo__title, .CN .c-featured-articles__title, .CN .page-head__subtitle, .CN .page-head__title, .CN .impact-messaging__text, .CN .practice-leads__name, .CN .practice-detail-consultant__name, .CN .practice-detail__intro-callout-header, .CN .industry-listing__link, .CN .hover-reveal-panels__title, .CN .country-offices__office-city, .CN .tt-highlight, .CN .navigation__splash-text, .CN .navigation, .CN h1 strong, h1 .CN strong, .CN h2,
.CN h3,
.CN h4,
.CN h5,
.CN h6, .CN .headline, .CN .internal-page-title, .CN .hero-banner__copy, .CN .hero-banner--office .hero-banner__content .content--title, .hero-banner--office .hero-banner__content .CN .content--title, .CN .hero-banner--global-locations .content--title, .hero-banner--global-locations .CN .content--title, .CN .hero-banner--country .content--title, .hero-banner--country .CN .content--title, .CN .social-media__description .description__title, .social-media__description .CN .description__title, .CN .article__title, .CN .article__sub-title, .CN .recentArticles .articleItem h4, .recentArticles .articleItem .CN h4, .CN .landing-banner__text--title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.font-scala--bold-italic {
  font-family: FFScalaWebBoldItalic, Georgia, Utopia, Charter, serif;
  font-style: italic;
  font-weight: bold;
}

.font-scala--italic, .researchResults__sub-title, .practice-leads__location, .practice-detail-consultant__location, .consultant-quote__quote, .pull-quote__snippet, .faux-dropdown__input, .JP .faux-dropdown__input, .CN .faux-dropdown__input,
input.navigation__search-input,
.JP input.navigation__search-input,
.CN input.navigation__search-input,
input[type=text].navigation__search-input,
.JP input[type=text].navigation__search-input,
.CN input[type=text].navigation__search-input, h1 em, h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, serif;
  font-style: italic;
  font-weight: normal;
}
.JP .font-scala--italic, .JP .researchResults__sub-title, .JP .practice-leads__location, .JP .practice-detail-consultant__location, .JP .consultant-quote__quote, .JP .pull-quote__snippet, .JP .faux-dropdown__input,
.JP input.navigation__search-input, .JP h1 em, h1 .JP em, .JP h2 em, h2 .JP em,
.JP h3 em,
h3 .JP em,
.JP h4 em,
h4 .JP em,
.JP h5 em,
h5 .JP em,
.JP h6 em,
h6 .JP em {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: normal;
}
.CN .font-scala--italic, .CN .researchResults__sub-title, .CN .practice-leads__location, .CN .practice-detail-consultant__location, .CN .consultant-quote__quote, .CN .pull-quote__snippet, .CN .faux-dropdown__input,
.CN input.navigation__search-input, .CN h1 em, h1 .CN em, .CN h2 em, h2 .CN em,
.CN h3 em,
h3 .CN em,
.CN h4 em,
h4 .CN em,
.CN h5 em,
h5 .CN em,
.CN h6 em,
h6 .CN em {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, sans-serif;
  font-style: italic;
  font-weight: normal;
}

.font-scala-sans, .featuredResearch .featuredInfo .meta-date, .mod__component .modImageInfo a, .paging, a.rssLink, label, .type-filter, .search-results__pages .btn, .topics__list a, .c-office-info__manager-label, .navigation__search-mobile-content .navigation__primary-search, .navigation__promo-decription, .navigation__call-out p, .navigation__link-item, .site-header .top-links__nav span,
.site-header .top-links__nav a, html,
body, .article__topics-list a, .microsite__hero {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .font-scala-sans, .JP .featuredResearch .featuredInfo .meta-date, .featuredResearch .featuredInfo .JP .meta-date, .JP .mod__component .modImageInfo a, .mod__component .modImageInfo .JP a, .JP .paging, .JP a.rssLink, .JP label, .JP .type-filter, .JP .search-results__pages .btn, .search-results__pages .JP .btn, .JP .topics__list a, .topics__list .JP a, .JP .c-office-info__manager-label, .JP .navigation__search-mobile-content .navigation__primary-search, .navigation__search-mobile-content .JP .navigation__primary-search, .JP .navigation__promo-decription, .JP .navigation__call-out p, .navigation__call-out .JP p, .JP .navigation__link-item, .JP .site-header .top-links__nav span, .site-header .top-links__nav .JP span,
.JP .site-header .top-links__nav a,
.site-header .top-links__nav .JP a, .JP html,
.JP body, .JP .article__topics-list a, .article__topics-list .JP a, .JP .microsite__hero {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .font-scala-sans, .CN .featuredResearch .featuredInfo .meta-date, .featuredResearch .featuredInfo .CN .meta-date, .CN .mod__component .modImageInfo a, .mod__component .modImageInfo .CN a, .CN .paging, .CN a.rssLink, .CN label, .CN .type-filter, .CN .search-results__pages .btn, .search-results__pages .CN .btn, .CN .topics__list a, .topics__list .CN a, .CN .c-office-info__manager-label, .CN .navigation__search-mobile-content .navigation__primary-search, .navigation__search-mobile-content .CN .navigation__primary-search, .CN .navigation__promo-decription, .CN .navigation__call-out p, .navigation__call-out .CN p, .CN .navigation__link-item, .CN .site-header .top-links__nav span, .site-header .top-links__nav .CN span,
.CN .site-header .top-links__nav a,
.site-header .top-links__nav .CN a, .CN html,
.CN body, .CN .article__topics-list a, .article__topics-list .CN a, .CN .microsite__hero {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.font-scala-sans--bold, .mediaCenter .search-results-hit .meta-date, .executiveTeam > ul > li a, .accountHeading b, .regTable td b, .recentArticles .btn, .recentArticles .slides > li .articleItem h4, .featuredResearch .featuredInfo h3, .leaderTopics li a,
.contentWrap .leaderTopics li a, .mod__component .indicator-link, .searchResults td:first-child a, .paging span > a,
.paging span > span, .scfForm input[type=text],
input[type=text],
.scfForm input[type=password],
input[type=password],
.scfForm select,
select,
.scfForm textarea,
textarea, .searchBox input[type=text],
.searchBox select, .office-contact-details__top-section h4, .sidebar-nav__list-item, a.indicator, .list-item__title, .search-results__no-results h3, .search-results__pages .btn.is-active, .is-active .search-results__sort-label, .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading h4, .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button, .search-facets__group-values li input:checked ~ label, .search-facets__group-selected .search-facets__group-heading h4, .search-facets__group .search-facets__group-heading h3, .search-facets__mobile-label, .search-facets__label, .search-facets__filter-toggle button, .search-box__button, .promo__title, .topics__top-section h4, .consultant-card__title, .c-office-selector__region-name, .c-office-selector__region-title, .c-office-info__directions, .c-office-info__location .c-office-info__download, .c-other-search-professionals__title, .ahc-consultant-listing__name, .ahc-consultant-listing__headshot figcaption, .ahc-consultant-listing__title, .c-consultant-listing__name, .c-consultant-listing__headshot figcaption, .c-consultant-listing__title, .consultant-quote__source, .country-offices__office-view-more, .explore__block span, .microsite__main-content-well .rte h1, .microsite__main-content-well .rte h2, .microsite__main-content-well .rte h3, .microsite__main-content-well .rte h4, .microsite__main-content-well .rte h5, .microsite__main-content-well .rte h6, .navigation__top-level, .navigation__call-out a, .navigation__link-item--more, .navigation__title, .navigation__search-icon, input[type=text].navigation__primary-search, .text-treatment--dates, .researchResults__date, .text-treatment--meta, a.stand-alone, strong, .section-header, .section-header--small, .mod__component .modHdg h3, .button, .corporateDrop > a, .contentWrap .corporateDrop > a, .searchBox .submit,
.searchBox .scfSubmitButton, .contentWrap .searchBox a.submit, .searchBox .contentWrap a.submit,
.contentWrap .searchBox a.scfSubmitButton,
.searchBox .contentWrap a.scfSubmitButton, .contentWrap a.button, .contentWrap .corporateDrop > a, .contentWrap .corporateDrop > a,
.scfSubmitButton, .top-links__nav a,
.top-links__nav span, input[type=text].site-search__search-box, .mobile-hamburger, .site-nav .site-nav__row > li > a, .sub-nav__section-title, .translated-header-navigation__language, .translated-header-navigation__navigation-links a, .share-bar .share-bar__download, .service-links, .top-feature__date, .featured-content__item .item-date, .article__date, .article__info, .article__body .article-media figcaption, .article__aside .title, .article__aside .aside-list__date, .article__footer-meta, .consultant-banner .language-dropdown__dropdown-trigger, .consultant-banner-rev .language-dropdown__dropdown-trigger, .consultant-banner .language-dropdown__link, .consultant-banner-rev .language-dropdown__link, .featured-content__text--date, .content-list__date, .content-up--featured .content-up__top-section h4, .media-container__media-date, .microsite-hamburger {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
.JP .font-scala-sans--bold, .JP .mediaCenter .search-results-hit .meta-date, .mediaCenter .search-results-hit .JP .meta-date, .JP .executiveTeam > ul > li a, .executiveTeam > ul > li .JP a, .JP .accountHeading b, .accountHeading .JP b, .JP .regTable td b, .regTable td .JP b, .JP .recentArticles .btn, .recentArticles .JP .btn, .JP .recentArticles .slides > li .articleItem h4, .recentArticles .slides > li .articleItem .JP h4, .JP .featuredResearch .featuredInfo h3, .featuredResearch .featuredInfo .JP h3, .JP .leaderTopics li a, .leaderTopics li .JP a,
.JP .contentWrap .leaderTopics li a,
.contentWrap .leaderTopics li .JP a, .JP .mod__component .indicator-link, .mod__component .JP .indicator-link, .JP .searchResults td:first-child a, .searchResults td:first-child .JP a, .JP .paging span > a, .paging .JP span > a,
.JP .paging span > span,
.paging .JP span > span, .JP .scfForm input[type=text], .scfForm .JP input[type=text],
.JP input[type=text],
.JP .scfForm input[type=password],
.scfForm .JP input[type=password],
.JP input[type=password],
.JP .scfForm select,
.scfForm .JP select,
.JP select,
.JP .scfForm textarea,
.scfForm .JP textarea,
.JP textarea, .JP .searchBox input[type=text], .searchBox .JP input[type=text],
.JP .searchBox select,
.searchBox .JP select, .JP .office-contact-details__top-section h4, .office-contact-details__top-section .JP h4, .JP .sidebar-nav__list-item, .JP a.indicator, .JP .list-item__title, .JP .search-results__no-results h3, .search-results__no-results .JP h3, .JP .search-results__pages .btn.is-active, .search-results__pages .JP .btn.is-active, .JP .is-active .search-results__sort-label, .is-active .JP .search-results__sort-label, .JP .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading h4, .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading .JP h4, .JP .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button, .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading .JP button, .JP .search-facets__group-values li input:checked ~ label, .search-facets__group-values li .JP input:checked ~ label, .JP .search-facets__group-selected .search-facets__group-heading h4, .search-facets__group-selected .search-facets__group-heading .JP h4, .JP .search-facets__group .search-facets__group-heading h3, .search-facets__group .search-facets__group-heading .JP h3, .JP .search-facets__mobile-label, .JP .search-facets__label, .JP .search-facets__filter-toggle button, .search-facets__filter-toggle .JP button, .JP .search-box__button, .JP .promo__title, .JP .topics__top-section h4, .topics__top-section .JP h4, .JP .consultant-card__title, .JP .c-office-selector__region-name, .JP .c-office-selector__region-title, .JP .c-office-info__directions, .JP .c-office-info__location .c-office-info__download, .c-office-info__location .JP .c-office-info__download, .JP .c-other-search-professionals__title, .JP .ahc-consultant-listing__name, .JP .ahc-consultant-listing__headshot figcaption, .ahc-consultant-listing__headshot .JP figcaption, .JP .ahc-consultant-listing__title, .JP .c-consultant-listing__name, .JP .c-consultant-listing__headshot figcaption, .c-consultant-listing__headshot .JP figcaption, .JP .c-consultant-listing__title, .JP .consultant-quote__source, .JP .country-offices__office-view-more, .JP .explore__block span, .explore__block .JP span, .JP .microsite__main-content-well .rte h1, .microsite__main-content-well .rte .JP h1, .JP .microsite__main-content-well .rte h2, .microsite__main-content-well .rte .JP h2, .JP .microsite__main-content-well .rte h3, .microsite__main-content-well .rte .JP h3, .JP .microsite__main-content-well .rte h4, .microsite__main-content-well .rte .JP h4, .JP .microsite__main-content-well .rte h5, .microsite__main-content-well .rte .JP h5, .JP .microsite__main-content-well .rte h6, .microsite__main-content-well .rte .JP h6, .JP .navigation__top-level, .JP .navigation__call-out a, .navigation__call-out .JP a, .JP .navigation__link-item--more, .JP .navigation__title, .JP .navigation__search-icon, .JP input[type=text].navigation__primary-search, .JP .text-treatment--dates, .JP .researchResults__date, .JP .text-treatment--meta, .JP a.stand-alone, .JP strong, .JP .section-header, .JP .section-header--small, .JP .mod__component .modHdg h3, .mod__component .modHdg .JP h3, .JP .button, .JP .corporateDrop > a, .JP .contentWrap .corporateDrop > a, .contentWrap .JP .corporateDrop > a, .JP .searchBox .submit, .searchBox .JP .submit,
.JP .searchBox .scfSubmitButton,
.searchBox .JP .scfSubmitButton, .JP .contentWrap .searchBox a.submit, .contentWrap .searchBox .JP a.submit, .JP .searchBox .contentWrap a.submit, .searchBox .contentWrap .JP a.submit,
.JP .contentWrap .searchBox a.scfSubmitButton,
.contentWrap .searchBox .JP a.scfSubmitButton,
.JP .searchBox .contentWrap a.scfSubmitButton,
.searchBox .contentWrap .JP a.scfSubmitButton, .JP .contentWrap a.button, .JP .contentWrap .corporateDrop > a, .JP .contentWrap .corporateDrop > a, .JP .contentWrap .searchBox a.submit, .searchBox .JP .contentWrap a.submit,
.JP .contentWrap .searchBox a.scfSubmitButton,
.searchBox .JP .contentWrap a.scfSubmitButton, .contentWrap .JP a.button, .contentWrap .JP .corporateDrop > a, .contentWrap .JP .corporateDrop > a, .contentWrap .JP .searchBox a.submit, .searchBox .contentWrap .JP a.submit,
.contentWrap .JP .searchBox a.scfSubmitButton,
.searchBox .contentWrap .JP a.scfSubmitButton,
.JP .scfSubmitButton, .JP .top-links__nav a, .top-links__nav .JP a,
.JP .top-links__nav span,
.top-links__nav .JP span, .JP input[type=text].site-search__search-box, .JP .mobile-hamburger, .JP .site-nav .site-nav__row > li > a, .site-nav .JP .site-nav__row > li > a, .JP .sub-nav__section-title, .JP .translated-header-navigation__language, .JP .translated-header-navigation__navigation-links a, .translated-header-navigation__navigation-links .JP a, .JP .share-bar .share-bar__download, .share-bar .JP .share-bar__download, .JP .service-links, .JP .top-feature__date, .JP .featured-content__item .item-date, .featured-content__item .JP .item-date, .JP .article__date, .JP .article__info, .JP .article__body .article-media figcaption, .article__body .article-media .JP figcaption, .JP .article__aside .title, .article__aside .JP .title, .JP .article__aside .aside-list__date, .article__aside .JP .aside-list__date, .JP .article__footer-meta, .JP .consultant-banner .language-dropdown__dropdown-trigger, .consultant-banner .JP .language-dropdown__dropdown-trigger, .JP .consultant-banner-rev .language-dropdown__dropdown-trigger, .consultant-banner-rev .JP .language-dropdown__dropdown-trigger, .JP .consultant-banner .language-dropdown__link, .consultant-banner .JP .language-dropdown__link, .JP .consultant-banner-rev .language-dropdown__link, .consultant-banner-rev .JP .language-dropdown__link, .JP .featured-content__text--date, .JP .content-list__date, .JP .content-up--featured .content-up__top-section h4, .content-up--featured .content-up__top-section .JP h4, .JP .media-container__media-date, .JP .microsite-hamburger {
  font-family: FFScalaSansWebBold, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: bold;
}
.CN .font-scala-sans--bold, .CN .mediaCenter .search-results-hit .meta-date, .mediaCenter .search-results-hit .CN .meta-date, .CN .executiveTeam > ul > li a, .executiveTeam > ul > li .CN a, .CN .accountHeading b, .accountHeading .CN b, .CN .regTable td b, .regTable td .CN b, .CN .recentArticles .btn, .recentArticles .CN .btn, .CN .recentArticles .slides > li .articleItem h4, .recentArticles .slides > li .articleItem .CN h4, .CN .featuredResearch .featuredInfo h3, .featuredResearch .featuredInfo .CN h3, .CN .leaderTopics li a, .leaderTopics li .CN a,
.CN .contentWrap .leaderTopics li a,
.contentWrap .leaderTopics li .CN a, .CN .mod__component .indicator-link, .mod__component .CN .indicator-link, .CN .searchResults td:first-child a, .searchResults td:first-child .CN a, .CN .paging span > a, .paging .CN span > a,
.CN .paging span > span,
.paging .CN span > span, .CN .scfForm input[type=text], .scfForm .CN input[type=text],
.CN input[type=text],
.CN .scfForm input[type=password],
.scfForm .CN input[type=password],
.CN input[type=password],
.CN .scfForm select,
.scfForm .CN select,
.CN select,
.CN .scfForm textarea,
.scfForm .CN textarea,
.CN textarea, .CN .searchBox input[type=text], .searchBox .CN input[type=text],
.CN .searchBox select,
.searchBox .CN select, .CN .office-contact-details__top-section h4, .office-contact-details__top-section .CN h4, .CN .sidebar-nav__list-item, .CN a.indicator, .CN .list-item__title, .CN .search-results__no-results h3, .search-results__no-results .CN h3, .CN .search-results__pages .btn.is-active, .search-results__pages .CN .btn.is-active, .CN .is-active .search-results__sort-label, .is-active .CN .search-results__sort-label, .CN .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading h4, .search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading .CN h4, .CN .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button, .search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading .CN button, .CN .search-facets__group-values li input:checked ~ label, .search-facets__group-values li .CN input:checked ~ label, .CN .search-facets__group-selected .search-facets__group-heading h4, .search-facets__group-selected .search-facets__group-heading .CN h4, .CN .search-facets__group .search-facets__group-heading h3, .search-facets__group .search-facets__group-heading .CN h3, .CN .search-facets__mobile-label, .CN .search-facets__label, .CN .search-facets__filter-toggle button, .search-facets__filter-toggle .CN button, .CN .search-box__button, .CN .promo__title, .CN .topics__top-section h4, .topics__top-section .CN h4, .CN .consultant-card__title, .CN .c-office-selector__region-name, .CN .c-office-selector__region-title, .CN .c-office-info__directions, .CN .c-office-info__location .c-office-info__download, .c-office-info__location .CN .c-office-info__download, .CN .c-other-search-professionals__title, .CN .ahc-consultant-listing__name, .CN .ahc-consultant-listing__headshot figcaption, .ahc-consultant-listing__headshot .CN figcaption, .CN .ahc-consultant-listing__title, .CN .c-consultant-listing__name, .CN .c-consultant-listing__headshot figcaption, .c-consultant-listing__headshot .CN figcaption, .CN .c-consultant-listing__title, .CN .consultant-quote__source, .CN .country-offices__office-view-more, .CN .explore__block span, .explore__block .CN span, .CN .microsite__main-content-well .rte h1, .microsite__main-content-well .rte .CN h1, .CN .microsite__main-content-well .rte h2, .microsite__main-content-well .rte .CN h2, .CN .microsite__main-content-well .rte h3, .microsite__main-content-well .rte .CN h3, .CN .microsite__main-content-well .rte h4, .microsite__main-content-well .rte .CN h4, .CN .microsite__main-content-well .rte h5, .microsite__main-content-well .rte .CN h5, .CN .microsite__main-content-well .rte h6, .microsite__main-content-well .rte .CN h6, .CN .navigation__top-level, .CN .navigation__call-out a, .navigation__call-out .CN a, .CN .navigation__link-item--more, .CN .navigation__title, .CN .navigation__search-icon, .CN input[type=text].navigation__primary-search, .CN .text-treatment--dates, .CN .researchResults__date, .CN .text-treatment--meta, .CN a.stand-alone, .CN strong, .CN .section-header, .CN .section-header--small, .CN .mod__component .modHdg h3, .mod__component .modHdg .CN h3, .CN .button, .CN .corporateDrop > a, .CN .contentWrap .corporateDrop > a, .contentWrap .CN .corporateDrop > a, .CN .searchBox .submit, .searchBox .CN .submit,
.CN .searchBox .scfSubmitButton,
.searchBox .CN .scfSubmitButton, .CN .contentWrap .searchBox a.submit, .contentWrap .searchBox .CN a.submit, .CN .searchBox .contentWrap a.submit, .searchBox .contentWrap .CN a.submit,
.CN .contentWrap .searchBox a.scfSubmitButton,
.contentWrap .searchBox .CN a.scfSubmitButton,
.CN .searchBox .contentWrap a.scfSubmitButton,
.searchBox .contentWrap .CN a.scfSubmitButton, .CN .contentWrap a.button, .CN .contentWrap .corporateDrop > a, .CN .contentWrap .corporateDrop > a, .CN .contentWrap .searchBox a.submit, .searchBox .CN .contentWrap a.submit,
.CN .contentWrap .searchBox a.scfSubmitButton,
.searchBox .CN .contentWrap a.scfSubmitButton, .contentWrap .CN a.button, .contentWrap .CN .corporateDrop > a, .contentWrap .CN .corporateDrop > a, .contentWrap .CN .searchBox a.submit, .searchBox .contentWrap .CN a.submit,
.contentWrap .CN .searchBox a.scfSubmitButton,
.searchBox .contentWrap .CN a.scfSubmitButton,
.CN .scfSubmitButton, .CN .top-links__nav a, .top-links__nav .CN a,
.CN .top-links__nav span,
.top-links__nav .CN span, .CN input[type=text].site-search__search-box, .CN .mobile-hamburger, .CN .site-nav .site-nav__row > li > a, .site-nav .CN .site-nav__row > li > a, .CN .sub-nav__section-title, .CN .translated-header-navigation__language, .CN .translated-header-navigation__navigation-links a, .translated-header-navigation__navigation-links .CN a, .CN .share-bar .share-bar__download, .share-bar .CN .share-bar__download, .CN .service-links, .CN .top-feature__date, .CN .featured-content__item .item-date, .featured-content__item .CN .item-date, .CN .article__date, .CN .article__info, .CN .article__body .article-media figcaption, .article__body .article-media .CN figcaption, .CN .article__aside .title, .article__aside .CN .title, .CN .article__aside .aside-list__date, .article__aside .CN .aside-list__date, .CN .article__footer-meta, .CN .consultant-banner .language-dropdown__dropdown-trigger, .consultant-banner .CN .language-dropdown__dropdown-trigger, .CN .consultant-banner-rev .language-dropdown__dropdown-trigger, .consultant-banner-rev .CN .language-dropdown__dropdown-trigger, .CN .consultant-banner .language-dropdown__link, .consultant-banner .CN .language-dropdown__link, .CN .consultant-banner-rev .language-dropdown__link, .consultant-banner-rev .CN .language-dropdown__link, .CN .featured-content__text--date, .CN .content-list__date, .CN .content-up--featured .content-up__top-section h4, .content-up--featured .content-up__top-section .CN h4, .CN .media-container__media-date, .CN .microsite-hamburger {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.font-scala-sans--italic, em,
i {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
}
.JP .font-scala-sans--italic, .JP em,
.JP i {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: normal;
}
.CN .font-scala-sans--italic, .CN em,
.CN i {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
}

.font-scala-sans--bold-italic, strong em, em strong, b i, i b {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
}
.JP .font-scala-sans--bold-italic, .JP strong em, strong .JP em, .JP em strong, em .JP strong, .JP b i, b .JP i, .JP i b, i .JP b {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: bold;
}
.CN .font-scala-sans--bold-italic, .CN strong em, strong .CN em, .CN em strong, em .CN strong, .CN b i, b .CN i, .CN i b, i .CN b {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
}

.font-scala--regular {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.site-header {
  --header-mobile-height: 125px;
  background-color: #fff;
}
.site-header .site-width__constraint, .site-header .country-offices, .site-header .hero-banner__inner-wrapper {
  max-width: 1200px;
}
@media (max-width: 1260px) {
  .site-header .site-width__constraint, .site-header .country-offices, .site-header .hero-banner__inner-wrapper {
    padding: 0 3%;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .site-header .site-width__constraint, .site-header .country-offices, .site-header .hero-banner__inner-wrapper {
    padding: 0;
  }
}
.site-header .top-links {
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 767.98px) {
  .site-header .top-links {
    background-color: #f4f7f9;
    border-bottom: none;
  }
}
.site-header .top-links__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 45px;
  gap: 45px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 35px;
  width: 100%;
}
.site-header .top-links__nav span,
.site-header .top-links__nav a {
  margin: 0;
  color: #818181;
  font-size: 14px;
  text-transform: none;
}
.language-list .site-header .top-links__nav span,
.language-list .site-header .top-links__nav a {
  color: #fff;
}
.site-header .top-links__nav span:hover,
.site-header .top-links__nav a:hover {
  color: rgb(78.368, 78.368, 79.632);
}
@media (max-width: 767.98px) {
  .site-header .top-links__nav {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 16px;
    gap: 16px;
    margin: 16px 0;
    padding: 0 10px;
  }
}
@media (max-width: 767.98px) {
  .site-header .top-links__nav {
    margin-right: 10px;
  }
}
@media (max-width: 767.98px) {
  .site-header {
    background-color: #f4f7f9;
  }
}

.top-links__drop-menu .language-list {
  top: calc(100% + 1px);
  right: auto;
  left: 0;
  min-width: 250px;
  padding: 13px 21px;
  background-color: #f4f7f9;
}
.top-links__drop-menu .language-list a {
  display: block;
  line-height: 1;
  -webkit-transition: color 250ms;
  transition: color 250ms;
}
.top-links__drop-menu .language-list a + a {
  margin-top: 17px;
}
.top-links__drop-menu .language-list svg {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin-left: 5px;
}
.top-links__drop-menu .language-list a.is-selected svg {
  display: none;
}
@media (min-width: 768px) {
  .top-links__drop-menu .language-list {
    padding: 42px 32px 40px;
    -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.08);
  }
  .top-links__drop-menu .language-list a {
    font-size: 16px;
  }
  .top-links__drop-menu .language-list a + a {
    margin-top: 21px;
  }
  .top-links__drop-menu .language-list a:hover {
    color: #7cb085;
  }
  .top-links__drop-menu .language-list svg {
    height: 8px;
    width: 8px;
    margin-left: 4px;
  }
}
@media (max-width: 767.98px) {
  .top-links__drop-menu span {
    margin-right: 25px;
  }
}

.top-links .nav-languages {
  position: relative;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: -16px;
  margin-top: -8px;
}
@media (min-width: 768px) {
  .top-links .nav-languages {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 0;
    text-align: right;
  }
  .top-links .nav-languages.is-on::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 3px;
    background-color: #4a8249;
    content: "";
  }
}

.top-links__nav-languages-trigger {
  position: relative;
  display: inline-block !important;
  padding-right: 35px;
  padding-left: 21px;
}
.top-links__nav-languages-trigger svg {
  pointer-events: none;
}
.top-links__nav-languages-trigger .nav-languages__globe {
  position: absolute;
  left: 0;
  width: 17px;
  height: 17px;
  margin-top: -1px;
}
.top-links__nav-languages-trigger .nav-languages__caret {
  position: absolute;
  right: 15px;
  width: 12px;
  height: 13px;
  margin-top: 1px;
}
.is-on .top-links__nav-languages-trigger .nav-languages__caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (min-width: 768px) {
  .top-links__nav-languages-trigger {
    display: block !important;
    padding-left: 32px;
  }
  .top-links__nav-languages-trigger .nav-languages__globe {
    left: 6px;
    width: 22px;
    height: 22px;
    margin-top: -2px;
  }
}

@media (max-width: 959.98px) {
  .site-logo {
    margin-right: 15px;
  }
  .site-logo img {
    width: 150px;
  }
}
@media (max-width: 767.98px) {
  .site-logo {
    height: auto;
    width: auto;
    margin: 23px 0 15px;
    padding: 0 10px;
  }
}

.navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
}
.navigation-container::after {
  display: none;
}
@media (max-width: 767.98px) {
  .navigation-container {
    display: block;
    min-height: var(--header-mobile-height);
  }
}

@media (max-width: 1180px) {
  .site-logo {
    margin-right: 6px;
  }
  .navigation__caret {
    padding-left: 4px;
  }
}
.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-gap: 30px;
  gap: 30px;
}
.navigation .navigation__title {
  white-space: nowrap;
}
.navigation .navigation__caret {
  padding-left: 8px;
}
@media (max-width: 1180px) {
  .navigation {
    grid-gap: 32px;
    gap: 32px;
  }
}
@media (max-width: 1070px) {
  .navigation {
    grid-gap: 24px;
    gap: 24px;
  }
}
@media (max-width: 890px) {
  .navigation {
    grid-gap: 16px;
    gap: 16px;
  }
}
@media (max-width: 767.98px) {
  .navigation {
    position: relative;
    display: none;
    height: calc(100vh - var(--header-mobile-height));
    width: 100%;
    overflow: auto;
    background: #f4f7f9;
  }
  .navigation.navigation__show-mobile {
    display: block;
    overflow-x: hidden;
  }
}

.navigation__search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  margin-right: 1rem;
  margin-left: 1rem;
}
@media screen and (min-width: max-width: 767.98px) {
  .navigation__search-box {
    margin-right: 0;
    margin-left: 0;
  }
}
.navigation__search-box.navigation__search-box--people {
  margin-top: 17px;
  margin-left: 0;
}
@media (max-width: 767.98px) {
  .navigation__search-box.navigation__search-box--people {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 8px;
    gap: 8px;
  }
}

input[type=text].navigation__primary-search {
  height: 100%;
  width: 100%;
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.05rem;
  background-color: #e7ebf0;
}
@media screen and (min-width: max-width: 767.98px) {
  input[type=text].navigation__primary-search {
    min-height: 34px;
  }
}
input[type=text].navigation__primary-search::-webkit-input-placeholder {
  color: #818183;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
input[type=text].navigation__primary-search::-moz-placeholder {
  color: #818183;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
input[type=text].navigation__primary-search:-ms-input-placeholder {
  color: #818183;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
input[type=text].navigation__primary-search::-ms-input-placeholder {
  color: #818183;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
input[type=text].navigation__primary-search::placeholder {
  color: #818183;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.JP input[type=text].navigation__primary-search::-webkit-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP input[type=text].navigation__primary-search::-moz-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP input[type=text].navigation__primary-search:-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP input[type=text].navigation__primary-search::-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP input[type=text].navigation__primary-search::placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN input[type=text].navigation__primary-search::-webkit-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN input[type=text].navigation__primary-search::-moz-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN input[type=text].navigation__primary-search:-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN input[type=text].navigation__primary-search::-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN input[type=text].navigation__primary-search::placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
input[type=text].navigation__primary-search:input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP input[type=text].navigation__primary-search:input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN input[type=text].navigation__primary-search:input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
input[type=text].navigation__primary-search::-ms-clear {
  display: none;
}

.navigation__search-icon {
  height: 100%;
  padding: 0.4rem 1rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  background-color: #338441;
  border: none;
}
.navigation__search-icon:hover {
  cursor: pointer;
}
.navigation__search-icon:focus {
  opacity: 0.7;
}

.navigation__input-wrapper {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.back-button__main-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  gap: 8px;
  padding: 0;
  color: #338441;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  border: none;
  background: none;
}
@media (max-width: 767.98px) {
  .back-button__main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.navigation__caret {
  display: inline-block;
  padding-left: 8px;
}
@media (max-width: 959.98px) {
  .navigation__caret {
    display: none;
  }
}

.navigation__caret span {
  display: inline-block;
  height: 6px;
  width: 6px;
  margin-bottom: 2px;
  border-radius: 1px;
  border-right: 2px solid;
  border-top: 2px solid;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.back-button__caret span {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 1px;
  border-right: 1.5px solid;
  border-top: 1.5px solid;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

@media screen and (max-width: 767.98px) {
  .navigation__caret {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 4px;
    padding-left: 0;
  }
  .navigation__caret span {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.navigation__tab {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  float: left;
  text-align: center;
}
.navigation__tab:last-child {
  text-align: right;
}
.navigation__tab .type-filter {
  top: 100%;
  display: none;
  text-align: left;
  border-color: #e7ebf0;
}
@media (max-width: 767.98px) {
  .navigation__tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 16px 10px;
    background: #f4f7f9;
    border-bottom: 1px solid #ccc;
  }
  .navigation__tab:first-of-type {
    border-top: 1px solid #ccc;
  }
}

.navigation__tab--search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.navigation__tab--search .navigation__title {
  padding: 0.25rem;
  background-color: #00396f;
  border: none;
  border-radius: 50%;
}
.navigation__tab--search .navigation__title::after {
  display: none;
}
.navigation__tab--search .navigation__title:disabled {
  opacity: 0.5;
  background-color: #e7edf2;
}
.navigation__tab--search .navigation__title:disabled .navigation__title-search {
  fill: #818183;
}
.navigation__tab--search .navigation__title:hover, .navigation__tab--search .navigation__title:focus {
  background-color: #338441;
  outline: none;
}
.navigation__tab--search .navigation__title:hover .navigation__title-search, .navigation__tab--search .navigation__title:focus .navigation__title-search {
  fill: #fff;
}
.navigation__tab--search .navigation__title.is-open {
  padding: 0.35rem;
  background-color: #fff;
}
.navigation__tab--search .navigation__title.is-open .navigation__title-search {
  display: none;
}
.navigation__tab--search .navigation__title.is-open .navigation__title-close {
  display: block;
}
.navigation__tab--search .navigation__title.is-open:focus {
  background-color: #e7ebf0;
}
.navigation__tab--search .navigation__title-search {
  height: 28px;
  width: 28px;
  fill: #fff;
}
.navigation__tab--search .navigation__title-close {
  display: none;
  fill: #9e9e9e;
}
.navigation__tab--search .navigation__search-box {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 0;
  max-width: 0;
  overflow: hidden;
  visibility: hidden;
  margin-inline: 0rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navigation__tab--search.is-open {
  position: absolute;
  right: calc(50% - 600px);
  z-index: 1;
  width: 900px;
}
[lang=de-DE] .navigation__tab--search.is-open {
  width: 710px;
}
.navigation__tab--search.is-open .navigation__search-box {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  visibility: visible;
  margin-right: 1rem;
  margin-left: 1rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1260px) {
  .navigation__tab--search.is-open {
    right: 3%;
    width: calc(100% - 300px);
  }
  [lang=de-DE] .navigation__tab--search.is-open {
    width: calc(100% - 490px);
  }
}
@media screen and (max-width: 950px) {
  [lang=de-DE] .navigation__tab--search {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navigation__tab--search {
    display: none;
  }
}

.sshr__page-homepage__header .site-header .site-width__constraint.navigation-container::after, .sshr__page-homepage__header .site-header .navigation-container.country-offices::after, .sshr__page-homepage__header .site-header .navigation-container.hero-banner__inner-wrapper::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  clear: none;
  content: unset;
}

.sshr__page-homepage__header section.site-header::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  clear: none;
  content: unset;
}

.navigation__content {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 40px 0;
  text-align: left;
  background-color: #f4f7f9;
  border-bottom: 3px solid white;
}
.navigation__tab-active .navigation__content {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  .navigation__tab-active .navigation__content {
    display: block;
  }
}
.navigation__content .site-width__constraint, .navigation__content .country-offices, .navigation__content .hero-banner__inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navigation__content input[type=text].navigation__primary-search {
  background-color: #fff;
}
.navigation__content input[type=text].navigation__primary-search::input-placeholder {
  color: #616161;
}
.navigation__content .type-filter {
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid #e7ebf0;
}
@media (min-width: 768px) {
  .navigation__content {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navigation__content {
    position: absolute;
    z-index: 1;
    overflow: auto;
    padding: 24px 10px 100px;
    background: #f4f7f9;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    inset: 0;
  }
  .navigation__tab-active .navigation__content {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.navigation__title {
  position: relative;
  display: inline-block;
  padding: 0 0 28px;
  color: #262626;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  border: 0;
  background: none;
  outline: none;
  cursor: pointer;
}
.navigation__title:focus::after, .navigation__title:hover::after {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .navigation__title:focus::after, .navigation__title:hover::after {
    opacity: 0;
  }
}
.navigation__tab-active .navigation__title::after {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .navigation__tab-active .navigation__title::after {
    opacity: 0;
  }
}
.navigation__title::after {
  position: absolute;
  bottom: 0;
  display: block;
  height: 3px;
  width: 100%;
  opacity: 0;
  background-color: #338441;
  content: "";
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.navigation__title:hover {
  color: #262626;
}
.navigation__title:hover + .navigation__content {
  opacity: 1;
}
@media (min-width: 960px) and (max-width: 1015px) {
  .navigation__title {
    padding-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .navigation__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding-bottom: 0;
    color: #262626;
    font-size: 18px;
    line-height: 20px;
  }
  .navigation__title::after {
    left: -20px;
    width: calc(100% + 20px);
  }
}

.navigation__tab-active .navigation__caret span {
  margin-bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 767.98px) {
  .navigation__tab-active .navigation__caret span {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.navigation__title-search {
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .navigation__tab .navigation__title-search {
    display: none;
  }
}

.navigation__splash-text {
  -ms-flex-preferred-size: 29.5%;
      flex-basis: 29.5%;
  float: left;
  margin-top: -5px;
  margin-right: 5%;
  color: #818183;
}
.JP .navigation__splash-text {
  font-weight: 500;
}
@media (max-width: 959.98px) {
  .navigation__splash-text {
    font-size: 18px;
  }
}
@media (max-width: 1059.98px) {
  .navigation__splash-text {
    display: none;
    margin-top: 32px;
  }
}

.navigation__splash-text--compact {
  display: none;
  float: none;
}
@media (max-width: 1059.98px) {
  .navigation__splash-text--compact {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .navigation__splash-text--compact {
    display: none;
  }
}

.navigation__content-right {
  width: 100%;
}

.navigation__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 30px;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .navigation__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 0;
    gap: 0;
  }
}

.navigation__column {
  -ms-flex-preferred-size: calc(33.333% - 20px);
      flex-basis: calc(33.333% - 20px);
}
.navigation__column.show-line {
  padding-left: 32px;
  border-left: 1px solid #ccc;
}
.navigation__column:nth-child(3):not(.show-line) + .show-line {
  margin-bottom: 54px;
}
.navigation__column.navigation__column--wide {
  -ms-flex-preferred-size: calc(66.666% - 20px);
      flex-basis: calc(66.666% - 20px);
  padding-right: 70px;
}
.navigation__column.navigation__column--wide a.navigation__link-title:hover {
  color: #7cb085;
}
.navigation__column.navigation__column--wide input[type=text].navigation__primary-search {
  padding: 12px 15px;
  font-size: 0.65rem;
  letter-spacing: 0.05rem;
}
.navigation__column.navigation__column--wide .navigation__search-icon {
  padding: 12px 15px;
}
@media (max-width: 767.98px) {
  .navigation__column.navigation__column--wide {
    padding-right: 0;
  }
  .navigation__column.navigation__column--wide .navigation__search-icon {
    padding: 9px 15px 8px;
    line-height: 22px;
  }
}
@media (max-width: 767.98px) {
  .navigation__column + .navigation__column:not(.show-line) .navigation__link-list:not(.no-title) {
    margin-top: 40px;
  }
  .navigation__column.show-line {
    position: relative;
    margin-top: 32px;
    padding-top: 24px;
    padding-left: 0;
    border-left: none;
  }
  .navigation__column.show-line::before {
    position: absolute;
    top: 0;
    left: -10px;
    height: 1px;
    width: calc(100% + 20px);
    background: #ccc;
    content: "";
  }
  .navigation__column:first-of-type {
    padding-top: 24px;
  }
  .navigation__column + .navigation__column {
    padding-top: 16px;
  }
  .navigation__column + .navigation__column.show-line {
    padding-top: 24px;
  }
}

.navigation__column-feat-image p {
  margin-top: 6px;
  margin-bottom: 0;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .navigation__column-feat-image {
    display: none;
  }
}

.navigation__column-feat-image img {
  max-width: 100%;
}

.navigation__column-feat-title {
  color: #262626;
  font-size: 20px;
  line-height: 26px;
}
.navigation__column-feat-title:not(.specificity-boost) {
  margin: 24px 0 0;
}
.navigation__column-feat-title:not(.specificity-boost):first-child {
  margin-top: 52px;
}
@media (max-width: 767.98px) {
  .navigation__column-feat-title:not(.specificity-boost):first-child {
    margin-top: 0;
  }
}
.navigation__column-feat-title a {
  color: #262626;
}

.navigation__column-feat-desc {
  margin: 8px 0 0;
  color: #262626;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.navigation__column-feat-link {
  display: inline-block;
  margin: 16px 0 0;
}

.navigation__column--rich-text h2,
.navigation__column--rich-text h3 {
  margin-bottom: 14px;
}
[class^=sshr__] .navigation__column--rich-text h2,
[class^=sshr__] .navigation__column--rich-text h3 {
  margin-bottom: 14px;
}
@media (max-width: 767.98px) {
  .navigation__column--rich-text h2,
  .navigation__column--rich-text h3 {
    margin-bottom: 0;
  }
  [class^=sshr__] .navigation__column--rich-text h2,
  [class^=sshr__] .navigation__column--rich-text h3 {
    margin-bottom: 0;
  }
}
.navigation__column--rich-text p {
  margin: 8px 0 0;
  color: #262626;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.navigation__column--rich-text .navigation__link-title {
  margin-bottom: 14px;
}
@media (max-width: 767.98px) {
  .navigation__column--rich-text .navigation__link-title {
    margin-bottom: 0;
  }
}

.navigation__link-list {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.navigation__link-list.no-title {
  margin-top: 52px;
}
@media (max-width: 767.98px) {
  .navigation__link-list {
    margin-bottom: 0;
  }
  .navigation__link-list.no-title {
    margin-top: 0;
  }
}

.navigation__link-item {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
}
.navigation__link-item:first-child {
  margin-bottom: 22px;
}
.navigation__link-list.no-title .navigation__link-item:first-child {
  margin-bottom: 16px;
}
.navigation__link-item:last-child {
  margin-bottom: 0;
}
.navigation__link-item a {
  color: #262626;
}
.navigation__link-item a:hover {
  color: #7cb085;
}
@media (max-width: 767.98px) {
  .navigation__link-item:last-of-type {
    margin-bottom: 0;
  }
  .navigation__columns--2 .navigation__link-item {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .navigation__link-item .navigation__link-title {
    display: block;
  }
}

.navigation__column--rich-text h2,
.navigation__column--rich-text h3,
.navigation__link-title {
  position: relative;
  display: inline-block;
  margin-top: -0.25em;
  color: #003970;
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
[class^=sshr__] .navigation__column--rich-text h2,
[class^=sshr__] .navigation__column--rich-text h3,
[class^=sshr__] .navigation__link-title {
  margin-top: -0.25em;
}
.navigation__column--rich-text h2:hover::before,
.navigation__column--rich-text h3:hover::before,
.navigation__link-title:hover::before {
  right: -24px;
}
.navigation__column--rich-text h2:hover::after,
.navigation__column--rich-text h3:hover::after,
.navigation__link-title:hover::after {
  right: -29px;
}
@media (max-width: 767.98px) {
  .navigation__column--rich-text h2,
  .navigation__column--rich-text h3,
  .navigation__link-title {
    margin-top: 0;
    font-size: 20px;
  }
}

.faux-dropdown__input::after {
  position: absolute;
  top: 30%;
  right: 15px;
  display: inline-block;
  border-bottom: 5px solid #3b964b;
  border-left: 5px solid transparent;
  border-right: 5px solid #3b964b;
  border-top: 5px solid transparent;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: right 0.2s ease;
  transition: right 0.2s ease;
}
.is-open .faux-dropdown__input::after {
  top: 45%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.navigation__link-item--more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 32px;
  color: #338441;
  font-size: 0.75rem;
  line-height: 22px;
}
.navigation__link-item--more span {
  display: inline-block;
  height: 6px;
  width: 6px;
  margin-top: 1px;
  margin-bottom: 2px;
  margin-left: 6px;
  border-radius: 1px;
  border-right: 1.5px solid;
  border-top: 1.5px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.navigation__link-item--more:hover {
  color: rgb(36.7868852459, 95.2131147541, 46.8852459016);
}
@media (max-width: 1059.98px) {
  .navigation__splash-text .navigation__link-item--more {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .navigation__link-item--more {
    display: none;
  }
  .navigation__link-item--more.navigation__link-item--more--people {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 8px;
    padding: 9px 15px 8px;
    letter-spacing: 0.68px;
    text-transform: uppercase;
    border: 1px solid #338441;
  }
  .navigation__link-item--more.navigation__link-item--more--people span {
    display: none;
  }
}

.navigation__call-out {
  width: 100%;
  float: left;
  padding: 20px;
  background-color: #e9edf2;
  }
.navigation__call-out h5 {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 22px;
}
.navigation__call-out p {
  font-size: 16px;
  line-height: 22px;
}
.navigation__promo {
  margin-bottom: 50px;
}
@media (max-width: 1059.98px) {
  .navigation__promo {
    margin-bottom: 0;
  }
}
@media (max-width: 479.98px) {
  .navigation__promo {
    margin-bottom: 10px;
  }
}

.navigation__promo-title {
  display: block;
  margin-top: -3px;
  margin-bottom: 10px;
  color: #4c4c4e;
  font-size: 18px;
}
@media (max-width: 479.98px) {
  .navigation__promo-title {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.navigation__promo-image {
  max-height: 100%;
  max-width: 31%;
  float: left;
  margin-right: 5%;
}

.navigation__promo-decription {
  max-width: 64%;
  float: left;
  font-size: 15px;
  line-height: 21px;
}
@media (max-width: 479.98px) {
  .navigation__promo-decription {
    max-width: 100%;
    float: none;
  }
}

.navigation__search-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navigation__search-input-wrapper > div {
  position: relative;
  width: 49%;
}
@media (max-width: 640px) {
  .navigation__search-input-wrapper > div {
    width: 100%;
    margin-bottom: 12px;
  }
}

.faux-dropdown__input,
input.navigation__search-input,
input[type=text].navigation__search-input {
  height: 42px;
  width: 49%;
  float: left;
  margin-right: 2%;
  padding: 10px;
  font-size: 18px;
  background-color: #e7ebf0;
}
.faux-dropdown__input::input-placeholder,
input.navigation__search-input::input-placeholder,
input[type=text].navigation__search-input::input-placeholder {
  color: #818183;
}
.faux-dropdown__input::-ms-clear,
input.navigation__search-input::-ms-clear,
input[type=text].navigation__search-input::-ms-clear {
  display: none;
}
.faux-dropdown__input + .navigation__search-input,
input.navigation__search-input + .navigation__search-input,
input[type=text].navigation__search-input + .navigation__search-input {
  z-index: 1;
}
.navigation__search-input-wrapper .faux-dropdown__input,
.navigation__search-input-wrapper input.navigation__search-input,
.navigation__search-input-wrapper input[type=text].navigation__search-input {
  width: 100%;
}
@media (max-width: 640px) {
  .faux-dropdown__input,
  input.navigation__search-input,
  input[type=text].navigation__search-input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .navigation__search-dropdowns .faux-dropdown__input,
  .navigation__search-dropdowns input.navigation__search-input,
  .navigation__search-dropdowns input[type=text].navigation__search-input {
    margin-bottom: 0;
  }
}

.navigation__button {
  height: 42px;
  min-width: 175px;
  padding: 8px 8px 6px;
  line-height: 24px;
  vertical-align: top;
}
.navigation__search-dropdowns .navigation__button {
  float: right;
  margin-top: 20px;
}
@media (max-width: 640px) {
  .navigation__button {
    float: right;
  }
}
@media (max-width: 479.98px) {
  .navigation__button {
    width: 100%;
  }
}

.navigation__search {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.navigation__search::after {
  display: table;
  clear: both;
  content: "";
}

.navigation__tab--dropdowns .navigation__content {
  min-height: 400px;
}

.twitter-typeahead {
  width: 49%;
  float: left;
  margin-right: 2%;
}
.twitter-typeahead .navigation__search-input {
  width: 100%;
  margin-right: 0;
}
.twitter-typeahead + .twitter-typeahead {
  margin-right: 0;
}
.navigation__search-dropdowns .twitter-typeahead::after {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 0;
  display: inline-block;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #338441;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 640px) {
  .twitter-typeahead {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.tt-menu {
  width: 100%;
}
.tt-menu.tt-open {
  z-index: 999;
  display: block;
  border-top: 1px solid rgb(215.3076923077, 221.9230769231, 230.1923076923);
}

.tt-dataset {
  max-height: 180px;
  width: 100%;
  overflow: auto;
  font-size: 18px;
  background-color: #e7ebf0;
}
.tt-dataset:hover {
  cursor: pointer;
}

.tt-suggestion {
  padding: 4px 8px;
}
.tt-suggestion.tt-cursor, .tt-suggestion:hover {
  background-color: rgb(215.3076923077, 221.9230769231, 230.1923076923);
}

.navigation__typeahead-title {
  margin: 0;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 8px;
  font-size: 16px;
}
.navigation__typeahead-title ~ .tt-suggestion {
  padding-left: 20px;
}
.navigation__typeahead-title ~ .navigation__typeahead-title {
  padding-left: 8px;
}
.JP .navigation__typeahead-title, .CN .navigation__typeahead-title {
  font-size: 14px;
}

.navigation__search-mobile {
  display: none;
  float: right;
  margin-top: 10px;
  padding: 10px;
}
.navigation__search-mobile .navigation__title-search {
  height: 30px;
  width: 30px;
}

.navigation__search-mobile-content {
  display: none;
  width: 100%;
  padding: 10px 10px 14px;
  background-color: #fff;
}
.navigation__search-mobile-content .navigation__primary-search {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 34px;
  color: #616161;
  font-size: 0.55rem;
  letter-spacing: 0.05rem;
}
.navigation__search-mobile-content .type-filter {
  display: none;
}
.navigation__search-mobile-content .navigation__search-icon {
  background-color: #338441;
  border: none;
}
@media screen and (min-width: max-width: 767.98px) {
  .navigation__search-mobile-content .navigation__search-icon {
    padding-top: 0.5rem;
  }
}
.navigation__search-mobile-content .navigation__search-icon svg {
  height: 0.75rem;
  width: 0.75rem;
  fill: #fff;
}
[lang=de-DE] .navigation__search-mobile-content .navigation__search-icon {
  padding-top: 10px;
}
.translated-header-navigation ~ .navigation__search-mobile-content {
  padding: 15px 0;
}
@media screen and (min-width: max-width: 767.98px) {
  .translated-header-navigation ~ .navigation__search-mobile-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 950px) {
  [lang=de-DE] .navigation__search-mobile-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    clear: both;
  }
}
@media (max-width: 479.98px) {
  .navigation__search-mobile-content {
    padding: 10px 10px 14px;
  }
}
@media (max-width: 767.98px) {
  .navigation__search-mobile-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    clear: both;
  }
}

.navigation__tab--tall .navigation__content {
  min-height: 400px;
}
@media (max-width: 767.98px) {
  .navigation__tab--tall .navigation__content {
    min-height: 0;
  }
}

.navigation__top-level {
  display: none;
  margin-bottom: 30px;
  color: #338441;
  font-size: 16px;
}
@media (max-width: 1059.98px) {
  .navigation__top-level {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .navigation__top-level {
    margin-bottom: 18px;
    padding: 0;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    line-height: 18px;
  }
  .navigation__top-level--center {
    text-align: center;
  }
}

.navigation__link-item--more-mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .navigation__link-item--more-mobile {
    display: block;
    margin-top: 32px;
  }
}

.navigation__compact {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1015px) {
  .navigation__compact {
    padding: 0 3%;
  }
}
@media (max-width: 767.98px) {
  .navigation__compact {
    padding: 0;
  }
}

.dropdown {
  margin: 0;
}

.dropdown dd {
  position: absolute;
  z-index: 9000;
  display: none;
  overflow: hidden scroll;
  margin: 0;
  border-top: 1px solid rgb(215.3076923077, 221.9230769231, 230.1923076923);
}

.dropdown a,
.dropdown a:visited {
  text-decoration: none;
  outline: none;
}

.faux-dropdown__selected {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  margin-right: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.faux-dropdown__option {
  display: block;
  cursor: pointer;
}

.navigation__typeahead-title:hover {
  background-color: rgb(215.3076923077, 221.9230769231, 230.1923076923);
}

.dropdown dd ul {
  position: relative;
  top: 2px;
  left: 0;
  width: 101%;
  min-width: 170px;
  padding: 5px 0;
  list-style: none;
}

.dropdown span.value {
  display: none;
}

.dropdown img.flag {
  margin-left: 10px;
  vertical-align: middle;
  border: none;
}

.flagvisibility {
  display: none;
}

.faux-dropdown__input {
  z-index: 8000;
  float: none;
  text-transform: none;
}
.JP .faux-dropdown__input {
  font-size: 16px;
}

.img-background-component {
  min-height: 100px;
  display: block;
  background-repeat: repeat;
  padding: 30px 0;
}

.blue-theme .img-background-component {
  background-image: url("../../images/microsite_color-bar--blue.png");
}

.green-theme .img-background-component {
  background-image: url("../../images/microsite_color-bar--green.png");
}

.red-theme .img-background-component {
  background-image: url("../../images/microsite_color-bar--red.png");
}

.gray-theme .img-background-component {
  background-image: url("../../images/microsite_color-bar--gray.png");
}

.rte--img-background {
  display: block;
}
.rte--img-background * {
  color: #fff;
}
.rte--img-background h4 {
  color: #fff;
  font-size: 24px;
}
.rte--img-background a {
  font-weight: 700;
}
.rte--img-background a:hover {
  text-decoration: underline;
  color: #fff;
}

.rte__full-width {
  margin: 40px auto 20px auto;
  max-width: 1000px;
}
@media screen and (max-width: 800px) {
  .rte__full-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 375px) {
  .rte__full-width {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.rte__3-col-container {
  margin: 40px auto 20px auto;
  max-width: 1000px;
  overflow: auto;
}
@media screen and (max-width: 800px) {
  .rte__3-col-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 375px) {
  .rte__3-col-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 800px) {
  .rte__3-col {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

.rte {
  max-width: 820px;
  margin: 40px auto;
  text-align: left;
}

.microsite__main-content-well .rte h1, .microsite__main-content-well .rte h2, .microsite__main-content-well .rte h3, .microsite__main-content-well .rte h4, .microsite__main-content-well .rte h5, .microsite__main-content-well .rte h6 {
  color: #00396f;
  text-transform: uppercase;
  font-size: 24px;
}
.microsite__main-content-well .rte li {
  margin-bottom: 0.5em;
}

.pull-quote {
  display: block;
  width: 100%;
  text-align: center;
  padding: 35px 60px;
}
@media screen and (max-width: 375px) {
  .pull-quote {
    padding: 35px 0;
  }
}

.pull-quote__snippet {
  font-size: 22px;
  line-height: 27px;
}
.pull-quote__snippet:before {
  content: url("../../images/pull-quote.png");
  width: 23px;
  height: 17px;
}
.pull-quote__snippet:after {
  content: "”";
}

.pull-quote__attribution {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding-top: 10px;
}
.pull-quote__attribution:before {
  content: "— ";
  display: inline;
}

.pull-quote__attribution--name {
  display: inline;
}

.explore-functions {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 40px auto;
}
.explore-functions h6 {
  margin: 0 0 45px 0;
}

.explore__intro {
  max-width: 820px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.explore__block-container {
  text-align: justify;
  font-size: 0;
  margin-left: -1%;
  margin-right: -1%;
  width: 102%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.explore__block-container.row--two-item .explore__block {
  width: moz-calc(48%);
  width: 48%;
  max-width: 48%;
}
@media screen and (max-width: 800px) {
  .explore__block-container.row--two-item .explore__block {
    height: 60px;
    width: 100%;
    max-width: 100%;
  }
}
.explore__block-container.row--three-item .explore__block {
  width: moz-calc(31.3333333333%);
  width: 31.3333333333%;
  max-width: 31.3333333333%;
}
@media screen and (max-width: 800px) {
  .explore__block-container.row--three-item .explore__block {
    height: 60px;
    width: 100%;
    max-width: 100%;
  }
}
.explore__block-container.row--four-item .explore__block {
  width: moz-calc(23%);
  width: 23%;
  max-width: 23%;
}
@media screen and (max-width: 800px) {
  .explore__block-container.row--four-item .explore__block {
    height: 60px;
    width: 100%;
    max-width: 100%;
  }
}
.explore__block-container.row--five-item .explore__block {
  width: 18%;
  width: moz-calc(18%);
  max-width: 18%;
}
@media screen and (max-width: 800px) {
  .explore__block-container.row--five-item .explore__block {
    height: 60px;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .explore__block-container {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.explore__block {
  color: #262626;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px;
  position: relative;
  text-align: center;
}
.explore__block:hover span {
  color: #fff;
}
.explore__block:hover span:after {
  content: url("/images/svg/arrow-white.svg");
}
.explore__block span {
  color: #4c4c4e;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  left: 0;
  width: 100%;
  padding: 0 20px;
}
.explore__block span:after {
  content: url("/images/svg/arrow-black.svg");
  display: inline-block;
  width: 6px;
  height: 10px;
}

.blue-theme .explore__block {
  background-color: #d5dfe9;
}
.blue-theme .explore__block:hover {
  background-color: #003970;
}

.green-theme .explore__block {
  background-color: #e1eee4;
}
.green-theme .explore__block:hover {
  background-color: #3c964c;
}

.red-theme .explore__block {
  background-color: #ded2d4;
}
.red-theme .explore__block:hover {
  background-color: #7e2136;
}

.gray-theme .explore__block {
  background-color: #ddd;
}
.gray-theme .explore__block:hover {
  background-color: #4c4c4e;
}

.blog-authors {
  margin-bottom: 50px;
}
.blog-authors h4 {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-author {
  color: #4c4c4e;
  font-family: FFScalaWeb, Georgia, Utopia, Charter, serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
}
.blog-author:after {
  clear: both;
  content: "";
  display: block;
}
.blog-author__image-container {
  width: 60px;
  margin-right: 15px;
  margin-bottom: 0px;
  display: inline-table;
  vertical-align: middle;
}
.blog-author__image {
  margin: 0;
}
.blog-author__image img {
  height: 100% !important;
  max-width: none !important;
}
.blog-author__name {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  width: calc(100% - 80px);
  display: inline-table;
  vertical-align: middle;
}
.blog-author--guest .blog-author__name {
  width: 100%;
}
.blog-author__name a {
  color: #338441;
  display: inline-block;
  padding-right: 10px;
  position: relative;
}
.blog-author__name a:hover {
  color: #6fb27b;
}

.blog-cat-drop {
  max-width: 300px;
  position: relative;
  }
.blog-cat-drop__trigger {
  background-color: #e7eaef;
  display: none;
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, serif;
  font-size: 18px;
  padding: 8px 18px;
  margin-bottom: 50px;
}
.blog-cat-drop__trigger:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #3b964b;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 18px;
  right: 16px;
  -webkit-transform-origin: 50% 3px;
          transform-origin: 50% 3px;
  width: 0;
}
.blog-cat-drop__trigger.is-active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 800px) {
  .blog-cat-drop__trigger {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .blog-cat-drop__trigger + ul {
    background-color: #f5f7f9;
    border-top: 2px solid #71B77D;
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 5;
  }
  .blog-cat-drop__trigger + ul li {
    margin: 11px 18px 11px 18px;
  }
  .blog-cat-drop__trigger + ul a {
    color: #818183;
    font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
  }
  .blog-cat-drop__trigger + ul a:after {
    display: none;
  }
}

.blog-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media (max-width: 479.98px) {
  .blog-pagination {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.blog-pagination__item {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  list-style-type: none;
  padding: 0;
  min-width: 27px;
  text-align: center;
  text-transform: uppercase;
  width: auto;
}
.blog-pagination__item a {
  display: inline-block;
  line-height: 12px;
  padding: 8px 8px 7px 8px;
}
.blog-pagination__item--active {
  background-color: #f5f7f9;
  border: 1px solid #a5a5a6;
  color: #4c4c4e;
}
@media (max-width: 479.98px) {
  .blog-pagination__item--first, .blog-pagination__item--last {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .blog-pagination__item--mobile-hide {
    display: none;
  }
}
.blog-pagination__item--prev a, .blog-pagination__item--next a {
  color: transparent;
  position: relative;
}
.blog-pagination__item--prev a:after, .blog-pagination__item--next a:after {
  border-right: 2px solid #6fb27b;
  border-bottom: 2px solid #6fb27b;
  content: "";
  height: 7px;
  position: absolute;
  top: calc(50% - 5px);
  right: calc(50% - 3px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 7px;
}
.blog-pagination__item--prev a:after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.country-offices {
  padding-bottom: 50px;
}

.country-offices__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 900px) {
  .country-offices__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.country-offices__office {
  margin-right: 20px;
  width: calc(33.3333333333% - 13.3333333333px);
  max-width: 350px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .country-offices__office {
    height: 194px;
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
}

.country-offices__office:only-of-type {
  width: 60%;
  max-width: 60%;
  height: 250px;
  margin-right: 0;
}
@media screen and (max-width: 900px) {
  .country-offices__office:only-of-type {
    height: 194px;
    width: 100%;
    max-width: 100%;
  }
}

.country-offices__office:last-of-type,
.country-offices__list:not(.country-offices__list--2-across) .country-offices__office:nth-of-type(3n) {
  margin-right: 0;
}

.country-offices__list--2-across .country-offices__office:nth-of-type(even) {
  margin-right: 10px;
}
@media screen and (max-width: 900px) {
  .country-offices__list--2-across .country-offices__office:nth-of-type(even) {
    margin-right: 0;
  }
}

.country-offices__list--2-across .country-offices__office:nth-of-type(odd) {
  margin-left: 10px;
}
@media screen and (max-width: 900px) {
  .country-offices__list--2-across .country-offices__office:nth-of-type(odd) {
    margin-left: 0;
  }
}

.country-offices__office:not(:only-of-type)::before {
  content: "";
  display: block;
  padding-top: 83.3333333333%;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .country-offices__office:not(:only-of-type)::before {
    content: none;
  }
}

.country-offices__office-content {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.country-office__office-link,
.country-offices__office-overlay,
.country-offices__office-image {
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}

.country-office__office-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .country-office__office-link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.country-offices__office-city {
  color: #fff;
  font-size: 40px;
  margin-bottom: 10px;
}

.country-offices__office-view-more {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 43px;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.country-office__office-link:hover .country-offices__office-view-more {
  padding-right: 50px;
}

.country-offices__office-view-more::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 3px;
  position: absolute;
  right: 7px;
  top: calc(50% - 3px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 21px;
}

.country-office__office-link:hover .country-offices__office-view-more::before {
  background-color: #fbcc11;
  width: 28px;
}

.country-offices__office-view-more::after {
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: calc(50% - 9px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.country-office__office-link:hover .country-offices__office-view-more::after {
  border-left: 8px solid #fbcc11;
}

.country-offices__office-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #404040; -webkit-transition: -webkit-transform 0.3s ease; transition: -webkit-transform 0.3s ease; transition: transform 0.3s ease; transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.country-office__office-link:hover ~ .country-offices__office-image,
.country-office__office-link:focus ~ .country-offices__office-image {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

.country-offices__office-overlay {
  background-color: rgba(76, 76, 78, 0.6);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.country-office__office-link:hover ~ .country-offices__office-overlay,
.country-office__office-link:focus ~ .country-offices__office-overlay {
  background-color: rgba(76, 76, 78, 0.75);
}

.breadcrumbs {
  font-size: 0.875rem;
}
.breadcrumbs, .breadcrumbs a, .breadcrumbs a:visited {
  color: #fff;
}
@media (max-width: 599.98px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs--internal, .breadcrumbs--internal a, .breadcrumbs--internal a:visited {
  color: #818183;
  font-size: 16px;
}
.breadcrumbs--internal:hover, .breadcrumbs--internal:active, .breadcrumbs--internal a:hover, .breadcrumbs--internal a:active, .breadcrumbs--internal a:visited:hover, .breadcrumbs--internal a:visited:active {
  color: #338441;
}

.breadcrumbs__item {
  margin-right: 6px;
}
.breadcrumbs__item:not(:last-child):after {
  content: "˲";
  font-size: 0.75rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: -12px;
  margin-left: 6px;
}
@media (max-width: 767.98px) {
  .breadcrumbs__item:nth-last-child(n+4):before {
    content: "...";
    display: inline-block;
  }
  .breadcrumbs__item:nth-last-child(n+4) a {
    display: none;
  }
}

.carousel-arrow {
  position: absolute;
  top: 126px;
}
.carousel-arrow svg {
  color: #338441;
  cursor: pointer;
  fill: #338441;
  height: 14px;
  width: 24px;
}
.carousel-arrow.slick-disabled svg {
  color: #d6d6d8;
  fill: #d6d6d8;
}

.carousel-arrow--prev {
  left: -42px;
}
@media (max-width: 1150px) {
  .carousel-arrow--prev {
    left: -28px;
  }
}
@media (max-width: 1059.98px) {
  .carousel-arrow--prev {
    left: 10px;
  }
}

.carousel-arrow--next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  right: -42px;
}
@media (max-width: 1150px) {
  .carousel-arrow--next {
    right: -28px;
  }
}
@media (max-width: 1059.98px) {
  .carousel-arrow--next {
    right: 10px;
  }
}

.section-header--country-page ~ .carousel-arrow {
  top: 170px;
}

.consultant-quote {
  text-align: center;
  padding: 32px 128px;
  margin-bottom: 64px;
}

.consultant-quote__quotation-mark {
  color: #fbcc11;
  font-family: Helvetica Neue, Arial, sans-serif;
  font-size: 96px;
  font-weight: 900;
}

.consultant-quote__quote {
  color: #818183;
  display: block;
  font-size: 28px;
  font-style: italic;
  line-height: 38px;
  margin-bottom: 24px;
  margin-top: -24px;
}

.consultant-quote__source {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #818183;
}

@media (max-width: 599.98px) {
  .consultant-quote {
    padding: 32px;
  }
  .consultant-quote__quote {
    font-size: 24px;
    line-height: 34px;
  }
}
.footer-promo {
  background-color: #f5f7f9;
  padding: 64px 0;
  margin-bottom: -25px;
}

.footer-promo__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-promo__grid > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 32px;
}
.footer-promo__grid > a {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
@media (max-width: 599.98px) {
  .footer-promo__grid, .footer-promo__grid > div, .footer-promo__grid > a {
    display: block;
    text-align: center;
    width: 100%;
  }
  .footer-promo__grid > div {
    padding-right: 0;
  }
}

.footer-promo__copy {
  font-size: 0.8125rem;
  word-break: break-word;
}

.footer-promo__headline {
  display: inline-block;
  margin-bottom: 8px;
}
.footer-promo__headline a {
  color: inherit;
}
.footer-promo__headline a:hover {
  color: #338441;
}

@media (max-width: 479.98px) {
  .footer-promo {
    padding: 32px 0;
    margin-top: 64px;
  }
  .footer-promo__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-promo__grid > div {
    margin-bottom: 24px;
  }
  .footer-promo__grid > * {
    text-align: center;
  }
}
.hover-reveal-panels__panel {
  background-color: #f5f7f9;
  text-align: center;
  padding: 12px 16px;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hover-reveal-panels__panel.column-33, .practice-detail-callout__copy > div.hover-reveal-panels__panel:nth-last-child(3):first-child, .practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div.hover-reveal-panels__panel {
  margin: 0 8px 8px 0;
  width: calc((100% - 16px) / 3);
}
.hover-reveal-panels__panel.column-33:nth-child(3n), .practice-detail-callout__copy > div.hover-reveal-panels__panel:nth-child(3n):nth-last-child(3):first-child, .practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div.hover-reveal-panels__panel:nth-child(3n) {
  margin-right: 0;
}
.hover-reveal-panels__panel:hover {
  background-color: #003d79;
}
.hover-reveal-panels__panel:hover .hover-reveal-panels__title {
  display: none;
}
.hover-reveal-panels__panel:hover .hover-reveal-panels__description {
  display: block;
}
@media (max-width: 767.98px) {
  .hover-reveal-panels__panel.column-33, .practice-detail-callout__copy > div.hover-reveal-panels__panel:nth-last-child(3):first-child, .practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div.hover-reveal-panels__panel {
    width: calc((100% - 8px) / 2);
  }
  .hover-reveal-panels__panel.column-33:nth-child(3n), .practice-detail-callout__copy > div.hover-reveal-panels__panel:nth-child(3n):nth-last-child(3):first-child, .practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div.hover-reveal-panels__panel:nth-child(3n) {
    margin-right: 8px;
  }
  .hover-reveal-panels__panel.column-33:nth-child(2n), .practice-detail-callout__copy > div.hover-reveal-panels__panel:nth-child(2n):nth-last-child(3):first-child, .practice-detail-callout__copy > div:nth-last-child(3):first-child ~ div.hover-reveal-panels__panel:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 599.98px) {
  .hover-reveal-panels__panel:hover {
    background: inherit;
  }
  .hover-reveal-panels__panel:hover .hover-reveal-panels__title {
    display: inline-block;
  }
  .hover-reveal-panels__panel:hover .hover-reveal-panels__description {
    display: none;
  }
}
@media (max-width: 599.98px) {
  .hover-reveal-panels__panel {
    background: none;
    text-align: left;
    padding: 0;
    display: block;
    height: auto;
  }
}

@media (max-width: 599.98px) {
  .hover-reveal-panels .button, .hover-reveal-panels .corporateDrop > a, .hover-reveal-panels .searchBox .submit, .searchBox .hover-reveal-panels .submit,
  .hover-reveal-panels .searchBox .scfSubmitButton,
  .searchBox .hover-reveal-panels .scfSubmitButton, .hover-reveal-panels .contentWrap a.button, .contentWrap .hover-reveal-panels a.button,
  .hover-reveal-panels__button {
    margin: 0;
    display: block;
    width: 100%;
  }
}

.hover-reveal-panels.sgrid {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 599.98px) {
  .hover-reveal-panels.sgrid {
    margin-bottom: 0;
  }
}

.hover-reveal-panels a:not(.button),
.hover-reveal-panels a:not(.button):visited {
  color: #fff;
}
@media (max-width: 599.98px) {
  .hover-reveal-panels a:not(.button),
  .hover-reveal-panels a:not(.button):visited {
    color: inherit;
  }
}

.hover-reveal-panels__title {
  color: #4c4c4e;
  display: inline-block;
}
.hover-reveal-panels__title:after {
  content: "";
  border-color: #7cb085;
  border-style: solid;
  border-width: 2px 2px 0 0;
  display: inline-block;
  height: 8px;
  left: 0.15em;
  position: relative;
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: top;
  width: 8px;
}
@media (max-width: 599.98px) {
  .hover-reveal-panels__title:after {
    display: none;
  }
}
@media (max-width: 599.98px) {
  .hover-reveal-panels__title {
    font-family: inherit;
    font-weight: 500;
    font-size: 0.875rem;
    color: #3b964b;
    margin-bottom: 12px;
  }
}

.hover-reveal-panels__description {
  display: none;
  color: #fff;
  font-size: 0.75rem;
  margin-top: 6px;
}

.industry-listing {
  background-color: #f5f7f9;
  padding: 24px;
  margin-bottom: 24px;
}

.footer-promo__grid ~ .practice-listing-items {
  margin-top: 64px;
}

.industry-listing__title {
  margin-bottom: 0;
  white-space: nowrap;
}
.industry-listing__title a > span {
  white-space: normal;
}
.industry-listing__title a > div {
  display: inline;
  position: absolute;
  margin-left: 3px;
}
.industry-listing__title a {
  color: inherit;
}
.industry-listing__title a:hover {
  color: #338441;
}
.industry-listing__title .link-arrow-svg {
  width: 14px;
  height: 14px;
}

.industry-listing__separator {
  border: 0;
  padding: 0;
  margin: 0;
  height: 1px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 24px;
  padding-bottom: 12px;
}

.industry-listing__description {
  margin-top: 16px;
}

.industry-listing ul {
  margin: 16px 0 0;
  padding: 0;
}

.industry-listing ul li {
  list-style: none;
  margin: 0 48px 16px 0;
  padding: 0;
  display: inline-block;
}

.industry-listing__link {
  color: inherit;
  white-space: nowrap;
}
.industry-listing__link > span {
  white-space: normal;
}
.industry-listing__link > div {
  display: inline;
  position: absolute;
  margin-left: 3px;
}
.industry-listing__link:hover {
  color: #338441;
}

.link-arrow-svg {
  display: inline-block;
  height: 10px;
  margin-left: 5px;
  width: 6px;
}

.industries-listing .column-50:first-child, .industries-listing .practice-detail-callout__copy > div:first-child:nth-last-child(2), .industries-listing .practice-detail-callout__copy > div:nth-last-child(2):first-child ~ div:first-child,
.industries-listing .column-75:first-child {
  padding-right: 20px;
}

.industries-listing .column-100 {
  max-width: 876px;
  min-width: 0;
}

.industries-listing .column-100 ~ .column-50, .industries-listing .practice-detail-callout__copy > .column-100 ~ div:nth-last-child(2):first-child, .industries-listing .practice-detail-callout__copy > .column-100 ~ div:nth-last-child(2):first-child ~ div, .industries-listing .practice-detail-callout__copy > div:nth-last-child(2):first-child ~ .column-100 ~ div, .industries-listing .practice-detail-callout__copy > div.column-100:nth-last-child(2):first-child ~ div,
.industries-listing .column-100 ~ .column-25 {
  display: none;
}

.practice-detail__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 64px;
}
.practice-detail__intro > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.practice-detail__intro > div:first-child:not(:last-child) {
  width: 70%;
  padding-right: 32px;
}
.practice-detail__intro > div:only-child {
  padding-right: 124px;
}
.practice-detail__intro > div:nth-child(2) {
  max-width: 30%;
}
@media (max-width: 767.98px) {
  .practice-detail__intro {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .practice-detail__intro > div:first-child {
    margin-top: 24px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
    width: 100%;
  }
  .practice-detail__intro > div:nth-child(2) {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 599.98px) {
  .practice-detail__intro:only-child {
    padding-right: 0;
  }
}

.practice-detail__intro-callout {
  border: 1px solid #ececec;
}

.practice-detail__intro-callout-header {
  background: #f5f7f9;
  padding: 20px 24px;
  position: relative;
}
@media (max-width: 767.98px) {
  .practice-detail__intro-callout-header {
    padding: 16px;
  }
}
@media (max-width: 599.98px) {
  .practice-detail__intro-callout-header {
    font-family: FFScalaWebItalic, Georgia, Utopia, Charter, serif;
    font-style: italic;
    font-weight: normal;
    color: #818183;
    padding: 8px 12px;
  }
  .JP .practice-detail__intro-callout-header {
    font-family: FFScalaWebItalic, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-style: italic;
    font-weight: normal;
  }
  .CN .practice-detail__intro-callout-header {
    font-family: FFScalaWebItalic, Georgia, Utopia, Charter, sans-serif;
    font-style: italic;
    font-weight: normal;
  }
  .practice-detail__intro-callout-header:after {
    content: "▾";
    display: block;
    color: #338441;
    position: absolute;
    right: 12px;
    top: 8px;
  }
  .is-opened .practice-detail__intro-callout-header {
    font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif;
    font-style: normal;
    font-weight: bold;
    color: #000;
  }
  .JP .is-opened .practice-detail__intro-callout-header {
    font-family: FFScalaWebBold, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-style: normal;
    font-weight: bold;
  }
  .CN .is-opened .practice-detail__intro-callout-header {
    font-family: FFScalaWebBold, Georgia, Utopia, Charter, sans-serif;
    font-style: normal;
    font-weight: bold;
  }
  .is-opened .practice-detail__intro-callout-header:after {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

.practice-detail__intro-callout-list {
  margin: 0;
  padding: 24px;
}
.practice-detail__intro-callout-list > li {
  list-style: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 20px;
}
.practice-detail__intro-callout-list > li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .practice-detail__intro-callout-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 16px 0;
  }
  .practice-detail__intro-callout-list > li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: center;
    border-right: 1px solid #ececec;
    margin: 0;
    padding: 12px;
    min-width: 33.3333333333%;
  }
  .practice-detail__intro-callout-list > li:last-child {
    border: 0;
  }
  .practice-detail__intro-callout-list > li:nth-last-child(2):first-child, .practice-detail__intro-callout-list > li:nth-last-child(2):first-child ~ li, .practice-detail__intro-callout-list > li:nth-last-child(4):first-child, .practice-detail__intro-callout-list > li:nth-last-child(4):first-child ~ li {
    width: 50%;
  }
  .practice-detail__intro-callout-list > li:nth-last-child(4):first-child ~ li:nth-child(2), .practice-detail__intro-callout-list > li:nth-last-child(5):first-child ~ li:nth-child(3) {
    border: 0;
  }
  .practice-detail__intro-callout-list > li:nth-last-child(3):first-child, .practice-detail__intro-callout-list > li:nth-last-child(3):first-child ~ li, .practice-detail__intro-callout-list > li:nth-last-child(5):first-child ~ li:nth-child(n-2), .practice-detail__intro-callout-list > li:nth-last-child(n+6), .practice-detail__intro-callout-list > li:nth-last-child(n+6) ~ li {
    width: 33.3333333333%;
  }
  .practice-detail__intro-callout-list > li:nth-last-child(5):first-child, .practice-detail__intro-callout-list > li:nth-last-child(5):first-child ~ li, .practice-detail__intro-callout-list > li:nth-last-child(8):first-child, .practice-detail__intro-callout-list > li:nth-last-child(8):first-child ~ li, .practice-detail__intro-callout-list > li:nth-last-child(11):first-child, .practice-detail__intro-callout-list > li:nth-last-child(11):first-child ~ li {
    max-width: 33.3333333333%;
  }
}
@media (max-width: 599.98px) {
  .practice-detail__intro-callout-list {
    display: block;
    padding: 4px 0;
  }
  .practice-detail__intro-callout-list > li, .practice-detail__intro-callout-list > li:nth-last-child(n+4), .practice-detail__intro-callout-list > li:nth-last-child(n+4) ~ li {
    max-width: 100% !important;
    width: 100% !important;
    border: 0;
    text-align: left;
  }
  .practice-detail__intro-callout:not(.is-opened) .practice-detail__intro-callout-list {
    padding: 0;
  }
  .practice-detail__intro-callout:not(.is-opened) .practice-detail__intro-callout-list > li {
    display: none;
  }
}

li.practice-detail__toggle-callout-links {
  color: #338441;
  text-transform: uppercase;
  font-size: 14px;
  display: none;
}
@media (max-width: 599.98px) {
  ul:not(.is-opened) li.practice-detail__toggle-callout-links {
    display: block !important;
  }
  ul.is-opened li.practice-detail__toggle-callout-links--close {
    display: block;
  }
}

ul:not(.is-opened) li.practice-detail__toggle-callout-links--close {
  display: none !important;
}

.practice-detail-callout__copy {
  position: relative;
}
.practice-detail-callout__copy, .practice-detail-callout__copy * {
  max-width: none;
  max-width: initial;
}
.practice-detail-callout__copy > div:only-of-type {
  max-width: 75%;
  margin: 0 auto;
}
.practice-detail-callout__copy > .slick-dots {
  margin-top: 16px;
}
@media (max-width: 959.98px) {
  .practice-detail-callout__copy, .practice-detail-callout__copy > * {
    margin-left: auto;
    width: 100% !important;
  }
}

.practice-detail__slider-arrows {
  display: none;
}
@media (max-width: 959.98px) {
  .practice-detail__slider-arrows {
    display: block;
  }
}
.practice-detail__slider-arrows .practice-detail-consultants__prev-arrow, .practice-detail__slider-arrows .practice-detail-consultants__next-arrow {
  position: relative;
  display: inline-block;
  top: 0;
}
.practice-detail__slider-arrows .practice-detail-consultants__prev-arrow {
  left: -12px;
}
.practice-detail__slider-arrows .practice-detail-consultants__next-arrow {
  margin-right: -12px;
}

.practice-detail__intro-text {
  background-color: #f4f7f9;
  padding: 48px 12px;
  text-align: center;
  color: #00396f;
}

.practice-detail-callout__outer-wrapper {
  background-size: cover;
  margin-bottom: 96px;
  padding: 56px 0;
}
.practice-detail-callout__outer-wrapper .content-up__top-section:before {
  margin-bottom: 32px;
}
.practice-detail-callout__outer-wrapper .content-up__top-section .top-section__title {
  margin-bottom: 46px;
}

.practice-detail-consultants {
  margin-left: -12px;
  width: calc(100% + 24px);
}
@media (max-width: 1059.98px) {
  .practice-detail-consultants {
    padding: 0 20px;
  }
}
@media (max-width: 599.98px) {
  .practice-detail-consultants {
    margin-left: auto;
    width: 100%;
  }
}
.practice-detail-consultants > .slick-dots {
  margin-top: 16px;
}
.practice-detail-consultants .slick-track {
  margin: 0 auto;
}

.practice-detail-consultant {
  padding: 0 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.practice-detail-consultant:nth-last-child(n+5), .practice-detail-consultant:nth-last-child(n+5) ~ .practice-detail-consultant {
  max-width: 20%;
}
@media screen and (max-width: 1024px) {
  .practice-detail-consultant {
    padding-bottom: 55px;
  }
}

.practice-detail-consultant__photo {
  width: 100%;
}

.practice-detail-consultant__name {
  color: inherit;
  display: block;
  margin-top: 16px;
  white-space: nowrap;
}
.practice-detail-consultant__name > span {
  white-space: normal;
}
.practice-detail-consultant__name > div {
  display: inline;
  position: absolute;
  margin-left: 3px;
}

.practice-detail-consultant__location {
  color: #818183;
}

.practice-detail__slider-arrows {
  position: relative;
}
.practice-detail__slider-arrows .carousel-arrow {
  top: 0;
}
.practice-detail__slider-arrows .carousel-arrow--prev {
  left: calc(50% - 32px);
}
.practice-detail__slider-arrows .carousel-arrow--next {
  margin-right: 0;
  right: calc(50% - 32px);
}

.practice-detail__button {
  margin-top: 16px;
}

.practice-leads__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.practice-leads__name {
  color: inherit;
  display: block;
  white-space: nowrap;
}
.practice-leads__name > span {
  white-space: normal;
}
.practice-leads__name > div {
  display: inline;
  position: absolute;
  margin-left: 3px;
}

.practice-leads__location {
  color: #818183;
  font-size: 18px;
}

.practice-leads__lead {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 32px;
  width: 33%;
  text-align: center;
}
.practice-leads__lead:nth-last-child(4):first-child, .practice-leads__lead:nth-last-child(4):first-child ~ div, .practice-leads__lead:nth-last-child(8):first-child ~ div:nth-child(7), .practice-leads__lead:nth-last-child(8):first-child ~ div:nth-child(8), .practice-leads__lead:nth-last-child(10):first-child ~ div:nth-child(9), .practice-leads__lead:nth-last-child(10):first-child ~ div:nth-child(10) {
  width: 50%;
}
.practice-leads__lead:nth-last-child(7):first-child, .practice-leads__lead:nth-last-child(7):first-child ~ div:nth-child(2), .practice-leads__lead:nth-last-child(7):first-child ~ div:nth-child(3), .practice-leads__lead:nth-last-child(7):first-child ~ div:nth-child(4), .practice-leads__lead:nth-last-child(10):first-child, .practice-leads__lead:nth-last-child(10):first-child ~ div {
  width: 25%;
  padding: 0 24px;
}
.practice-leads__lead:nth-last-child(7):first-child {
  padding-left: 0;
}
.practice-leads__lead:nth-last-child(7):first-child ~ div:nth-child(4) {
  padding-right: 0;
}
.practice-leads__lead:nth-last-child(7):first-child ~ div:nth-child(5), .practice-leads__lead:nth-last-child(7):first-child ~ div:nth-child(6), .practice-leads__lead:nth-last-child(7):first-child ~ div:nth-child(7) {
  padding: 0 52px;
}
@media (max-width: 599.98px) {
  .practice-leads__lead {
    width: 100% !important;
    padding: 0 !important;
  }
}

.three-up-promo-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f5f7f9;
  margin-top: -100px;
  margin-bottom: 64px;
  position: relative;
  z-index: 700;
}
@media (max-width: 599.98px) {
  .three-up-promo-cards {
    padding: 0;
    margin-bottom: 24px;
    width: 100%;
    padding-bottom: 26px;
  }
}

.three-up-promo-cards__card {
  color: #003d79;
  width: 33.3333333333%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 32px 24px;
  position: relative;
  text-align: center;
}
.three-up-promo-cards__card:not(:last-child):after {
  background-color: #d4d6d8;
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px;
}
@media (max-width: 599.98px) {
  .three-up-promo-cards__card:not(:last-child):after {
    display: none;
  }
}

.impact-messaging__number,
.impact-messaging__text {
  display: block;
}

.impact-messaging__number {
  font-size: 6rem;
  line-height: 6.5rem;
  font-variant-numeric: oldstyle-nums;
  -webkit-font-feature-settings: "onum";
  font-feature-settings: "onum";
  letter-spacing: -8px;
}
@media (max-width: 959.98px) {
  .impact-messaging__number {
    font-size: 4rem;
    line-height: 4.5rem;
  }
}

.impact-messaging__text {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.impact-messaging__copy {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slick-dots {
  margin: 0;
  padding: 0;
  text-align: center;
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  list-style: none;
  left: 0;
}

.slick-dots li {
  list-style: none;
  margin: 0;
  padding: 0 4px;
  display: inline-block;
}

.slick-dots button {
  width: 12px;
  height: 12px;
  background-color: #a7a7a8;
  border: 0;
  border-radius: 14px;
  color: transparent;
  overflow: hidden;
}

.slick-dots .slick-active button {
  background-color: #009844;
}

.page-head__title {
  font-size: 2.2rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.1363636364em;
  margin: 0;
}
@media (max-width: 599.98px) {
  .page-head__title {
    font-size: 1.76rem;
  }
}

.page-head__subtitle {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0;
}
@media (max-width: 599.98px) {
  .page-head__subtitle {
    font-size: 1.2rem;
  }
}

.c-consultant-listing {
  margin: 60px 0 0;
  text-align: center;
}

.c-consultant-listing__title {
  color: #4c4c4e;
  font-size: 24px;
  letter-spacing: 1.8px;
  margin: 0 0 30px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .c-consultant-listing__title {
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 50px;
  }
}
.c-consultant-listing__title.has-divider {
  position: relative;
  padding: 0 0 30px;
}
.c-consultant-listing__title.has-divider:after {
  background-color: #fbcc11;
  bottom: 0;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 111px;
}

.c-consultant-listing__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin-left: -6px;
  padding: 0;
}
@media (min-width: 480px) {
  .c-consultant-listing__list {
    margin-left: -12px;
  }
}
@media (min-width: 960px) {
  .c-consultant-listing__list {
    margin-left: -20px;
  }
}
.c-consultant-listing__list.c-consultant-listing__list--minor {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 0;
}
@media (min-width: 960px) {
  .c-consultant-listing__list.c-consultant-listing__list--minor {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: -40px;
  }
}

.c-consultant-listing__item {
  margin: 0 0 10px 6px;
  padding: 0;
  text-align: left;
  width: calc(50% - 6px);
}
.c-consultant-listing__item.c-consultant-listing__item--empty {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-consultant-listing__item:nth-last-child(-n+3):first-child.c-consultant-listing__item--empty, .c-consultant-listing__item:nth-last-child(-n+3):first-child ~ *.c-consultant-listing__item--empty {
  display: none;
}
@media (min-width: 480px) {
  .c-consultant-listing__item {
    display: block;
    margin: 0 0 30px 12px;
    width: calc(33.3333333333% - 12px);
  }
  .c-consultant-listing__item:nth-last-child(-n+4):first-child.c-consultant-listing__item--empty, .c-consultant-listing__item:nth-last-child(-n+4):first-child ~ *.c-consultant-listing__item--empty {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-consultant-listing__item {
    width: calc(25% - 12px);
  }
  .c-consultant-listing__item:nth-last-child(-n+5):first-child.c-consultant-listing__item--empty, .c-consultant-listing__item:nth-last-child(-n+5):first-child ~ *.c-consultant-listing__item--empty {
    display: none;
  }
}
@media (min-width: 960px) {
  .c-consultant-listing__item {
    margin: 0 0 30px 20px;
    width: calc(20% - 20px);
  }
  .c-consultant-listing__item:nth-last-child(-n+6):first-child.c-consultant-listing__item--empty, .c-consultant-listing__item:nth-last-child(-n+6):first-child ~ *.c-consultant-listing__item--empty {
    display: none;
  }
}
.c-consultant-listing__list--minor .c-consultant-listing__item {
  margin: 0 0 30px;
  width: 100%;
}
.c-consultant-listing__list--minor .c-consultant-listing__item:nth-last-child(n+2):first-child.c-consultant-listing__item--empty, .c-consultant-listing__list--minor .c-consultant-listing__item:nth-last-child(n+2):first-child ~ *.c-consultant-listing__item--empty {
  display: block;
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .c-consultant-listing__list--minor .c-consultant-listing__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .c-consultant-listing__list--minor .c-consultant-listing__item {
    margin: 0 auto 70px;
    width: 63%;
  }
}
@media (min-width: 960px) {
  .c-consultant-listing__list--minor .c-consultant-listing__item {
    margin: 0 0 70px 40px;
    width: calc(50% - 40px);
  }
  .c-consultant-listing__list--minor .c-consultant-listing__item:nth-last-child(-n+2):first-child, .c-consultant-listing__list--minor .c-consultant-listing__item:nth-last-child(-n+2):first-child ~ * {
    width: 63%;
  }
  .c-consultant-listing__list--minor .c-consultant-listing__item:nth-last-child(-n+2):first-child.c-consultant-listing__item--empty, .c-consultant-listing__list--minor .c-consultant-listing__item:nth-last-child(-n+2):first-child ~ *.c-consultant-listing__item--empty {
    display: none;
  }
}

.c-consultant-listing__headshot {
  margin: 0;
  padding: 0;
}
.c-consultant-listing__headshot img {
  max-width: 100%;
}
.c-consultant-listing__headshot figcaption {
  font-size: 16px;
  height: 40px;
  line-height: 1.2;
  margin: 10px 0 0;
}
.c-consultant-listing__list--minor .c-consultant-listing__headshot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 15px;
  width: 172px;
}
@media (min-width: 600px) {
  .c-consultant-listing__list--minor .c-consultant-listing__headshot {
    margin-bottom: 0;
  }
}

.c-consultant-listing__bio {
  font-size: 18px;
  line-height: 27px;
}
@media (min-width: 600px) {
  .c-consultant-listing__bio {
    margin: -3px 0 0 20px;
  }
}

.c-consultant-listing__name {
  font-size: 24px;
  line-height: 1.2;
}

.ahc-consultant-listing__title {
  color: #4c4c4e;
  font-size: 16px;
  letter-spacing: 1.8px;
}
@media (min-width: 768px) {
  .ahc-consultant-listing__title {
    font-size: 16px;
    letter-spacing: 3px;
  }
}
.ahc-consultant-listing__title.has-divider {
  position: relative;
  padding: 0 0 30px;
}
.ahc-consultant-listing__title.has-divider:after {
  background-color: #fbcc11;
  bottom: 0;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 111px;
}

.ahc-consultant-listing__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin-left: -6px;
  padding: 0;
}
@media (min-width: 480px) {
  .ahc-consultant-listing__list {
    margin-left: -12px;
  }
}
@media (min-width: 960px) {
  .ahc-consultant-listing__list {
    margin-left: -20px;
  }
}
.ahc-consultant-listing__list.ahc-consultant-listing__list--minor {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 0;
}
@media (min-width: 960px) {
  .ahc-consultant-listing__list.ahc-consultant-listing__list--minor {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: -40px;
  }
}

.ahc-consultant-listing__item {
  margin: 0 0 10px 6px;
  padding: 0;
  text-align: left;
  width: calc(50% - 6px);
}
.ahc-consultant-listing__item.ahc-consultant-listing__item--empty {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.ahc-consultant-listing__item:nth-last-child(-n+3):first-child.ahc-consultant-listing__item--empty, .ahc-consultant-listing__item:nth-last-child(-n+3):first-child ~ *.ahc-consultant-listing__item--empty {
  display: none;
}
@media (min-width: 480px) {
  .ahc-consultant-listing__item {
    display: block;
    margin: 0 0 30px 12px;
    width: calc(33.3333333333% - 12px);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .ahc-consultant-listing__item:nth-last-child(-n+4):first-child.ahc-consultant-listing__item--empty, .ahc-consultant-listing__item:nth-last-child(-n+4):first-child ~ *.ahc-consultant-listing__item--empty {
    display: none;
  }
}
@media (min-width: 768px) {
  .ahc-consultant-listing__item {
    width: calc(25% - 12px);
  }
  .ahc-consultant-listing__item:nth-last-child(-n+5):first-child.ahc-consultant-listing__item--empty, .ahc-consultant-listing__item:nth-last-child(-n+5):first-child ~ *.ahc-consultant-listing__item--empty {
    display: none;
  }
}
@media (min-width: 960px) {
  .ahc-consultant-listing__item {
    margin: 0 0 30px 20px;
    width: calc(20% - 20px);
  }
  .ahc-consultant-listing__item:nth-last-child(-n+6):first-child.ahc-consultant-listing__item--empty, .ahc-consultant-listing__item:nth-last-child(-n+6):first-child ~ *.ahc-consultant-listing__item--empty {
    display: none;
  }
}
.ahc-consultant-listing__list--minor .ahc-consultant-listing__item {
  margin: 0 0 30px;
  width: 100%;
}
.ahc-consultant-listing__list--minor .ahc-consultant-listing__item:nth-last-child(n+2):first-child.ahc-consultant-listing__item--empty, .ahc-consultant-listing__list--minor .ahc-consultant-listing__item:nth-last-child(n+2):first-child ~ *.ahc-consultant-listing__item--empty {
  display: block;
  margin-bottom: 0;
}
@media (max-width: 599.98px) {
  .ahc-consultant-listing__list--minor .ahc-consultant-listing__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 600px) {
  .ahc-consultant-listing__list--minor .ahc-consultant-listing__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .ahc-consultant-listing__list--minor .ahc-consultant-listing__item {
    margin: 0 auto 70px;
  }
}
@media (min-width: 960px) {
  .ahc-consultant-listing__list--minor .ahc-consultant-listing__item {
    margin: 0 0 40px 40px;
    width: calc(50% - 40px);
  }
  .ahc-consultant-listing__list--minor .ahc-consultant-listing__item:nth-last-child(-n+2):first-child.ahc-consultant-listing__item--empty, .ahc-consultant-listing__list--minor .ahc-consultant-listing__item:nth-last-child(-n+2):first-child ~ *.ahc-consultant-listing__item--empty {
    display: none;
  }
}

.ahc-consultant-listing__headshot {
  margin: 0;
  padding: 0;
  width: 75px;
  height: 75px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.ahc-consultant-listing__headshot img {
  display: inline;
  margin: 0 auto;
  height: 100%;
  width: auto;
  margin-left: -20px;
}
.ahc-consultant-listing__headshot figcaption {
  font-size: 16px;
  height: 40px;
  line-height: 1.2;
  margin: 10px 0 0;
}
.ahc-consultant-listing__list--minor .ahc-consultant-listing__headshot {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .ahc-consultant-listing__list--minor .ahc-consultant-listing__headshot {
    margin-bottom: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (max-width: 599.98px) {
  .ahc-consultant-listing__list--minor .ahc-consultant-listing__headshot {
    width: 60px;
    height: 60px;
  }
}

.ahc-consultant-listing__bio {
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 600px) {
  .ahc-consultant-listing__bio {
    margin: 0px 0 0 20px;
  }
}

.ahc-consultant-listing__name {
  font-size: 16px;
  line-height: 1.2;
}

* + .c-other-search-professionals {
  margin-top: 50px;
}

.site-content .c-other-search-professionals:last-child {
  margin-bottom: -25px;
}

.c-other-search-professionals {
  padding: 50px 0;
  text-align: center;
}
.c-other-search-professionals.c-other-search-professionals--has-background-color {
  background-color: #f4f7f9;
}

.c-other-search-professionals__title {
  color: #4c4c4e;
  font-size: 24px;
  letter-spacing: 1.8px;
  margin: 0 0 30px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .c-other-search-professionals__title {
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 50px;
  }
}
.c-other-search-professionals__title.has-divider {
  position: relative;
  padding: 0 0 30px;
}
.c-other-search-professionals__title.has-divider:after {
  background-color: #fbcc11;
  bottom: 0;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 111px;
}

.c-other-search-professionals__list {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          grid-column-gap: 30px;
          column-gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
@media (min-width: 600px) {
  .c-other-search-professionals__list {
    -webkit-column-count: unset;
       -moz-column-count: unset;
            column-count: unset;
    display: block;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
    padding-left: 15px;
  }
}
.c-other-search-professionals__list.c-other-search-professionals__list--minor {
  margin: 0 auto;
  max-width: 690px;
}

.c-other-search-professionals__item {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 16px;
  text-align: center;
  vertical-align: top;
  -webkit-column-break-inside: avoid; page-break-inside: avoid; -moz-column-break-inside: avoid; page-break-inside: avoid; break-inside: avoid; width: 100%;
}
.c-other-search-professionals__item.c-other-search-professionals__item--empty {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 600px) {
  .c-other-search-professionals__item.c-other-search-professionals__item--empty {
    display: block;
  }
}
.c-other-search-professionals__item:nth-last-child(-n+2):first-child, .c-other-search-professionals__item:nth-last-child(-n+2):first-child ~ * {
  width: calc(200% + 30px);
}
@media (min-width: 600px) {
  .c-other-search-professionals__item {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin: 0 0 16px;
    width: calc(50% - 5px);
  }
  .c-other-search-professionals__item:nth-last-child(-n+2):first-child, .c-other-search-professionals__item:nth-last-child(-n+2):first-child ~ * {
    width: calc(100% - 5px);
  }
  .c-other-search-professionals__item:nth-last-child(-n+4):first-child.c-other-search-professionals__item--empty, .c-other-search-professionals__item:nth-last-child(-n+4):first-child ~ *.c-other-search-professionals__item--empty {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-other-search-professionals__item {
    width: calc(33.3333333333% - 5px);
  }
  .c-other-search-professionals__item:nth-last-child(-n+5):first-child, .c-other-search-professionals__item:nth-last-child(-n+5):first-child ~ * {
    width: calc(50% - 5px);
  }
  .c-other-search-professionals__item:nth-last-child(-n+5):first-child.c-other-search-professionals__item--empty, .c-other-search-professionals__item:nth-last-child(-n+5):first-child ~ *.c-other-search-professionals__item--empty {
    display: none;
  }
  .c-other-search-professionals__item:nth-last-child(-n+2):first-child, .c-other-search-professionals__item:nth-last-child(-n+2):first-child ~ * {
    width: calc(100% - 5px);
  }
  .c-other-search-professionals__item:nth-last-child(-n+2):first-child.c-other-search-professionals__item--empty, .c-other-search-professionals__item:nth-last-child(-n+2):first-child ~ *.c-other-search-professionals__item--empty {
    display: none;
  }
}
@media (min-width: 960px) {
  .c-other-search-professionals__item {
    width: calc(25% - 5px);
  }
  .c-other-search-professionals__item:nth-last-child(-n+7):first-child, .c-other-search-professionals__item:nth-last-child(-n+7):first-child ~ * {
    width: calc(33.3333333333% - 5px);
  }
  .c-other-search-professionals__item:nth-last-child(-n+5):first-child, .c-other-search-professionals__item:nth-last-child(-n+5):first-child ~ * {
    width: calc(50% - 5px);
  }
  .c-other-search-professionals__item:nth-last-child(-n+5):first-child:nth-child(even), .c-other-search-professionals__item:nth-last-child(-n+5):first-child ~ *:nth-child(even) {
    margin-left: 0;
  }
  .c-other-search-professionals__item:nth-last-child(-n+2):first-child, .c-other-search-professionals__item:nth-last-child(-n+2):first-child ~ * {
    margin-left: 0;
    width: 100%;
  }
  .c-other-search-professionals__item:nth-last-child(-n+2):first-child.c-other-search-professionals__item--empty, .c-other-search-professionals__item:nth-last-child(-n+2):first-child ~ *.c-other-search-professionals__item--empty {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-banner--office + .c-office-info {
    margin-top: -150px;
    position: relative;
    z-index: 2;
  }
}

.c-office-info {
  background-color: #00396f;
  color: #fff;
  margin-bottom: 50px;
  padding: 25px 20px 40px;
}
@media (min-width: 768px) {
  .c-office-info {
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 40px;
    width: calc(100% - 40px);
  }
}
@media (min-width: 960px) {
  .c-office-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px;
  }
}
@media (min-width: 1000px) {
  .c-office-info {
    margin-left: auto;
    margin-right: auto;
  }
}
.c-office-info a {
  color: #fff;
}
.c-office-info:after {
  content: none;
}

.c-office-info__title {
  display: none;
  font-size: 40px;
  font-weight: 700;
  margin: 0 50px 0 0;
}
@media (min-width: 960px) {
  .c-office-info__title {
    display: block;
  }
}

@media (min-width: 768px) {
  .c-office-info__details {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 960px) {
  .c-office-info__details {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-left: 1px solid #fff;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}

.c-office-info__location {
  font-weight: 400;
  line-height: 26px;
}
@media (min-width: 768px) {
  .c-office-info__location {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    border-right: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 50px;
    padding: 0 50px 0 0;
    width: calc(50% + 50px);
  }
}
@media (min-width: 960px) {
  .c-office-info__location {
    border-right: none;
    display: block;
    padding: 0 0 0 50px;
    width: auto;
  }
}
.c-office-info__location ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-office-info__location li {
  margin: 0 0 3px;
}
.c-office-info__location .c-office-info__download {
  margin-bottom: 0;
  margin-top: 15px;
}
.c-office-info__location .c-office-info__download a {
  text-decoration: none;
}
.c-office-info__location .c-office-info__download a svg {
  cursor: pointer;
  fill: #fff;
  height: 10px;
  margin-left: 8px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 15px;
}
.c-office-info__location .c-office-info__download a:hover {
  color: #7cb085;
}
.c-office-info__location .c-office-info__download a:hover svg {
  fill: #7cb085;
}

.c-office-info__manager-directions {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .c-office-info__manager-directions {
    margin-top: 0;
    width: 50%;
  }
}
@media (min-width: 960px) {
  .c-office-info__manager-directions {
    width: auto;
  }
}

.c-office-info__manager {
  margin: 0 0 30px;
}

.c-office-info__manager-label {
  font-size: 20px;
  line-height: 26px;
}

.c-office-info__manager-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-office-info__manager-list li {
  margin: 0 0 3px;
}
.c-office-info__manager-list a {
  text-decoration: none;
}
.c-office-info__manager-list a svg {
  cursor: pointer;
  fill: #fff;
  height: 10px;
  margin-left: 8px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 15px;
}
.c-office-info__manager-list a:hover {
  color: #7cb085;
}
.c-office-info__manager-list a:hover svg {
  fill: #7cb085;
}

.c-office-info__directions {
  border: 2px solid #fbcc11;
  display: block;
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin: 0;
  padding: 15px 15px 11px 15px;
  text-align: center;
  text-transform: uppercase;
}
.c-office-info__directions:hover {
  background-color: #fbcc11;
  color: #fff;
}
@media (min-width: 480px) {
  .c-office-info__directions {
    display: inline-block;
    min-width: 240px;
  }
}

.c-text-banner {
  margin: 60px 0;
  text-align: center;
}

.c-text-banner__title {
  color: #4c4c4e;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .c-text-banner__title {
    font-size: 44px;
  }
}

.c-text-banner__summary {
  font-size: 20px;
}
@media (min-width: 768px) {
  .c-text-banner__summary {
    font-size: 24px;
    margin: 0 auto;
    max-width: 80%;
  }
  .c-text-banner__summary.is-full-width {
    max-width: none;
  }
}

.c-text-banner__cta {
  margin-top: 20px;
}
.c-text-banner__cta svg {
  cursor: pointer;
  fill: #4c4c4e;
  height: 12px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  width: 24px;
}
.c-text-banner__cta:hover svg {
  fill: #fff;
}

.c-featured-articles {
  margin: 0 0 10px;
}

.c-featured-articles__title {
  color: #4c4c4e;
  font-size: 1.5em;
  line-height: 1.4;
  margin-bottom: 40px;
  text-align: center;
}
.c-featured-articles__title.has-accent:before {
  background-color: #fbcc11;
  content: "";
  display: block;
  height: 5px;
  margin: 0 auto 16px;
  width: 42px;
}

.c-featured-articles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 480px) {
  .c-featured-articles__list {
    margin-left: -50px;
  }
}
.c-featured-articles__list.has-one-item .c-featured-articles__item--empty {
  display: none;
}

.c-featured-articles__item {
  margin-bottom: 50px;
  width: 300px;
}
@media (min-width: 480px) {
  .c-featured-articles__item {
    margin-left: 50px;
  }
  .c-featured-articles__item:nth-last-child(-n+2):first-child.c-featured-articles__item--empty, .c-featured-articles__item:nth-last-child(-n+2):first-child ~ *.c-featured-articles__item--empty {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-featured-articles__item:nth-last-child(-n+3):first-child.c-featured-articles__item--empty, .c-featured-articles__item:nth-last-child(-n+3):first-child ~ *.c-featured-articles__item--empty {
    display: none;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .c-featured-articles__item:nth-child(3) {
    display: none;
  }
}
@media (min-width: 960px) {
  .c-featured-articles__item {
    width: calc(33.3333333333% - 50px);
  }
  .c-featured-articles__item:nth-child(3) {
    display: block;
  }
}
.c-featured-articles__item.c-featured-articles__item--empty {
  margin-bottom: 0;
}

.c-featured-articles__cta {
  display: block;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.c-featured-articles__cta:hover .c-featured-articles__image {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.c-featured-articles__cta:hover .c-featured-articles__content p:before {
  width: 100%;
}

.c-featured-articles__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1;
}

.c-featured-articles__content {
  color: #fff;
  cursor: pointer;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 63px 44px 44px;
  position: relative;
  z-index: 2;
}
.c-featured-articles__content p {
  line-height: 1.2;
  margin: 0;
  padding-top: 30px;
  position: relative;
}
.c-featured-articles__content p:before {
  background-color: #fbcc11;
  content: "";
  display: block;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  width: 80px;
}

.c-featured-articles__more {
  font-size: 14px;
}
.c-featured-articles__more svg {
  height: 11px;
  margin-left: 5px;
  vertical-align: middle;
  width: 9px;
}

.theme--dark-on-light + .c-featured-articles__content {
  color: #4c4c4e;
}

.theme--light-on-dark + .c-featured-articles__content {
  color: #fff;
}

.c-office-selector {
  margin: 0;
}
@media (min-width: 768px) {
  .c-office-selector {
    margin: 45px 0;
  }
}
.c-office-selector ul {
  list-style: none;
}

.c-office-selector__action-pane {
  background-color: #f4f7f9;
  margin: 0 -6%;
  padding: 30px 3%;
}
@media (min-width: 768px) {
  .c-office-selector__action-pane {
    background-color: transparent;
    margin: 0;
    padding: 0;
  }
}

.c-office-selector__title {
  display: none;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.c-office-selector__title.for-mobile {
  display: block;
}
@media (min-width: 768px) {
  .c-office-selector__title.for-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-office-selector__title {
    display: block;
    font-size: 30px;
    margin-bottom: 40px;
  }
}

.c-office-selector__regions {
  position: relative;
}

.c-office-selector__trigger {
  background-color: #e7ebf0;
  color: #4c4c4e;
  display: block;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 30px 7px 12px;
  position: relative;
}
@media (min-width: 768px) {
  .c-office-selector__trigger {
    display: none;
  }
}
.c-office-selector__trigger:after {
  content: "";
  border-top: 5px solid transparent;
  border-right: 5px solid #338441;
  border-bottom: 5px solid #338441;
  border-left: 5px solid transparent;
  display: block;
  position: absolute;
  right: 15px;
  top: 30%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.has-selector-open .c-office-selector__trigger:after {
  top: 45%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.c-office-selector__trigger:hover, .c-office-selector__trigger:active, .c-office-selector__trigger:focus {
  color: #4c4c4e;
}

.c-office-selector__list {
  background-color: #e7ebf0;
  border-top: 1px solid rgb(215.3076923077, 221.9230769231, 230.1923076923);
  display: none;
  font-size: 16px;
  margin: 0;
  max-height: 180px;
  overflow-y: auto;
  padding: 6px 0;
}
@media (min-width: 768px) {
  .c-office-selector__list {
    background-color: transparent;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
    height: 265px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-height: none;
    overflow-y: visible;
    padding: 0;
  }
}
.has-selector-open .c-office-selector__list {
  display: block;
}
@media (min-width: 768px) {
  .has-selector-open .c-office-selector__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-office-selector__item {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .c-office-selector__item {
    height: 100%;
    margin: 0 15px;
    width: calc(25% - 30px);
  }
}
@media (min-width: 960px) {
  .c-office-selector__item {
    margin: 0 25px;
    width: calc(25% - 50px);
  }
}

.c-office-selector__link {
  color: #4c4c4e;
  display: block;
  padding: 4px 12px 2px;
}
@media (min-width: 768px) {
  .c-office-selector__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
    padding: 0;
  }
}
.c-office-selector__link:hover {
  background-color: rgb(215.3076923077, 221.9230769231, 230.1923076923);
  color: #4c4c4e;
}
@media (min-width: 768px) {
  .c-office-selector__link:hover {
    background-color: transparent;
  }
}
.c-office-selector__link:hover svg {
  fill: #338441;
}
.c-office-selector__link:hover svg path {
  fill: #338441;
}
.c-office-selector__link svg {
  fill: #4c4c4e;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}
.c-office-selector__link svg path {
  fill: #4c4c4e;
}

.c-office-selector__icon {
  display: none;
}
@media (min-width: 768px) {
  .c-office-selector__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 70%;
  }
}

@media (min-width: 768px) {
  .c-office-selector__name {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
  }
  .is-current .c-office-selector__name span {
    background-color: #338441;
    color: #fff;
  }
  .c-office-selector__name span {
    color: #338441;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 15px 15px 10px;
  }
}

.c-office-selector__region-pane {
  display: none;
  padding: 30px 0 0;
}
@media (min-width: 768px) {
  .c-office-selector__region-pane {
    border-top: 3px solid #ececec;
    margin-top: 60px;
    padding-top: 60px;
  }
}
.c-office-selector__region-pane.is-current {
  display: block;
}

.c-office-selector__region-title {
  font-size: 24px;
  letter-spacing: 1.8px;
  margin: 0 0 30px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .c-office-selector__region-title {
    display: none;
  }
}

@media (min-width: 768px) {
  .c-office-selector__region-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -30px;
  }
}

.c-office-selector__region {
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .c-office-selector__region {
    margin: 0 0 30px 30px;
    width: calc(25% - 30px);
  }
}
@media (min-width: 768px) {
  .c-office-selector__region-pane--na .c-office-selector__region.c-office-selector__region--united-states {
    width: calc(50% - 30px);
  }
}
.c-office-selector__region.c-office-selector__region--empty {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .c-office-selector__region:nth-last-child(-n+5):first-child.c-office-selector__region--empty, .c-office-selector__region:nth-last-child(-n+5):first-child ~ *.c-office-selector__region--empty {
    display: none;
  }
}

.c-office-selector__region-name {
  font-size: 20px;
  margin-bottom: 10px;
}
.JP .c-office-selector__region-name {
  font-size: 16px;
  margin-bottom: 13px;
}

.c-office-selector__office-list {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .c-office-selector__region--united-states .c-office-selector__office-list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            grid-column-gap: 20px;
            column-gap: 20px;
    min-width: 360px;
  }
}

.c-office-selector__place {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 5px;
}
.JP .c-office-selector__place {
  font-size: 15px;
  margin-bottom: 8px;
}

.c-office-selector__place--country-page-link::after {
  content: "➞";
  margin-left: 5px;
  vertical-align: text-top;
}

.consultant-card {
  width: 22%;
  margin-right: 4%;
  margin-bottom: 4%;
  min-height: 255px;
}
.consultant-card:nth-child(4n) {
  margin-right: 0;
}
.consultant-card > a {
  border: 0.05rem solid #d6d6d8;
  padding: 1.5rem 1.25rem;
  display: block;
  width: 100%;
  height: 100%;
}
.consultant-card > a:hover {
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
}
@media (max-width: 479.98px) {
  .consultant-card > a {
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .consultant-card {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 5%;
  }
  .consultant-card:nth-child(4n) {
    margin-right: 5%;
  }
  .consultant-card:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 599.98px) {
  .consultant-card {
    width: 48%;
    margin-right: 4%;
  }
  .consultant-card:nth-child(4n) {
    margin-right: 4%;
  }
  .consultant-card:nth-child(3n) {
    margin-right: 4%;
  }
  .consultant-card:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 479.98px) {
  .consultant-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.75rem;
    min-height: 0;
  }
  .consultant-card:nth-child(4n) {
    margin-right: 0;
  }
  .consultant-card:nth-child(3n) {
    margin-right: 0;
  }
  .consultant-card:nth-child(2n) {
    margin-right: 0;
  }
}

.consultant-card__image-container {
  max-width: 120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 479.98px) {
  .consultant-card__image-container {
    max-width: 100px;
    margin-left: 0;
    margin-right: 1rem;
    width: 33%;
  }
}

.consultant-card__image {
  margin: 0 0 1rem;
}
.consultant-card__image > img {
  width: 100%;
  max-height: 100%;
}
@media (max-width: 479.98px) {
  .consultant-card__image {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}

@media (max-width: 479.98px) {
  .consultant-card__container {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.consultant-card__image--circle {
  border-radius: 50%;
  overflow: hidden;
  padding-top: 100%;
  position: relative;
  width: 100%;
}
.consultant-card__image--circle > img {
  height: 100%;
  left: 50%;
  max-height: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
}

.consultant-card__content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 479.98px) {
  .consultant-card__content {
    text-align: left;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    margin-left: 0;
    margin-right: 0;
    width: 66%;
  }
}

.consultant-card__title {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

ul.consultant-card__offices {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #616161;
  font-size: 0.7rem;
}
ul.consultant-card__offices > li {
  padding: 0;
  margin: 0;
  display: block;
}
@media (max-width: 479.98px) {
  ul.consultant-card__offices > li {
    margin-bottom: 0.25rem;
  }
}

.ss-authors {
  margin: 60px 0 40px;
}

.ss-authors__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 960px) {
  .ss-authors__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.ss-authors__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media (min-width: 960px) {
  .ss-authors__item {
    width: 46%;
  }
  .ss-authors__item:nth-last-child(1):first-child, .ss-authors__item:nth-last-child(1):first-child ~ * {
    width: 100%;
  }
}

.ss-authors__headshot {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: block;
  height: 65px;
  margin-right: 20px;
  min-width: 65px;
  width: 65px;
}
.ss-authors__headshot.no-headshot {
  height: 217px;
  min-width: 217px;
  width: 217px;
}

.ss-authors__bio {
  font-size: 18px;
  line-height: 27px;
}

.ss-authors__name {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 0.1em;
}

.topics {
  border-top: 1px solid #E7EDF2;
  padding-top: 20px;
  margin-bottom: 40px;
}

.topics__top-section {
  padding-bottom: 20px;
}
.topics__top-section h4 {
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: 19px;
  text-transform: uppercase;
}

.topics__list {
  margin: 0 0 25px 0;
  padding: 0;
  list-style-type: none;
}
.topics__list::after {
  display: table;
  clear: both;
  content: "";
}
.topics__list li {
  float: left;
  margin: 0 7px 7px 0;
}
.topics__list a {
  background-color: #f4f7f9;
  border-radius: 5px;
  color: #7cb085;
  display: block;
  font-size: 0.65rem;
  line-height: 1.1em;
  padding: 9px 18px 8px 18px;
  text-transform: uppercase;
}

.promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2rem;
}
.promo.is-left, .promo.is-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.promo.is-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.promo.is-left .promo__media {
  margin-right: 1.5rem;
  margin-bottom: 0;
  max-width: 50%;
}
.promo.is-left .promo__cta {
  text-align: left;
}
.promo.is-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.promo.is-right .promo__media {
  margin-left: 1.5rem;
  margin-bottom: 0;
  max-width: 50%;
}
.promo img {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .promo.is-right, .promo.is-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 479.98px) {
  .promo.is-right, .promo.is-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .promo.is-right .promo__media, .promo.is-left .promo__media {
    margin-bottom: 1.125rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.promo__description {
  font-size: 0.75rem;
  line-height: 1.1rem;
  margin-top: 0.5rem;
}
@media (max-width: 767.98px) {
  .promo__description {
    display: none;
  }
}

.promo__media {
  margin: 0 0 1rem;
  overflow: hidden;
}
.promo__media a {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.promo__media img {
  max-width: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}

.promo__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.promo__title {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-bottom: 0;
}
.promo__title a {
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .promo__title {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}
@media (max-width: 599.98px) {
  .promo__title {
    font-size: 0.75rem;
    line-height: 0.95rem;
  }
}

.promo__subtitle {
  font-size: 0.65rem;
  color: #818183;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0.25rem;
}

.promo__cta {
  display: block;
  font-weight: bold;
  text-align: left;
}
.promo__cta::after {
  content: " →";
}

.multi-promo {
  margin-bottom: 2rem;
}

.multi-promo__title {
  color: #00396f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.multi-promo__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .multi-promo__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.multi-promo__promo {
  width: 100%;
  margin-left: 1.5rem;
}
.multi-promo__promo:first-child {
  margin-left: 0;
}
.multi-promo__promo .promo__description {
  font-size: 18px;
  line-height: 26px;
}
.multi-promo__promo:nth-last-child(4):first-child .promo__description, .multi-promo__promo:nth-last-child(4):first-child ~ .multi-promo__promo .promo__description {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  .multi-promo__promo:nth-last-child(4):first-child .promo__description, .multi-promo__promo:nth-last-child(4):first-child ~ .multi-promo__promo .promo__description {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (min-width: 960px) {
  .multi-promo__promo {
    width: 50%;
  }
}
@media (min-width: 480px) {
  .multi-promo__promo {
    width: 50%;
  }
}
@media (width: 30rem) {
  .multi-promo__promo {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .multi-promo__promo {
    width: 48%;
    margin-left: 0;
    margin-right: 4%;
  }
  .multi-promo__promo:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .multi-promo__promo:nth-last-child(3):first-child, .multi-promo__promo:nth-last-child(3):first-child ~ .multi-promo__promo {
    width: calc(33.334% - 20px);
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 599.98px) {
  .multi-promo__promo:nth-last-child(3):first-child, .multi-promo__promo:nth-last-child(3):first-child ~ .multi-promo__promo {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .multi-promo__promo:nth-last-child(3):first-child:nth-child(2n), .multi-promo__promo:nth-last-child(3):first-child ~ .multi-promo__promo:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 599.98px) {
  .multi-promo__promo {
    width: 100%;
    margin-right: 0;
  }
  .multi-promo__promo:nth-last-child(4):first-child, .multi-promo__promo:nth-last-child(4):first-child ~ .multi-promo__promo {
    width: 48%;
    margin-left: 0;
    margin-right: 4%;
  }
  .multi-promo__promo:nth-last-child(4):first-child:nth-child(2n), .multi-promo__promo:nth-last-child(4):first-child ~ .multi-promo__promo:nth-child(2n) {
    margin-right: 0;
  }
}
.multi-promo__promo .promo {
  display: block;
  width: 100%;
}

.search-box {
  width: 100%;
}

.search-box__input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-box__input .search-box__input-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 0;
  border: 1px solid #616161;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  position: relative;
}
.search-box__input input,
.search-box__input input[type=text] {
  background-color: #fff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 0.65rem;
  letter-spacing: 1px;
  padding: 0.5rem 2rem 0.4rem 0.6rem;
  width: 100%;
}
.search-box__input input::-webkit-input-placeholder, .search-box__input input[type=text]::-webkit-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #616161;
}
.search-box__input input::-moz-placeholder, .search-box__input input[type=text]::-moz-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #616161;
}
.search-box__input input:-ms-input-placeholder, .search-box__input input[type=text]:-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #616161;
}
.search-box__input input::-ms-input-placeholder, .search-box__input input[type=text]::-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #616161;
}
.search-box__input input::placeholder,
.search-box__input input[type=text]::placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #616161;
}
.JP .search-box__input input::-webkit-input-placeholder, .JP .search-box__input input[type=text]::-webkit-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .search-box__input input::-moz-placeholder, .JP .search-box__input input[type=text]::-moz-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .search-box__input input:-ms-input-placeholder, .JP .search-box__input input[type=text]:-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .search-box__input input::-ms-input-placeholder, .JP .search-box__input input[type=text]::-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .search-box__input input::placeholder,
.JP .search-box__input input[type=text]::placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .search-box__input input::-webkit-input-placeholder, .CN .search-box__input input[type=text]::-webkit-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .search-box__input input::-moz-placeholder, .CN .search-box__input input[type=text]::-moz-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .search-box__input input:-ms-input-placeholder, .CN .search-box__input input[type=text]:-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .search-box__input input::-ms-input-placeholder, .CN .search-box__input input[type=text]::-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .search-box__input input::placeholder,
.CN .search-box__input input[type=text]::placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.search-box__input input:-ms-input-placeholder,
.search-box__input input[type=text]:-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .search-box__input input:-ms-input-placeholder,
.JP .search-box__input input[type=text]:-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .search-box__input input:-ms-input-placeholder,
.CN .search-box__input input[type=text]:-ms-input-placeholder {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.search-box__input input:focus::-webkit-input-placeholder, .search-box__input input[type=text]:focus::-webkit-input-placeholder {
  color: transparent;
}
.search-box__input input:focus::-moz-placeholder, .search-box__input input[type=text]:focus::-moz-placeholder {
  color: transparent;
}
.search-box__input input:focus:-ms-input-placeholder, .search-box__input input[type=text]:focus:-ms-input-placeholder {
  color: transparent;
}
.search-box__input input:focus::-ms-input-placeholder, .search-box__input input[type=text]:focus::-ms-input-placeholder {
  color: transparent;
}
.search-box__input input:focus::placeholder,
.search-box__input input[type=text]:focus::placeholder {
  color: transparent;
}
.search-box__input input::-ms-clear,
.search-box__input input[type=text]::-ms-clear {
  display: none;
}

.search-box__button {
  background: transparent;
  background-color: #338441;
  border: 0;
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 0.5rem 1rem 0.3rem;
  right: 0;
  text-transform: uppercase;
  top: 0;
  cursor: pointer;
}
.search-box__button svg {
  display: none;
  fill: #fff;
  height: 0.7rem;
  width: 0.7rem;
}
@media (max-width: 767.98px) {
  .search-box__button {
    padding: 0.4rem 1rem 0.4rem;
  }
  .search-box__button .lg-screen-only {
    display: none;
  }
  .search-box__button .mobile-only {
    display: block;
  }
}

.search-box__clear {
  background: none;
  border: none;
  position: absolute;
  right: 0.25rem;
  top: 0.35rem;
}
.search-box__clear svg {
  fill: #616161;
  width: 20px;
  height: 20px;
}

.search-box__loader .search-results__spinner {
  left: auto;
  position: absolute;
  right: 5px;
  text-align: left;
  top: -2px;
}
.search-box__loader .search-results__spinner img {
  margin-top: 0.2rem;
  width: 1.6rem;
  height: 1.6rem;
}

.search-box--gray {
  margin-bottom: 0;
}
.search-box--gray .search-box__input {
  background-color: #e7edf2;
  margin-left: 1px;
}
.search-box--gray .search-box__input-area {
  border: none;
}
.search-box--gray .search-box__input-area input {
  background-color: transparent;
  padding: 0.5rem 0 0.5rem 1rem;
  min-height: 37px;
}
.search-box--gray .search-box__input-area input::-webkit-input-placeholder {
  color: #616161;
}
.search-box--gray .search-box__input-area input::-moz-placeholder {
  color: #616161;
}
.search-box--gray .search-box__input-area input:-ms-input-placeholder {
  color: #616161;
}
.search-box--gray .search-box__input-area input::-ms-input-placeholder {
  color: #616161;
}
.search-box--gray .search-box__input-area input::placeholder {
  color: #616161;
}
.search-box--gray .search-box__button {
  background-color: #e7edf2;
  padding-top: 0.25rem;
}
.search-box--gray .search-box__button .icon {
  display: block;
  fill: #616161;
}
.search-box--gray .search-box__clear {
  display: none;
}
@media (max-width: 767.98px) {
  .search-box--gray {
    margin-bottom: 0px;
  }
}

.search-box--clear .search-box__input {
  background-color: #fff;
}
.search-box--clear .search-box__input input {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-right: 2rem;
  color: #818183;
  min-height: 34px;
}
.search-box--clear .search-box__clear {
  display: block;
}

.search-box--gray.search-box--clear {
  border: 1.5px solid #616161;
}

[lang=de-DE] .search-facets {
  display: none;
}
@media (max-width: 767.98px) {
  .search-facets {
    display: none;
  }
}
.search-facets .search-results__sort-bar {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0px;
  position: static;
  width: 100%;
}
.search-facets .search-results__sort-bar > span {
  color: #4c4c4e;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.3px;
}
@media (max-width: 767.98px) {
  .search-facets .search-results__sort-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.search-facets__group-top,
.search-facets__group-more,
.search-facets__group-heading,
.search-facets__values-wrapper {
  padding: 0.8rem;
  padding-bottom: 0;
}

.search-facets__filter-toggle {
  display: none;
  width: 100%;
  margin-bottom: 1.75rem;
}
.search-facets__filter-toggle button {
  background-color: transparent;
  border: 1.5px solid #338441;
  display: block;
  padding: 0.5rem 1.75rem 0.4rem 1.75rem;
  position: relative;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.search-facets__filter-toggle button:after {
  content: "▾";
  color: #338441;
  padding: 0 15px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.has-selected .search-facets__filter-toggle button {
  background-color: #338441;
  color: #fff;
}
.has-selected .search-facets__filter-toggle button:after {
  color: #fff;
}
.has-selected .search-facets__filter-toggle button .selected {
  text-transform: lowercase;
}
.search-facets__filter-toggle .icon {
  color: #fff;
  float: right;
  margin-left: 0.3rem;
}
.search-facets__filter-toggle .icon, .search-facets__filter-toggle .icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.search-facets__label {
  color: #00396f;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .search-facets__label {
    display: none;
  }
}

.search-facets__mobile-label {
  border-top: 1px solid #d6d6d8;
  color: #00396f;
  display: none;
  font-size: 0.75rem;
  letter-spacing: 1.3px;
  margin-bottom: 20px;
  margin-top: 0px;
  padding-top: 20px;
  text-align: center;
  text-transform: uppercase;
}
.search-facets__mobile-label:first-child {
  border-top: none;
  padding-top: 0px;
}
@media (max-width: 767.98px) {
  .search-facets__mobile-label {
    display: block;
  }
}

.search-facets__apply-all,
.search-facets__clear-all {
  text-align: center;
  padding: 0.5rem 0 0;
}
.search-facets__apply-all button,
.search-facets__clear-all button {
  background-color: transparent;
}
@media (min-width: 768px) {
  .search-facets__apply-all button,
  .search-facets__clear-all button {
    color: #338441;
    text-decoration: underline;
    display: block;
    border: 0;
    padding: 0;
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .search-facets__apply-all button,
  .search-facets__clear-all button {
    border: 0.1rem solid #338441;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 0.95rem;
    padding: 0.5rem 0.75rem 0.4rem;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
  }
  .search-facets__apply-all button:hover,
  .search-facets__clear-all button:hover {
    color: #fff;
    background-color: #338441;
  }
}

.search-facets__apply-all {
  display: none;
}
@media (max-width: 767.98px) {
  .search-facets__apply-all {
    display: block;
  }
}

.search-facets__apply-all + .search-facets__clear-all {
  padding-top: 1rem;
}

.search-facets__group {
  clear: both;
}
.search-facets__group::after {
  display: table;
  clear: both;
  content: "";
}
@media (min-width: 768px) {
  .has-selected .search-facets__group.search-facets__group--last {
    border-bottom: 1px solid #d6d6d8;
  }
}
.search-facets__group .search-facets__group-heading {
  background-color: #fff;
  border-top: 1px solid #d6d6d8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}
.search-facets__group .search-facets__group-heading h3 {
  font-size: 0.8rem;
  letter-spacing: 1.3px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
  text-align: left;
}
.search-facets__group .search-facets__group-heading.text-center h3 {
  text-align: center;
}
.search-facets__group .search-facets__group-heading .icon {
  width: 32px;
  height: 32px;
}
.search-facets__group.is-open .search-facets__group-heading {
  border-bottom: 0;
}
.search-facets__group.is-open .search-facets__group-wrapper .is-open.search-facets__group .search-facets__group-heading {
  border-bottom: 1px solid #bdbdbd;
}
.search-facets__group.no-header .search-facets__group-heading {
  display: none;
}
.search-facets__group.title-font label {
  font-size: 0.8rem;
}
.search-facets__group.title-font label:before {
  top: 1px;
}
.search-facets__group .search-facets__group {
  margin-top: 1rem;
  margin-bottom: 0;
}

.search-facets__group-wrapper .search-facets__group-heading {
  background-color: transparent;
  padding: 1.6rem 0.8rem 0.4rem;
  border: 0;
}
.search-facets__group-wrapper .search-facets__group-heading h4 {
  color: #9e9e9e;
  font-size: 0.8rem;
}

.search-facets__group-more,
.search-facets__group-toggle,
.search-facets__group-clear,
.search-facets__value-expand {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.search-facets__group-toggle {
  position: relative;
  width: 100%;
  padding: 15px 0;
}
.search-facets__group-toggle:before {
  content: "▾";
  color: #338441;
  font-size: 0.8rem;
  right: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.search-facets__group-toggle:focus {
  outline: none;
  color: #338441;
}

.search-facets__group-toggle.is-open:before,
.search-facets__values-expand.is-open:before {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}

.search-facets__group-top {
  width: 100%;
  text-align: right;
}

.search-facets__group-clear {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
}

.search-facets__group-selected .search-facets__group-heading {
  padding: 0;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.search-facets__group-selected .search-facets__group-heading h4 {
  letter-spacing: 1.3px;
  margin-bottom: 0;
  margin-top: 0;
  color: #00396f;
  font-size: 0.65rem;
  word-break: break-word;
}
.search-facets__group-selected .search-facets__group-values {
  padding: 0;
}

.search-facets__group-more {
  padding: 0;
}
.search-facets__group-more button {
  background: transparent;
  border: 0;
  color: #338441;
  font-size: 0.7rem;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}

.search-facets__value-expand {
  float: right;
}

.search-facets__group-values {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-facets__group-values.is-level-1, .search-facets__group-values.is-level-2 {
  margin-left: 0.8rem;
}
.search-facets__group-values li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.65rem;
}
.search-facets__group-values li input {
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.search-facets__group-values li input:focus ~ label {
  outline: 0;
}
.search-facets__group-values li input:focus ~ label:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13' height='13' viewBox='0 0 9 9'%3E%3Cdefs%3E%3Cpath id='kc62a' d='M583 797v-9h9v9z'/%3E%3Cpath id='kc62b' d='M585 795v-5h5v5z'/%3E%3CclipPath id='kc62c'%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3C/clipPath%3E%3CclipPath id='kc62d'%3E%3Cuse fill='%23fff' xlink:href='%23kc62b'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate(-583 -788)'%3E%3Cg%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%23616161' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62c)' xlink:href='%23kc62a'/%3E%3C/g%3E%3Cg%3E%3Cuse fill='%23616161' xlink:href='%23kc62b'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%23616161' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62d)' xlink:href='%23kc62b'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.search-facets__group-values li input:checked:focus ~ label:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13' height='13' viewBox='0 0 9 9'%3E%3Cdefs%3E%3Cpath id='kc62a' d='M583 797v-9h9v9z'/%3E%3Cpath id='kc62b' d='M585 795v-5h5v5z'/%3E%3CclipPath id='kc62c'%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3C/clipPath%3E%3CclipPath id='kc62d'%3E%3Cuse fill='%23fff' xlink:href='%23kc62b'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate(-583 -788)'%3E%3Cg%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%2300396f' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62c)' xlink:href='%23kc62a'/%3E%3C/g%3E%3Cg%3E%3Cuse fill='%2300396f' fill-opacity='0.5' xlink:href='%23kc62b'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke-opacity='0.5' stroke='%2300396f' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62d)' xlink:href='%23kc62b'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.search-facets__group-values li input:focus ~ label:hover:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13' height='13' viewBox='0 0 9 9'%3E%3Cdefs%3E%3Cpath id='kc62a' d='M583 797v-9h9v9z'/%3E%3Cpath id='kc62b' d='M585 795v-5h5v5z'/%3E%3CclipPath id='kc62c'%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3C/clipPath%3E%3CclipPath id='kc62d'%3E%3Cuse fill='%23fff' xlink:href='%23kc62b'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate(-583 -788)'%3E%3Cg%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%23616161' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62c)' xlink:href='%23kc62a'/%3E%3C/g%3E%3Cg%3E%3Cuse fill='%23616161' xlink:href='%23kc62b'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%23616161' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62d)' xlink:href='%23kc62b'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.search-facets__group-values li input:checked:focus ~ label:hover:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13' height='13' viewBox='0 0 9 9'%3E%3Cdefs%3E%3Cpath id='kc62a' d='M583 797v-9h9v9z'/%3E%3Cpath id='kc62b' d='M585 795v-5h5v5z'/%3E%3CclipPath id='kc62c'%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3C/clipPath%3E%3CclipPath id='kc62d'%3E%3Cuse fill='%23fff' xlink:href='%23kc62b'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate(-583 -788)'%3E%3Cg%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%2300396f' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62c)' xlink:href='%23kc62a'/%3E%3C/g%3E%3Cg%3E%3Cuse fill='%2300396f' xlink:href='%23kc62b'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%2300396f' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62d)' xlink:href='%23kc62b'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.search-facets__group-values li label {
  color: #616161;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-size: 0.7rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 0.4rem;
  position: relative;
  word-break: break-word;
}
.search-facets__group-values li label > span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 0.5rem;
}
.search-facets__group-values li label:hover {
  cursor: pointer;
}
.search-facets__group-values li label:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13' height='13' viewBox='0 0 9 9'%3E%3Cdefs%3E%3Cpath id='c1bwa' d='M583 828v-9h9v9z'/%3E%3CclipPath id='c1bwb'%3E%3Cuse fill='%23fff' xlink:href='%23c1bwa'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate(-583 -819)'%3E%3Cuse fill='%23fff' xlink:href='%23c1bwa'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%23616161' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23c1bwb)' xlink:href='%23c1bwa'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  color: #616161;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: -12px;
  position: absolute;
}
.search-facets__group-values li label:hover:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13' height='13' viewBox='0 0 9 9'%3E%3Cdefs%3E%3Cpath id='kc62a' d='M583 797v-9h9v9z'/%3E%3Cpath id='kc62b' d='M585 795v-5h5v5z'/%3E%3CclipPath id='kc62c'%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3C/clipPath%3E%3CclipPath id='kc62d'%3E%3Cuse fill='%23fff' xlink:href='%23kc62b'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate(-583 -788)'%3E%3Cg%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%23616161' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62c)' xlink:href='%23kc62a'/%3E%3C/g%3E%3Cg%3E%3Cuse fill='%23616161' xlink:href='%23kc62b'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%23616161' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62d)' xlink:href='%23kc62b'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.search-facets__group-values li input:checked ~ label {
  color: #00396f;
}
.search-facets__group-values li input:checked ~ label:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13' height='13' viewBox='0 0 9 9'%3E%3Cdefs%3E%3Cpath id='kc62a' d='M583 797v-9h9v9z'/%3E%3Cpath id='kc62b' d='M585 795v-5h5v5z'/%3E%3CclipPath id='kc62c'%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3C/clipPath%3E%3CclipPath id='kc62d'%3E%3Cuse fill='%23fff' xlink:href='%23kc62b'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg%3E%3Cg transform='translate(-583 -788)'%3E%3Cg%3E%3Cuse fill='%23fff' xlink:href='%23kc62a'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%2300396f' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62c)' xlink:href='%23kc62a'/%3E%3C/g%3E%3Cg%3E%3Cuse fill='%2300396f' xlink:href='%23kc62b'/%3E%3Cuse fill='%23fff' fill-opacity='0' stroke='%2300396f' stroke-miterlimit='50' stroke-width='1' clip-path='url(%23kc62d)' xlink:href='%23kc62b'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  color: #00396f;
}

.search-facets__group-wrapper {
  overflow: hidden;
  border-top: 0;
  position: relative;
}
.search-facets__group-wrapper.is-loading:after {
  content: "";
  background-color: #fff;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.search-facets__group-wrapper .search-facets__group-wrapper {
  border: 0;
}

.search-facets__group-body {
  margin-bottom: 15px;
  -webkit-transition: height 0.2s ease-in;
  transition: height 0.2s ease-in;
}
.search-facets__group-body .search-facets__group-body {
  padding-left: 0;
}

.search-facets__values-wrapper {
  overflow: hidden;
  padding: 0;
}
.search-facets__values-wrapper.has-no-values + .search-facets__group .search-facets__group-heading {
  padding-top: 0;
}
.search-facets__values-wrapper .search-facets__values-wrapper {
  padding-right: 0;
  padding-left: 0;
}

.search-facets--dropdown-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  width: 100%;
}
.search-facets--dropdown-style > .search-facets__group {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 45%;
  margin-left: 4%;
  position: relative;
}
.search-facets--dropdown-style > .search-facets__group:first-child {
  margin-left: 0;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading {
  border-top: none;
  text-align: center;
  padding: 0;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button {
  background: transparent;
  border: 1.5px solid #338441;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 0.95rem;
  margin-top: 0;
  padding: 0.5rem 0.75rem 0.25rem;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button.has-selected {
  background-color: #338441;
  color: #fff;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button.has-selected .selected {
  text-transform: lowercase;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button.has-selected:before {
  color: #fff;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading button.has-selected:focus {
  color: #fff;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading .search-facets__group-toggle[disabled] {
  opacity: 0.5;
  border-color: #a5a5a6;
  color: #a5a5a6;
  cursor: default;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading .search-facets__group-toggle[disabled]:before {
  color: #a5a5a6;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading .search-facets__group-toggle:before {
  left: auto;
  right: 10px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.search-facets--dropdown-style > .search-facets__group > .search-facets__group-heading .search-facets__group-toggle:focus {
  outline: auto;
  color: inherit;
}
.search-facets--dropdown-style > .search-facets__group .search-facets__group-top {
  padding: 0;
  text-align: left;
}
@media (max-width: 767.98px) {
  .search-facets--dropdown-style > .search-facets__group .search-facets__group-top {
    display: none;
  }
}
.search-facets--dropdown-style > .search-facets__group .search-facets__group-clear {
  color: #338441;
  font-weight: 400;
  letter-spacing: 1px;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}
.search-facets--dropdown-style > .search-facets__group .search-facets__group-clear:hover {
  text-decoration: underline;
}
.search-facets--dropdown-style > .search-facets__group .search-facets__group-values > li {
  margin-bottom: 0;
  padding: 6px 0;
}
.search-facets--dropdown-style > .search-facets__group .search-facets__group-values > li label:before {
  padding-left: 0.3px;
}
.search-facets--dropdown-style > .search-facets__group .search-facets__group-body {
  margin-bottom: 0;
  max-height: 350px;
  overflow: auto;
}
.search-facets--dropdown-style > .search-facets__group .search-facets__group-wrapper {
  display: none;
  position: absolute;
}
.search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
  display: block;
  padding: 0.75rem;
  width: 100%;
  z-index: 1;
}
.search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open {
  position: relative;
  margin-top: 0;
}
.search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading {
  border-bottom: 0;
  padding: 0;
  margin-top: 0.5rem;
  margin-bottom: 0.15rem;
}
.search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-heading h4 {
  letter-spacing: 1.3px;
  margin-bottom: 0;
  margin-top: 0;
  color: #616161;
  font-size: 0.7rem;
  word-break: break-word;
}
.search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-wrapper {
  display: block;
  position: relative;
  width: 100%;
}
.search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-wrapper .search-facets__group-clear {
  display: none;
}
.search-facets--dropdown-style > .search-facets__group.is-open > .search-facets__group-wrapper .search-facets__group.is-open .search-facets__group-wrapper .search-facets__group-body {
  max-height: none;
}
@media (max-width: 767.98px) {
  .search-facets--dropdown-style > .search-facets__group {
    width: 100%;
    margin-left: 0px;
    margin-top: 1.5rem;
  }
  .search-facets--dropdown-style > .search-facets__group:first-child {
    margin-top: 0;
  }
}
.search-facets--dropdown-style .search-facets__clear-all {
  display: none;
}
@media (max-width: 767.98px) {
  .search-facets--dropdown-style .search-facets__clear-all {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .search-facets--dropdown-style {
    display: block;
  }
}

.search-item {
  opacity: 0;
  -webkit-transition: opacity 250ms;
  transition: opacity 250ms;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #eeeeee;
}
.search-item.is-visible {
  opacity: 1;
}
.search-item:last-child {
  border-bottom: none;
}
.search-item a {
  -webkit-transition: none;
  transition: none;
}

.search-item__meta {
  margin-bottom: 0.3rem;
}
.search-item__meta > span {
  padding-right: 0.8rem;
}

.search-item__title {
  margin-bottom: 0.4rem;
}

.search-item__content-type {
  text-transform: uppercase;
}

.search-item__body {
  margin-bottom: 0.6rem;
}

.search-item__url {
  font-size: 0.7rem;
}

.search-results {
  position: relative;
}
.search-results.is-refreshing .search-results__item-wrapper * {
  color: #eeeeee !important;
}
.search-results .search-facets {
  display: none;
}
@media (max-width: 767.98px) {
  .search-results .search-facets__filter-toggle {
    display: block;
  }
  [lang=de-DE] .search-results .search-facets__filter-toggle {
    display: none;
  }
  .search-results .search-facets__filter-toggle button:after {
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  .search-results .search-facets__filter-toggle.is-open {
    margin-bottom: 0;
  }
  .search-results .search-facets__filter-toggle.is-open button:after {
    -webkit-transform: rotate(180deg) translateY(50%);
            transform: rotate(180deg) translateY(50%);
  }
  .search-results .search-facets {
    padding: 30px;
    -webkit-box-shadow: 0 20px 20px 10px rgba(0, 0, 0, 0.06);
            box-shadow: 0 20px 20px 10px rgba(0, 0, 0, 0.06);
  }
  .search-results .search-facets.is-open {
    background-color: #fff;
    display: block;
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .search-results .is-sticky {
    position: fixed;
    top: 0px;
    z-index: 4;
    background-color: rgb(255, 255, 255);
    width: 100%;
    padding: 0px 1rem;
    left: 0px;
  }
  .search-results .is-sticky .search-facets.is-open {
    width: calc(100% - 40px);
    overflow: auto;
    max-height: calc(100vh - 60px);
  }
}

.search-results__item-wrapper {
  position: relative;
}

.search-results__items {
  margin-bottom: 1.5rem;
}
@media (max-width: 479.98px) {
  .search-results__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .search-results__items .list-item {
    width: 45%;
  }
}

.search-results__sort-bar {
  color: #818183;
  font-size: 0.7rem;
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 20px;
}
.search-results__sort-bar::after {
  display: table;
  clear: both;
  content: "";
}
.search-results__sort-bar > span {
  margin-right: 0.25rem;
}
.search-results__sort-bar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-results__sort-bar li {
  border-left: 1px solid #818183;
  padding-left: 0.4rem;
  padding-right: 0.45rem;
  margin-bottom: 0;
}
.search-results__sort-bar li:first-child {
  padding-left: 0;
  border-left: none;
}
@media (max-width: 767.98px) {
  .search-results__sort-bar {
    display: none;
  }
}
@media (max-width: 20.75em) {
  .search-results__sort-bar > span {
    display: block;
    padding-bottom: 0.6rem;
  }
}
@media (max-width: 19em) {
  .search-results__sort-bar ul {
    float: none;
    display: block;
  }
  .search-results__sort-bar li {
    clear: both;
    width: 100%;
    margin-bottom: 0.6rem;
  }
  .search-results__sort-bar li::after {
    display: table;
    clear: both;
    content: "";
  }
}

.search-results__sorter {
  cursor: pointer;
  font-size: 0.7rem;
}

.search-results__sort-label {
  background-color: transparent;
  color: #338441;
  text-decoration: underline;
  border: none;
  letter-spacing: 1px;
  padding: 0;
  line-height: 17px;
  margin-bottom: 0;
}
.is-active .search-results__sort-label {
  color: #00396f;
  text-decoration: none;
}

.search-results__sort-dir {
  float: left;
  position: relative;
  top: 0.3rem;
}
.search-results__sort-dir button, .search-results__sort-dir svg {
  width: 1.2rem;
  height: 1.2rem;
}
.search-results__sort-dir button {
  background: transparent;
  border: 0;
  display: block;
  margin-top: -0.8rem;
  padding-top: 0.15rem;
  padding: 0;
  text-align: center;
}
.search-results__sort-dir button.is-selected {
  color: #00ccff;
}
.search-results__sort-dir svg {
  fill: currentColor;
}

.search-results__status-wrapper {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}
.search-results--consultants .search-results__status-wrapper {
  margin-bottom: 40px;
}

.search-results__status {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #818183;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.7rem;
  padding-bottom: 20px;
}
.search-results__status .search-results__status__keywords-container {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 55%;
}
@media (max-width: 959.98px) {
  .search-results__status .search-results__status__keywords-container {
    max-width: 44%;
  }
}
@media (max-width: 767.98px) {
  .search-results__status .search-results__status__keywords-container {
    max-width: none;
    text-overflow: unset;
    white-space: normal;
  }
}
@media (max-width: 599.98px) {
  .search-results__status {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.search-results__status__keywords {
  color: #00396f;
  font-weight: bold;
}

.search-results__active-facets {
  margin-bottom: 30px;
  width: 100%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.search-results__active-facets > span {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1rem;
  margin-top: 0.25rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.search-results__active-facets .clear-btn {
  color: #338441;
  text-decoration: underline;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 5px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
.search-results__active-facets ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.search-results__active-facets ul .label {
  display: none;
}
.search-results__active-facets ul > li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0.65rem;
  border: 1px solid #00396f;
  color: #00396f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.7rem;
  line-height: 1;
  margin-bottom: 0;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  padding-bottom: 0;
  padding-left: 0.75rem;
  padding-top: 0;
}
.search-results__active-facets ul > li.label {
  border: none;
  color: #818183;
  margin: 0;
  padding: 0;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
}
.search-results__active-facets ul > li span {
  padding-bottom: 0;
  padding-top: 3px;
}
.search-results__active-facets button {
  background: transparent;
  border: 0;
  float: right;
  padding-left: 0.25rem;
  padding-right: 0.75rem;
  cursor: pointer;
}
.search-results__active-facets button .icon {
  width: 10px;
  fill: #00396f;
}
@media (max-width: 767.98px) {
  .search-results__active-facets > span,
  .search-results__active-facets .clear-btn {
    display: block;
    font-size: 0.7rem;
  }
  .search-results__active-facets li.label {
    display: none;
  }
}

.search-results__load-more {
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.search-results__load-more .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}
.search-results__load-more .search-results__spinner {
  position: static;
  display: inline;
}
.search-results__load-more .search-results__spinner img {
  height: 1.2rem;
  margin-left: 0.7rem;
  vertical-align: middle;
  width: 1.2rem;
}

.search-results__pagination {
  bottom: 15px;
  position: absolute;
  text-align: right;
  right: 0;
}
@media (max-width: 599.98px) {
  .search-results__pagination {
    text-align: center;
    position: static;
  }
}

.search-results__pages {
  display: inline-block;
}
.search-results__pages button[disabled]:not(.is-active) {
  display: none;
}
.search-results__pages .btn {
  border-radius: 0;
  border: none;
  color: #818183;
  font-size: 0.8rem;
  line-height: 0.85rem;
  margin: 0;
  padding: 0 5px;
  -webkit-transition: none;
  transition: none;
  vertical-align: middle;
}
.search-results__pages .btn:hover {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}
.search-results__pages .btn:hover:after {
  content: "";
  background-color: #616161;
  bottom: -3px;
  height: 3px;
  left: 5px;
  position: absolute;
  width: calc(100% - 10px);
}
.search-results__pages .btn.nav-btn {
  fill: #338441;
  height: 1.25rem;
  padding: 0;
  position: relative;
  top: -2px;
  vertical-align: bottom;
}
.search-results__pages .btn.nav-btn:hover:after {
  display: none;
}
.search-results__pages .btn.nav-btn:first-child {
  margin-right: -9px;
}
.search-results__pages .btn.nav-btn:last-child {
  margin-left: -8px;
}
.search-results__pages .btn.is-active {
  color: #338441;
  position: relative;
}
.search-results__pages .btn.is-active:after {
  content: "";
  background-color: #338441;
  bottom: -3px;
  height: 3px;
  left: 5px;
  position: absolute;
  width: calc(100% - 10px);
}
.search-results__pages .fake-double-chevron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-results__pages .fake-double-chevron .icon {
  display: inline-block;
  fill: #338441;
  left: 0px;
  position: relative;
}
.search-results__pages .fake-double-chevron .icon--double-chevy {
  margin-left: -19px;
}
@media (max-width: 599.98px) {
  .search-results__pages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    max-width: 300px;
  }
  .search-results__pages .btn {
    font-size: 1rem;
    line-height: 0.8rem;
    margin: 0;
  }
  .search-results__pages .btn:hover:after, .search-results__pages .btn:after,
  .search-results__pages .btn.is-active:hover:after,
  .search-results__pages .btn.is-active:after {
    bottom: 3px;
  }
}

.search-results__filter-open {
  display: none;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.6rem;
  position: relative;
  text-align: center;
  background-color: transparent;
  border: 2px solid #338441;
  width: 100%;
}
.search-results__filter-open:after {
  content: "▾";
  color: #338441;
  height: 100%;
  padding: 0 20px;
  position: absolute;
  right: 0;
}
.search-results__filter-open .icon {
  color: #fff;
  margin-left: 0.3rem;
}
@media (max-width: 767.98px) {
  .search-results__filter-open {
    display: block;
  }
}

.search-results__spinner {
  top: 5rem;
  left: calc(50% - 88px);
  text-align: center;
}
.search-results__spinner img {
  width: 4rem;
  height: 4rem;
}

.search-results__no-results {
  margin-left: auto;
  margin-right: auto;
}
.search-results__no-results h3 {
  font-size: 1rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0;
  margin-top: 0;
}
.search-results__no-results ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-top: 0.5rem;
  line-height: 1.3rem;
  font-size: 0.7rem;
  margin-bottom: 1rem;
}
.search-results__no-results ul li {
  margin-bottom: 0.25rem;
}

.search-results--simple .search-results__load-more .btn {
  font-size: 0.6rem;
  padding: 0.3rem 0.9rem;
}

@media (max-width: 767.98px) {
  .search-results--consultants .search-results__status {
    padding-bottom: 2rem;
  }
}
.search-results--consultants .search-results__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.search__query-mount::after {
  display: table;
  clear: both;
  content: "";
}
.search__query-mount .search-box {
  margin-bottom: 2rem;
  position: relative;
}
.search__query-mount .search-box--gray {
  margin-bottom: 0px;
}
@media (max-width: 959.98px) {
  .search__query-mount .search-box {
    max-width: 100%;
    width: 100%;
    float: none;
  }
}
@media (max-width: 767.98px) {
  .search__query-mount .search-box {
    display: none;
  }
  .search__query-mount .search-box--gray {
    display: block;
  }
}
@media screen and (max-width: 950px) {
  [lang=de-DE] .search__query-mount .search-box {
    display: none;
  }
}

@media (max-width: 959.98px) {
  .search__facets-wrapper {
    position: relative;
    margin: 0;
  }
  .search__facets-wrapper.is-left, .search__facets-wrapper.is-right {
    position: absolute;
    background-color: #eeeeee;
    width: 85vw;
    top: 0;
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    margin: 0;
    padding: 1.5rem;
    z-index: 100;
  }
  .search__facets-wrapper.is-left.is-open, .search__facets-wrapper.is-right.is-open {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .search__facets-wrapper.is-left {
    left: -1.5rem;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .search__facets-wrapper.is-right {
    right: -1.5rem;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  }
  .search__facets-wrapper.is-open {
    border: 1px solid #bdbdbd;
    border-left: 0;
    -webkit-box-shadow: -1px 4px 12px 1px #9e9e9e;
            box-shadow: -1px 4px 12px 1px #9e9e9e;
  }
  .search__facets-wrapper .search-facets__group {
    background-color: #fff;
  }
}
.filter-select-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 1.5rem;
}
@media (max-width: 959.98px) {
  .filter-select-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 479.98px) {
  .filter-select-bar {
    background-color: #f5f5f5;
  }
}
.filter-select-bar .collapse-pane__content {
  margin-top: 0.4rem;
}

.filter-select-bar__title,
.filter-select-bar__toggle {
  font-size: 0.75rem;
  color: #9e9e9e;
  margin-right: 1rem;
  margin-bottom: 0;
  border: 0;
  background: 0;
}

.filter-select-bar__title {
  min-width: 65px;
}
@media (max-width: 959.98px) {
  .filter-select-bar__title {
    margin-bottom: 0.8rem;
  }
}

.filter-select-bar__toggle {
  display: none;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 0.5rem 0;
}
.filter-select-bar__toggle span:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter-select-bar__toggle span:first-child::after {
  content: "";
  margin-top: 3px;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #bdbdbd transparent transparent transparent;
}
.filter-select-bar__toggle span:last-child {
  font-weight: 400;
  font-size: 0.65rem;
  line-height: 1;
}

.is-open .filter-select-bar__toggle::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 479.98px) {
  .filter-select-bar__title {
    display: none;
  }
  .filter-select-bar__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.filter-select-bar__list-top {
  padding: 0 0.5rem;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 0.5rem;
}
.filter-select-bar__list-top .multiselect-list li {
  padding-left: 0;
}

.filter-select-bar__list-label {
  display: block;
  font-size: 0.5rem;
  color: #bdbdbd;
}
.filter-select-bar__list-label + .multiselect-list {
  margin-bottom: 0.3rem;
}

.filter-select-bar__group-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-select-bar__group {
  margin-bottom: 0;
  margin-right: 1rem;
  margin-bottom: 0.6rem;
}
.filter-select-bar__group:last-child {
  margin-right: 0;
}
.filter-select-bar__group > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 9rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  font-size: 0.6rem;
  outline: 0;
  background: none;
  color: #9e9e9e;
  border: 1px solid #9e9e9e;
  text-align: left;
  background-color: #fff;
}
.filter-select-bar__group > button .icon {
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #9e9e9e transparent transparent transparent;
}
.filter-select-bar__group .flyout {
  width: 180px;
  margin-top: -1px;
}
.filter-select-bar__group.is-open > button {
  border-bottom: none;
}
.filter-select-bar__group.is-open > button .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.filter-select-bar__group .filter-select-bar__group-label {
  display: inline-block;
  max-width: 80%;
}
@media (max-width: 959.98px) {
  .filter-select-bar__group {
    border-bottom: 1px solid #f0f0f0;
    padding: 0.2rem 0;
  }
  .filter-select-bar__group.is-open, .filter-select-bar__group:hover {
    background-color: transparent;
    border-bottom: none;
  }
}

.filter-select-bar__clear-group {
  border: 0;
  background: none;
  padding: 0;
  margin-bottom: 0.6rem;
  font-size: 0.6rem;
  color: #9e9e9e;
  cursor: pointer;
}
.filter-select-bar__clear-group:disabled {
  color: #e0e0e0;
}

@media (max-width: 479.98px) {
  .filter-select-bar .collapse-pane {
    width: 100%;
    padding: 0 0.6rem;
  }
  .filter-select-bar__group-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .filter-select-bar__group {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .filter-select-bar__group .flyout {
    width: 100%;
  }
  .filter-select-bar__group button {
    width: 100%;
    text-align: left;
  }
}
.list-item {
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.list-item.is-left, .list-item.is-right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.list-item.is-left .list-item__media, .list-item.is-right .list-item__media {
  margin: 0;
  max-width: 25%;
  overflow: hidden;
}
.list-item.is-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.list-item.is-left .list-item__media {
  margin-left: 1.5rem;
}
.list-item.is-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.list-item.is-right .list-item__media {
  margin-right: 1.5rem;
}
@media (max-width: 479.98px) {
  .list-item.is-left, .list-item.is-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2rem;
  }
  .list-item.is-left .list-item__media, .list-item.is-right .list-item__media {
    margin: 0 0 0.75rem 0;
    max-width: none;
    width: 100%;
    max-height: 200px;
    overflow: hidden;
  }
  .list-item.is-left .list-item__media img, .list-item.is-right .list-item__media img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }
}

.list-item__media img {
  max-width: 100%;
}

.list-item__media-shim {
  width: 13rem;
  height: 0.05rem;
}
@media (max-width: 479.98px) {
  .list-item__media-shim {
    display: none;
  }
}

@media (max-width: 959.98px) {
  .list-item__media,
  .list-item__media-shim {
    width: 30%;
  }
}
.list-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}
@media (max-width: 479.98px) {
  .list-item__content {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.list-item__eyebrow {
  width: 100%;
  color: #9e9e9e;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  line-height: 1.6;
}
.list-item__eyebrow span:not(:first-child) {
  text-transform: none;
}
.list-item__eyebrow span {
  margin-right: 0.4rem;
}

.list-item__title {
  font-size: 0.9rem;
  margin-bottom: 5px;
  word-break: break-word;
}

.list-item__description {
  max-width: 800px;
  font-size: 0.8rem;
  line-height: 1.1rem;
  margin-top: 0.5rem;
}
@media (max-width: 599.98px) {
  .list-item__description {
    display: none;
  }
  .list-item__description.mobile-visible {
    display: block;
  }
}

.list-item__meta {
  line-height: 0.9rem;
  color: #818183;
  font-size: 0.7rem;
  margin-bottom: 0;
  margin-top: 0.25rem;
}
.list-item__meta::after {
  display: table;
  clear: both;
  content: "";
}

.list-item__byline > span:before {
  content: "|";
  display: inline-block;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  margin-bottom: -2px;
}
.list-item__byline > span:first-child {
  border-left: none;
  padding-left: 0;
}
.list-item__byline > span:first-child:before {
  display: none;
}

.list-item__phone {
  color: #00396f;
}
.list-item__phone:hover {
  color: #98a7bc;
}

.list-item__cta {
  display: block;
  font-weight: bold;
  text-align: left;
}
.list-item__cta::after {
  content: " →";
}

.type-filter {
  -webkit-box-shadow: 0 7px 10px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 7px 10px 1px rgba(0, 0, 0, 0.05);
  padding: 0.75rem;
  position: absolute;
  background-color: #fff;
  border-left: 1px solid #e7ebf0;
  border-right: 1px solid #e7ebf0;
  border-bottom: 1px solid #e7ebf0;
  z-index: 1;
  width: 100%;
  font-size: 0.65rem;
}
.type-filter.no-suggestions {
  padding: 0;
  margin: 0;
  border: none;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}
.type-filter > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.type-filter > ul > li {
  padding: 0;
  margin: 0;
}
.type-filter > ul > li > a {
  color: #616161;
  display: block;
  padding-bottom: 0.75rem;
}
.type-filter > ul > li > a:focus, .type-filter > ul > li > a:hover {
  text-decoration: underline;
  color: #338441;
}
.type-filter > ul > li > button {
  background: none;
  border: 0;
  color: #616161;
  display: block;
  padding: 0;
  margin-bottom: 0.75rem;
  text-align: left;
  width: 100%;
}
.type-filter > ul > li > button:focus, .type-filter > ul > li > button:hover {
  color: #338441;
  text-decoration: underline;
}
.type-filter .search-results__spinner {
  position: relative;
  right: auto;
  top: 0;
}
.type-filter .search-results__spinner img {
  display: block;
  margin: 0 auto;
}

.type-filter__view-all {
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  color: #338441;
  width: 100%;
  text-align: left;
}
.type-filter__view-all:after {
  content: "→";
  margin-left: 0.25rem;
  display: inline-block;
}
.type-filter__view-all:hover {
  text-decoration: underline;
}

.cookie-policy {
  background: #00396f;
  color: white;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999;
}

.cookie-policy__container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 70px auto;
  width: 100%;
}
@media (max-width: 599.98px) {
  .cookie-policy__container {
    display: block;
    margin: 35px auto;
  }
}
@media (max-width: 767.98px) {
  .cookie-policy__container {
    display: block;
    margin: 35px auto;
  }
}

.cookie-policy__content, .cookie-policy__actions {
  font-size: 0.9em;
}
@media (min-width: 768px) {
  .cookie-policy__content, .cookie-policy__actions {
    display: block;
    vertical-align: middle;
  }
}

.cookie-policy__content a {
  color: #fff;
}
.cookie-policy__content a:hover, .cookie-policy__content a:focus, .cookie-policy__content a:active {
  color: #a5a5a6;
}

.cookie-policy__actions {
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 50px;
  padding-right: 10%;
}
@media (max-width: 599.98px) {
  .cookie-policy__actions {
    display: block;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .cookie-policy__actions {
    display: block;
    padding-right: 0;
  }
}

.cookie-policy__content {
  padding-left: 10%;
  padding-right: 5%;
}
@media (max-width: 599.98px) {
  .cookie-policy__content {
    padding-bottom: 5%;
  }
}
@media (max-width: 767.98px) {
  .cookie-policy__content {
    padding-bottom: 5%;
  }
}

.cookie-policy__accept-button {
  display: inline-block;
  min-width: 220px;
  padding: 13px 45px 10px;
  color: #4c4c4e;
  font-family: "FFScalaSansWebBold";
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 4px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #338441;
  background-color: transparent;
  border: 2px solid #338441;
  color: #4c4c4e;
  display: inline-block;
  font-family: "FFScalaSansWebBold";
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.4;
  min-width: 180px;
  padding: 13px 45px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  color: #fff;
  border-color: #fff;
}
.cookie-policy__accept-button:hover, .cookie-policy__accept-button:focus, .cookie-policy__accept-button:active {
  color: #fff;
  background-color: #338441;
}
.cookie-policy__accept-button:hover, .cookie-policy__accept-button:focus, .cookie-policy__accept-button:active {
  color: #000000;
  background-color: #fff;
}

.cookie-policy__decline-button {
  display: inline-block;
  min-width: 220px;
  padding: 13px 45px 10px;
  color: #4c4c4e;
  font-family: "FFScalaSansWebBold";
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 4px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #338441;
  background-color: transparent;
  border: 2px solid #338441;
  color: #4c4c4e;
  display: inline-block;
  font-family: "FFScalaSansWebBold";
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.4;
  min-width: 180px;
  padding: 13px 45px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  color: #fff;
  border-color: transparent;
  color: #fff;
}
.cookie-policy__decline-button:hover, .cookie-policy__decline-button:focus, .cookie-policy__decline-button:active {
  color: #fff;
  background-color: #338441;
}
.cookie-policy__decline-button:hover, .cookie-policy__decline-button:focus, .cookie-policy__decline-button:active {
  color: #000000;
  background-color: #fff;
}

.cookie-category-title {
  color: #00396f;
  padding-bottom: 20px;
}

.cookie-category-toggle, .cookie-category-toggle:active {
  position: absolute;
  top: -5000px;
  height: 0;
  width: 0;
  opacity: 0;
  border: none;
  outline: none;
  display: none;
}

.checkbox-label {
  display: block;
  position: relative;
  padding: 11px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 16px;
  width: 6%;
  border-radius: 18px;
  background: #818183;
  cursor: pointer;
  float: right;
  top: 5px;
}
@media (max-width: 599.98px) {
  .checkbox-label {
    width: 12%;
  }
}

.always-active-category {
  float: right;
  top: 5px;
  font-size: 14px;
  line-height: 16px;
  color: #338441;
}

.checkbox-label:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  line-height: 34px;
  text-indent: 40px;
  height: 18px;
  width: 18px;
  border-radius: 100%;
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: auto;
  background: white;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 0 0 2px #dddddd;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2), 0 0 0 2px #dddddd;
}

.checkbox-label:after {
  content: attr(data-off);
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: -300px;
  padding: 10px;
  height: 100%;
  width: 300px;
  text-align: right;
  color: #bfbfbf;
  white-space: nowrap;
}

.cookie-category-toggle:checked + .checkbox-label {
  -webkit-box-shadow: inset 0 0 0 20px #338441, 0 0 0 2px #338441;
  box-shadow: inset 0 0 0 20px #338441, 0 0 0 2px #338441;
}

.cookie-category-toggle:checked + .checkbox-label:before {
  right: 2px;
  left: auto;
  -webkit-box-shadow: 0 0 0 2px transparent, 0 3px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 2px transparent, 0 3px 3px rgba(0, 0, 0, 0.3);
}

.cookie-category-toggle:checked + .checkbox-label:after {
  content: attr(data-on);
}

#cookie-category-checkbox1 + .checkbox-label {
  -webkit-box-shadow: inset 0 0 0 0px #338441, 0 0 0 2px #dddddd;
  box-shadow: inset 0 0 0 0px #338441, 0 0 0 2px #dddddd;
}

#cookie-category-checkbox1:checked + .checkbox-label {
  -webkit-box-shadow: inset 0 0 0 20px #338441, 0 0 0 2px #338441;
  box-shadow: inset 0 0 0 20px #338441, 0 0 0 2px #338441;
}

#cookie-category-checkbox1:checked + .checkbox-label:after {
  color: #338441;
}

#cookie-category-checkbox2 + .checkbox-label {
  -webkit-box-shadow: inset 0 0 0 0px #338441, 0 0 0 2px #dddddd;
  box-shadow: inset 0 0 0 0px #338441, 0 0 0 2px #dddddd;
}

#cookie-category-checkbox2:checked + .checkbox-label {
  -webkit-box-shadow: inset 0 0 0 20px #338441, 0 0 0 2px #338441;
  box-shadow: inset 0 0 0 20px #338441, 0 0 0 2px #338441;
}

#cookie-category-checkbox2:checked + .checkbox-label:after {
  color: #338441;
}

#onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00396f !important;
}
#onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link:focus {
  outline: none;
}

#onetrust-banner-sdk #onetrust-reject-all-handler,
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn).ot-pc-refuse-all-handler {
  opacity: 1;
  border-radius: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4c4c4e !important;
  border: 1px solid #00396f !important;
  background-color: #fff !important;
}
#onetrust-banner-sdk #onetrust-reject-all-handler:active, #onetrust-banner-sdk #onetrust-reject-all-handler:focus, #onetrust-banner-sdk #onetrust-reject-all-handler:hover,
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn).ot-pc-refuse-all-handler:active,
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn).ot-pc-refuse-all-handler:focus,
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn).ot-pc-refuse-all-handler:hover {
  color: #fff !important;
  background-color: #00396f !important;
}

#onetrust-consent-sdk #onetrust-accept-btn-handler,
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):not(.ot-pc-refuse-all-handler) {
  opacity: 1;
  border-radius: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff !important;
  border: 1px solid #338441 !important;
  background-color: #338441 !important;
}
#onetrust-consent-sdk #onetrust-accept-btn-handler:active, #onetrust-consent-sdk #onetrust-accept-btn-handler:focus, #onetrust-consent-sdk #onetrust-accept-btn-handler:hover,
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):not(.ot-pc-refuse-all-handler):active,
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):not(.ot-pc-refuse-all-handler):focus,
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn):not(.ot-pc-refuse-all-handler):hover {
  color: #4c4c4e !important;
  background-color: #fff !important;
}

.consultant-branding-statement {
  margin-bottom: 20px;
  font-size: 1.2em;
  line-height: 1.5;
}

.sitewide-banner {
  background: #00396f;
  color: white;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999;
}

.sitewide-banner__container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 70px auto;
  width: 100%;
}
@media (max-width: 600px) {
  .sitewide-banner__container {
    display: block;
    margin: 35px auto;
  }
}
@media (max-width: 768px) {
  .sitewide-banner__container {
    display: block;
    margin: 35px auto;
  }
}

.sitewide-banner__content, .sitewide-banner__actions {
  font-size: 0.9em;
}
@media (min-width: 768px) {
  .sitewide-banner__content, .sitewide-banner__actions {
    display: block;
    vertical-align: middle;
  }
}

.sitewide-banner__content a {
  color: #fff;
}
.sitewide-banner__content a:hover, .sitewide-banner__content a:focus, .sitewide-banner__content a:active {
  color: #a5a5a6;
}

.sitewide-banner__actions {
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 10%;
}
@media (max-width: 600px) {
  .sitewide-banner__actions {
    display: block;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .sitewide-banner__actions {
    display: block;
    padding-right: 0;
  }
}

.sitewide-banner__content {
  padding-left: 10%;
  padding-right: 5%;
}
@media (max-width: 600px) {
  .sitewide-banner__content {
    padding-bottom: 5%;
  }
}
@media (max-width: 768px) {
  .sitewide-banner__content {
    padding-bottom: 5%;
  }
}

.sitewide-banner__close-button {
  display: inline-block;
  min-width: 220px;
  padding: 13px 45px 10px;
  color: #4c4c4e;
  font-family: "FFScalaSansWebBold";
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 4px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #338441;
  background-color: transparent;
  border: 2px solid #338441;
  color: #4c4c4e;
  display: inline-block;
  font-family: "FFScalaSansWebBold";
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.4;
  min-width: 180px;
  padding: 13px 45px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  color: #fff;
  border-color: #fff;
}
.sitewide-banner__close-button:hover, .sitewide-banner__close-button:focus, .sitewide-banner__close-button:active {
  color: #fff;
  background-color: #338441;
}
.sitewide-banner__close-button:hover, .sitewide-banner__close-button:focus, .sitewide-banner__close-button:active {
  color: #000000;
  background-color: #fff;
}

.JP h5 {
  font-size: 0.8rem;
}

@media (max-width: 767.98px) {
  .container [class*=grid_] {
    float: none;
  }
}
.container [class*=grid_].responsive-padding {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1015px) {
  .container [class*=grid_].responsive-padding {
    padding-left: 3% !important;
    padding-right: 3% !important;
  }
}
@media (max-width: 767.98px) {
  .container [class*=grid_].responsive-padding {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.container .consultantsLanding {
  margin-left: -10px;
  margin-right: -10px;
}
@media (max-width: 767.98px) {
  .container .consultantsLanding [class*=grid_] {
    float: left;
  }
}
.container .consultantsLanding .consultants--query {
  margin-top: 1rem;
  width: 32.333%;
  padding-right: 0.75rem;
}
@media (max-width: 959.98px) {
  .container .consultantsLanding .consultants--query {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .container .consultantsLanding .consultants--query {
    margin-bottom: 0.5rem;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.container .consultantsLanding .consultants--facets {
  margin-top: 1rem;
}
@media screen and (max-width: 1015px) {
  .container .consultantsLanding .consultants--facets {
    padding-left: 0;
  }
}
@media (max-width: 959.98px) {
  .container .consultantsLanding .consultants--facets {
    padding-left: 1.5%;
  }
}
@media (max-width: 767.98px) {
  .container .consultantsLanding .consultants--facets {
    padding-left: 20px;
  }
}
.container .consultantsLanding .consultants--results {
  margin-top: 2rem;
}
@media (max-width: 767.98px) {
  .container .consultantsLanding .consultants--results {
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .consultant-profile--container .container .pull_7,
  .consultant-profile--container .container .push_3 {
    left: 0;
  }
  .consultant-profile--container .container .grid_7,
  .consultant-profile--container .container .grid_3,
  .consultant-profile--container .container .grid_2 {
    width: 100%;
  }
}
.container .grid_6 {
  padding-left: 0;
}

label {
  font-size: 0.75rem;
  line-height: 1.2em;
  color: #262626;
}

a.indicator {
  font-weight: normal;
}

.site-content {
  background-color: white;
  -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.07);
          box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.07);
  position: relative;
  padding-bottom: 25px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: 1;
  overflow-x: hidden;
}

.table {
  display: table;
}

.tableCell {
  display: table-cell;
}

.contentWrap {
  font-size: 1rem;
  color: #4c4c4e;
}
.contentWrap a {
  color: #338441;
}
.contentWrap a:hover {
  color: #7cb085;
}
.container {
  max-width: 1000px;
  min-width: 0;
}

.sidebar img {
  max-width: 100%;
  height: auto;
}

.sidebar--left {
  float: left;
  padding: 0;
  margin-top: 35px;
}
.container .sidebar--left {
  padding: 0;
}
@media (max-width: 767.98px) {
  .twoCol .sidebar--left {
    left: 0;
    width: 100%;
  }
}
.sidebar--left .headerImage {
  margin: 0 0 20px 0;
}
@media (max-width: 767.98px) {
  .sidebar--left .headerImage {
    height: auto;
    width: 100%;
  }
}
.sidebar--left .headerImage:last-child {
  margin: 0;
}
@media (max-width: 767.98px) {
  .sidebar--left {
    clear: left;
  }
}
@media (max-width: 767.98px) {
  .sidebar--left {
    margin-bottom: 50px;
  }
}

.sidebar--right {
  margin-top: 35px;
}
.container .sidebar--right {
  float: right;
  padding: 0;
}
@media (max-width: 767.98px) {
  .sidebar--right {
    margin-bottom: 50px;
  }
}

.sidebar-box::after {
  display: table;
  clear: both;
  content: "";
}
.sidebar-box:last-child {
  margin-bottom: 0;
}
.sidebar--left .sidebar-box {
  padding: 18px;
}

.sidebar-box--blue {
  background-color: #f4f7f9;
}

.sidebar-box--remove-margin {
  margin-bottom: 0;
}

.consultant-name {
  font-size: 2.2rem;
  line-height: 1.1363636364em;
  position: relative;
  width: 75%;
  left: 25%;
  padding: 0 3%;
  margin-bottom: 0.4772727273em;
}
@media (max-width: 767.98px) {
  .consultant-name {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 599.98px) {
  .consultant-name {
    font-size: 1.76rem;
  }
}

.content-box__full--blue-dark {
  background-color: #00396f;
  position: relative;
  top: -4px;
}

.page-head .page-head__title,
.page-head .page-head__subtitle {
  font-weight: normal;
  margin: 0;
}
.content-box__full--blue-dark .page-head .page-head__title {
  color: #98a7bc;
}
.content-box__full--blue-dark .page-head .page-head__subtitle {
  color: white;
}
.container .page-head {
  padding: 45px 3% 30px 3%;
}
@media (max-width: 767.98px) {
  .container .page-head {
    float: none;
    left: 0;
    width: 100%;
  }
}

.container .page-head--full-width {
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 767.98px) {
  .container .page-head--full-width {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 479.98px) {
  .container .page-head--full-width {
    padding: 2.25rem 0.5rem 1.5rem;
  }
}

.mainContent {
  background: none;
}
.oneCol .mainContent {
  width: 100%;
  padding: 0;
}

.main-content {
  padding: 0 3%;
  margin-top: 35px;
}
.main-content .mainContent {
  background: transparent;
  width: 100%;
  padding: 0;
  float: none;
}
.main-content .contentWrap {
  float: none;
  padding: 0;
}
.container .main-content {
  float: left;
  padding: 0 3%;
}
@media (max-width: 767.98px) {
  .container .main-content {
    float: none;
  }
}
.container .main-content.pull-right {
  float: right;
}
@media (max-width: 767.98px) {
  .container .main-content.pull-right {
    float: none;
  }
}
@media (max-width: 767.98px) {
  .interior .main-content {
    float: none;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .main-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .no-margin--mobile {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.search .main-content {
  padding: 0;
}
@media screen and (max-width: 1015px) {
  .search .main-content {
    padding: 0 3%;
  }
}
@media (max-width: 959.98px) {
  .search .main-content {
    padding: 0 1rem;
  }
}
.search .sidebar--left {
  padding-right: 50px;
}
@media screen and (max-width: 1015px) {
  .search .sidebar--left {
    padding: 0 calc(50px - 3%) 0 3%;
  }
}

.sidebar-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.sidebar-nav li:last-child {
  margin-bottom: 0;
}

.sidebar-nav__title a {
  color: #4c4c4e;
  display: inline-block;
}

.sidebar-nav__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.sidebar-nav__list .indicator.arrow {
  color: #4c4c4e;
}

.sidebar-nav__list-item {
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1.3333333333em;
}
.sidebar-nav__list-item > a {
  color: #4c4c4e;
  font-weight: normal;
}
.sidebar-nav__list-item > a:after {
  height: 18px;
  width: 18px;
  content: "";
  display: inline-block;
  background-size: 18px;
  margin-left: 10px;
  position: relative;
  bottom: -4px;
}
.sidebar-nav__list-item > a:hover {
  color: #7cb085;
}
.sidebar-nav__list-item > a.arrow span {
  display: none;
}
.sidebar-nav__list-item > a.indicator.drop span {
  height: 18px;
  width: 18px;
  display: inline-block;
  background-size: 18px;
  margin-left: 10px;
  position: relative;
  text-indent: -99999px;
}
.sidebar-nav__list-item > a.indicator.drop span.active {
  background-position: 0 0;
}
.sidebar-nav__list-item > a.indicator.drop.active span {
  background-position: 0 0;
}
.sidebar-nav__list-item > a.indicator.drop:after {
  display: none;
}
.sidebar-nav__list-item > a.indicator.drop + ul {
  padding: 20px 0 0 33px;
}
.sidebar-nav__list-item:last-child {
  margin: 0;
}

.sidebar-nav__sub-list {
  list-style-type: none;
  margin: 0 0 0 0;
}

.sidebar-nav__sub-list-item a {
  color: #818183;
}
.sidebar-nav__sub-list-item a:hover, .sidebar-nav__sub-list-item a.on {
  color: #7cb085;
}

.office-contact-details {
  font-size: 0.75rem;
  margin: 0 10px 20px 10px;
  padding: 0;
}
.office-contact-details h5 {
  font-family: FFScalaWebBoldItalic;
  margin: 0 0 0.5em 0;
}
.office-contact-details:last-child {
  margin-bottom: 0;
}

.office-contact-details--consultant {
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1060px) {
  .office-contact-details--consultant {
    margin: 0px 0px 60px;
    padding: 0px;
  }
}

.office-contact-details__top-section {
  margin-bottom: 10px;
}
.office-contact-details__top-section h4 {
  font-size: 16px;
  letter-spacing: 1.2px;
  line-height: 19px;
  text-align: left;
  text-transform: uppercase;
}

.office-contact-details__main-section {
  list-style: none;
  padding: 0;
}

.emailLink {
  font-size: 0.75rem;
  color: #4c4c4e;
  padding: 0 0 0 35px;
  margin: 0 10px 20px 10px;
  position: relative;
  background: none;
}
.emailLink:before {
  height: 26px;
  width: 26px;
  background-size: 26px;
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
}
.emailLink:last-child {
  margin-bottom: 0;
}

.slideshow__practice,
.consultantSlide {
  border-bottom: 1px dotted #4c4c4e;
  padding-bottom: 20px;
  position: relative;
}
.slideshow__practice .cycle-slideshow,
.consultantSlide .cycle-slideshow {
  height: auto;
  margin: 0;
}
.slideshow__practice .cycle-overlay,
.consultantSlide .cycle-overlay {
  color: #a5a5a6;
  font-size: 0.75rem;
  position: relative;
  width: 100%;
  right: auto;
}
.slideshow__practice .cycle-overlay a,
.consultantSlide .cycle-overlay a {
  color: #4c4c4e;
  font-size: 0.85rem;
  line-height: 1;
}
.slideshow__practice .cycle-overlay a:hover,
.consultantSlide .cycle-overlay a:hover {
  color: #7cb085;
}
.slideshow__practice .cycle-pager,
.consultantSlide .cycle-pager {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  top: auto;
  margin: 13px 0;
}
.slideshow__practice .cycle-pager::after,
.consultantSlide .cycle-pager::after {
  display: table;
  clear: both;
  content: "";
}
.slideshow__practice .cycle-pager a,
.consultantSlide .cycle-pager a {
  height: 10px;
  width: 10px;
  float: left;
  background: #a5a5a6;
  border-radius: 5px;
  margin: 0 3px;
}
.slideshow__practice .cycle-pager a.cycle-pager-active,
.consultantSlide .cycle-pager a.cycle-pager-active {
  background: #338441;
}

.consultantSlide {
  border-bottom: 0;
}
.consultantSlide .cycle-pager {
  margin: 0;
}
.consultantSlide .cycle-pager a {
  float: right;
}

.contentDrop {
  font-size: 1rem;
}
.JP form[action="/our-expertise"] .contentDrop {
  font-size: 12px;
  padding-right: 14px;
}
.JP form[action="/our-expertise"] .grid_4:nth-of-type(2) .contentDrop li {
  max-width: 190px;
}
.contentDrop > li > a.indicator {
  color: #4c4c4e;
  font-weight: normal;
}
.contentDrop > li > a.indicator.drop span {
  height: 18px;
  width: 18px;
  display: inline-block;
  background-size: 18px;
  text-indent: -99999px;
  vertical-align: middle;
}
.contentDrop > li > a.indicator.drop.active span {
  background-position: 0;
}
.contentDrop > li > a.indicator:hover {
  color: #7cb085;
}
.contentDrop > li > a.indicator + ul {
  padding: 0.5em 0 0 40px;
  list-style-type: disc;
}
.contentDrop > li > a.indicator + ul li {
  font-size: 1rem;
  list-style: inherit;
  padding: 0;
}

.focusText,
.focusText p,
.focusText blockquote {
  color: #4c4c4e;
}

.searchBox input[type=text],
.searchBox select {
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #a5a5a6;
  -webkit-box-shadow: inset 0 0 2px 0 rgba(165, 165, 166, 0.75);
          box-shadow: inset 0 0 2px 0 rgba(165, 165, 166, 0.75);
  background-color: #ececec;
}
@media (max-width: 767.98px) {
  .searchBox .grid_5::after {
    display: table;
    clear: both;
    content: "";
  }
}

.splitContentHdg {
  background: none;
}
.splitContentHdg h3 {
  font-size: 1.5rem;
  color: #4c4c4e;
}
.splitContentHdg a {
  color: #4c4c4e;
}
.splitContentHdg a:hover {
  color: #7cb085;
}

.splitContentBox .contentDrop > li a,
.splitContentBox .contentDrop > li a.indicator {
  color: #4c4c4e;
  font-weight: normal;
}
.splitContentBox .contentDrop > li a:hover,
.splitContentBox .contentDrop > li a.indicator:hover {
  color: #7cb085;
}
.splitContentBox .contentDrop > li li a {
  color: #4c4c4e !important;
}
.splitContentBox .contentDrop > li li a:hover {
  color: #7cb085 !important;
}

.greyBox {
  margin-bottom: 1em;
  background-color: #f4f7f9;
  border: none;
}
.greyBox:last-child {
  margin-bottom: 0;
}

.scfForm input[type=text],
input[type=text],
.scfForm input[type=password],
input[type=password],
.scfForm select,
select,
.scfForm textarea,
textarea {
  font-size: 0.7rem;
  border: 1px solid #a5a5a6;
  -webkit-box-shadow: inset 0 0 2px 0 rgba(165, 165, 166, 0.75);
          box-shadow: inset 0 0 2px 0 rgba(165, 165, 166, 0.75);
  background-color: #ececec;
}

.scfForm input[type=text],
input[type=text],
.scfForm input[type=password],
input[type=password] {
  padding-right: 5px;
  padding-left: 5px;
  outline: none;
}

.scfForm input[type=text],
input[type=text],
.scfForm select,
select {
  text-transform: uppercase;
}

.scfForm select:focus,
.scfForm input[type=text]:focus {
  border: 1px solid #a5a5a6;
}

.more.indicator.arrow {
  display: inline-block;
  font-weight: normal;
  width: auto;
  font-size: 1rem;
  letter-spacing: 1px;
}
.more.indicator.arrow span {
  display: none;
}

.cycle-slideshow {
  min-width: 0;
}

a.rssLink {
  color: #4c4c4e;
  line-height: 1.9rem;
}

.paging {
  background-color: #fff;
  padding: 1%;
}
.paging::after {
  display: table;
  clear: both;
  content: "";
}
.paging span > a,
.paging span > span {
  font-size: 0.6rem;
  padding: 5px 10px;
}
.paging span > a {
  background: none;
  border-color: transparent;
  color: #7cb085;
}
.paging span > a:hover {
  text-decoration: underline;
}
.paging span > span {
  background: #ececec;
  border-color: #a5a5a6;
  color: #818183;
}
.paging span > div {
  margin: 0;
}

.paging:nth-of-type(2) {
  display: none;
}
table ~ .paging:nth-of-type(2) {
  display: block;
}

.indicator.arrow {
  padding-right: 1rem;
  position: relative;
}
.indicator.arrow span {
  margin-top: -0.3rem;
  position: absolute;
  right: 0;
  top: 50%;
}
.gMap .indicator.arrow {
  display: inline-block;
  margin-top: 0.5rem;
}

.ss_lastitem + h2,
.ss_lastitem + h3,
.ss_lastitem + h4,
.ss_lastitem + h5,
.ss_lastitem + h6,
.ss_lastitem + p,
.ss_lastitem + div,
.ss_lastitem + ul,
.ss_lastitem + ol {
  clear: both;
}

.consultantListing {
  clear: both;
  margin: 30px 0;
  padding: 0;
}
.consultantListing h3 {
  margin: 0;
}
.consultantListing ul::after {
  display: table;
  clear: both;
  content: "";
}
.consultantListing ul > li {
  padding: 1px;
}
.consultantListing li {
  width: 36.9230769231px;
  height: 36.9230769231px;
  margin: 0;
  padding: 1px;
}
.consultantListing li a {
  background: #00396f;
  line-height: 1em;
  padding: 0;
  display: block;
  margin: 0;
  padding: 25% 0 18%;
  width: 100%;
  height: auto;
}
.consultantListing li a:hover, .consultantListing li a:focus, .consultantListing li a.on {
  background: #338441;
  color: white;
}

.consultantSearch {
  clear: both;
}
.consultantSearch input[type=text],
.consultantSearch select {
  border: 0;
  padding: 10px;
}
.consultantSearch .button, .consultantSearch .corporateDrop > a, .consultantSearch .contentWrap a.button, .contentWrap .consultantSearch a.button, .consultantSearch .searchBox .submit, .searchBox .consultantSearch .submit,
.consultantSearch .searchBox .scfSubmitButton,
.searchBox .consultantSearch .scfSubmitButton {
  margin-top: 10px;
  margin-bottom: 30px;
}
@media (max-width: 599.98px) {
  .consultantSearch .button, .consultantSearch .corporateDrop > a, .consultantSearch .contentWrap a.button, .contentWrap .consultantSearch a.button, .consultantSearch .searchBox .submit, .searchBox .consultantSearch .submit,
  .consultantSearch .searchBox .scfSubmitButton,
  .searchBox .consultantSearch .scfSubmitButton {
    width: 100%;
  }
}

.searchResults {
  font-size: 0.9rem;
}
.searchResults a {
  color: #4c4c4e;
}
.searchResults a:hover {
  color: #7cb085;
}
.searchResults th,
.searchResults td {
  padding: 1%;
}
.searchResults th {
  color: #4c4c4e;
}
.searchResults th a {
  color: #4c4c4e;
}
.searchResults th a:hover {
  color: #7cb085;
}
.searchResults th:first-child {
  width: 18%;
}
.searchResults th:nth-child(2) {
  width: 14%;
}
.searchResults th:nth-child(3) {
  width: 52%;
}
.searchResults td:first-child a {
  font-weight: normal;
}
.searchResults ul li,
.searchResults ol li {
  margin-bottom: 0;
}
.searchResults .researchResults th,
.searchResults .researchResults td {
  float: left;
}
.searchResults .researchResults th:first-child,
.searchResults .researchResults td:first-child {
  text-align: left;
  width: 120px;
}
.searchResults .researchResults th:nth-child(2),
.searchResults .researchResults td:nth-child(2) {
  width: calc(100% - 120px);
}
.searchResults .researchResults th:nth-child(3),
.searchResults .researchResults td:nth-child(3) {
  clear: both;
  width: 100%;
}
@media (max-width: 479.98px) {
  .searchResults .researchResults th:nth-child(1n),
  .searchResults .researchResults td:nth-child(1n) {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .searchResults .researchResults th,
  .searchResults .researchResults td {
    float: none;
  }
  .searchResults .researchResults th:first-child,
  .searchResults .researchResults td:first-child {
    min-width: 120px;
    width: 10%;
  }
  .searchResults .researchResults th:nth-child(2),
  .searchResults .researchResults td:nth-child(2) {
    width: 70%;
  }
  .searchResults .researchResults th:nth-child(3),
  .searchResults .researchResults td:nth-child(3) {
    width: 20%;
  }
}
.searchResults .researchResults th {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
}

.researchResults p:empty,
.researchResults p i {
  display: none;
}
.researchResults h4 {
  font-size: 1.2rem;
  font-weight: normal;
}
.researchResults h4 a {
  color: #4c4c4e;
}
.researchResults h4 a:hover {
  color: #7cb085;
}
.researchResults .more.indicator.arrow {
  font-size: 0.8rem;
}

.consultant-profile--container {
  padding-top: 45px;
}
.consultant-profile--container .sidebar,
.consultant-profile--container .main-content {
  margin-top: 0px;
}

.mod__component {
  float: none;
  margin: 0 0 20px 0;
  max-width: 100%;
  background-color: #f4f7f9;
}
.mod__component:last-child {
  margin: 0;
}
.mod__component .modHdg {
  background: none;
  padding: 10px;
  -webkit-filter: none;
          filter: none;
}
.mod__component .modHdg h3 {
  color: #4c4c4e;
  margin: 0;
}
.mod__component.mod-connect .modHdg, .mod__component.download-directions .modHdg {
  margin-bottom: 10px;
}
.mod__component.mod-connect .modContent a, .mod__component.download-directions .modContent a {
  font-weight: normal;
}
.mod__component .modContent {
  background: none;
  padding: 10px;
}
.mod__component .modImageInfo {
  border-top: 0;
}
.mod__component .modImageInfo img {
  display: none;
}
.mod__component .modImageInfo a {
  font-size: 0.9rem;
  color: #338441;
}
.mod__component .modImageInfo a:hover {
  color: #7cb085;
}
.mod__component .indicator-link {
  font-size: 0.65rem;
  font-weight: normal;
  text-transform: uppercase;
  color: #4c4c4e;
  display: block;
  background-color: #d5e7da;
  padding: 15px 10px;
}
.mod__component .indicator-link:after {
  height: 5px 9px;
  width: 5px 9px;
  background-size: 5px 9px;
  content: "";
  display: inline-block;
  margin-left: 5px;
}
.mod__component .indicator-link:link:hover {
  color: #7cb085;
}
.sidebar--left .mod__component .modHdg,
.sidebar--left .mod__component .modContent {
  padding: 0;
}

.consultantBioInfo .grid_12 {
  padding-left: 0;
}

.consultantBioInfo {
  margin-bottom: 40px;
}
.consultantBioInfo h4 {
  color: #00396f;
}
.consultantBioInfo p, .consultantBioInfo ul, .consultantBioInfo ol {
  line-height: 28px;
}
.consultantBioInfo ul {
  padding: 0 0 0 40px;
}
.consultantBioInfo ul.two-column {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          grid-column-gap: 35px;
          column-gap: 35px;
}

.section-header--small, .mod__component .modHdg h3,
.sidebar-nav__title .section-header--small {
  display: block;
}

.consultantSlide .cycle-pager {
  text-align: right;
}
.consultantSlide .cycle-pager a {
  float: none;
}

.locationsMap {
  margin-top: 0;
  margin-left: -12px;
  margin-bottom: 1rem;
}

.mapTopLinks {
  margin-left: -12px;
  padding: 10px;
  width: calc(100% + 24px);
}
@media screen and (max-width: 998px) {
  .mapTopLinks {
    display: none;
  }
}

.regionLinks {
  margin: 0;
}
.regionLinks .topRegionName {
  color: #338441;
}
.regionLinks .topRegionName:hover, .regionLinks .topRegionName.active {
  color: #7cb085;
}

.corporateDrop {
  top: -42px;
  right: 10px;
  height: 37px;
  max-width: 225px;
  background: none;
}
.corporateDrop > a {
  padding: 5px;
  letter-spacing: 2px;
  min-width: 225px;
}
.corporateDrop > a span {
  display: none;
}

.corporateOffices {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f4f7f9;
  border: 2px solid #7cb085;
  border-top: none;
}
.corporateOffices li {
  margin: 0;
}
.corporateOffices li a {
  margin: 0;
  max-width: 220px;
  color: #338441;
  font-size: 0.9rem;
  line-height: 1.3em;
}
.corporateOffices li a span {
  font-size: 0.8rem;
  line-height: 1.3em;
  color: #262626;
}
.corporateOffices li a:hover {
  background-color: #7cb085;
  color: white;
}

.mapSidebar {
  background-color: #f4f7f9;
}
.mapSidebar .countryName {
  color: #4c4c4e;
}
.mapSidebar .countryInfo a {
  color: #338441;
}
.mapSidebar .countryInfo a:hover {
  color: #7cb085;
  background: none;
}

.locations-marker .marker-bubble {
  width: 580px;
  min-height: 120px;
}
.locations-marker .marker-bubble:after {
  top: auto;
  bottom: -10px;
  border-top-color: #00396f;
}
.locations-marker .marker-bubble .title {
  font-size: 0.8rem;
  color: white;
}
.locations-marker .marker-bubble .address {
  font-size: 0.6rem;
  color: #f4f7f9;
}
.locations-marker .marker-bubble .contact {
  font-size: 0.6rem;
  color: #f4f7f9;
}
.locations-marker:hover .marker-bubble,
.locations-marker:focus .marker-bubble,
.locations-marker.hover .marker-bubble {
  background: #00396f;
}

.mapBack {
  color: #338441;
  background-color: #262626;
}

.locationsMapList h2 {
  font-size: 1.2rem;
  background-color: #f4f7f9;
  margin-bottom: 0;
}
.locationsMapList h2.indicator span {
  margin-top: 2px;
}
.locationsMapList h3 {
  padding: 10px 0;
  font-size: 1.1rem;
}
.locationsMapList h4 {
  font-size: 1rem;
}
.locationsMapList h4 a {
  color: #338441;
}
.locationsMapList h4 a:hover {
  color: #7cb085;
}
.locationsMapList h2 a, .locationsMapList h3 a {
  color: #4c4c4e;
}
.locationsMapList h2 a:hover, .locationsMapList h3 a:hover {
  color: #7cb085;
}
.locationsMapList ul {
  background-color: #f4f7f9;
  padding: 20px;
}
.locationsMapList li li {
  padding: 0;
}
.locationsMapList .location-region > ul {
  padding: 0 20px;
}
.locationsMapList .location-country {
  margin: 0;
  border-bottom: 1px solid #98a7bc;
}
.locationsMapList .location-country h3 {
  padding: 10px 0;
  margin: 0;
  border-bottom: none;
}
.locationsMapList .location-country h3:first-child {
  padding: 10px 0;
}
.locationsMapList .location-country > ul {
  padding: 10px 0 0 0;
  border-top: 2px solid rgb(213.8, 219.8, 228.2);
}
.locationsMapList .location-country > ul > li {
  min-height: 0;
}
.locationsMapList .location-country:last-child {
  border-bottom: none;
}
.locationsMapList .location-site p, .locationsMapList .location-site dl {
  color: #262626;
  font-size: 0.9rem;
  line-height: 1.25em;
  padding: 0 2%;
  margin: 0 0 0.25em 0;
}
.locationsMapList .location-site p.address {
  padding: 0 2% 0 0;
  width: 55%;
}
.locationsMapList .location-site dl.contactInfo {
  padding: 0;
  width: 45%;
}
.locationsMapList .location-site:nth-child(odd) {
  clear: left;
}
.locationsMapList .location-site.corporate {
  display: none;
}
@media screen and (max-width: 500px) {
  .locationsMapList .location-site p.address,
  .locationsMapList .location-site dl.contactInfo {
    float: none;
    width: 100%;
  }
}

.officeLocations h4 {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 1.3em 0 0.2em;
  color: #4c4c4e;
}
.officeLocations .grid_6:first-child h4 {
  font-weight: normal;
}
.officeLocations .grid_6:first-child h4:first-child {
  font-weight: normal;
  color: #4c4c4e;
}
.officeLocations .grid_6:first-child a {
  color: #4c4c4e;
}
.officeLocations .grid_6:first-child a:hover {
  color: #7cb085;
}
.officeLocations .grid_6:first-child a.indicator {
  position: relative;
  color: #338441;
}
.officeLocations .grid_6:first-child a.indicator:hover {
  color: #7cb085;
}

.container .grid_6.gMap {
  height: 18.5rem;
}
@media (max-width: 767.98px) {
  .container .grid_6.gMap {
    float: none !important;
  }
}

.accountLogin .blockhdng {
  border-bottom: 1px solid #4c4c4e;
}

.researchLanding h3 {
  color: #4c4c4e;
}

.leaderTopics img {
  width: 100%;
  height: auto;
}
.leaderTopics li {
  font-size: 0.9rem;
  width: 19.2%;
  margin-right: 4%;
  text-align: center;
}
.leaderTopics li:last-child {
  margin-right: 0;
}
.leaderTopics a {
  color: #338441;
}

.recentArticles .articleItem {
  font-size: 0.9rem;
  color: #4c4c4e;
}
.recentArticles .articleItem h4 {
  font-weight: bold;
  font-size: 1.2rem;
  color: #4c4c4e;
}
.recentArticles .articleItem h4 a {
  color: #4c4c4e;
}
.recentArticles .articleItem h4 a:hover {
  color: #7cb085;
}

.researchResults h4 a {
  font-weight: normal;
}

.researchResults__sub-title {
  margin: 0;
}
.researchResults__sub-title:empty {
  display: none;
}

.featuredInfo {
  font-weight: normal;
}
.featuredInfo h1 a {
  color: #4c4c4e;
}
.featuredInfo h1 a:hover {
  color: #7cb085;
}
.leaderTopics,
.contentWrap .leaderTopics {
  background-color: #f4f7f9;
  padding: 4rem 2rem 1.5rem;
  text-align: center;
}
.leaderTopics h3,
.contentWrap .leaderTopics h3 {
  font-size: 1.5rem;
  color: #00396f;
  letter-spacing: 0.1rem;
  margin-bottom: 2.5rem;
}
.leaderTopics ul,
.contentWrap .leaderTopics ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767.98px) {
  .leaderTopics ul,
  .contentWrap .leaderTopics ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.leaderTopics li,
.contentWrap .leaderTopics li {
  line-height: 1.1em;
  margin-bottom: 2.5rem;
  padding: 0;
  width: 100%;
  max-width: 161px;
}
.leaderTopics li:nth-last-child(4):first-child, .leaderTopics li:nth-last-child(4):first-child ~ li, .contentWrap .leaderTopics li:nth-last-child(4):first-child, .contentWrap .leaderTopics li:nth-last-child(4):first-child ~ li {
  max-width: 205px;
}
.leaderTopics li:nth-last-child(4):first-child:last-child, .leaderTopics li:nth-last-child(4):first-child ~ li:last-child, .contentWrap .leaderTopics li:nth-last-child(4):first-child:last-child, .contentWrap .leaderTopics li:nth-last-child(4):first-child ~ li:last-child {
  margin-right: 4%;
}

@media (max-width: 599.98px) {
  .leaderTopics li,
  .contentWrap .leaderTopics li {
    float: none;
    margin-top: 0;
    text-align: center;
    width: 50%;
    margin-right: 0;
    max-width: 150px;
  }
  .leaderTopics li:nth-last-child(4):first-child, .leaderTopics li:nth-last-child(4):first-child ~ li, .contentWrap .leaderTopics li:nth-last-child(4):first-child, .contentWrap .leaderTopics li:nth-last-child(4):first-child ~ li {
    max-width: 185px;
  }
  .leaderTopics li:nth-last-child(4):first-child:last-child, .leaderTopics li:nth-last-child(4):first-child ~ li:last-child, .contentWrap .leaderTopics li:nth-last-child(4):first-child:last-child, .contentWrap .leaderTopics li:nth-last-child(4):first-child ~ li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 599.98px) {
  .leaderTopics li:first-child,
  .contentWrap .leaderTopics li:first-child {
    margin-top: 0;
  }
}
.leaderTopics li img,
.contentWrap .leaderTopics li img {
  margin: 0 0 0.85rem;
  border-radius: 50%;
  max-width: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 599.98px) {
  .leaderTopics li img,
  .contentWrap .leaderTopics li img {
    width: auto;
    max-width: 85px;
  }
}
.leaderTopics li a,
.contentWrap .leaderTopics li a {
  font-size: 1rem;
  line-height: 1.25rem;
  max-width: 95%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .leaderTopics li a,
  .contentWrap .leaderTopics li a {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media (max-width: 599.98px) {
  .leaderTopics,
  .contentWrap .leaderTopics {
    padding-top: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.researchSearchBox .submit {
  min-width: 140px;
}

.featuredResearch {
  border: none;
  margin: 3.75rem 0 1.5rem;
  padding: 0 !important;
}
@media (max-width: 767.98px) {
  .featuredResearch {
    padding: 0 0.5rem !important;
  }
}
@media (max-width: 599.98px) {
  .featuredResearch {
    float: none;
    text-align: center;
  }
}
.featuredResearch h3 {
  font-size: 2rem;
  color: #00396f;
  margin-bottom: 1rem;
}
.featuredResearch .featuredResearch__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.featuredResearch .featuredResearch__container > a {
  display: inline-block;
  width: 50%;
  position: relative;
  padding-top: 27.3%;
  overflow: hidden;
  margin-right: 1.5rem;
}
@media (max-width: 599.98px) {
  .featuredResearch .featuredResearch__container > a {
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 20px;
  }
}
@media (max-width: 599.98px) {
  .featuredResearch .featuredResearch__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.featuredResearch img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
}
@media (max-width: 599.98px) {
  .featuredResearch img {
    float: none;
    margin: 0 0 0.75rem;
    width: 100%;
    max-width: none;
  }
}
.featuredResearch .featuredInfo {
  width: 50%;
}
.featuredResearch .featuredInfo h3 {
  color: #338441;
  font-size: 1.5rem;
  text-transform: none;
  line-height: 1.75rem;
  margin-bottom: 0.35rem;
}
@media (max-width: 599.98px) {
  .featuredResearch .featuredInfo h3 {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.featuredResearch .featuredInfo h3 a {
  color: inherit;
  font: inherit;
}
.featuredResearch .featuredInfo h3 a:hover {
  color: #7cb085;
}
.featuredResearch .featuredInfo .meta-date {
  color: #818183;
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
.featuredResearch .featuredInfo .meta-summary {
  margin: 0.5rem 0 0.7rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (max-width: 599.98px) {
  .featuredResearch .featuredInfo .meta-summary {
    display: none;
  }
}
.featuredResearch .featuredInfo p em {
  font-style: normal;
}
@media (max-width: 599.98px) {
  .featuredResearch .featuredInfo .button, .featuredResearch .featuredInfo .searchBox .submit, .searchBox .featuredResearch .featuredInfo .submit,
  .featuredResearch .featuredInfo .searchBox .scfSubmitButton,
  .searchBox .featuredResearch .featuredInfo .scfSubmitButton, .featuredResearch .featuredInfo .corporateDrop > a {
    display: block;
  }
}
@media (max-width: 599.98px) {
  .featuredResearch .featuredInfo {
    text-align: left;
    width: 100%;
  }
}

.recentArticles {
  text-align: center;
}
.recentArticles[class*=grid_] {
  padding: 0;
}
@media (max-width: 767.98px) {
  .recentArticles[class*=grid_] {
    padding: 0 0.5rem;
  }
}
.recentArticles h3 {
  font-size: 1.5rem;
  color: #00396f;
  margin-bottom: 1rem;
  text-align: left;
}
@media (max-width: 599.98px) {
  .recentArticles h3 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
.recentArticles .slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recentArticles .slides:after {
  display: none;
}
.recentArticles .slides > li {
  width: calc(33.334% - 20px);
  margin-bottom: 4rem;
}
.recentArticles .slides > li:nth-child(3n) {
  margin-right: 0;
}
.recentArticles .slides > li > a {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) {
  .recentArticles .slides > li > a {
    margin-bottom: 0.75rem;
  }
}
.recentArticles .slides > li img {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  margin: 0;
}
.recentArticles .slides > li .articleItem {
  padding-left: 0;
  padding-right: 0;
}
.recentArticles .slides > li .articleItem h4 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-bottom: 0;
}
.recentArticles .slides > li .articleItem h4 a {
  color: #338441;
}
@media (max-width: 767.98px) {
  .recentArticles .slides > li .articleItem h4 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
  .recentArticles .slides > li .articleItem h4 a {
    font-size: 1rem;
  }
}
@media (max-width: 599.98px) {
  .recentArticles .slides > li .articleItem h4 {
    font-size: 0.75rem;
    line-height: 0.9rem;
  }
  .recentArticles .slides > li .articleItem h4 a {
    font-size: 0.75rem;
  }
}
.recentArticles .slides > li .articleItem > div {
  font-size: 0.65rem;
  color: #818183;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0.25rem;
}
@media (max-width: 599.98px) {
  .recentArticles .slides > li .articleItem > div {
    font-size: 0.6rem;
  }
}
.recentArticles .slides > li .articleItem > p {
  font-size: 0.9rem;
  line-height: 1.3rem;
  margin-top: 0.5rem;
}
@media (max-width: 767.98px) {
  .recentArticles .slides > li .articleItem > p {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .recentArticles .slides > li {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 599.98px) {
  .recentArticles .slides > li {
    width: 48%;
    margin-right: 4%;
  }
  .recentArticles .slides > li:nth-child(3n) {
    margin-right: 4%;
  }
  .recentArticles .slides > li:nth-child(2n) {
    margin-right: 0;
  }
}
.recentArticles .btn {
  border: 0.1rem solid #338441;
  padding: 0.75rem 0.75rem 0.55rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  text-align: center;
  margin-top: 0;
  color: #4c4c4e;
}
.recentArticles .btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #338441;
  color: #fff;
}
@media (max-width: 479.98px) {
  .recentArticles .btn {
    width: 100%;
    display: block;
    font-size: 0.65rem;
  }
}
.recentArticles .articleItem h4 {
  font-size: 1.2rem;
}

.scfForm input[type=text],
input[type=text],
.scfForm input[type=password],
input[type=password],
.scfForm select,
select {
  background-color: #ececec;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0.5rem 0.5rem 0.4rem;
  text-transform: none;
}

label {
  text-transform: none;
}

.RegSteps {
  float: none;
  height: auto;
}
.RegSteps::after {
  display: table;
  clear: both;
  content: "";
}

.file-upload-pane {
  margin: 0 0 1rem;
}

.icon-show-hide b {
  position: relative;
  top: -6px;
  left: -1px;
}

.searchBox {
  }
.researchLanding .searchBox {
  margin-right: 2.25%;
  width: 31%;
}
@media (max-width: 767.98px) {
  .researchLanding .searchBox {
    margin: 0 0 4.5rem;
    padding: 0 0.5rem;
    width: 100%;
  }
}
@media (max-width: 599.98px) {
  .researchLanding .searchBox {
    margin-bottom: 1.5rem;
  }
}
.researchLanding .searchBox input[type=text],
.researchLanding .searchBox select {
  background-color: #ececec;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0.5rem 0.5rem 0.4rem;
}
.searchBox .droparrow {
  margin: 0.55rem 0 0 -1.2rem;
}
@media (max-width: 959.98px) {
  .researchLanding .searchBox .search-actions {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .researchLanding .searchBox .search-actions {
    text-align: left;
  }
}
@media (max-width: 599.98px) {
  .researchLanding .searchBox .search-actions {
    text-align: center;
  }
}
.researchLanding .searchBox .search-actions a {
  margin-top: 0.95rem;
}
@media (max-width: 959.98px) {
  .researchLanding .searchBox .search-actions a {
    display: inline-block;
    float: none;
    margin-top: 3.5rem;
  }
}
@media (max-width: 767.98px) {
  .researchLanding .searchBox .search-actions a {
    float: left;
    margin-top: 0.95rem;
  }
}
@media (max-width: 599.98px) {
  .researchLanding .searchBox .search-actions a {
    display: inline-block;
    float: none;
    margin-top: 3.5rem;
  }
}
.researchLanding .searchBox .submit {
  border-radius: 0;
  margin-top: 0.5rem;
  min-width: 6rem;
  padding: 0.55rem 0.75rem 0.35rem;
}
@media (max-width: 959.98px) {
  .researchLanding .searchBox .submit {
    margin-top: -4.5rem;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .researchLanding .searchBox .submit {
    margin-top: 0.5rem;
    width: auto;
  }
}
@media (max-width: 599.98px) {
  .researchLanding .searchBox .submit {
    margin-top: -4.5rem;
    width: 100%;
  }
}

.container .accountLogin [class*=grid_] {
  padding: 0;
}
.accountLogin .blockhdng {
  border-bottom: none;
  margin-bottom: 0.75rem;
}
.accountLogin .currentAccount .inner {
  background-color: #f8f8f8;
  padding: 1rem;
}
.accountLogin .reqKeyWrpr {
  position: static;
}
@media (max-width: 479.98px) {
  .accountLogin .table {
    display: block;
  }
}
@media (max-width: 479.98px) {
  .accountLogin .tableCell {
    display: block;
  }
}
@media (max-width: 479.98px) {
  .accountLogin .tableCell:empty {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .accountLogin .tableCell label {
    display: block;
    margin-bottom: 0.25rem;
  }
}
.accountLogin .tableCell input[type=text],
.accountLogin .tableCell input[type=password] {
  background-color: #ececec;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0.5rem 0.5rem 0.4rem;
  text-transform: none;
  width: 10.15rem;
}
@media (max-width: 479.98px) {
  .accountLogin .tableCell input[type=text],
  .accountLogin .tableCell input[type=password] {
    width: 100%;
  }
}
@media (max-width: 479.98px) {
  .accountLogin .button, .accountLogin .contentWrap a.button, .contentWrap .accountLogin a.button, .accountLogin .searchBox .submit, .searchBox .accountLogin .submit,
  .accountLogin .searchBox .scfSubmitButton,
  .searchBox .accountLogin .scfSubmitButton, .accountLogin .corporateDrop > a {
    width: 100%;
  }
}

.regTable td {
  padding: 0 0.75rem 0.5rem 0;
}
.regTable td select,
.regTable td input[type=text] {
  height: auto;
}
.regTable td select + .droparrow {
  margin-top: 0.5rem;
  margin-left: -1.1rem;
}

.accountHeading select + .droparrow {
  margin-top: 0.5rem;
  margin-left: -1.1rem;
}
.accountHeading .icon-show-hide b {
  left: 0;
  top: -0.45rem;
}

.executiveTeam {
  margin-top: 2em;
}
.executiveTeam > h4,
.executiveTeam > h6 {
  clear: both;
  padding-top: 1em;
  padding-bottom: 0.1em;
}
.executiveTeam > ul > li {
  width: 48%;
  margin: 0 0 0.75em 0;
  min-height: inherit;
  font-size: 0.9rem;
  line-height: 1.1em;
}
.executiveTeam > ul > li:nth-child(odd) {
  margin-right: 4%;
}
.executiveTeam > ul > li a {
  font-size: 1rem;
  line-height: 1.35em;
  font-weight: normal;
  color: #338441;
  text-decoration: none;
}
.executiveTeam > ul > li a:hover {
  color: #7cb085;
}
@media (max-width: 767.98px) {
  .executiveTeam > ul > li {
    width: 100%;
  }
}

.mediaCenter .player {
  height: auto;
  margin: 0 5% 0 0;
  width: 55%;
}
@media (max-width: 479.98px) {
  .mediaCenter .player {
    background-color: #000;
    margin-bottom: 1rem;
  }
}
.mediaCenter .slidePlayVid {
  left: 50%;
  margin: -2.25rem 0 0 -2.25rem;
  top: 50%;
}
.mediaCenter .playVid {
  background-image: url("/content/images/video_play_button_white.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  line-height: 1;
  text-indent: -9999px;
}
.mediaCenter .playVid:hover, .mediaCenter .playVid:focus {
  background-positon: 0 0;
  opacity: 0.8;
}
.mediaCenter .playerText {
  margin: 0;
  width: 40%;
}
.mediaCenter .playerText h3 {
  font-size: 1.5rem;
}
.mediaCenter .playerText a {
  font-weight: normal;
  text-decoration: none;
}
@media (max-width: 599.98px) {
  .mediaCenter .section-heading {
    font-size: 1.5rem;
  }
}
.mediaCenter .search-results-hit {
  border: none;
  padding: 0.75rem 0 0.6rem;
}
.mediaCenter .search-results-hit a {
  color: #262626;
  font-size: 1rem;
  font-weight: normal;
}
.mediaCenter .search-results-hit a:hover, .mediaCenter .search-results-hit a:focus {
  color: #7cb085;
}
.mediaCenter .search-results-hit .meta-date {
  color: #a5a5a6;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mediaCenter__media::after {
  display: table;
  clear: both;
  content: "";
}
.container .mediaCenter__media [class*=grid_] {
  padding: 0;
}
@media (max-width: 767.98px) {
  .container .mediaCenter__media [class*=grid_] {
    float: left;
  }
}
@media (max-width: 479.98px) {
  .container .mediaCenter__media [class*=grid_] {
    float: none;
    width: 100%;
  }
}

.siteMap li {
  margin: 0;
  padding: 0;
}
.siteMap li ul {
  padding: 0.75rem 1.5rem 1.25rem 0;
}
.siteMap li ul li {
  margin: 0;
  padding: 0;
}
.siteMap li ul li a.indicator {
  padding: 0.5rem 0;
}
.siteMap li ul li ul {
  padding-bottom: 1rem;
  padding-top: 0;
}
.siteMap a.indicator {
  color: #262626;
  display: block;
  font-size: 1.2rem;
  margin: 0;
  padding: 1rem 1.5rem 1rem 0;
  position: relative;
}
.siteMap a.indicator:hover, .siteMap a.indicator:focus {
  color: #7cb085;
}
.siteMap span.indicator,
.siteMap li a span.indicator {
  height: 1rem;
  margin-top: -0.45rem;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1rem;
}

.sidebar--left .research-insight .modHdg,
.sidebar--left .research-insight .modContent,
.sidebar--left .research-insight .indicator-link {
  padding-right: 18px;
  padding-left: 18px;
}
/*# sourceMappingURL=index-generated.css.map */

@charset "UTF-8";
@import url("https://use.typekit.net/msd5jro.css");
@charset "UTF-8";
@import url("//hello.myfonts.net/count/306b51");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.wb {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.wb img {
  height: auto;
  max-width: 100%;
}

.wb-leftcolumn .wb-categories {
  display: none;
}
@media screen and (max-width: 800px) {
  .wb-leftcolumn .wb-categories {
    display: block;
  }
}
.wb-rightcolumn .wb-categories {
  display: block;
}
@media screen and (max-width: 800px) {
  .wb-rightcolumn .wb-categories {
    display: none;
  }
}
.wb-categories li {
  margin: 30px 0;
  font-family: FFScalaSansWebBold, Georgia, Utopia, Charter, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  list-style-type: none;
}
.wb-categories li a {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  color: #4c4c4e;
}
.wb-categories li a::after {
  position: absolute;
  top: 8px;
  right: 0;
  height: 7px;
  width: 7px;
  border-bottom: 2px solid #6fb27b;
  border-right: 2px solid #6fb27b;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.wb-categories li a:hover {
  color: #6fb27b;
}
.wb-categories ul {
  margin-bottom: 50px;
  padding-left: 0;
}

.wb-details {
  margin-bottom: 16px;
  color: #4c4c4e;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wb-entry {
  font-size: 20px;
}
.wb-entry h2 {
  margin-bottom: 14px;
}
.wb-entry .featured-content {
  margin-top: 0;
  padding-bottom: 0;
}
.wb-entry .section-header {
  margin-top: 50px;
}
.wb-entry .share-bar {
  position: static;
  display: block;
  float: none;
  margin: 18px 0 75px;
  padding: 0;
  text-align: left;
}
.wb-entry .share-bar li:first-child {
  margin-left: 0;
}
.wb-entry :not(.wb-details) a:not(.icon) {
  --underline-color: currentcolor;
  --underline-thickness: 1px;
  -webkit-padding-before: 2px;
          padding-block-start: 2px;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(var(--underline-color)), to(var(--underline-color))), -webkit-gradient(linear, left top, right top, from(rgba(51, 132, 65, 0.15)), to(rgba(51, 132, 65, 0.15)));
  background: linear-gradient(to right, var(--underline-color), var(--underline-color)), linear-gradient(to right, rgba(51, 132, 65, 0.15), rgba(51, 132, 65, 0.15));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% var(--underline-thickness), 100% 0%;
  -webkit-transition: background-size 0.3s, background-position 0.3s;
  transition: background-size 0.3s, background-position 0.3s;
}
.wb-entry :not(.wb-details) a:not(.icon):hover, .wb-entry :not(.wb-details) a:not(.icon):focus {
  color: #338441;
  background-position: left bottom;
  background-size: 100% var(--underline-thickness), 100% 100%;
}

.wb-entry-comments .wb-comment-name {
  font-weight: bold;
}
.wb-entry-comments .wb-datetime {
  float: right;
}
.wb-entry-comments ul {
  padding-left: 0;
}
.wb-entry-comments ul ul {
  padding-left: 30px;
}
.wb-entry-comments ul li {
  list-style-type: none;
  background-color: transparent;
}

.wb-entry-add-comment {
  margin-top: 50px;
}
.wb-entry-add-comment input[type=text],
.wb-entry-add-comment textarea {
  width: 100% !important; -webkit-box-sizing: border-box; box-sizing: border-box;
  padding: 8px 8px 6px;
  border-width: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.wb-entry-add-comment label {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}
.wb-entry-add-comment .wb-captcha {
  margin-bottom: 45px;
}
.wb-entry-add-comment .wb-captcha::after {
  display: block;
  clear: both;
  content: "";
}
.wb-entry-add-comment .wb-captcha input[type=text] {
  display: inline-block;
  width: calc(100% - 205px) !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 650px) {
  .wb-entry-add-comment .wb-captcha input[type=text] {
    width: 100% !important;
  }
}
.wb-entry-add-comment .blog-captcha-image {
  display: inline-block;
  width: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: bottom;
}

.wb-entry-detail {
  color: #4c4c4e;
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

li.wb-entry-list-entry {
  margin-bottom: 50px;
  padding-bottom: 38px;
  border-bottom: 1px solid #e0e0e0;
}
li.wb-entry-list-entry:last-child {
  border-bottom-width: 0;
}

.wb-entry-list h3 {
  margin: 0 0 15px;
}
.wb-entry-list h3 a {
  color: #4c4c4e;
}

.wb-header,
.wb-footer {
  display: none;
}

.wb-leftcolumn,
.wb-rightcolumn {
  margin: 50px 0;
  padding: 0;
}

.wb-leftcolumn {
  width: calc(100% - 350px);
  float: left;
}
@media screen and (max-width: 800px) {
  .wb-leftcolumn {
    width: 100%;
    float: none;
    padding: 0 3%;
  }
  .wb-leftcolumn .blog-authors {
    display: block;
  }
}
@media (max-width: 1059.98px) {
  .wb-leftcolumn {
    padding: 0 0 0 3%;
  }
}

.wb-read-more {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  color: #3b964b;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.wb-read-more::after {
  position: absolute;
  top: 8px;
  right: 0;
  height: 7px;
  width: 7px;
  border-bottom: 2px solid #6fb27b;
  border-right: 2px solid #6fb27b;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.wb-rightcolumn {
  width: 250px;
  float: right;
}
@media screen and (max-width: 800px) {
  .wb-rightcolumn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    float: none;
    padding: 0 3%;
  }
}
.wb-rightcolumn .blog-authors {
  display: block;
}
.wb-rightcolumn h3 {
  margin-top: 0;
}
@media (max-width: 1059.98px) {
  .wb-rightcolumn {
    padding: 0 3% 0 0;
  }
}

@media screen and (max-width: 650px) {
  .wb-submit {
    width: 100%;
  }
}

.wb-wrapper::after {
  display: block;
  clear: both;
  content: "";
}

.wb-leftcolumn-fullwidth {
  width: 82%;
  float: left;
}
@media screen and (max-width: 800px) {
  .wb-leftcolumn-fullwidth {
    width: 100%;
    float: none;
    padding: 0 3%;
  }
  .wb-leftcolumn-fullwidth .blog-authors {
    display: block;
  }
}
@media (max-width: 1059.98px) {
  .wb-leftcolumn-fullwidth {
    padding: 0 0 0 3%;
  }
}
/*# sourceMappingURL=blog-generated.css.map */

@charset "UTF-8";
@import url("https://use.typekit.net/msd5jro.css");
@charset "UTF-8";
@import url("//hello.myfonts.net/count/306b51");

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(44px / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: 44px;
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * 44px / 2);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-theme-color);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-feature-settings: normal, ;
          font-feature-settings: normal, ;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-theme-color);
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@font-face {
  font-family: "FFScalaWeb";
  src: url("/webfonts/2D7CCC_1_0.eot");
  src: url("/webfonts/2D7CCC_1_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_1_0.woff2") format("woff2"), url("/webfonts/2D7CCC_1_0.woff") format("woff"), url("/webfonts/2D7CCC_1_0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaWebItalic";
  src: url("/webfonts/2D7CCC_0_0.eot");
  src: url("/webfonts/2D7CCC_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_0_0.woff2") format("woff2"), url("/webfonts/2D7CCC_0_0.woff") format("woff"), url("/webfonts/2D7CCC_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaWebBold";
  src: url("/webfonts/2D7CCC_3_0.eot");
  src: url("/webfonts/2D7CCC_3_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_3_0.woff2") format("woff2"), url("/webfonts/2D7CCC_3_0.woff") format("woff"), url("/webfonts/2D7CCC_3_0.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaWebBoldItalic";
  src: url("/webfonts/306B51_0_0.eot");
  src: url("/webfonts/306B51_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/306B51_0_0.woff2") format("woff2"), url("/webfonts/306B51_0_0.woff") format("woff"), url("/webfonts/306B51_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaSansWebRegular";
  src: url("/webfonts/2D7CCC_5_0.eot");
  src: url("/webfonts/2D7CCC_5_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_5_0.woff2") format("woff2"), url("/webfonts/2D7CCC_5_0.woff") format("woff"), url("/webfonts/2D7CCC_5_0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaSansWebItalic";
  src: url("/webfonts/2D7CCC_4_0.eot");
  src: url("/webfonts/2D7CCC_4_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_4_0.woff2") format("woff2"), url("/webfonts/2D7CCC_4_0.woff") format("woff"), url("/webfonts/2D7CCC_4_0.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaSansWebBold";
  src: url("/webfonts/2D7CCC_2_0.eot");
  src: url("/webfonts/2D7CCC_2_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_2_0.woff2") format("woff2"), url("/webfonts/2D7CCC_2_0.woff") format("woff"), url("/webfonts/2D7CCC_2_0.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaSansWebBoldItalic";
  src: url("/webfonts/30FC9E_0_0.eot");
  src: url("/webfonts/30FC9E_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/30FC9E_0_0.woff2") format("woff2"), url("/webfonts/30FC9E_0_0.woff") format("woff"), url("/webfonts/30FC9E_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
.font-scala, .board-index-consultant-banner, .consultant-banner {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, serif;
  font-style: normal;
  font-weight: normal;
}
.JP .font-scala, .JP .board-index-consultant-banner, .JP .consultant-banner {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .font-scala, .CN .board-index-consultant-banner, .CN .consultant-banner {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.font-scala--bold, .consultant-banner__text--title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif;
  font-style: normal;
  font-weight: bold;
}
.JP .font-scala--bold, .JP .consultant-banner__text--title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: bold;
}
.CN .font-scala--bold, .CN .consultant-banner__text--title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.font-scala--bold-italic {
  font-family: FFScalaWebBoldItalic, Georgia, Utopia, Charter, serif;
  font-style: italic;
  font-weight: bold;
}

.font-scala--italic, .consultant-banner__text--group,
.consultant-banner__text--office {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, serif;
  font-style: italic;
  font-weight: normal;
}
.JP .font-scala--italic, .JP .consultant-banner__text--group,
.JP .consultant-banner__text--office {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: normal;
}
.CN .font-scala--italic, .CN .consultant-banner__text--group,
.CN .consultant-banner__text--office {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, sans-serif;
  font-style: italic;
  font-weight: normal;
}

.font-scala-sans, .consultant-banner__text--summary {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .font-scala-sans, .JP .consultant-banner__text--summary {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .font-scala-sans, .CN .consultant-banner__text--summary {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.font-scala-sans--bold, .consultant-banner__share-bar .share-bar__title {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
.JP .font-scala-sans--bold, .JP .consultant-banner__share-bar .share-bar__title, .consultant-banner__share-bar .JP .share-bar__title {
  font-family: FFScalaSansWebBold, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: bold;
}
.CN .font-scala-sans--bold, .CN .consultant-banner__share-bar .share-bar__title, .consultant-banner__share-bar .CN .share-bar__title {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.font-scala-sans--italic {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
}
.JP .font-scala-sans--italic {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: normal;
}
.CN .font-scala-sans--italic {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
}

.font-scala-sans--bold-italic {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
}
.JP .font-scala-sans--bold-italic {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: bold;
}
.CN .font-scala-sans--bold-italic {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
}

.font-scala--regular {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

body {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
body.sshr__page {
  margin: 0;
  padding: 0;
}

[class^=sshr__] * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.site-content {
  overflow-x: hidden;
  padding-top: 0 !important;
}

.ssa__practice-page [class^=sshr__] > .ssa__rich-text:not(.ssa__rich-text--left) h1:not([class]),
.ssa__practice-page [class^=sshr__] > .ssa__rich-text:not(.ssa__rich-text--left) h3:not([class]),
.ssa__practice-page [class^=sshr__] > .ssa__rich-text:not(.ssa__rich-text--left) h4:not([class]),
.ssa__practice-page [class^=sshr__] > .ssa__rich-text:not(.ssa__rich-text--left) h5:not([class]),
.ssa__practice-page [class^=sshr__] > .ssa__rich-text:not(.ssa__rich-text--left) h6:not([class]) {
  margin: 26px auto 8px auto;
}
.ssa__practice-page [class^=sshr__] > .ssa__rich-text:not(.ssa__rich-text--left) h2:not([class]) {
  margin: 2.2em auto 15px auto;
}
.ssa__practice-page [class^=sshr__] > .ssa__rich-text:not(.ssa__rich-text--left) p:not([class]) {
  margin: 0 auto 24px auto;
}
.ssa__practice-page .ssa__rich-text.ssa__rich-text--left h1:not([class]),
.ssa__practice-page .ssa__rich-text.ssa__rich-text--left h5:not([class]),
.ssa__practice-page .ssa__rich-text.ssa__rich-text--left h6:not([class]) {
  margin: 0 0 8px;
}
.ssa__practice-page .ssa__rich-text.ssa__rich-text--left h2:not([class]) {
  margin: 2.2em auto 15px 0;
}
.ssa__practice-page .ssa__rich-text.ssa__rich-text--left h2:not([class]) + h3:not([class]) {
  margin: 26px auto 8px 0;
}
.ssa__practice-page .ssa__rich-text.ssa__rich-text--left h4:not([class]) {
  margin: 32px auto 6px 0;
}
.ssa__practice-page .ssa__rich-text.ssa__rich-text--left h5:not([class]) {
  margin: 32px auto 2px 0;
}
.ssa__practice-page .ssa__rich-text.ssa__rich-text--left p:not([class]) {
  margin: 0 0 1em;
}

.sb-show-main {
  margin: 0;
}

[class^=sshr__] h1,
[class^=sshr__] h2,
[class^=sshr__] h3,
[class^=sshr__] h4,
[class^=sshr__] h5,
[class^=sshr__] h6 {
  margin: 0 0 15px;
}
@media (min-width: 480px) {
  [class^=sshr__] h1,
  [class^=sshr__] h2,
  [class^=sshr__] h3,
  [class^=sshr__] h4,
  [class^=sshr__] h5,
  [class^=sshr__] h6 {
    margin-bottom: 25px;
  }
}

.sshr__article {
  position: relative;
  height: 385px;
  width: 300px;
}
.sshr__article--has-flyout .sshr__article__flyout-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  height: 100%;
  width: 100%;
  background-color: #fbcc11;
}
.sshr__article--has-flyout .sshr__article__content-wrapper {
  z-index: 20;
}
.sshr__article--has-flyout:hover .sshr__article__bar-placeholder {
  width: 100%;
}
.sshr__article--has-flyout:hover .sshr__article__content-wrapper {
  -webkit-transform: translate(-20px, -20px);
          transform: translate(-20px, -20px);
}
.sshr__article--has-flyout.swiper-slide-active .sshr__article__bar-placeholder {
  width: 100%;
}
.sshr__article--has-flyout.swiper-slide-active .sshr__article__content-wrapper {
  -webkit-transform: translate(-10px, -10px);
          transform: translate(-10px, -10px);
}
.sshr__article--has-flyout.swiper-slide-active .sshr__article__flyout-placeholder {
  -webkit-transform: translate(10px, 10px);
          transform: translate(10px, 10px);
}
.sshr__article--has-zoom:hover .sshr__article__picture img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sshr__article--has-zoom .sshr__article__picture img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.sshr__article--show-bar .sshr__article__bar-placeholder {
  margin-bottom: 20px;
  -webkit-transition: width 0.35s ease-out;
  transition: width 0.35s ease-out;
  background-color: #fbcc11;
  content: "";
  display: block;
  height: 5px;
  width: 80px;
}
.sshr__article > a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
}
.sshr__article__cta {
  color: #fff;
  font-family: "FFScalaSansWebBold";
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  padding-right: 13px;
  position: relative;
}
.sshr__article__cta::after {
  font-size: 0;
  background-image: url("../images/arrow-right-green.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
}
.sshr__article__content {
  position: relative;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  width: auto;
  padding: 63px 44px 44px;
}
.sshr__article__content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  color: #fff;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.sshr__article__flyout-placeholder {
  display: none;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.sshr__article__picture {
  position: absolute;
  z-index: 10;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #4c4c4e;
}
.sshr__article__picture img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sshr__article__picture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
}
.sshr__article__title {
  margin-bottom: 15px;
  color: #fff;
  font-family: "FFScalaSansWebBold";
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0px;
}

.anchor-link-hero {
  --spacing-start: 54px;
  position: relative;
  margin-bottom: 64px;
  -webkit-padding-after: 0;
  -webkit-padding-after: var(--spacing-end, 0);
          padding-block-end: 0;
          padding-block-end: var(--spacing-end, 0);
  color: #fff;
}
@media (max-width: 768px) {
  .anchor-link-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) {
  .anchor-link-hero {
    --spacing-start: 116px;
  }
}
.anchor-link-hero:has(.anchor-link-hero__nav li), .anchor-link-hero:has(.anchor-link-hero__breadcrumb) {
  --spacing-start: 48px;
}
@media (min-width: 768px) {
  .anchor-link-hero:has(.anchor-link-hero__nav li), .anchor-link-hero:has(.anchor-link-hero__breadcrumb) {
    --spacing-start: 108px;
  }
}
.anchor-link-hero:has(.anchor-link-hero__breadcrumb):has(.anchor-link-hero__nav li) {
  --spacing-start: 40px;
}
@media (min-width: 768px) {
  .anchor-link-hero:has(.anchor-link-hero__breadcrumb):has(.anchor-link-hero__nav li) {
    --spacing-start: 100px;
  }
}
.anchor-link-hero__background, .anchor-link-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.anchor-link-hero__background {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.anchor-link-hero__overlay {
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .anchor-link-hero__overlay {
    opacity: 1;
    visibility: visible;
  }
}
.anchor-link-hero__container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 768px) {
  .anchor-link-hero__container {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1490px) {
  .anchor-link-hero__container {
    padding: 0 25px;
  }
}
.anchor-link-hero__breadcrumb {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1250px;
  padding-inline: 25px;
  -webkit-padding-before: 20px;
          padding-block-start: 20px;
}
@media (min-width: 768px) {
  .anchor-link-hero__breadcrumb {
    margin-inline: auto;
  }
}
.anchor-link-hero__breadcrumb-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  gap: 8px;
  opacity: 0.7;
  color: inherit;
  font-size: 18px;
  line-height: 1;
}
.anchor-link-hero__breadcrumb-link:hover {
  color: inherit;
}
.anchor-link-hero__breadcrumb-link span {
  position: relative;
  color: inherit;
}
.anchor-link-hero__breadcrumb-link span::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: currentcolor;
  content: "";
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.anchor-link-hero__breadcrumb-link span:hover {
  color: inherit;
}
.anchor-link-hero__breadcrumb-link span:hover::after {
  width: 100%;
}
.anchor-link-hero__breadcrumb-link::before {
  display: block;
  height: 10px;
  width: 10px;
  border-left: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  content: "";
  -webkit-transform: rotate(45deg) translateY(-2px);
          transform: rotate(45deg) translateY(-2px);
}
.anchor-link-hero__content {
  position: relative;
  max-width: 100%;
  -webkit-padding-before: var(--spacing-start);
          padding-block-start: var(--spacing-start);
}
@media (max-width: 768px) {
  .anchor-link-hero__content {
    width: 100% !important;
  }
}
.anchor-link-hero__title {
  margin-bottom: 24px;
  font-weight: 700;
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif;
  font-size: 62px;
  line-height: 72px;
}
@media (max-width: 768px) {
  .anchor-link-hero__title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
.anchor-link-hero__title--large {
  font-size: 62px;
  line-height: 72px;
}
@media (min-width: 576px) {
  .anchor-link-hero__title--large {
    font-size: 96px;
    line-height: 100px;
  }
}
@media (max-width: 768px) {
  .anchor-link-hero__title--large {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .anchor-link-hero__title--large {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.anchor-link-hero__title--small {
  font-size: 52px;
  line-height: 60px;
}
@media (max-width: 768px) {
  .anchor-link-hero__title--small {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .anchor-link-hero__title--small {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
@media (max-width: 1489px) {
  .anchor-link-hero__title--desktop {
    display: none;
  }
}
@media (min-width: 1490px) {
  .anchor-link-hero__title--mobile {
    display: none;
  }
}
.anchor-link-hero__subtitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
}
@media (max-width: 768px) {
  .anchor-link-hero__subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 1489px) {
  .anchor-link-hero__subtitle--desktop {
    display: none;
  }
}
@media (min-width: 1490px) {
  .anchor-link-hero__subtitle--mobile {
    display: none;
  }
}
.anchor-link-hero__nav {
  position: relative;
  -webkit-margin-before: 33px;
          margin-block-start: 33px;
  border-top: 2px solid currentcolor;
}
@media (max-width: 768px) {
  .anchor-link-hero__nav {
    position: relative;
    z-index: 500;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .anchor-link-hero__nav ul {
    position: absolute;
    right: 50%;
    left: 50%;
    width: 100vw;
    margin-right: -50vw;
    margin-left: -50vw;
    padding: 0;
  }
  .anchor-link-hero__nav ul[data-has-custom-bg=true] {
    background-color: inherit !important;
  }
  .anchor-link-hero__nav ul[data-has-custom-bg=true] li a {
    color: inherit !important;
  }
  .anchor-link-hero__nav ul[data-has-custom-bg=true] li a::after {
    opacity: 0.1;
    background-color: currentcolor;
  }
  .anchor-link-hero__nav ul[data-has-custom-bg=true] li a:hover {
    position: relative;
  }
  .anchor-link-hero__nav ul[data-has-custom-bg=true] li a:hover::before {
    position: absolute;
    opacity: 0.1;
    background-color: currentcolor;
    content: "";
    pointer-events: none;
    inset: 0;
  }
  .anchor-link-hero__nav ul[data-has-custom-bg=true] li a:hover::after {
    height: 1px;
    opacity: 0.1;
    background-color: currentcolor;
  }
  .anchor-link-hero__nav ul:not([data-has-custom-bg=true]) {
    background-color: #f5f7f9;
  }
  .anchor-link-hero__nav ul:not([data-has-custom-bg=true]) li a {
    color: #000;
  }
  .anchor-link-hero__nav ul:not([data-has-custom-bg=true]) li a::after {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .anchor-link-hero__nav ul:not([data-has-custom-bg=true]) li a:hover {
    position: relative;
  }
  .anchor-link-hero__nav ul:not([data-has-custom-bg=true]) li a:hover::before {
    position: absolute;
    opacity: 0.1;
    background-color: currentcolor;
    content: "";
    pointer-events: none;
    inset: 0;
  }
  .anchor-link-hero__nav ul:not([data-has-custom-bg=true]) li a:hover::after {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.anchor-link-hero__nav ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 2rem;
  gap: 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .anchor-link-hero__nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 0;
    gap: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: none;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1019607843), 0 4px 4px 0 rgba(0, 0, 0, 0.0901960784), 0 9px 5px 0 rgba(0, 0, 0, 0.0509803922), 0 16px 6px 0 rgba(0, 0, 0, 0.0117647059), 0 25px 7px 0 rgba(0, 0, 0, 0);
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1019607843), 0 4px 4px 0 rgba(0, 0, 0, 0.0901960784), 0 9px 5px 0 rgba(0, 0, 0, 0.0509803922), 0 16px 6px 0 rgba(0, 0, 0, 0.0117647059), 0 25px 7px 0 rgba(0, 0, 0, 0);
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .anchor-link-hero__nav ul li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .anchor-link-hero__nav ul li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 25px;
    color: #000;
    text-align: left;
  }
  .anchor-link-hero__nav ul li a::after {
    position: absolute;
    right: 25px;
    bottom: 0;
    left: 25px;
    height: 1px;
    width: auto;
    background-color: rgba(0, 0, 0, 0.1);
    content: "";
    -webkit-transition: none;
    transition: none;
  }
  .anchor-link-hero__nav ul li a:hover {
    position: relative;
  }
  .anchor-link-hero__nav ul li a:hover::before {
    position: absolute;
    opacity: 0.1;
    background-color: currentcolor;
    content: "";
    pointer-events: none;
    inset: 0;
  }
  .anchor-link-hero__nav ul li a:hover::after {
    height: 1px;
    opacity: 0.1;
    background-color: currentcolor;
  }
  .anchor-link-hero__nav ul li:last-child a::after {
    display: none;
  }
}
.anchor-link-hero__nav ul li {
  margin-bottom: 0;
  list-style: none;
}
.anchor-link-hero__nav ul li a {
  position: relative;
  color: inherit;
  font-family: FFScalaSansWebRegular, sans-serif;
  font-size: 18px;
  line-height: 21px;
  text-decoration: none;
}
@media (min-width: 769px) {
  .anchor-link-hero__nav ul li a {
    padding-bottom: 5px;
  }
}
@media (min-width: 769px) {
  .anchor-link-hero__nav ul li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: currentcolor;
    content: "";
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
  }
}
.anchor-link-hero__nav ul li a:hover::after, .anchor-link-hero__nav ul li a:focus::after, .anchor-link-hero__nav ul li a:active::after {
  width: 100%;
}
@media (min-width: 769px) {
  .anchor-link-hero__nav ul {
    padding: 40px 25px;
  }
}
.anchor-link-hero__nav.active ul {
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.anchor-link-hero__nav-toggle {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 24px 25px;
  color: inherit;
  font-size: 1.125rem;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 768px) {
  .anchor-link-hero__nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
  }
}
.anchor-link-hero__nav-toggle span {
  margin-right: 1rem;
}
.anchor-link-hero__nav-toggle .chevron {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.anchor-link-hero__nav-toggle .chevron.open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.anchor-link-hero.theme1 {
  position: relative;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .anchor-link-hero.theme1 .anchor-link-hero__container {
    bottom: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .anchor-link-hero.theme1 .anchor-link-hero__content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .anchor-link-hero.theme1 .anchor-link-hero__subtitle {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
.anchor-link-hero.theme2 {
  position: relative;
}
@media (max-width: 768px) {
  .anchor-link-hero.theme2 {
    height: auto;
  }
  .anchor-link-hero.theme2 .anchor-link-hero__nav ul:not([data-has-custom-bg=true]) li a {
    color: #000 !important;
  }
}
@media (min-width: 768px) {
  .anchor-link-hero.theme2 {
    --spacing-start: 90px;
  }
}
.anchor-link-hero.theme2 .anchor-link-hero__container {
  position: relative;
  top: 0;
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 768px) {
  .anchor-link-hero.theme2 .anchor-link-hero__container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
  }
}
.anchor-link-hero.theme2 .anchor-link-hero__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}
@media (max-width: 768px) {
  .anchor-link-hero.theme2 .anchor-link-hero__content {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .anchor-link-hero.theme2 .anchor-link-hero__content {
    max-width: 670px;
  }
}
.anchor-link-hero.theme2 .anchor-link-hero__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .anchor-link-hero.theme2 .anchor-link-hero__overlay {
    clip-path: polygon(0 0, calc(50% + 335px) 0, calc(50% + 335px) 100%, 0 100%);
  }
}
.anchor-link-hero.theme2 .anchor-link-hero__subtitle {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 768px) {
  .anchor-link-hero.theme2 .anchor-link-hero__subtitle {
    font-size: 32px;
    line-height: 38px;
  }
}
.anchor-link-hero.theme2 .anchor-link-hero__nav {
  -webkit-margin-before: var(--spacing-start);
          margin-block-start: var(--spacing-start);
}
.anchor-link-hero--content-overlay-only .anchor-link-hero__overlay {
  right: 0;
  left: -100vw;
  width: auto;
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .anchor-link-hero--content-overlay-only .anchor-link-hero__overlay {
    right: 0;
    height: 100%;
  }
}
@media (min-width: 769px) {
  .anchor-link-hero--content-overlay-only .anchor-link-hero__overlay {
    right: calc(100% - 670px - 113px);
    height: 100%;
  }
}
.anchor-link-hero--content-overlay-only .anchor-link-hero__content {
  position: relative;
  z-index: 3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding-right: 113px;
}
@media (max-width: 768px) {
  .anchor-link-hero--content-overlay-only .anchor-link-hero__content {
    width: 100%;
    padding-right: 0;
  }
}
.anchor-link-hero--content-overlay-only.theme2 .anchor-link-hero__container {
  top: 0;
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 500px;
}
.anchor-link-hero--content-overlay-only.theme2 .anchor-link-hero__content {
  width: 670px;
  max-width: 100%;
  margin: 0;
  padding-right: 113px;
}
@media (max-width: 768px) {
  .anchor-link-hero--content-overlay-only.theme2 .anchor-link-hero__content {
    width: 100%;
    padding-right: 0;
  }
}
.anchor-link-hero--content-overlay-only.theme2 .anchor-link-hero__overlay {
  height: 100%;
}
@media (min-width: 769px) {
  .anchor-link-hero--content-overlay-only.theme2 .anchor-link-hero__overlay {
    right: calc(100% - 670px - 113px);
  }
}

.sshr__container-full-bleed {
  margin: 0;
  padding: 0;
}
.sshr__container-full-bleed--spaced {
  margin-bottom: 60px;
}
@media (min-width: 480px) {
  .sshr__container-full-bleed--spaced {
    margin-bottom: 80px;
  }
}

.sshr__container-full-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 480px) {
  .sshr__container-full-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1000px) {
  .sshr__container-full-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.sshr__container-full-content--spaced {
  margin-bottom: 60px;
}
@media (min-width: 480px) {
  .sshr__container-full-content--spaced {
    margin-bottom: 80px;
  }
}

.sshr__featured-articles {
  margin-bottom: 40px;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .sshr__featured-articles {
    margin-bottom: 64px;
  }
}
.sshr__featured-articles--show-bar {
  position: relative;
}
.sshr__featured-articles--show-bar .sshr__featured-articles__bar-placeholder {
  background-color: #fbcc11;
  content: "";
  display: block;
  height: 5px;
  width: 42px;
  left: 50%;
  margin-bottom: 16px;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sshr__featured-articles--two-up .sshr__promo {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.sshr__featured-articles--three-up .sshr__promo {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
}
.sshr__featured-articles--has-promo .sshr__featured-articles__items--row-1 {
  margin-bottom: 48px;
}
.sshr__featured-articles--has-promo .sshr__featured-articles__items--row-2 {
  margin-top: 48px;
}
.sshr__remove-next-section-spacing + .sshr__featured-articles {
  margin-top: 0;
}
.sshr__featured-articles__bkg-placeholder {
  display: block;
  height: 280px;
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  z-index: 10;
  width: 100%;
}
@media (min-width: 768px) {
  .sshr__featured-articles__bkg-placeholder {
    height: 600px;
  }
}
.sshr__featured-articles__content-wrapper {
  position: relative;
}
.sshr__featured-articles__description {
  color: #4c4c4e;
  font-family: "FFScalaSansWebRegular";
  font-size: 20px;
  line-height: 1.4;
  margin: 24px auto 0 auto;
}
@media (min-width: 480px) {
  .sshr__featured-articles__description {
    margin-top: 12px;
  }
}
.sshr__featured-articles__header {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 75px;
  text-align: center;
}
@media (min-width: 480px) {
  .sshr__featured-articles__header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1000px) {
  .sshr__featured-articles__header {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 480px) {
  .sshr__featured-articles__header {
    margin-bottom: 32px;
    padding-left: 90px;
    padding-right: 90px;
  }
}
.sshr__featured-articles__items {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  display: none;
}
@media (min-width: 480px) {
  .sshr__featured-articles__items {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1000px) {
  .sshr__featured-articles__items {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .sshr__featured-articles__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sshr__featured-articles__items + .sshr__featured-articles__items {
  margin-top: 48px;
}
.sshr__featured-articles__items .sshr__article {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  height: 385px;
  margin-bottom: 32px;
  max-width: 300px;
}
@media (min-width: 768px) {
  .sshr__featured-articles__items .sshr__article {
    margin-bottom: 0;
    margin-right: 15px;
    max-width: 280px;
  }
}
@media (min-width: 1000px) {
  .sshr__featured-articles__items .sshr__article {
    margin-right: 50px;
  }
}
.sshr__featured-articles__items .sshr__article:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .sshr__featured-articles__items .sshr__article:last-child {
    margin-right: 0;
  }
}
.sshr__featured-articles__items-mobile {
  position: relative;
}
@media (min-width: 768px) {
  .sshr__featured-articles__items-mobile {
    display: none;
  }
}
.sshr__featured-articles__items-mobile .sshr__article {
  height: 385px;
  width: 300px;
}
.sshr__featured-articles__items-mobile .swiper-container {
  z-index: 20;
}
.sshr__featured-articles__items-mobile .swiper-slide {
  display: block;
}
.sshr__featured-articles__promo {
  margin-bottom: 40px;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .sshr__featured-articles__promo {
    margin-bottom: 0;
  }
}
.sshr__featured-articles__promo:last-child {
  margin-bottom: 0;
}
.sshr__featured-articles__slider-container {
  position: relative;
}
.sshr__featured-articles__slider-wrapper .sshr__article {
  margin-bottom: 20px;
  margin-top: 20px;
}
.sshr__featured-articles__title {
  color: #4c4c4e;
  font-family: "FFScalaWebBold";
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 0;
}

.featured-consultants {
  padding: 64px 25px;
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 570px) {
  .featured-consultants {
    padding: 40px 25px;
  }
}
@media (min-width: 1200px) {
  .featured-consultants {
    padding-left: 0;
    padding-right: 0;
  }
}
.featured-consultants__content {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 570px) {
  .featured-consultants__content {
    overflow: hidden;
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 571px) and (max-width: 910px) {
  .featured-consultants__content {
    position: relative;
    width: calc(100vw - 50px);
    max-width: 910px;
    overflow-x: hidden;
    margin-left: 0;
  }
  .featured-consultants__content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 150px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 80%);
    pointer-events: none;
    z-index: 1;
  }
}
@media (min-width: 911px) {
  .featured-consultants__content {
    position: relative;
    width: calc(100vw - 50px);
    max-width: 1335px;
    overflow-x: hidden;
    margin-left: 0;
  }
  .featured-consultants__content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 200px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 80%);
    pointer-events: none;
    z-index: 1;
  }
}
.featured-consultants__content.no-scroll {
  overflow: visible;
  width: 100% !important;
  max-width: 100% !important;
}
.featured-consultants__content.no-scroll::after {
  display: none;
}
.featured-consultants__content.no-scroll .swiper-container,
.featured-consultants__content.no-scroll .featured-consultants__slider {
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible;
}
.featured-consultants__content.no-scroll .featured-consultants__slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
  width: 100% !important;
  margin: 0 auto;
}
.featured-consultants__content.no-scroll .featured-consultants__slide {
  margin-right: 30px !important;
  width: 210px !important;
}
.featured-consultants__content.no-scroll .featured-consultants__slide:last-child {
  margin-right: 0 !important;
}
@media (max-width: 570px) {
  .featured-consultants__content.no-scroll .featured-consultants__slide {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: none !important;
  }
  .featured-consultants__content.no-scroll .featured-consultants__image-wrapper {
    width: 100% !important;
    height: auto !important;
  }
  .featured-consultants__content.no-scroll .featured-consultants__image {
    width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 571px) {
  .featured-consultants .swiper-slide {
    width: 210px !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 210px !important;
            flex: 0 0 210px !important;
  }
}
@media (max-width: 570px) {
  .featured-consultants .swiper-slide {
    width: 100% !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .featured-consultants .swiper-slide .featured-consultants__consultant-link {
    width: 100%;
    display: block;
  }
}
@media (min-width: 911px) {
  .featured-consultants .swiper-slide {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    pointer-events: auto !important;
    cursor: default;
  }
  .featured-consultants .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 571px) and (max-width: 910px) {
  .featured-consultants .swiper-slide {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    pointer-events: auto !important;
    cursor: default;
  }
  .featured-consultants .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 570px) {
  .featured-consultants .swiper-slide {
    pointer-events: auto !important;
    cursor: default;
  }
  .featured-consultants .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.featured-consultants__title {
  font-size: 44px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
  color: #262626;
  margin-bottom: 64px !important;
}
.featured-consultants__heading {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  color: #262626;
  margin-bottom: 24px;
}
.featured-consultants__subtitle {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #4c4c4e;
  max-width: 970px;
  margin: 0 auto 64px;
}
.featured-consultants__footer {
  display: none;
}
.featured-consultants__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 24px;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.featured-consultants__navigation .featured-consultants__cta-link {
  margin-top: 24px;
}
@media (max-width: 570px) {
  .featured-consultants__navigation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-gap: initial;
    gap: initial;
    margin-bottom: 32px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .featured-consultants__navigation .featured-consultants__cta-link {
    margin-top: 48px;
    margin-inline: auto;
  }
  .featured-consultants__navigation .swiper-pagination {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    min-width: 80px;
    max-width: none;
    width: 100%;
  }
  .featured-consultants__navigation.no-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
  .featured-consultants__navigation.no-navigation .featured-consultants__nav {
    display: none;
  }
  .featured-consultants__navigation.no-navigation .swiper-pagination {
    display: none;
  }
  .featured-consultants__navigation.no-navigation .featured-consultants__cta-link {
    margin-top: 0;
  }
}
@media (min-width: 571px) {
  .featured-consultants__navigation .swiper-pagination {
    display: none;
  }
  .featured-consultants__navigation .featured-consultants__cta-link {
    margin-top: 0;
    margin-left: 24px;
  }
  .featured-consultants__navigation.no-navigation {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .featured-consultants__navigation.no-navigation .featured-consultants__nav {
    display: none;
  }
  .featured-consultants__navigation.no-navigation .featured-consultants__cta-link {
    margin-left: 0;
  }
}
.featured-consultants__nav {
  width: 54px;
  height: 54px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  padding: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.featured-consultants__nav svg {
  overflow: visible !important;
}
.featured-consultants__nav svg path {
  fill: #338441;
}
.featured-consultants__nav:hover {
  background-color: #338441;
}
.featured-consultants__nav:hover path {
  fill: #fff;
}
.featured-consultants__nav.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.featured-consultants__name {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #4c4c4e;
  margin-bottom: 4px !important;
  text-align: left;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.featured-consultants__location {
  font-size: 16px;
  line-height: 20px;
  color: #4c4c4e;
  text-align: left;
}
.featured-consultants__cta-link {
  color: #4c4c4e;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  text-transform: uppercase;
  font-family: "FFScalaSansWebBold";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 4px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #338441;
  background-color: transparent;
  min-width: 0;
  white-space: normal;
  word-wrap: break-word;
}
@media (max-width: 570px) {
  .featured-consultants__cta-link {
    width: 100%;
  }
}
.featured-consultants__cta-link:hover {
  background-color: #338441;
  color: #fff;
}
.featured-consultants .swiper-pagination {
  bottom: 0;
  position: relative;
  width: 200px !important;
}
.featured-consultants .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background-color: #d9d9d9;
  opacity: 1;
  margin: 0 6px !important;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: none !important;
          transform: none !important;
}
.featured-consultants .swiper-pagination-bullet-active-next, .featured-consultants .swiper-pagination-bullet-active-prev, .featured-consultants .swiper-pagination-bullet-active-prev-prev, .featured-consultants .swiper-pagination-bullet-active-next-next {
  -webkit-transform: none !important;
          transform: none !important;
}
.featured-consultants .swiper-pagination-bullet-active {
  background-color: #338441;
}
.featured-consultants__consultant-link {
  text-decoration: none;
  display: block;
}
.featured-consultants__consultant-link:hover .featured-consultants__name {
  color: #7cb085;
}
.featured-consultants__image-wrapper {
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width: 570px) {
  .featured-consultants__image-wrapper {
    margin-bottom: 28px;
    width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 571px) {
  .featured-consultants__image-wrapper {
    width: 210px;
    height: 148px;
  }
}
.featured-consultants__image {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 570px) {
  .featured-consultants__image {
    width: 100% !important;
    height: auto !important;
  }
}
.featured-consultants .swiper-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.featured-consultants .swiper-container.swiper-container-initialized.swiper-container-horizontal .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.featured-consultants .swiper-container.swiper-container-initialized.swiper-container-horizontal .swiper-wrapper .swiper-slide {
  height: auto;
}
@media (min-width: 571px) {
  .featured-consultants .swiper-container.swiper-container-initialized.swiper-container-horizontal .swiper-wrapper .swiper-slide {
    margin-right: 0;
  }
}
@media (max-width: 570px) {
  .featured-consultants .swiper-container {
    overflow: hidden;
    width: 100%;
  }
  .featured-consultants .swiper-container .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
}
@media (min-width: 571px) {
  .featured-consultants .featured-consultants__slider {
    padding-left: 0;
  }
}

.sshr__hero {
  height: 80vh;
}
.sshr__hero__background {
  position: absolute;
  height: 100%;
  width: 100%;
}
.sshr__hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sshr__hero__play-pause-button {
  z-index: 201;
  padding: 4px;
  line-height: 0;
  background-color: transparent;
  border: none;
  border-radius: 100px;
}
.sshr__hero__play-pause-button:hover, .sshr__hero__play-pause-button:focus {
  border: 1px dashed #fbcc11;
}
.sshr__hero__play-pause-button .hide-btn {
  display: none;
}
@media (min-width: 480px) {
  .sshr__hero__play-pause-button {
    position: absolute;
    right: 25px;
    bottom: 25px;
  }
}
@media (min-width: 768px) {
  .sshr__hero__play-pause-button {
    right: 50px;
    bottom: 50px;
  }
}
.sshr__hero .sshr__hero-controls {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 479.98px) {
  .sshr__hero .sshr__hero-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding-bottom: 1rem;
  }
}
.sshr__hero .swiper-container {
  height: 100%;
}
.sshr__hero .swiper-pagination {
  position: static;
  z-index: 200;
  padding: 6px 4px;
}
@media (min-width: 480px) {
  .sshr__hero .swiper-pagination {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sshr__hero .swiper-wrapper {
  position: relative;
  z-index: 100;
}
.sshr__hero .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}
.sshr__hero .swiper-slide.swiper-slide-active {
  opacity: 1;
  -webkit-transition: opacity 300ms ease-out;
  transition: opacity 300ms ease-out;
}
.sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
  width: 30%;
  color: #fff;
  background-color: transparent;
  border-radius: 0;
  opacity: 1;
}
.sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fbcc11;
  content: "";
}
.sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}
.sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet .bar-progress {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 3px;
  width: 0;
  background-color: #fbcc11;
}
.sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet .swiper-pagination-bullet-nav-item-text {
  display: none;
  color: #262626;
}
@media (min-width: 768px) {
  .sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet .swiper-pagination-bullet-nav-item-text {
    display: block;
  }
}
.sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet-active::before {
  background-color: #747476;
}
.sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet-active ~ .swiper-pagination-bullet::before {
  background-color: #747476;
}
.sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet-active--state-playing .bar-progress {
  width: 100%;
  -webkit-transition: width 8000ms ease 0s;
  transition: width 8000ms ease 0s;
}
@media (min-width: 480px) {
  .sshr__hero .swiper-pagination-bullets .swiper-pagination-bullet {
    padding: 1rem 0.6rem;
  }
}
@media (min-width: 480px) {
  .sshr__hero .swiper-pagination-bullets {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sshr__hero .swiper-container-initialized .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 69%;
  grid-gap: 30px;
  gap: 30px;
}
.sshr__hero .swiper-container-initialized .swiper-pagination--light .swiper-pagination-bullet-active::before {
  background-color: #fff;
}
.sshr__hero .swiper-container-initialized .swiper-pagination--light .swiper-pagination-bullet-active ~ .swiper-pagination-bullet::before {
  background-color: #fff;
}
.sshr__hero .swiper-container-initialized .swiper-pagination--light .swiper-pagination-bullet .swiper-pagination-bullet-nav-item-text {
  color: #fff;
}

@-webkit-keyframes barProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes barProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide--alignment-left .sshr__hero-slide__actions {
    text-align: left;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide--alignment-left .sshr__hero-slide__body {
    text-align: left;
  }
  .sshr__hero-slide--alignment-left .sshr__hero-slide__body p {
    text-align: left;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide--alignment-left .sshr__hero-slide__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide--alignment-left .sshr__hero-slide__title {
    text-align: left;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide--alignment-right .sshr__hero-slide__actions {
    text-align: right;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide--alignment-right .sshr__hero-slide__body {
    text-align: right;
  }
  .sshr__hero-slide--alignment-right .sshr__hero-slide__body p {
    text-align: right;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide--alignment-right .sshr__hero-slide__content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide--alignment-right .sshr__hero-slide__title {
    text-align: right;
  }
}
.sshr__hero-slide--edit-mode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sshr__hero-slide--edit-mode .sshr__hero-slide__background-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
}
.sshr__hero-slide--edit-mode .sshr__hero-slide__background-preview img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sshr__hero-slide--edit-mode .sshr__hero-slide__actions,
.sshr__hero-slide--edit-mode .sshr__hero-slide__title,
.sshr__hero-slide--edit-mode .sshr__hero-slide__body {
  opacity: 1;
  -webkit-transition: none;
  transition: none;
}
.sshr__hero-slide--edit-mode .sshr__hero-slide__content {
  position: relative;
  z-index: 10;
}
.sshr__hero-slide--light .sshr__hero-slide__title {
  color: #fff;
}
.sshr__hero-slide--light .sshr__hero-slide__body {
  color: #fff;
}
.sshr__hero-slide--light .sshr__hero-slide__actions {
  color: #fff;
}
.sshr__hero-slide__body {
  display: none;
  max-width: 600px;
  color: #262626;
  font-family: "FFScalaSansWebRegular";
  font-size: 30px;
  line-height: 1.266;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 750ms 900ms ease-out;
  transition: opacity 750ms 900ms ease-out;
}
.swiper-slide-active .sshr__hero-slide__body {
  opacity: 1;
}
.sshr__hero-slide__body a {
  color: inherit;
  text-decoration: none;
}
.sshr__hero-slide__body p {
  margin-top: 0;
}
.sshr__hero-slide__body :last-child {
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .sshr__hero-slide__body {
    display: block;
    font-size: 22px;
  }
}
@media (min-width: 480px) and (min-height: 768px) {
  .sshr__hero-slide__body {
    font-size: 30px;
  }
}
.sshr__hero-slide__body-link {
  text-decoration: none;
}
.sshr__hero-slide__actions {
  margin-top: 55px;
  color: #262626;
  font-family: "FFScalaSansWebRegular";
  font-size: 16px;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 750ms 1250ms ease-out;
  transition: opacity 750ms 1250ms ease-out;
}
.swiper-slide-active .sshr__hero-slide__actions {
  opacity: 1;
}
@media (min-width: 480px) {
  .sshr__hero-slide__actions {
    margin-top: 35px;
  }
}
@media (min-width: 480px) and (min-height: 768px) {
  .sshr__hero-slide__actions {
    margin-top: 55px;
  }
}
.sshr__hero-slide__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 95px;
  padding-bottom: 105px;
}
@media (min-width: 480px) {
  .sshr__hero-slide__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1000px) {
  .sshr__hero-slide__content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 480px) {
  .sshr__hero-slide__content {
    padding-top: 50px;
    padding-bottom: 130px;
  }
}
@media (min-width: 480px) and (min-height: 768px) {
  .sshr__hero-slide__content {
    padding-top: 95px;
    padding-bottom: 165px;
  }
}
.sshr__hero-slide__title {
  max-width: 840px;
  margin-bottom: 20px !important;
  color: #262626;
  font-family: "FFScalaWebBold";
  font-size: 52px;
  line-height: 1.136364;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 750ms 550ms ease-out;
  transition: opacity 750ms 550ms ease-out;
}
.swiper-slide-active .sshr__hero-slide__title {
  opacity: 1;
}
.sshr__hero-slide__title a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 480px) {
  .sshr__hero-slide__title--large {
    font-size: 67px;
  }
}
@media (min-width: 480px) and (min-height: 768px) {
  .sshr__hero-slide__title--large {
    font-size: 84px;
  }
}
@media (min-width: 480px) {
  .sshr__hero-slide__title--small {
    font-size: 56px;
  }
}
.sshr__hero-slide__subTitle {
  max-width: 620px;
  font-family: "FFScalaWebBold";
  font-size: 30px;
  font-style: normal;
  line-height: 1.266;
  text-align: center;
}

.sshr__hero-slide__read-more {
  display: inline-block;
  min-width: 220px;
  padding: 13px 45px 10px;
  color: #4c4c4e;
  font-family: "FFScalaSansWebBold";
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 4px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #338441;
  color: #fff;
  background-color: #fbcc11;
  border-color: #fbcc11;
}
.sshr__hero-slide__read-more:hover, .sshr__hero-slide__read-more:focus, .sshr__hero-slide__read-more:active {
  color: #ffffff;
  background-color: #338441;
}
.sshr__hero-slide__read-more.sshr__hero-slide__read-more--blue {
  background-color: #00396f;
  border-color: #00396f;
}
.sshr__hero-slide__read-more.sshr__hero-slide__read-more--green {
  background-color: #338441;
  border-color: #338441;
}
.sshr__hero-slide__read-more.sshr__hero-slide__read-more--light-gray {
  background-color: #f5f7f9;
  border-color: #f5f7f9;
}
.sshr__hero-slide__read-more.sshr__hero-slide__read-more--pink {
  background-color: #ffc0cb;
  border-color: #ffc0cb;
}
.sshr__hero-slide__read-more.sshr__hero-slide__read-more--red {
  background-color: #971c0b;
  border-color: #971c0b;
}
.sshr__hero-slide__read-more.sshr__hero-slide__read-more--yellow {
  background-color: #fbcc11;
  border-color: #fbcc11;
}
.sshr__hero-slide__read-more.sshr__hero-slide__read-more--white {
  background-color: #fff;
  border-color: #fff;
}
.sshr__hero-slide__read-more.sshr__hero-slide__read-more--outline {
  background-color: inherit;
}
.sshr__hero-slide__read-more:hover, .sshr__hero-slide__read-more:focus, .sshr__hero-slide__read-more:active {
  color: #262626;
  background-color: rgba(255, 255, 255, 0.7);
}
.sshr__hero-slide--light .sshr__hero-slide__read-more:hover, .sshr__hero-slide--light .sshr__hero-slide__read-more:focus, .sshr__hero-slide--light .sshr__hero-slide__read-more:active {
  background-color: #fff;
}

.sshr__hero-slide-bg-video {
  position: absolute;
  z-index: -1;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  inset: 0;
  pointer-events: none;
}
.sshr__hero-slide-bg-video video {
  height: 120%;
  width: 100%;
  -webkit-transform: scale(2);
          transform: scale(2);
}
@media (min-width: 1000px) {
  .sshr__hero-slide-bg-video video {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@media (min-width: 768px) {
  .sshr__hero-slide-bg-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sshr__hero-slide-bg-image-container {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .sshr__hero-slide--background-video .sshr__hero-slide-bg-image-container {
    display: none;
  }
}

.sshr__hero-slide-bg-image {
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: var(--slide-bg-image);
  background-image: var(--slide-bg-image-mobile, var(--slide-bg-image));
  background-position: center;
  background-size: cover;
}
.sshr__hero-slide-bg-image-container--effect-zoom .sshr__hero-slide-bg-image {
  -webkit-animation: backgroundImageZoom 12s ease-in-out infinite alternate;
          animation: backgroundImageZoom 12s ease-in-out infinite alternate;
}
.sshr__hero-slide-bg-image-container--effect-motion .sshr__hero-slide-bg-image {
  top: -75px;
  left: -75px;
  height: calc(100% + 150px);
  width: calc(100% + 150px);
  opacity: 0.5;
}
@media (min-width: 480px) {
  .sshr__hero-slide-bg-image {
    background-image: var(--slide-bg-image-mobile);
    background-image: var(--slide-bg-image, var(--slide-bg-image-mobile));
  }
}

.sshr__hero-slide-motion-effect-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

@-webkit-keyframes backgroundImageZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes backgroundImageZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.sshr__horizontal-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 480px) {
  .sshr__horizontal-promo {
    background-color: #f5f7f9;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 400px;
  }
}
@media (max-width: 479.98px) {
  .sshr__horizontal-promo--feature .sshr__horizontal-promo__content {
    margin-bottom: 8px;
    min-height: 0;
    padding: 50px 25px;
  }
  .sshr__horizontal-promo--feature .sshr__horizontal-promo__content-wrapper {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -60px;
  }
}
.sshr__horizontal-promo--feature .sshr__horizontal-promo__description p {
  margin-top: 0;
  color: #4c4c4e;
  font-size: 20px;
  font-family: "FFScalaSansWebRegular";
  line-height: 1.4;
}
.sshr__horizontal-promo--feature .sshr__horizontal-promo__description :last-child {
  margin-bottom: 0;
}
.sshr__horizontal-promo--feature .sshr__horizontal-promo__title {
  color: #338441;
}
.sshr__horizontal-promo--feature .sshr__horizontal-promo__title a:hover {
  color: #7cb085;
}
@media (min-width: 1000px) {
  .sshr__horizontal-promo--right .sshr__horizontal-promo__content {
    -ms-flex-item-align: end;
        align-self: flex-end;
    padding-left: 0;
    padding-right: 100px;
  }
}
@media (min-width: 480px) {
  .sshr__horizontal-promo--right .sshr__horizontal-promo__content-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 480px) {
  .sshr__horizontal-promo--right .sshr__horizontal-promo__picture {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.sshr__horizontal-promo--show-bar .sshr__horizontal-promo__bar-placeholder {
  background-color: #fbcc11;
  content: "";
  display: block;
  height: 5px;
  width: 42px;
  margin-bottom: 12px;
  position: relative;
}
.sshr__horizontal-promo__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 365px;
  padding: 90px 15px;
}
@media (min-width: 480px) {
  .sshr__horizontal-promo__content {
    padding: 30px 25px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    max-width: 500px;
    min-height: auto;
  }
}
@media (min-width: 1000px) {
  .sshr__horizontal-promo__content {
    padding-left: 100px;
    padding-right: 0;
  }
}
.sshr__horizontal-promo__content-wrapper {
  background-color: #f5f7f9;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
}
@media (min-width: 480px) {
  .sshr__horizontal-promo__content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    min-height: auto;
    width: 50%;
  }
}
.sshr__horizontal-promo__cta {
  margin-top: 25px;
}
.sshr__horizontal-promo__cta {
  display: inline-block;
  min-width: 220px;
  padding: 13px 45px 10px;
  color: #4c4c4e;
  font-family: "FFScalaSansWebBold";
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 4px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid #338441;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.sshr__horizontal-promo__cta:hover, .sshr__horizontal-promo__cta:focus, .sshr__horizontal-promo__cta:active {
  color: #ffffff;
  background-color: #338441;
}
.sshr__horizontal-promo__date {
  color: #818183;
  font-family: "FFScalaSansWebRegular";
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.43;
  margin-top: 8px;
  text-transform: uppercase;
}
.sshr__horizontal-promo__description {
  margin-top: 16px;
}
.sshr__horizontal-promo__description :first-child {
  margin-top: 0;
}
.sshr__horizontal-promo__picture {
  height: 300px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 480px) {
  .sshr__horizontal-promo__picture {
    height: auto;
    width: 50%;
  }
}
.sshr__horizontal-promo__picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.sshr__horizontal-promo__title {
  color: #262626;
  font-family: "FFScalaSansWebBold";
  font-size: 30px;
  line-height: 1.17;
  margin-bottom: 0 !important;
}
.sshr__horizontal-promo__title a {
  color: inherit;
  text-decoration: none;
}

.sshr__multiple-promo {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 80px;
  margin-top: 80px;
}
@media (min-width: 480px) {
  .sshr__multiple-promo {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1000px) {
  .sshr__multiple-promo {
    padding-left: 0;
    padding-right: 0;
  }
}
.ssa__container .sshr__multiple-promo {
  clear: both;
}
.batw-related-content .sshr__multiple-promo {
  margin-top: 0;
}
@media (min-width: 480px) {
  .sshr__multiple-promo {
    margin-bottom: 64px;
    margin-top: 64px;
  }
  .batw-related-content .sshr__multiple-promo {
    margin-top: 0;
  }
}
.sshr__container-full-content .sshr__multiple-promo {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.site-content + .sshr__multiple-promo {
  margin-top: 0;
}
.sshr__multiple-promo__description {
  color: #4c4c4e;
  font-family: "FFScalaSansWebRegular";
  font-size: 20px;
  line-height: 1.4;
  margin: 24px auto 0 auto;
}
@media (min-width: 480px) {
  .sshr__multiple-promo__description {
    margin-top: 12px;
  }
}
.sshr__multiple-promo__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 40px;
}
@media (min-width: 480px) {
  .sshr__multiple-promo__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 20px;
  }
}
.sshr__multiple-promo__title,
.sshr__multiple-promo h2.sshr__multiple-promo__title {
  color: #00396f;
  font-family: "FFScalaWebBold";
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 0;
}
.sshr__page-homepage .sshr__multiple-promo__title,
.sshr__page-homepage .sshr__multiple-promo h2.sshr__multiple-promo__title {
  color: #4c4c4e;
}
.sshr__multiple-promo .sshr__promo {
  margin-bottom: 32px;
}
@media (min-width: 480px) {
  .sshr__multiple-promo .sshr__promo {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
.sshr__multiple-promo .sshr__promo:last-child {
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .sshr__multiple-promo .sshr__promo:last-child {
    margin-right: 0;
  }
}
.sshr__multiple-promo--centered .sshr__multiple-promo__header {
  text-align: center;
}
@media (min-width: 480px) {
  .sshr__multiple-promo--centered .sshr__multiple-promo__header {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media (min-width: 480px) {
  .sshr__multiple-promo--centered .sshr__multiple-promo__items {
    padding-top: 30px;
  }
}
.sshr__multiple-promo--centered .sshr__multiple-promo__title {
  font-size: 40px;
}
.sshr__multiple-promo--show-bar {
  position: relative;
}
.sshr__multiple-promo--show-bar .sshr__multiple-promo__bar-placeholder {
  background-color: #fbcc11;
  content: "";
  display: block;
  height: 5px;
  width: 42px;
  left: 50%;
  margin-bottom: 16px;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sshr__multiple-promo--two-up .sshr__promo {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.sshr__multiple-promo--three-up .sshr__promo {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media (min-width: 480px) {
  .sshr__multiple-promo--three-up .sshr__promo {
    min-width: calc(33% - 30px);
  }
}
@media (min-width: 480px) {
  .sshr__multiple-promo--four-up .sshr__multiple-promo__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .sshr__multiple-promo--four-up {
    margin-bottom: 60px;
  }
}
@media (min-width: 1000px) {
  .sshr__multiple-promo--four-up {
    margin-bottom: 64px;
  }
}
@media (min-width: 480px) {
  .sshr__multiple-promo--four-up .sshr__promo {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
@media (min-width: 1000px) {
  .sshr__multiple-promo--four-up .sshr__promo {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
    margin-bottom: 0;
  }
}
.sshr__multiple-promo--four-up .sshr__promo__body p {
  font-size: 16px;
}

.sshr__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sshr__promo--16x9 .sshr__promo__picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
}
.sshr__promo--16x9.sshr__promo--no-link .sshr__promo__picture {
  padding-bottom: 56.2%;
  position: relative;
}
.sshr__promo--16x9:not(.sshr-promo--no-link) .sshr__promo__picture a {
  padding-bottom: 56.2%;
  position: relative;
}
.sshr__promo--has-zoom .sshr__promo__picture img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.sshr__promo--has-zoom .sshr__promo__picture img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sshr__promo--has-zoom.sshr__promo--no-link .sshr__promo__picture {
  overflow: hidden;
}
.sshr__promo__body {
  display: none;
}
@media (min-width: 1000px) {
  .sshr__promo__body {
    display: block;
  }
}
.sshr__promo__body p {
  color: #4c4c4e;
  font-size: 18px;
  font-family: "FFScalaSansWebRegular";
  line-height: 1.45;
  margin: 0 0 8px;
}
.sshr__promo__body p:last-child {
  margin-bottom: 0;
}
.sshr__promo__date {
  display: none;
  margin-bottom: 12px;
}
@media (min-width: 1000px) {
  .sshr__promo__date {
    display: block;
  }
}
.sshr__promo__date p {
  color: #818183;
  font-family: "FFScalaSansWebRegular";
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.43;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.sshr__promo__date p:last-child {
  margin-bottom: 0;
}
.sshr__promo__picture {
  position: relative;
  margin-bottom: 18px;
}
.sshr__promo__picture img {
  height: auto;
  max-width: none;
  width: 100%;
  display: block;
}
.sshr__promo__picture a {
  display: block;
  overflow: hidden;
}
.sshr__promo__title {
  margin-bottom: 8px;
}
.sshr__promo__title h2 {
  color: #338441;
  font-family: "FFScalaSansWebBold";
  font-size: 24px;
  line-height: 1.16;
  margin-bottom: 0;
}
.sshr__promo__title a {
  color: #338441;
  display: block;
  text-decoration: none;
}
.sshr__promo__title a:hover {
  color: #7cb085;
}

.practice-callout-detail {
  margin-left: auto;
  margin-right: auto;
  padding-block: 64px;
  padding-inline: 25px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.practice-callout-detail__container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.practice-callout-detail p {
  margin: 0;
}
.practice-callout-detail__title {
  margin-bottom: 56px !important;
  font-size: 44px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
  color: #262626;
}
.practice-callout-detail__title + .practice-callout-detail__sub-title {
  margin-bottom: 56px;
}
.practice-callout-detail__title:has(+ .practice-callout-detail__sub-title) {
  margin-bottom: 24px !important;
}
.practice-callout-detail__sub-title {
  font-size: 20px;
  line-height: 28px;
  font-family: "FFScalaWebRegular";
  text-align: center;
}
.practice-callout-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 50px;
  gap: 50px;
  max-width: 1170px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .practice-callout-detail__grid {
    grid-template-columns: 1fr;
  }
}
.practice-callout-detail__grid:has(> :only-child) {
  grid-template-columns: minmax(300px, 500px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.practice-callout-detail__grid .practice-callout-detail__accent-bar {
  width: 100px;
  opacity: 1;
}
.practice-callout-detail__grid .practice-callout-detail__item--with-icon img {
  margin-bottom: 16px !important;
  display: block;
}
.practice-callout-detail__grid--animate .practice-callout-detail__accent-icon {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.practice-callout-detail__item {
  position: relative;
  padding-top: 26px;
}
.practice-callout-detail__item--with-icon {
  padding-top: 48px;
}
.practice-callout-detail__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  background-color: #ffd100;
}
.practice-callout-detail__item-title,
.practice-callout-detail strong,
.practice-callout-detail h3,
.practice-callout-detail h5 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 16px;
  color: #262626;
  display: inline-block;
}
.practice-callout-detail__description {
  font-size: 18px;
  line-height: 26px;
  color: #4c4c4e;
  font-family: "FFScalaWebBold";
  padding-bottom: 35px;
}
.practice-callout-detail__description ul {
  margin-top: 16px;
  padding-left: 20px;
}
.practice-callout-detail__description ul li {
  margin-bottom: 8px;
}
.practice-callout-detail__description ul li:last-child {
  margin-bottom: 0;
}
.practice-callout-detail__accent-icon {
  position: absolute;
  top: -23px;
  left: 0;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.sshr__service-line {
  padding-bottom: 28px;
  padding-top: 28px;
}
@media (min-width: 768px) {
  .sshr__service-line {
    padding-bottom: 50px;
    padding-top: 60px;
  }
}
.sshr__service-line:not(.sshr__service-line--show-expanded) .sshr__service-line__bar-placeholder {
  display: none;
}
@media (min-width: 768px) {
  .sshr__service-line:not(.sshr__service-line--show-expanded) .sshr__service-line__bar-placeholder {
    display: block;
  }
}
.sshr__service-line--show-expanded .sshr__service-line__action-expand {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sshr__service-line--show-expanded .sshr__service-line__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sshr__service-line__actions {
  display: block;
}
@media (min-width: 768px) {
  .sshr__service-line__actions {
    display: none;
  }
}
.sshr__service-line__action-expand {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  margin: 0 0 0 10px;
  padding: 0;
  -webkit-transition: -webkit-transform 250ms ease-out;
  transition: -webkit-transform 250ms ease-out;
  transition: transform 250ms ease-out;
  transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;
}
@media (min-width: 768px) {
  .sshr__service-line__action-expand {
    display: none;
  }
}
.sshr__service-line__bar-placeholder {
  background-color: #fbcc11;
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  margin-top: 30px;
}
.sshr__service-line__item {
  color: #fff;
  font-family: "FFScalaSansWebRegular";
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2.8px;
  line-height: 1.4;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .sshr__service-line__item {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sshr__service-line__item:first-child:nth-last-child(1) {
    width: 100%;
  }
  .sshr__service-line__item:first-child:nth-last-child(2), .sshr__service-line__item:first-child:nth-last-child(2) ~ .sshr__service-line__item {
    width: 50%;
  }
  .sshr__service-line__item:first-child:nth-last-child(3), .sshr__service-line__item:first-child:nth-last-child(3) ~ .sshr__service-line__item {
    width: 33.3333333333%;
  }
  .sshr__service-line__item:first-child:nth-last-child(4), .sshr__service-line__item:first-child:nth-last-child(4) ~ .sshr__service-line__item {
    width: 25%;
  }
  .sshr__service-line__item:first-child:nth-last-child(5), .sshr__service-line__item:first-child:nth-last-child(5) ~ .sshr__service-line__item {
    width: 20%;
  }
  .sshr__service-line__item:first-child:nth-last-child(6), .sshr__service-line__item:first-child:nth-last-child(6) ~ .sshr__service-line__item {
    width: 16.6666666667%;
  }
}
.sshr__service-line__item:last-child {
  margin-bottom: 0;
}
.sshr__service-line__item a {
  color: inherit;
  text-decoration: none;
}
.sshr__service-line__item a:hover {
  color: #fbcc11;
}
.sshr__service-line__items {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 35px;
  padding: 0 20px 20px 20px;
}
@media (min-width: 768px) {
  .sshr__service-line__items {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .sshr__service-line__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}
.sshr__service-line__title,
.sshr__service-line h2.sshr__service-line__title {
  color: #fff;
  font-family: "FFScalaWebBold";
  font-size: 28px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .sshr__service-line__title,
  .sshr__service-line h2.sshr__service-line__title {
    font-size: 40px;
  }
}
.sshr__service-line__title-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sshr__service-line__wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 480px) {
  .sshr__service-line__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1000px) {
  .sshr__service-line__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.sshr__trending-topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sshr__trending-topics__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3px;
}
.sshr__trending-topics__action-item {
  padding-right: 13px;
  position: relative;
  color: #262626;
  font-family: "FFScalaSansWebBold";
  font-size: 15px;
  line-height: 25px;
  height: 25px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
}
.sshr__trending-topics__action-item::after {
  font-size: 0;
  background-image: url("../images/arrow-right-green.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
}
.sshr__trending-topics__action-item:active, .sshr__trending-topics__action-item:focus, .sshr__trending-topics__action-item:hover {
  color: #368644;
}
.sshr__trending-topics__action-item::after {
  margin-top: -2px;
}
.sshr__trending-topics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #f5f7f9;
  padding: 35px 15px;
}
@media (min-width: 480px) {
  .sshr__trending-topics__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 30px 32px 15px;
  }
}
.sshr__trending-topics__list-item {
  margin-bottom: 18px;
}
@media (min-width: 480px) {
  .sshr__trending-topics__list-item {
    margin-bottom: 15px;
    margin-right: 50px;
  }
  .sshr__trending-topics__list-item:last-child {
    margin-left: 0;
  }
}
.sshr__trending-topics__list-item:last-child {
  margin-bottom: 0;
}
.sshr__trending-topics__list-item a {
  padding-right: 13px;
  position: relative;
  color: #262626;
  display: inline-block;
  font-family: "FFScalaSansWebBold";
  font-size: 18px;
  text-decoration: none;
}
.sshr__trending-topics__list-item a::after {
  font-size: 0;
  background-image: url("../images/arrow-right-green.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
}
.sshr__trending-topics__list-item a:active, .sshr__trending-topics__list-item a:focus, .sshr__trending-topics__list-item a:hover {
  color: #368644;
}
.sshr__trending-topics__list-item a::after {
  margin-top: -1px;
}
.sshr__trending-topics__header {
  border-bottom: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 15px;
  position: relative;
}
.sshr__trending-topics__title {
  margin-bottom: 0;
}
.sshr__trending-topics__title h2 {
  color: #262626;
  font-family: "FFScalaSansWebBold";
  font-size: 24px;
  line-height: 1.16;
  margin-bottom: 0;
  padding-bottom: 10px;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.consultant-banner {
  position: relative;
  top: -4px;
  padding: 0 3%;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #262626;
  font-size: 1rem;
  background-color: #E7EDF2;
}
.consultant-banner::after {
  clear: both;
  content: "";
  display: block;
}
@media (max-width: 767.98px) {
  .consultant-banner {
    padding-bottom: 45px;
    padding-top: 0;
  }
}

.consultant-banner--white-text {
  color: #ffffff !important;
  border-bottom: none;
  background-color: #00396f;
}

.consultant-banner__content {
  display: block;
}
@media (max-width: 767.98px) {
  .consultant-banner__content {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1px;
  }
}
@media (max-width: 479.98px) {
  .consultant-banner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
  }
}

.consultant-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 100%;
}
@media (max-width: 767.98px) {
  .consultant-banner__background {
    position: relative;
    display: block;
    max-height: 190px;
    margin-left: -3.2%;
  }
  .consultant-banner__background img {
    position: relative;
    max-height: inherit;
    width: 106.5%;
    -o-object-position: top;
       object-position: top;
  }
}
@media (max-width: 479.98px) {
  .consultant-banner__background {
    display: none;
  }
  .consultant-banner__background.no-headshot {
    display: block;
  }
}
.consultant-banner__background img {
  position: absolute;
  right: 0;
  height: auto;
  min-height: 100%;
  max-height: 100%;
  width: auto;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.consultant-banner__headshot {
  position: relative;
  right: calc(56% - 360px);
  width: 50%;
  max-width: 300px;
  float: right;
}
@media (min-width: 1060px) {
  .consultant-banner__headshot {
    right: calc(100% - 530px - 360px);
  }
}
@media (max-width: 767.98px) {
  .consultant-banner__headshot {
    right: 0;
    width: 46%;
    float: right;
    margin-top: 30px;
    margin-bottom: 40px;
    margin-left: 3%;
  }
  .consultant-banner__headshot img {
    width: 100%;
  }
}
@media (max-width: 479.98px) {
  .consultant-banner__headshot {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 113.2%;
    max-width: none;
    margin: 0 0 0 -6.6%;
  }
  .consultant-banner__headshot.mobile-only {
    display: block;
  }
}
.consultant-banner__headshot img {
  max-width: 100%;
}
.consultant-banner__headshot.mobile-only {
  display: none;
}

.consultant-banner__text,
.consultant-banner__details {
  position: relative;
  width: 44%;
  max-width: 530px;
  clear: left;
  float: left;
  margin-bottom: 20px;
}
@media (min-width: 1060px) {
  .consultant-banner__text,
  .consultant-banner__details {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .consultant-banner__text,
  .consultant-banner__details {
    width: 100%;
    max-width: none;
    float: none;
    margin-top: 30px;
  }
  .consultant-banner__text .consultant-banner__share-bar,
  .consultant-banner__details .consultant-banner__share-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.consultant-banner__text.no-headshot,
.consultant-banner__details.no-headshot {
  width: 100%;
}
.consultant-banner__text .consultant-banner__share-bar,
.consultant-banner__details .consultant-banner__share-bar {
  display: none;
}

.consultant-banner__text--title {
  margin-bottom: 0.5em;
  margin-bottom: 10px;
  color: #00396f;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.114;
  letter-spacing: normal;
}
@media (max-width: 767.98px) {
  .consultant-banner__text--title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.consultant-banner__text--group,
.consultant-banner__text--office {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .consultant-banner__text--group,
  .consultant-banner__text--office {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0;
  }
}

.consultant-banner__text--office {
  color: #338441;
}
.consultant-banner__text--office .divider::before {
  display: inline-block;
  height: 5px;
  width: 5px;
  margin: 0 4px 2px;
  border-radius: 50%;
  background-color: #338441;
  content: "";
}

.consultant-banner__text--summary {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 1.2em;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .consultant-banner__text--summary {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    max-width: none;
    clear: both;
  }
}

.consultant-banner__share-bar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
  max-width: 50%;
  clear: left;
  float: left;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .consultant-banner__share-bar {
    display: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    max-width: none;
    float: none;
    margin-top: 40px;
    margin-right: 0;
  }
  .consultant-banner__share-bar.tablet-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
  }
}
@media (max-width: 479.98px) {
  .consultant-banner__share-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .consultant-banner__share-bar.tablet-only {
    display: none;
  }
}
.consultant-banner__share-bar.tablet-only {
  display: none;
}
.consultant-banner__share-bar.pull-right {
  right: calc(56% - 360px);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  clear: right;
  float: right;
  margin-top: 20px;
}
@media (min-width: 1060px) {
  .consultant-banner__share-bar.pull-right {
    right: calc(100% - 530px - 360px);
  }
}
@media (max-width: 767.98px) {
  .consultant-banner__share-bar.pull-right {
    right: 0;
  }
}
.consultant-banner__share-bar .share-bar__title {
  width: 100px;
  color: #00396f;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.consultant-banner__share-bar .share-bar {
  float: none;
  text-align: left;
}
@media (max-width: 599.98px) {
  .consultant-banner__share-bar .share-bar .icon {
    width: 26px;
    height: 26px;
    background-size: 26px;
  }
}
@media (max-width: 479.98px) {
  .consultant-banner__share-bar .share-bar .icon {
    width: 38px;
    height: 38px;
    background-size: 38px;
  }
}
.consultant-banner__share-bar .share-bar li {
  margin-top: 0;
}

.consultant-banner__share-bar .share-bar__download {
  display: none;
}

.board-index-consultant-banner {
  position: relative;
  top: -10px;
  padding: 0 3%;
  color: #ffffff;
  font-size: 1rem;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.board-index-consultant-banner::after {
  clear: both;
  content: "";
  display: block;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.consultant-banner-rev {
  --total-padding: 50px;
  --top-silo-offset: 14px;
  position: relative;
  -webkit-margin-before: -4px;
          margin-block-start: -4px;
  color: #262626;
  background-color: transparent;
}
@media (min-width: 600px) {
  .consultant-banner-rev {
    -webkit-padding-before: calc(var(--total-padding) - var(--top-silo-offset));
            padding-block-start: calc(var(--total-padding) - var(--top-silo-offset));
  }
}
.consultant-banner-rev .consultant-banner__text {
  width: unset;
}
.consultant-banner-rev .consultant-banner__text--title {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  text-wrap: balance;
}

.consultant-banner-rev__content {
  position: relative;
  z-index: 2;
  -webkit-padding-start: 3%;
          padding-inline-start: 3%;
}
@media (min-width: 600px) {
  .consultant-banner-rev__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1060px) {
  .consultant-banner-rev__content {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.consultant-banner-rev__content::after {
  content: none;
}

.consultant-banner-rev__info {
  -webkit-padding-start: 3%;
          padding-inline-start: 3%;
  -webkit-padding-before: 50px;
          padding-block-start: 50px;
}
@media (min-width: 600px) {
  .consultant-banner-rev__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: var(--top-silo-offset) var(--total-padding);
  }
}
@media (min-width: 768px) {
  .consultant-banner-rev__info {
    -webkit-padding-start: 0.75vw;
            padding-inline-start: 0.75vw;
  }
}
@media (min-width: 1060px) {
  .consultant-banner-rev__info {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-padding-after: 50px;
            padding-block-end: 50px;
  }
}
@media (max-width: 599.98px) {
  .consultant-banner-rev__info {
    -webkit-margin-after: 32px;
            margin-block-end: 32px;
  }
}

.consultant-banner-rev__share-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-before: auto;
          margin-block-start: auto;
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}
@media (min-width: 768px) {
  .consultant-banner-rev__share-bar {
    -webkit-margin-before: auto;
            margin-block-start: auto;
  }
}
.consultant-banner-rev__share-bar .share-bar__title {
  padding-top: 4px;
}
.consultant-banner-rev__share-bar .share-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.consultant-banner-rev__share-bar .share-bar .icon {
  width: 24px;
  height: 24px;
  background-size: contain;
}

.consultant-banner-rev__info:has(.consultant-banner-rev__share-bar--lang) .consultant-banner-rev__share-bar--lang {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 40px;
}
.consultant-banner-rev__info:has(.consultant-banner-rev__share-bar--lang) .consultant-banner-rev__share-bar {
  margin-top: 40px;
}

.consultant-banner-rev__headshot {
  max-width: 495px;
  margin-inline: auto;
}
@media (min-width: 600px) {
  .consultant-banner-rev__headshot {
    -ms-flex-item-align: end;
        align-self: flex-end;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 55%;
  }
}
.consultant-banner-rev__headshot img {
  display: block;
  width: 100%;
  height: auto;
}

.consultant-banner-rev__background,
.consultant-banner-rev__background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  height: 100%;
  width: 100%;
}
.consultant-banner-rev__background img,
.consultant-banner-rev__background-gradient img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.consultant-banner-rev__background-gradient {
  background-position: center;
  background-size: cover;
  background-image: var(--consult-banner-gradient);
}

.mega-feature {
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px;
  padding: 65px 35px;
}
@media (min-width: 768px) {
  .mega-feature {
    padding-inline: 25px;
  }
}
@media (min-width: 1200px) {
  .mega-feature {
    padding-inline: 0;
  }
}
.mega-feature__title {
  margin-bottom: 56px;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: bold;
  text-align: center;
  color: #262626;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mega-feature__main-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    gap: 1rem;
  }
  .mega-feature__main-content .mega-feature__top-row {
    display: contents;
  }
  .mega-feature__main-content .mega-feature__content {
    display: contents;
  }
  .mega-feature__main-content .mega-feature__right-column,
  .mega-feature__main-content .mega-feature__main {
    grid-column: 1/-1;
    margin-top: 2rem;
  }
  .mega-feature__main-content .mega-feature__top-item .mega-feature__image,
  .mega-feature__main-content .mega-feature__top-item .mega-feature__featured-image,
  .mega-feature__main-content .mega-feature__main--grid .mega-feature__image,
  .mega-feature__main-content .mega-feature__main--grid .mega-feature__featured-image {
    height: 209px;
    margin-bottom: 24px;
  }
}
.mega-feature__top-row {
  display: grid;
  grid-gap: 32px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mega-feature__top-row {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-bottom: 0;
  }
  .mega-feature__top-row .mega-feature__image {
    height: 209px;
  }
}
.mega-feature__top-row--m-m-m[data-items="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.mega-feature__top-row--m-m-m[data-items="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.mega-feature__top-row--m-m-m[data-items="1"] {
  grid-template-columns: 1fr;
}
.mega-feature__top-row--s-l-m {
  grid-template-columns: 1fr 2fr 1.5fr;
}
.mega-feature__top-row--l-s-m {
  grid-template-columns: 2fr 1fr 1.5fr;
}
.mega-feature__top-row--l-s {
  grid-template-columns: calc(66.666% - 12px) calc(33.333% - 12px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mega-feature__top-row--l-s {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.mega-feature__top-row--s-l {
  grid-template-columns: calc(33.333% - 12px) calc(66.666% - 12px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mega-feature__top-row--s-l {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.mega-feature__top-row--m-s-l {
  grid-template-columns: 1.5fr 1fr 2fr;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mega-feature__top-row--m-s-l {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.mega-feature__top-row--m-l-s {
  grid-template-columns: 1.5fr 2fr 1fr;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mega-feature__top-row--m-l-s {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.mega-feature__top-row .mega-feature__image {
  height: 252px;
  margin-bottom: 24px;
}
.mega-feature__top-row .mega-feature__image img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mega-feature__content {
  display: grid;
  grid-gap: 56px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .mega-feature__content {
    grid-gap: 30px;
  }
}
@media (min-width: 1200px) {
  .mega-feature__content {
    grid-template-columns: 670px 470px;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .mega-feature__content {
    grid-template-columns: calc(60% - 28px) calc(40% - 28px);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mega-feature__content {
    grid-template-columns: 1fr;
    margin-top: -1rem;
  }
}
.mega-feature__right-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 0;
  gap: 0;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mega-feature__right-column {
    margin-top: 2rem;
  }
}
.mega-feature__right-item-wrapper {
  border-bottom: 1px solid #4c4c4e;
  padding: 24px 0;
}
.mega-feature__right-item-wrapper:first-child {
  padding-top: 0;
}
.mega-feature__right-item-wrapper:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.mega-feature__right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 24px;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.mega-feature__right-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  width: 120px;
  height: 120px;
  position: relative;
  overflow: hidden;
}
.mega-feature__right-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.mega-feature__right-image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mega-feature__right-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 10px;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mega-feature__right-title {
  font-family: "FFScalaSansWebBold";
  font-size: 24px;
  line-height: 28px;
  margin: 0 !important;
  color: #2e7d32;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.mega-feature__right-item:hover .mega-feature__right-title {
  color: #7cb085;
}
.mega-feature__right-summary {
  font-size: 18px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}
@media (max-width: 1024px) {
  .mega-feature__right-summary {
    display: none;
  }
}
.mega-feature__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.mega-feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.mega-feature__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mega-feature__featured-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.mega-feature__featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.mega-feature__featured-image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (min-width: 1025px) {
  .mega-feature__featured-image::before {
    content: "";
    display: block;
    padding-bottom: 70.29%;
  }
  .mega-feature__featured-image img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.mega-feature__item-title, .mega-feature__featured-title, .mega-feature__right-summary {
  font-family: "FFScalaSansWebBold";
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 8px !important;
}
.mega-feature__summary, .mega-feature__featured-summary, .mega-feature__right-summary {
  font-size: 18px;
  line-height: 26px;
  color: #4c4c4e;
}
@media (max-width: 1024px) {
  .mega-feature__summary, .mega-feature__featured-summary, .mega-feature__right-summary {
    display: none;
  }
}
.mega-feature__link {
  margin-top: 56px;
  text-align: left;
}
.mega-feature__link--desktop {
  display: none;
}
@media (min-width: 1025px) {
  .mega-feature__link--desktop {
    display: block;
    margin-top: 30px;
    grid-column: 1;
  }
}
.mega-feature__link--mobile {
  display: block;
}
@media (min-width: 1025px) {
  .mega-feature__link--mobile {
    display: none;
  }
}
.mega-feature__link--mobile a {
  letter-spacing: 3px;
  width: 100%;
  text-align: center;
}
.mega-feature__link-text {
  color: #4c4c4e;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 54px;
  padding: 16px 24px;
  text-transform: uppercase;
  font-family: "FFScalaSansWebBold";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 4px;
  text-align: left;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #338441;
  background-color: transparent;
}
.mega-feature__link-text:hover {
  background-color: #338441;
  color: #fff;
}
@media (max-width: 767px) {
  .mega-feature__main-content {
    display: block;
  }
  .mega-feature__top-row {
    grid-template-columns: 1fr !important;
    margin-bottom: 1rem;
  }
  .mega-feature__content {
    grid-template-columns: 1fr;
  }
  .mega-feature .mega-feature__image,
  .mega-feature .mega-feature__featured-image {
    height: 209px;
  }
}
@media (max-width: 500px) {
  .mega-feature__right-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.promo-wide-colorbar {
  padding: 72px 0;
  margin-bottom: -105px !important;
  margin-bottom: -25px;
}
.promo-wide-colorbar__container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px;
  padding: 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 48px;
  gap: 48px;
}
@media (min-width: 768px) {
  .promo-wide-colorbar__container {
    padding: 0 25px;
  }
}
@media (min-width: 1200px) {
  .promo-wide-colorbar__container {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .promo-wide-colorbar__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    grid-gap: 24px;
    gap: 24px;
  }
}
.promo-wide-colorbar__accent-bar {
  height: 8px;
  width: 0;
  background-color: #fccc0f;
  opacity: 0;
  -webkit-transition: none;
  transition: none;
  margin-bottom: 24px;
}
.promo-wide-colorbar__container--animate .promo-wide-colorbar__accent-bar {
  width: 65px;
  opacity: 1;
  -webkit-transition: width 0.6s ease-out, opacity 0.3s ease-out;
  transition: width 0.6s ease-out, opacity 0.3s ease-out;
}
.promo-wide-colorbar__container--animate:hover .promo-wide-colorbar__accent-bar {
  width: 120px;
}
.promo-wide-colorbar__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.promo-wide-colorbar__title {
  font-family: "FFScalaSansWebBold";
  font-size: 30px;
  line-height: 36px;
  -webkit-margin-after: 16px;
          margin-block-end: 16px;
}
.promo-wide-colorbar__title a {
  color: #262626 !important;
}
.promo-wide-colorbar__title a:hover {
  color: #338441 !important;
}
.promo-wide-colorbar__description {
  color: #262626;
  font-size: 20px;
  line-height: 28px;
  margin: 0;
  opacity: 0.9;
}
.promo-wide-colorbar__action {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.promo-wide-colorbar__button {
  color: #4c4c4e;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 54px;
  padding: 16px 24px;
  text-transform: uppercase;
  font-family: "FFScalaSansWebBold";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 4px;
  text-align: left;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #338441;
  background-color: transparent;
}
.promo-wide-colorbar__button:hover {
  background-color: #338441;
  color: #fff;
}
.promo-wide-colorbar[style*=background-color]:not([style*="background-color: #FFFFFF"]) {
  color: white;
}
.promo-wide-colorbar[style*=background-color]:not([style*="background-color: #FFFFFF"]) .promo-wide-colorbar__button {
  border-color: #338441;
  color: #4c4c4e;
  background-color: transparent;
}
.promo-wide-colorbar[style*=background-color]:not([style*="background-color: #FFFFFF"]) .promo-wide-colorbar__button:hover {
  background-color: #338441;
  color: #fff;
}

.card-grid {
  overflow: hidden;
  padding: 64px 0;
  background-color: #f5f7f9;
}
.card-grid__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (min-width: 1200px) {
  .card-grid__container {
    padding: 0;
  }
}
.card-grid__title {
  margin-bottom: 24px;
  color: #262626;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}
@media (max-width: 570px) {
  .card-grid__title {
    font-size: 32px;
    line-height: 36px;
  }
}
.card-grid__subtitle {
  max-width: 970px;
  margin: 0 auto 64px;
  color: #4c4c4e;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 570px) {
  .card-grid__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
.card-grid__content {
  position: relative;
  overflow: visible;
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (min-width: 571px) and (max-width: 910px) {
  .card-grid__content {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 910px;
    overflow-x: hidden;
    padding-left: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .card-grid__content::after {
    position: absolute;
    top: 0;
    right: -10px;
    z-index: 1;
    height: 100%;
    width: 150px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(245, 247, 249, 0)), color-stop(80%, rgb(245, 247, 249)));
    background: linear-gradient(to right, rgba(245, 247, 249, 0), rgb(245, 247, 249) 80%);
    content: "";
    pointer-events: none;
  }
}
@media (min-width: 911px) {
  .card-grid__content {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 1335px;
    overflow-x: hidden;
    padding-left: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .card-grid__content::after {
    position: absolute;
    top: 0;
    right: -10px;
    z-index: 1;
    height: 100%;
    width: 200px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(245, 247, 249, 0)), color-stop(80%, rgb(245, 247, 249)));
    background: linear-gradient(to right, rgba(245, 247, 249, 0), rgb(245, 247, 249) 80%);
    content: "";
    pointer-events: none;
  }
}
@media (min-width: 911px) and (min-width: 1200px) {
  .card-grid__content {
    left: calc(50% - (1170px - 1335px) / 2);
  }
}
@media (max-width: 570px) {
  .card-grid__content {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    margin: 64px 0;
    padding: 0;
  }
}
[data-display-mode=grid] .card-grid__slider * {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
@media (max-width: 570px) {
  .card-grid__slider {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 570px) {
  .card-grid .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 571px) {
  .card-grid .swiper-wrapper {
    max-width: 1335px;
    padding-left: 25px;
  }
}
@media (min-width: 910px) {
  .card-grid .swiper-wrapper {
    padding-left: calc((1170px - 100vw) / 2);
  }
}
.card-grid .swiper-container {
  overflow: visible;
}
@media (min-width: 571px) {
  .card-grid .swiper-container {
    overflow-x: hidden;
  }
}
@media (max-width: 570px) {
  .card-grid .swiper-container {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    padding: 0;
    -ms-touch-action: pan-y pinch-zoom;
        touch-action: pan-y pinch-zoom;
  }
}
.card-grid__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 30px 23px;
  text-decoration: none;
  border: 1px solid #0a1c3d;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  will-change: background-color, border-color;
}
.card-grid__card *:not(a) {
  color: #4c4c4e;
}
.card-grid__card:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #0a1c3d;
  border-color: #0a1c3d;
}
.card-grid__card:hover .card-grid__card-title,
.card-grid__card:hover .card-grid__description,
.card-grid__card:hover *:not(a) {
  color: #fff;
}
.card-grid__card:hover .card-grid__icon-wrapper {
  border: 1px solid #d9d9d9;
}
.card-grid__card-title {
  margin-bottom: 16px;
  color: #262626;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.card-grid__card-title + .card-grid__description {
  margin-top: 24px;
}
.card-grid h3.card-grid__card-title {
  margin: 0;
}
.card-grid__description {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #4c4c4e;
  font-size: 18px;
  line-height: 26px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 570px) {
  .card-grid__description {
    height: auto;
    overflow: visible;
    font-size: 16px;
    line-height: 22px;
  }
}
.card-grid__icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100px;
  width: 100px;
  margin: 0 auto 16px;
  border: 1px solid #fff;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
@media (max-width: 570px) {
  .card-grid__icon-wrapper {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-height: 100px;
    min-width: 100px;
  }
}
[data-show-dots=true] .card-grid__icon-wrapper {
  height: 11px;
  min-height: 11px;
  width: auto;
  overflow: visible;
  margin: 0 auto 24px;
  border-radius: 0;
  background: none;
}
.card-grid__icon-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}
[data-show-dots=true] .card-grid__icon-container {
  width: auto;
  height: auto;
}
.card-grid__icon {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.card-grid__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-gap: 24px;
  gap: 24px;
  max-width: 1170px;
  padding: 0;
}
.card-grid__navigation .card-grid__nav {
  position: static;
  margin: 0;
}
.card-grid__navigation .swiper-pagination {
  margin-left: auto;
  text-align: right;
}
.card-grid__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 54px;
  width: 54px;
  opacity: 1 !important;
  padding: 16px;
  border: 2px solid #4c4c4e;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto !important;
}
.card-grid__nav svg {
  overflow: visible;
}
.card-grid__nav svg path {
  fill: #338441;
}
.card-grid__nav:hover {
  background-color: #338441;
}
.card-grid__nav:hover path {
  stroke: #fff;
  fill: #fff;
}
.card-grid[data-display-mode=grid] .card-grid__content {
  left: auto;
  width: auto;
  max-width: 1170px;
  margin: 64px auto 0;
  padding: 0 25px;
  -webkit-transform: none;
          transform: none;
}
.card-grid[data-display-mode=grid] .card-grid__content::after {
  display: none;
}
@media (min-width: 1200px) {
  .card-grid[data-display-mode=grid] .card-grid__content {
    padding: 0;
  }
}
.card-grid[data-display-mode=grid] .card-grid__slider-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 32px 30px;
  gap: 32px 30px;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 570px) {
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 20px;
    gap: 20px;
    width: 100%;
    overflow: visible;
  }
}
@media (min-width: 571px) and (max-width: 991px) {
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(5):last-child) .swiper-slide:nth-child(4),
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(5):last-child) .swiper-slide:nth-child(5) {
    grid-column: span 1;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(5):last-child) .swiper-slide:nth-child(n+4) {
    margin-left: 0 !important;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(6):last-child) .swiper-slide:nth-child(n+4) {
    margin-left: 0 !important;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(7):last-child), .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(8):last-child) {
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(7):last-child) .swiper-slide:nth-child(n+5), .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(8):last-child) .swiper-slide:nth-child(n+5) {
    margin-left: 0 !important;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(9):last-child) {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(9):last-child) .swiper-slide:nth-child(n+4) {
    margin-left: 0 !important;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(n+10)) {
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(n+10)) .swiper-slide:nth-child(n+5) {
    margin-left: 0 !important;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(13):last-child) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-gap: 32px 30px;
    gap: 32px 30px;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(13):last-child) .swiper-slide {
    width: 100% !important;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(13):last-child) .swiper-slide:nth-child(9) {
    grid-column: 1/2;
    grid-row: 3;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(13):last-child) .swiper-slide:nth-child(10) {
    grid-column: 2/3;
    grid-row: 3;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(13):last-child) .swiper-slide:nth-child(11) {
    grid-column: 3/4;
    grid-row: 3;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(13):last-child) .swiper-slide:nth-child(12) {
    grid-column: 1/2;
    grid-row: 4;
  }
  .card-grid[data-display-mode=grid] .card-grid__slider-wrapper:has(.swiper-slide:nth-child(13):last-child) .swiper-slide:nth-child(13) {
    grid-column: 2/3;
    grid-row: 4;
  }
}
.card-grid[data-display-mode=grid] .swiper-slide {
  width: 100% !important;
  margin: 0 !important;
}
@media (max-width: 570px) {
  .card-grid[data-display-mode=grid] .swiper-slide {
    display: block !important;
    height: auto !important;
  }
}
.card-grid[data-display-mode=grid] .card-grid__navigation {
  display: none;
}
@media (max-width: 570px) {
  .card-grid[data-display-mode=grid] .card-grid__description {
    display: block;
  }
  .card-grid[data-display-mode=grid] .swiper-wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }
}
.card-grid--mobile .card-grid__content {
  overflow: hidden;
  margin: 64px 0;
}
.card-grid--mobile .card-grid__content .swiper-container {
  display: block;
  overflow: hidden;
  padding: 0;
}
.card-grid--mobile .card-grid__content .swiper-container .swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
.card-grid--mobile .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: auto;
  max-width: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.card-grid--mobile .card-grid__navigation {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-gap: 24px;
  gap: 24px;
  margin-top: 24px;
  padding: 0;
}
.card-grid--mobile .card-grid__navigation .card-grid__nav {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.card-grid--mobile .card-grid__navigation .card-grid__nav.swiper-button-disabled {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.card-grid--mobile .card-grid__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 32px 24px;
}
.card-grid--mobile .card-grid__card .card-grid__icon-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 16px;
}
.card-grid--mobile .card-grid__card .card-grid__card-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  text-align: center;
}
.card-grid--mobile .card-grid__card .card-grid__description {
  height: auto;
  width: 100%;
  overflow: visible;
  text-align: center;
}
.card-grid--mobile[data-display-mode=grid] .card-grid__content {
  overflow: visible;
}
.card-grid--mobile[data-display-mode=grid] .swiper-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  grid-gap: 32px;
  gap: 32px;
  -webkit-transform: none !important;
          transform: none !important;
}
.card-grid--mobile[data-display-mode=grid] .swiper-slide {
  height: auto;
  width: 100% !important;
}
.card-grid__footer {
  display: none;
}

.insights-slider {
  padding: 64px 25px;
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 570px) {
  .insights-slider {
    padding: 40px 25px;
  }
}
@media (min-width: 1200px) {
  .insights-slider {
    padding-left: 0;
    padding-right: 0;
  }
}
.insights-slider__content {
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 571px) {
  .insights-slider__content {
    margin-left: -25px;
    width: calc(100% + 50px);
  }
}
@media (min-width: 571px) and (max-width: 910px) {
  .insights-slider__content {
    position: relative;
    width: calc(100vw - 25px);
    max-width: 910px;
    overflow-x: hidden;
    margin-left: -25px;
  }
  .insights-slider__content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 150px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 80%);
    pointer-events: none;
    z-index: 1;
  }
}
@media (min-width: 911px) {
  .insights-slider__content {
    position: relative;
    width: calc(100vw - 25px);
    max-width: 1335px;
    overflow-x: hidden;
    margin-left: -25px;
  }
  .insights-slider__content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 200px;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(80%, rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 80%);
    pointer-events: none;
    z-index: 1;
  }
}
@media (max-width: 570px) {
  .insights-slider__content {
    overflow: hidden;
    width: 100%;
  }
}
@media (min-width: 571px) {
  .insights-slider .swiper-wrapper {
    padding-left: 25px;
  }
}
.insights-slider .swiper-container {
  overflow: visible !important;
}
@media (min-width: 571px) {
  .insights-slider .swiper-slide {
    pointer-events: auto !important;
    cursor: pointer;
  }
  .insights-slider .swiper-slide .insights-slider__image-wrapper {
    margin-bottom: 24px;
    overflow: hidden;
  }
  .insights-slider .swiper-slide img {
    display: block;
    width: 370px;
    height: 208px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .insights-slider .swiper-slide:hover .insights-slider__title-text, .insights-slider .swiper-slide:focus-within .insights-slider__title-text {
    color: #7cb085;
  }
  .insights-slider .swiper-slide:hover img, .insights-slider .swiper-slide:focus-within img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (max-width: 570px) {
  .insights-slider .swiper-slide {
    width: 100%;
    pointer-events: auto !important;
    cursor: pointer;
  }
  .insights-slider .swiper-slide .insights-slider__image-wrapper {
    overflow: hidden;
    margin-bottom: 28px;
  }
  .insights-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .insights-slider .swiper-slide:hover .insights-slider__title-text, .insights-slider .swiper-slide:focus-within .insights-slider__title-text {
    color: #7cb080;
  }
  .insights-slider .swiper-slide:hover img, .insights-slider .swiper-slide:focus-within img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.insights-slider__title {
  font-size: 44px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
  color: #262626;
  margin-bottom: 56px !important;
  padding: 0 25px;
}
.insights-slider__title-text {
  color: #338441;
  font-size: 24px;
  font-family: "FFScalaSansWebBold";
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 8px !important;
  text-align: left;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.insights-slider__summary {
  font-size: 18px;
  line-height: 26px;
  color: #4c4c4e;
  text-align: left;
  margin: 0;
  max-width: 100%;
}
.insights-slider__footer {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 48px;
  gap: 48px;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .insights-slider__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 24px;
    gap: 24px;
  }
}
@media (max-width: 570px) {
  .insights-slider__footer {
    padding: 0;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .insights-slider__footer {
    padding: 0;
  }
}
.insights-slider__nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 24px;
  gap: 24px;
}
@media (max-width: 767px) and (min-width: 571px) {
  .insights-slider__nav-buttons {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 40px;
    gap: 40px;
  }
}
@media (max-width: 570px) {
  .insights-slider__nav-buttons {
    display: none;
  }
}
.insights-slider__nav {
  width: 54px;
  height: 54px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  padding: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.insights-slider__nav svg {
  overflow: visible !important;
}
.insights-slider__nav svg path {
  fill: #338441;
}
.insights-slider__nav:hover {
  background-color: #338441;
}
.insights-slider__nav:hover path {
  stroke: #fff;
  fill: #fff;
}
.insights-slider__nav.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.insights-slider__cta-link {
  color: #4c4c4e;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  text-transform: uppercase;
  font-family: "FFScalaSansWebBold";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 4px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #338441;
  background-color: transparent;
  min-width: 0;
  white-space: normal;
  word-wrap: break-word;
}
@media (max-width: 570px) {
  .insights-slider__cta-link {
    width: 100%;
  }
}
.insights-slider__cta-link:hover {
  background-color: #338441;
  color: #fff;
}
.insights-slider__mobile-navigation {
  display: none;
}
@media (max-width: 570px) {
  .insights-slider__mobile-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 32px;
    grid-gap: 16px;
    gap: 16px;
  }
}
.insights-slider__image-link, .insights-slider__title-link {
  display: block;
  text-decoration: none;
  cursor: pointer !important;
  pointer-events: auto !important;
}
.insights-slider__title-link {
  text-decoration: none;
  display: block;
}

.image-component {
  width: 100%;
  margin: 0;
  padding: 0;
}
.image-component__container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1170px;
}
.image-component__figure {
  margin: 0;
  padding: 0;
  width: 100%;
}
.image-component__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.image-component__caption-wrapper {
  margin-top: 16px;
  padding: 0;
}
.image-component__title {
  color: #262626;
  font-family: "FFScalaSansWebBold";
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 16px 0;
}
@media (max-width: 767px) {
  .image-component__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.image-component__caption {
  color: #4c4c4e;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .image-component__caption {
    font-size: 14px;
    line-height: 20px;
  }
}

.ssa__container__col .image-component__image,
.ssa__container__col svg {
  max-width: 100% !important;
  height: auto;
  width: auto;
  margin: revert-layer;
}

.flexible-promo {
  padding: 32px 0;
  position: relative;
}
.flexible-promo__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
}
@media (min-width: 768px) {
  .flexible-promo__container {
    grid-gap: 30px;
    gap: 30px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (min-width: 1220px) {
  .flexible-promo__container {
    padding: 0;
  }
}
.flexible-promo .image-component {
  width: 100%;
  position: relative;
}
.flexible-promo .image-component .image-component__caption-wrapper,
.flexible-promo .image-component .image-component__title {
  display: none;
}
.flexible-promo .image-component .image-component__container,
.flexible-promo .image-component .image-component__figure {
  width: 100%;
  margin: 0;
  position: relative;
}
.flexible-promo .image-component .image-component__image {
  width: 100%;
  height: auto;
  display: block;
}
.flexible-promo__media-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flexible-promo__media-wrapper--with-image-component {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flexible-promo__media-link {
  display: block;
  width: 100%;
  text-decoration: none;
}
.flexible-promo__media-container {
  position: relative;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.flexible-promo__media-container .flexible-promo__media-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fccc0f;
  z-index: 0;
  display: none;
}
.flexible-promo__media-container.flexible-promo__media-container--hoverable .image-component {
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.flexible-promo__media-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
.flexible-promo__content {
  position: relative;
  z-index: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 48px;
  min-height: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flexible-promo__content {
    padding: 0 0 48px;
  }
  .flexible-promo__content[style*="justify-content: center"], .flexible-promo__content[style*="justify-content: flex-end"], .flexible-promo__content[style] {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}
@media (min-width: 1025px) {
  .flexible-promo__content {
    padding: 48px 0;
  }
  .flexible-promo__content[style*="padding: 0"] {
    padding: 0;
  }
}
.flexible-promo__title {
  -webkit-margin-after: 8px !important;
          margin-block-end: 8px !important;
  color: #338441;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}
.flexible-promo__title:not(:has(a)) {
  color: #262626;
}
.flexible-promo__title:not(:has(a)) ~ .flexible-promo__media-wrapper .flexible-promo__media-container .image-component {
  -webkit-transform: none !important;
          transform: none !important;
}
.flexible-promo__title:not(:has(a)) ~ .flexible-promo__media-wrapper .flexible-promo__media-container .flexible-promo__media-background {
  display: none;
}
.flexible-promo__title-link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.flexible-promo__title-link:hover {
  color: #7cb085;
}
.flexible-promo__description {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #4c4c4e;
  margin: 0;
}
.flexible-promo--media-left .flexible-promo__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .flexible-promo--media-left .flexible-promo__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 768px) {
  .flexible-promo--media-left .flexible-promo__media-container--hoverable:hover .image-component {
    -webkit-transform: translate(7px, -6px);
            transform: translate(7px, -6px);
  }
}
.flexible-promo--media-right .flexible-promo__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .flexible-promo--media-right .flexible-promo__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .flexible-promo--media-right .flexible-promo__media-container--hoverable:hover .image-component {
    -webkit-transform: translate(-7px, -6px);
            transform: translate(-7px, -6px);
  }
}

.flexible-promo__media-container--hoverable:hover:has(.image-component) .flexible-promo__media-background {
  display: block;
}
.flexible-promo__media-container--hoverable:hover .flexible-promo__media-background + .image-component {
  -webkit-transform: translate(7px, -6px);
          transform: translate(7px, -6px);
}

.flexible-promo__media-container:has(.rich-text) .flexible-promo__media-background {
  display: none !important;
}

.flexible-promo--media-right .flexible-promo__media-container--hoverable:hover:has(.image-component) .flexible-promo__media-background {
  display: block;
}
.flexible-promo--media-right .flexible-promo__media-container--hoverable:hover .flexible-promo__media-background + .image-component {
  -webkit-transform: translate(-7px, -6px);
          transform: translate(-7px, -6px);
}

.big-number-callout {
  width: 100%;
  padding: 64px 0;
  }
.big-number-callout--text-left .big-number-callout__items {
  text-align: left;
}
.big-number-callout--text-left .big-number-callout__description {
  margin-left: 0;
  margin-right: auto;
}
.big-number-callout--text-center .big-number-callout__items {
  text-align: center;
}
.big-number-callout--text-center .big-number-callout__description {
  margin-left: auto;
  margin-right: auto;
}
.big-number-callout--text-right .big-number-callout__items {
  text-align: right;
}
.big-number-callout--text-right .big-number-callout__description {
  margin-left: auto;
  margin-right: 0;
}
.ssa__rich-text .big-number-callout {
  container-type: inline-size;
  padding: 30px 0;
  min-width: 350px;
}
@container (max-width: 400px) {
  .ssa__rich-text .big-number-callout {
    padding: 20px 0;
  }
}
@container (min-width: 401px) and (max-width: 600px) {
  .ssa__rich-text .big-number-callout .big-number-callout__number {
    font-size: 80px !important;
  }
  .ssa__rich-text .big-number-callout .big-number-callout__description {
    font-size: 20px;
    line-height: 24px;
  }
}
@container (min-width: 601px) {
  .ssa__rich-text .big-number-callout .big-number-callout__number {
    font-size: 100px !important;
  }
}
.ssa__rich-text .big-number-callout .big-number-callout__container {
  padding: 0 20px;
}
@container (min-width: 500px) {
  .ssa__rich-text .big-number-callout .big-number-callout__container {
    padding: 0 25px;
  }
}
@media (min-width: 768px) {
  .ssa__rich-text .big-number-callout[style*=margin-right]:not([style*=margin-left]) {
    float: left;
    width: calc(30% - 30px);
  }
  .ssa__rich-text .big-number-callout[style*=margin-left]:not([style*=margin-right]) {
    float: right;
    width: calc(30% - 30px);
  }
  .ssa__rich-text .big-number-callout[style*=margin-left][style*=margin-right] {
    float: none;
    width: 100%;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both;
  }
}
@media (min-width: 768px) {
  .big-number-callout[style*=margin-right] {
    float: left;
    width: calc(50% - 30px);
  }
  .big-number-callout[style*=margin-left][style*=margin-right] {
    float: none;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .big-number-callout[style*=margin-left]:not([style*=margin-right]) {
    float: right;
    width: calc(50% - 30px);
  }
}
.big-number-callout__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 35px;
}
@media (min-width: 768px) {
  .big-number-callout__container {
    padding: 0;
  }
}
.big-number-callout__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media (min-width: 768px) {
  .big-number-callout__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    grid-gap: 30px;
    gap: 30px;
  }
}
.big-number-callout__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 24px 0;
  border-top: none;
  border-bottom: none;
}
.big-number-callout__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .big-number-callout__item {
    padding: 24px 15px;
    border-bottom: 4px solid #262626;
    border-bottom: 4px solid var(--bottom-border-color, #262626);
    margin-bottom: 0;
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
}
.big-number-callout__number {
  font-family: "FFScalaSansWebRegular", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  color: #2eaf99;
  letter-spacing: -2px;
}
.big-number-callout__number sup {
  font-size: 0.5em !important;
  top: -1em !important;
}
.big-number-callout__number sub {
  font-size: 0.5em !important;
  bottom: 0 !important;
}
@media (min-width: 768px) {
  .big-number-callout__number {
    font-size: 128px;
  }
}
.big-number-callout__description {
  font-family: "FFScalaSansWebRegular", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  color: #262626;
  margin: 0 auto;
  padding-inline: 40px;
  letter-spacing: -0.2px;
  text-wrap: balance;
}
.big-number-callout__subheading {
  font-family: "FFScalaSansWebRegular", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 70%;
  letter-spacing: 1.5px;
  opacity: 0.7;
  font-style: normal;
  line-height: 1.2;
  color: #262626;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .big-number-callout {
    }
  .big-number-callout--1-items .big-number-callout__item {
    border-bottom: 4px solid #262626;
    border-bottom: 4px solid var(--bottom-border-color, #262626);
    margin-bottom: 0;
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
  .big-number-callout--2-items .big-number-callout__item:first-child {
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
  .big-number-callout--2-items .big-number-callout__item:last-child {
    border-bottom: 4px solid #262626;
    border-bottom: 4px solid var(--bottom-border-color, #262626);
    margin-bottom: 0;
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
  .big-number-callout--3-items .big-number-callout__item:first-child {
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
  .big-number-callout--3-items .big-number-callout__item:nth-child(2) {
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
  .big-number-callout--3-items .big-number-callout__item:last-child {
    border-bottom: 4px solid #262626;
    border-bottom: 4px solid var(--bottom-border-color, #262626);
    margin-bottom: 0;
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
}
.big-number-callout--1-items .big-number-callout__items {
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .big-number-callout--1-items .big-number-callout__items .big-number-callout__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
.big-number-callout--2-items .big-number-callout__items {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .big-number-callout--2-items .big-number-callout__items .big-number-callout__item {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
    max-width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .big-number-callout--2-items .big-number-callout__items .big-number-callout__item .big-number-callout__description {
    }
  .big-number-callout--2-items .big-number-callout__items .big-number-callout__item .big-number-callout__description:only-child:not(:last-child), .big-number-callout--2-items .big-number-callout__items .big-number-callout__item .big-number-callout__description:first-child:not(:last-child) {
    line-height: 1.3;
  }
}
.big-number-callout--3-items .big-number-callout__items {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .big-number-callout--3-items .big-number-callout__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            grid-column-gap: 30px;
            column-gap: 30px;
    grid-row-gap: 0;
    row-gap: 0;
    position: relative;
  }
}
@media (min-width: 768px) {
  .big-number-callout--3-items .big-number-callout__item[data-item-index="0"] {
    grid-column: 1;
    grid-row: 1/span 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    border-bottom: 4px solid #262626;
    border-bottom: 4px solid var(--bottom-border-color, #262626);
    }
  .big-number-callout--3-items .big-number-callout__item[data-item-index="0"]:not(:has(.big-number-callout__subheading)) {
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
  .big-number-callout--3-items .big-number-callout__items::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% + 15px);
    right: 0;
    border-bottom: 4px solid #262626;
    border-bottom: 4px solid var(--bottom-border-color, #262626);
    pointer-events: none;
    z-index: 1;
    border-top: 1px solid #262626;
    border-top: 1px solid var(--top-border-color, #262626);
  }
  .big-number-callout--3-items .big-number-callout__item[data-item-index="1"],
  .big-number-callout--3-items .big-number-callout__item[data-item-index="2"] {
    grid-column: 2;
    border: none;
    position: relative;
    z-index: 2;
  }
  .big-number-callout--3-items .big-number-callout__item[data-item-index="1"] .big-number-callout__number,
  .big-number-callout--3-items .big-number-callout__item[data-item-index="2"] .big-number-callout__number {
    font-size: 80px;
  }
  .big-number-callout--3-items .big-number-callout__item[data-item-index="1"] {
    grid-row: 1;
    border-bottom: 1px solid #262626;
    padding-bottom: 24px;
    margin-bottom: 0;
  }
  .big-number-callout--3-items .big-number-callout__item[data-item-index="2"] {
    grid-row: 2;
    padding-top: 24px;
    margin-bottom: 0;
  }
}

.practice-leadership {
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-block: 64px;
  padding-inline: 25px;
}
@media (min-width: 1200px) {
  .practice-leadership {
    padding-inline: 0;
  }
}
.practice-leadership__title {
  margin-bottom: 64px !important;
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
  text-align: center;
  color: #262626;
}
.practice-leadership__heading {
  margin-bottom: 24px !important;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  color: #262626;
}
.practice-leadership__description {
  max-width: 970px;
  margin-right: auto;
  margin-bottom: 56px;
  margin-left: auto;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
.practice-leadership__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          grid-column-gap: 20px;
          column-gap: 20px;
  grid-row-gap: 32px;
  row-gap: 32px;
  padding: 0 !important;
  margin: 0 !important;
}
.practice-leadership__grid:has(.practice-leadership__item:first-child:last-child) {
  grid-template-columns: minmax(0, 400px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .practice-leadership__grid {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            grid-column-gap: 30px;
            column-gap: 30px;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 400px));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-gap: 64px;
    gap: 64px;
    max-width: 864px;
    margin: 0 auto !important;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(5):last-child) .practice-leadership__item:nth-child(4),
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(5):last-child) .practice-leadership__item:nth-child(5) {
    grid-column: span 1;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(7):last-child), .practice-leadership__grid:has(.practice-leadership__item:nth-child(8):last-child) {
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(9):last-child) {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(n+10):nth-child(-n+12):last-child) {
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(13):last-child) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto auto;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            grid-column-gap: 30px;
            column-gap: 30px;
    grid-row-gap: 32px;
    row-gap: 32px;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(13):last-child) .practice-leadership__item {
    width: 100% !important;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(13):last-child) .practice-leadership__item:nth-child(9) {
    grid-column: 1/2;
    grid-row: 3;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(13):last-child) .practice-leadership__item:nth-child(10) {
    grid-column: 2/3;
    grid-row: 3;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(13):last-child) .practice-leadership__item:nth-child(11) {
    grid-column: 3/4;
    grid-row: 3;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(13):last-child) .practice-leadership__item:nth-child(12) {
    grid-column: 1/2;
    grid-row: 4;
  }
  .practice-leadership__grid:has(.practice-leadership__item:nth-child(13):last-child) .practice-leadership__item:nth-child(13) {
    grid-column: 2/3;
    grid-row: 4;
  }
}
.practice-leadership__item {
  text-align: center;
}
.practice-leadership__link {
  display: block;
  text-decoration: none;
}
.practice-leadership__link:hover .practice-leadership__name {
  color: #7cb085;
}
.practice-leadership__image-wrapper {
  height: 130px;
  width: 130px;
  overflow: hidden;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
  border-radius: 50%;
}
.practice-leadership__image {
  height: 130px;
  width: 130px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
}
.practice-leadership__name {
  margin-bottom: 4px !important;
  color: #4c4c4e;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.practice-leadership__region {
  font-size: 16px;
  line-height: 20px;
  color: #4c4c4e;
}

.section-heading {
  margin-bottom: 24px !important;
  font-size: 44px !important;
  line-height: 52px !important;
  font-weight: 700 !important;
  text-align: center !important;
  color: #262626 !important;
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif !important;
  max-width: 100% !important;
}
@media (max-width: 767px) {
  .section-heading {
    font-size: 36px !important;
    line-height: 42px !important;
    margin-bottom: 40px !important;
  }
}

.board-index-container-70-30 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  grid-gap: 100px 50px;
  gap: 100px 50px;
}
@media (max-width: 700px) {
  .board-index-container-70-30 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.board-index-container-70-30.board-index-container-70-30--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 700px) {
  .board-index-container-70-30.board-index-container-70-30--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.board-index-container-70-30.board-index-container-70-30--top-margin {
  margin-top: 50px;
}
.board-index-container-70-30.board-index-container-70-30--bottom-margin {
  margin-bottom: 50px;
}

.board-index-container-70-30__70 {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}

.board-index-container-70-30__30 {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

.contact-us-rte {
  font-size: 18px;
}
.contact-us-rte:not(:last-child) {
  margin-bottom: 20px;
}

.contact-us-rte__outer-section:not(:last-child) {
  margin-bottom: 50px;
}

.contact-us-rte__inner-section:not(:last-child) {
  margin-bottom: 20px;
}

.contact-us-rte__box {
  padding: 15px;
  font-size: 16px;
  background-color: #f5f7f9;
}

.mvc-integration-iframe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 -5px;
}

.mvc-integration-iframe__iframe {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  border: 0;
  -webkit-transition: visibility 0.5s, opacity 0.5s;
  transition: visibility 0.5s, opacity 0.5s;
}
.mvc-integration-iframe--initialized .mvc-integration-iframe__iframe {
  opacity: 1;
  visibility: visible;
}

.mvc-integration-iframe__spinner {
  height: 50px;
  width: 50px;
  margin-right: auto;
  margin-left: auto;
  border: 10px solid transparent;
  border-top-color: #00396f;
  border-radius: 50%;
  -webkit-animation: spin 0.5s linear infinite;
          animation: spin 0.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.mvc-integration-iframe--initialized .mvc-integration-iframe__spinner {
  display: none;
}

.sshr__page-hero-prototype {
  height: 8000px;
}
.sshr__page-hero-prototype .sshr__hero__next-content {
  background-color: #00396f;
  color: #fff;
  padding: 50px 15%;
  text-align: center;
  font-size: 42px;
}
.sshr__page-hero-prototype .sshr__page-homepage__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4c4c4e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 32px;
  height: 167px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .sshr__page-hero-prototype .sshr__page-homepage__header {
    height: 128px;
  }
}

@font-face {
  font-family: "FFScalaWeb";
  src: url("/webfonts/2D7CCC_1_0.eot");
  src: url("/webfonts/2D7CCC_1_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_1_0.woff2") format("woff2"), url("/webfonts/2D7CCC_1_0.woff") format("woff"), url("/webfonts/2D7CCC_1_0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaWebItalic";
  src: url("/webfonts/2D7CCC_0_0.eot");
  src: url("/webfonts/2D7CCC_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_0_0.woff2") format("woff2"), url("/webfonts/2D7CCC_0_0.woff") format("woff"), url("/webfonts/2D7CCC_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaWebBold";
  src: url("/webfonts/2D7CCC_3_0.eot");
  src: url("/webfonts/2D7CCC_3_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_3_0.woff2") format("woff2"), url("/webfonts/2D7CCC_3_0.woff") format("woff"), url("/webfonts/2D7CCC_3_0.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaWebBoldItalic";
  src: url("/webfonts/306B51_0_0.eot");
  src: url("/webfonts/306B51_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/306B51_0_0.woff2") format("woff2"), url("/webfonts/306B51_0_0.woff") format("woff"), url("/webfonts/306B51_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaSansWebRegular";
  src: url("/webfonts/2D7CCC_5_0.eot");
  src: url("/webfonts/2D7CCC_5_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_5_0.woff2") format("woff2"), url("/webfonts/2D7CCC_5_0.woff") format("woff"), url("/webfonts/2D7CCC_5_0.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaSansWebItalic";
  src: url("/webfonts/2D7CCC_4_0.eot");
  src: url("/webfonts/2D7CCC_4_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_4_0.woff2") format("woff2"), url("/webfonts/2D7CCC_4_0.woff") format("woff"), url("/webfonts/2D7CCC_4_0.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "FFScalaSansWebBold";
  src: url("/webfonts/2D7CCC_2_0.eot");
  src: url("/webfonts/2D7CCC_2_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/2D7CCC_2_0.woff2") format("woff2"), url("/webfonts/2D7CCC_2_0.woff") format("woff"), url("/webfonts/2D7CCC_2_0.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: "FFScalaSansWebBoldItalic";
  src: url("/webfonts/30FC9E_0_0.eot");
  src: url("/webfonts/30FC9E_0_0.eot?#iefix") format("embedded-opentype"), url("/webfonts/30FC9E_0_0.woff2") format("woff2"), url("/webfonts/30FC9E_0_0.woff") format("woff"), url("/webfonts/30FC9E_0_0.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}
.font-scala, .ssa__page-banner__header {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, serif;
  font-style: normal;
  font-weight: normal;
}
.JP .font-scala, .JP .ssa__page-banner__header {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .font-scala, .CN .ssa__page-banner__header {
  font-family: FFScalaWeb, Georgia, Utopia, Charter, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.font-scala--bold, .ssa__rich-text h4, .ssa__rich-text h2, .ssa__page-summary__header, .ssa__pull-quote__blockquote, .ssa__authors__author-name, .ssa__authors__title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, serif;
  font-style: normal;
  font-weight: bold;
}
.JP .font-scala--bold, .JP .ssa__rich-text h4, .ssa__rich-text .JP h4, .JP .ssa__rich-text h2, .ssa__rich-text .JP h2, .JP .ssa__page-summary__header, .JP .ssa__pull-quote__blockquote, .JP .ssa__authors__author-name, .JP .ssa__authors__title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: bold;
}
.CN .font-scala--bold, .CN .ssa__rich-text h4, .ssa__rich-text .CN h4, .CN .ssa__rich-text h2, .ssa__rich-text .CN h2, .CN .ssa__page-summary__header, .CN .ssa__pull-quote__blockquote, .CN .ssa__authors__author-name, .CN .ssa__authors__title {
  font-family: FFScalaWebBold, Georgia, Utopia, Charter, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.font-scala--bold-italic {
  font-family: FFScalaWebBoldItalic, Georgia, Utopia, Charter, serif;
  font-style: italic;
  font-weight: bold;
}

.font-scala--italic {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, serif;
  font-style: italic;
  font-weight: normal;
}
.JP .font-scala--italic {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: normal;
}
.CN .font-scala--italic {
  font-family: FFScalaWebItalic, Georgia, Utopia, Charter, sans-serif;
  font-style: italic;
  font-weight: normal;
}

.font-scala-sans, .ssa__related-insight__content, .ssa__related-insight, .ssa__page-banner__subtitle, .ssa__page-banner__text-container, .ssa__pull-quote__cite, .ssa__interactive-embed__caption {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}
.JP .font-scala-sans, .JP .ssa__related-insight__content, .JP .ssa__related-insight, .JP .ssa__page-banner__subtitle, .JP .ssa__page-banner__text-container, .JP .ssa__pull-quote__cite, .JP .ssa__interactive-embed__caption {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.CN .font-scala-sans, .CN .ssa__related-insight__content, .CN .ssa__related-insight, .CN .ssa__page-banner__subtitle, .CN .ssa__page-banner__text-container, .CN .ssa__pull-quote__cite, .CN .ssa__interactive-embed__caption {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.font-scala-sans--bold, .ssa__sticky-toolbar__contact-us, .ssa__sticky-toolbar__tab, .ssa__sticky-toolbar__download, .ssa__sticky-toolbar__share-label, .ssa__rich-text h6, .ssa__rich-text h5, .ssa__rich-text h3, .ssa__related-insight__link, .ssa__page-summary__rte.ssa__rich-text ul li::before, .ssa__pull-quote__name, .ssa__jump-navigation__title, .ssa__interactive-embed__heading, .ssa__download-button__link {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}
.JP .font-scala-sans--bold, .JP .ssa__sticky-toolbar__contact-us, .JP .ssa__sticky-toolbar__tab, .JP .ssa__sticky-toolbar__download, .JP .ssa__sticky-toolbar__share-label, .JP .ssa__rich-text h6, .ssa__rich-text .JP h6, .JP .ssa__rich-text h5, .ssa__rich-text .JP h5, .JP .ssa__rich-text h3, .ssa__rich-text .JP h3, .JP .ssa__related-insight__link, .JP .ssa__page-summary__rte.ssa__rich-text ul li::before, .ssa__page-summary__rte.ssa__rich-text ul .JP li::before, .JP .ssa__pull-quote__name, .JP .ssa__jump-navigation__title, .JP .ssa__interactive-embed__heading, .JP .ssa__download-button__link {
  font-family: FFScalaSansWebBold, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: bold;
}
.CN .font-scala-sans--bold, .CN .ssa__sticky-toolbar__contact-us, .CN .ssa__sticky-toolbar__tab, .CN .ssa__sticky-toolbar__download, .CN .ssa__sticky-toolbar__share-label, .CN .ssa__rich-text h6, .ssa__rich-text .CN h6, .CN .ssa__rich-text h5, .ssa__rich-text .CN h5, .CN .ssa__rich-text h3, .ssa__rich-text .CN h3, .CN .ssa__related-insight__link, .CN .ssa__page-summary__rte.ssa__rich-text ul li::before, .ssa__page-summary__rte.ssa__rich-text ul .CN li::before, .CN .ssa__pull-quote__name, .CN .ssa__jump-navigation__title, .CN .ssa__interactive-embed__heading, .CN .ssa__download-button__link {
  font-family: FFScalaSansWebBold, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}

.font-scala-sans--italic, .ssa__rich-text blockquote:not([class*=ssa__]) {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
}
.JP .font-scala-sans--italic, .JP .ssa__rich-text blockquote:not([class*=ssa__]), .ssa__rich-text .JP blockquote:not([class*=ssa__]) {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: normal;
}
.CN .font-scala-sans--italic, .CN .ssa__rich-text blockquote:not([class*=ssa__]), .ssa__rich-text .CN blockquote:not([class*=ssa__]) {
  font-family: FFScalaSansWebItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: normal;
}

.font-scala-sans--bold-italic {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
}
.JP .font-scala-sans--bold-italic {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: italic;
  font-weight: bold;
}
.CN .font-scala-sans--bold-italic {
  font-family: FFScalaSansWebBoldItalic, Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
}

.font-scala--regular, .ssa__rich-text h6.chart::before, .ssa__rich-text h6.table::before {
  font-family: FFScalaSansWebRegular, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

.ssa__container {
  position: relative;
  clear: both;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .ssa__container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.ssa__container .ssa__container {
  padding-right: 0;
  padding-left: 0;
}
.ssa__container + .ssa__container {
  margin-top: 30px;
}

main > .ssa__container:not(.ssa__container--bleed):last-child,
.main-content-wrapper > .ssa__container:not(.ssa__container--bleed):last-child {
  margin-bottom: 30px;
}

.ssa__container.ssa__container--has-background {
  padding: 30px 30px 30px 30px;
}
.ssa__container.ssa__container--has-background + .ssa__container--bleed,
.ssa__container.ssa__container--has-background + .ssa__container--has-background {
  margin-top: 0;
}

.ssa__container--bleed {
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
}
.ssa__container--bleed:not(.ssa__container--has-background) > .ssa__container:not(.ssa__container--bleed) {
  padding-right: 30px;
  padding-left: 30px;
}
.ssa__container--bleed + .ssa__container--has-background,
.ssa__container--bleed + .ssa__container--bleed {
  margin-top: 0;
}

.ssa__container--content {
  max-width: 1190px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

.ssa__container__col * + .ssa__container {
  margin-top: 30px;
}
.ssa__container__col + .ssa__container__col {
  margin-top: 30px;
}
@media (min-width: 680px) {
  .ssa__container__col + .ssa__container__col {
    margin-top: 0;
  }
}

.ssa__container--100,
.ssa__container--70-30,
.ssa__container--50-50,
.ssa__container--30-70,
.ssa__container--30-30-30 {
  width: 100%;
  max-width: 1250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1250px) {
  .ssa__container--100,
  .ssa__container--70-30,
  .ssa__container--50-50,
  .ssa__container--30-70,
  .ssa__container--30-30-30 {
    max-width: 1190px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

@media (min-width: 680px) {
  .ssa__container--70-30,
  .ssa__container--50-50,
  .ssa__container--30-70,
  .ssa__container--search,
  .ssa__container--30-30-30 {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }
}
@media (min-width: 910px) {
  .ssa__container--70-30,
  .ssa__container--50-50,
  .ssa__container--30-70,
  .ssa__container--search,
  .ssa__container--30-30-30 {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
}
.ssa__container--70-30 .ssa__container__col,
.ssa__container--50-50 .ssa__container__col,
.ssa__container--30-70 .ssa__container__col,
.ssa__container--search .ssa__container__col,
.ssa__container--30-30-30 .ssa__container__col {
  min-width: 0;
}

@media (min-width: 680px) {
  .ssa__container--30-30-30 {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto, auto;
  }
}
@media (min-width: 910px) {
  .ssa__container--30-30-30 {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
}

@media (min-width: 680px) {
  .ssa__container__col--70 {
    grid-column: span 6;
  }
}
@media (min-width: 768px) {
  .ssa__container__col--70 {
    grid-column: span 4;
  }
}
@media (min-width: 910px) {
  .ssa__container__col--70 {
    grid-column: span 8;
  }
}

@media (min-width: 680px) {
  .ssa__container__col--30 {
    grid-column: span 6;
  }
}
@media (min-width: 768px) {
  .ssa__container__col--30 {
    grid-column: span 2;
  }
}
@media (min-width: 910px) {
  .ssa__container__col--30 {
    grid-column: span 4;
  }
}

@media (min-width: 680px) {
  .ssa__container__col--50 {
    grid-column: 1/-1;
  }
}
@media (min-width: 910px) {
  .ssa__container__col--50 {
    grid-column: span 6;
  }
}

.ssa__container--search .ssa__container__col:first-child {
  grid-column: span 8;
}
.ssa__container--search .ssa__container__col:last-child {
  grid-column: span 8;
}
@media (min-width: 768px) {
  .ssa__container--search .ssa__container__col:first-child {
    position: relative;
    grid-column: span 3;
  }
  .ssa__container--search .ssa__container__col:last-child {
    grid-column: span 9;
  }
}

@media (min-width: 680px) and (max-width: 909.98px) {
  .ssa__container__col--70.ssa__container__col--priority {
    grid-column: span 6;
  }
}

.ssa__article-container__rte .ssa__rich-text a:not(.button),
.ssa__article-container:has(.ssa__article-container__rte) + .ssa__container--100 .ssa__rich-text a:not(.ssa__related-insight__link, .button) {
  --underline-color: currentcolor;
  --underline-thickness: 1px;
  -webkit-padding-before: 2px;
          padding-block-start: 2px;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, right top, from(var(--underline-color)), to(var(--underline-color))), -webkit-gradient(linear, left top, right top, from(rgba(51, 132, 65, 0.15)), to(rgba(51, 132, 65, 0.15)));
  background: linear-gradient(to right, var(--underline-color), var(--underline-color)), linear-gradient(to right, rgba(51, 132, 65, 0.15), rgba(51, 132, 65, 0.15));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% var(--underline-thickness), 100% 0%;
  -webkit-transition: background-size 0.3s, background-position 0.3s;
  transition: background-size 0.3s, background-position 0.3s;
}
.ssa__article-container__rte .ssa__rich-text a:not(.button):hover, .ssa__article-container__rte .ssa__rich-text a:not(.button):focus,
.ssa__article-container:has(.ssa__article-container__rte) + .ssa__container--100 .ssa__rich-text a:not(.ssa__related-insight__link, .button):hover,
.ssa__article-container:has(.ssa__article-container__rte) + .ssa__container--100 .ssa__rich-text a:not(.ssa__related-insight__link, .button):focus {
  color: #338441;
  background-position: left bottom;
  background-size: 100% var(--underline-thickness), 100% 100%;
}

.ssa__article-container {
  position: relative;
  z-index: 2;
}
@media screen {
  .ssa__article-container {
    height: var(--height);
  }
}
.ssa__article-container > .ssa__container__col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}
@media screen and (min-width: 910px), print and (min-width: 768px) {
  .ssa__article-container > .ssa__container__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.ssa__container + .ssa__article-container.ssa__container {
  margin-top: 56px;
}
@media screen and (min-width: 910px), print and (min-width: 768px) {
  .ssa__container + .ssa__article-container.ssa__container {
    margin-top: 96px;
  }
}

@media screen and (min-width: 910px), print and (min-width: 768px) {
  .ssa__article-container__col + .ssa__article-container__col {
    margin-left: 30px;
  }
}
@media screen and (max-width: 909.98px), print and (max-width: 767.98px) {
  .ssa__article-container__col + .ssa__article-container__col {
    margin-top: 30px;
  }
}

.ssa__article-container__left {
  pointer-events: all;
}
.is-experience-editor .ssa__article-container__left {
  min-height: 50px;
  min-width: 270px;
}
@media screen and (min-width: 910px), print and (min-width: 768px) {
  .ssa__article-container__left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 270px;
  }
}
@media screen and (max-width: 909.98px), print and (max-width: 767.98px) {
  .ssa__article-container__left {
    position: sticky;
    top: 20px;
    z-index: 1;
  }
}

.ssa__article-container__rte {
  max-width: 570px;
  pointer-events: all;
}
@media screen and (max-width: 909.98px), print and (max-width: 767.98px) {
  .ssa__article-container__rte {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 910px), print and (min-width: 768px) {
  .ssa__article-container__rte {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    max-width: 690px;
  }
}

.is-experience-editor .ssa__article-container__right {
  min-height: 50px;
  min-width: 50px;
}
@media screen and (min-width: 910px), print and (min-width: 768px) {
  .ssa__article-container__right {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

.ssa__accordion:last-child {
  border-bottom: none;
}
@media screen {
  .ssa__accordion.is-stuck {
    position: fixed;
  }
}

@media screen and (max-width: 767.98px) {
  .ssa__accordion--jump-nav {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s, 0s;
            transition-delay: 0s, 0s;
    -webkit-transition-duration: 0.2s, 0s;
            transition-duration: 0.2s, 0s;
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
  }
  .ssa__accordion--jump-nav:not(.is-open) {
    max-width: 570px;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
  .is-scrolling-down .ssa__accordion--jump-nav:not(.is-open).is-stuck {
    visibility: hidden;
    opacity: 0;
    -webkit-transition-delay: 0s, 0.2s;
            transition-delay: 0s, 0.2s;
  }
  .ssa__accordion--jump-nav.is-open {
    position: fixed;
    top: 0 !important;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 570px) and (max-width: 768px) {
  .ssa__accordion--jump-nav:not(.is-open) {
    left: calc((100vw - 570px) / 2);
  }
  .ssa__accordion--jump-nav:not(.is-open):not(.is-stuck) {
    margin-left: calc((100vw - 570px) / 2 - 30px / 2);
  }
}
@media screen and (min-width: 768px) {
  .ssa__accordion--jump-nav {
    top: 0;
    z-index: 1;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100vw - 60px);
    margin-left: none;
  }
}
@media screen and (min-width: 910px) {
  .ssa__accordion--jump-nav {
    width: 100%;
  }
}

.ssa__accordion__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 23px 0 29px;
  font-weight: 400;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
.ssa__accordion--jump-nav .ssa__accordion__title {
  padding: 12px 16px;
  color: #368644;
  font-size: 14px;
  line-height: 1.2142857143;
  background-color: #fff;
  border: 1px solid #368644;
}
@media screen and (max-width: 767.98px) {
  .ssa__accordion--jump-nav .ssa__accordion__title .ssa__accordion--jump-nav {
    width: auto;
  }
}
@media screen and (min-width: 910px) {
  .ssa__accordion--jump-nav .ssa__accordion__title .ssa__accordion--jump-nav {
    -webkit-transition: color 0.2s, background-color 0.2s;
    transition: color 0.2s, background-color 0.2s;
  }
}
.ssa__accordion--jump-nav.is-open .ssa__accordion__title {
  color: #fff;
  background-color: #368644;
}

.ssa__accordion--jump-nav .ssa__accordion__title-icon {
  margin-right: 15px;
}

.ssa__accordion--jump-nav .ssa__accordion__title-text {
  margin-right: 10px;
  margin-left: auto;
}

.ssa__accordion__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.is-open .ssa__accordion__arrow {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.ssa__accordion--jump-nav .ssa__accordion__arrow {
  margin: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.ssa__accordion--jump-nav.is-open .ssa__accordion__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 910px) {
  .ssa__accordion__arrow {
    -webkit-transition: -webkit-transform 0.35s ease-out;
    transition: -webkit-transform 0.35s ease-out;
    transition: transform 0.35s ease-out;
    transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
  }
}

@media screen {
  .ssa__accordion-wrapper {
    height: var(--height);
    visibility: var(--visibility);
    overflow: var(--overflow);
  }
}
.ssa__accordion--jump-nav .ssa__accordion-wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767.98px) {
  .ssa__accordion--jump-nav .ssa__accordion-wrapper:not(.is-open) {
    height: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .ssa__accordion--jump-nav .ssa__accordion-wrapper {
    -webkit-transition: height var(--animation-speed) ease;
    transition: height var(--animation-speed) ease;
  }
}

.ssa__accordion__content {
  padding: 0 0 45px 36px;
  font-size: 20px;
  line-height: 1.4;
}
.ssa__accordion__content .rich-text.container {
  padding-left: 0;
}
.ssa__accordion--jump-nav .ssa__accordion__content {
  padding: 24px 16px;
  background-color: #f5f7f9;
}
@media screen and (max-width: 767.98px) {
  .ssa__accordion--jump-nav .ssa__accordion__content {
    height: 100%;
  }
}

.ssa__anchor-link-nav {
  z-index: 1;
}
@media (min-width: 910px) {
  .ssa__authors--few + .ssa__anchor-link-nav, .scEnabledChrome .ssa__authors--few ~ .ssa__anchor-link-nav {
    margin-top: 65px;
  }
}

@media screen and (min-width: 910px) {
  body:not(.is-experience-editor) .ssa__article-container__left .ssa__authors:not(.ssa__authors--few) {
    display: none;
  }
}
@media (max-width: 909.98px) {
  .ssa__article-container__left .ssa__authors {
    display: none;
  }
}
.ssa__container__col--100 > .ssa__authors {
  margin-bottom: 60px;
}
@media screen and (min-width: 910px) {
  .ssa__container__col--100 > .ssa__authors {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 910px) {
  body:not(.is-experience-editor) .ssa__container__col--100 > .ssa__authors--few {
    display: none;
  }
}
@media (min-width: 910px) {
  .ssa__container__col--100 > .ssa__authors--few {
    margin-top: 96px;
  }
}

.ssa__authors__title {
  margin-top: 0;
  margin-bottom: 64px;
  color: #003d79;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
}
.ssa__article-container__left .ssa__authors__title {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
}

.ssa__authors__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  list-style-type: none;
}
.ssa__article-container__left .ssa__authors__list {
  display: block;
}

.ssa__authors__list-item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 909.98px) {
  .ssa__authors__list-item {
    -ms-flex-preferred-size: calc((100% - 40px) / 2);
        flex-basis: calc((100% - 40px) / 2);
  }
  .ssa__container__col--100 > .ssa__authors .ssa__authors__list-item:first-child:last-child {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-right: auto;
    margin-left: auto;
  }
  .ssa__authors__list-item:nth-child(2n+1) {
    margin-right: 40px;
  }
}
@media screen and (min-width: 910px) {
  .ssa__authors__list-item {
    -ms-flex-preferred-size: calc((100% - 80px) / 3);
        flex-basis: calc((100% - 80px) / 3);
  }
  .ssa__authors__list-item:nth-child(3n+1), .ssa__authors__list-item:nth-child(3n+2) {
    margin-right: 40px;
  }
}

.ssa__authors__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 23px;
}
.ssa__authors__list-item:last-child .ssa__authors__author {
  margin-bottom: 0;
}

.ssa__authors__author-name {
  margin: 0;
  color: #368644;
  font-size: 20px;
  line-height: 1.4;
}
.ssa__authors__author:hover .ssa__authors__author-name {
  color: #7cb085;
}
.ssa__article-container__left .ssa__authors__author-name {
  font-size: 18px;
  line-height: 1.3889;
}

.ssa__authors__author-office {
  color: #4c4c4e;
  font-size: 16px;
  line-height: 1.375;
}

.ssa__authors__author-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 64px;
  width: 64px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 999vmax;
  -o-object-fit: cover;
     object-fit: cover;
}
.ssa__article-container__left .ssa__authors__author-image {
  height: 48px;
  width: 48px;
  margin-right: 10px;
}

.ssa__boxed-text {
  display: grid;
  grid-template-columns: [col1-start] 30px [col2-start] calc(100% - 60px) [col3-start] 30px [col-end];
  grid-template-rows: [row1-start] 56px [row2-start] auto [row3-start] 30px [row-end];
  margin: 0 auto;
  max-width: 990px;
  width: 100%;
}
@media (min-width: 910px) {
  .ssa__boxed-text {
    grid-template-columns: [col1-start] 100px [col2-start] calc(100% - 200px) [col3-start] 100px [col-end];
    grid-template-rows: [row1-start] 100px [row2-start] auto [row3-start] 100px [row-end];
  }
}

.ssa__boxed-text__text-container {
  grid-column-start: col1-start;
  grid-column-end: col3-start;
  grid-row-start: row1-start;
  grid-row-end: row3-start;
  padding-bottom: 56px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
}
@media (min-width: 910px) {
  .ssa__boxed-text__text-container {
    padding: 56px 54px;
  }
}
@media (min-width: 1250px) {
  .ssa__boxed-text__text-container {
    padding-bottom: 64px;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 64px;
  }
}
.ssa__container:not(.ssa__article-container) .ssa__boxed-text__text-container > .ssa__rich-text > * {
  margin-left: 0;
  max-width: 100%;
}

.ssa__boxed-text__image {
  background-repeat: no-repeat;
  background-size: cover;
  grid-column-start: col2-start;
  grid-column-end: col-end;
  grid-row-start: row2-start;
  grid-row-end: row-end;
  height: 100%;
  width: 100%;
  margin: 0;
}

.ssa__download-button {
  pointer-events: all;
}
@media (max-width: 1249.98px) {
  .ssa__download-button {
    display: none;
  }
}

.ssa__download-button__link {
  letter-spacing: 3px;
  border: solid 2px #fbcc11;
  color: rgb(76, 76, 76);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  padding: 6px 12px 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  width: 170px;
  -webkit-transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.ssa__download-button__link:hover {
  background-color: #fbcc11;
  color: #fff;
}

.ssa__download-button__icon {
  overflow: visible !important;
  margin-left: 16px;
  height: 0.85em;
  margin-top: -1px;
}

.ssa__interactive-embed {
  width: 100%;
}

.ssa__interactive-embed__heading {
  margin-top: 32px;
  margin-bottom: 6px;
  color: #000;
  font-size: 24px;
  line-height: 1.4;
}
.ssa__interactive-embed__heading + .ssa__interactive-embed__container {
  margin-top: 24px;
}

.ssa__interactive-embed__caption {
  font-size: 14px;
  line-height: 1.375;
}
.ssa__interactive-embed__container + .ssa__interactive-embed__caption {
  margin-top: 16px;
}

.ssa__interactive-embed__container {
  clear: both;
}

.ssa__jump-navigation {
  color: #4c4c4e;
  font-size: 16px;
  line-height: 1.2;
}

.ssa__jump-navigation__title {
  color: #003d79;
  font-size: 20px;
  line-height: 1.4;
}

.ssa__jump-navigation__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: 1.2;
}

.ssa__jump-navigation__item {
  margin-bottom: 20px;
  padding-left: 20px;
  background-image: linear-gradient(to right, transparent 0, transparent 2px, #4c4c4e 2px, #4c4c4e 3px, transparent 3px);
}
.ssa__jump-navigation__item:last-child {
  margin-bottom: 0;
}

.ssa__jump-navigation__item--active {
  color: #003d79;
  background-image: linear-gradient(to right, #fbcc11 0, #fbcc11 4px, transparent 4px);
}

.ssa__jump-navigation__link {
  color: inherit;
  text-decoration: none;
}
.ssa__jump-navigation__link:hover {
  color: #003d79;
}

.ssa__jump-navigation__to-top {
  display: block;
  margin: 20px auto 0;
  text-align: center;
}
.ssa__jump-navigation__to-top svg {
  margin-right: 5px;
  vertical-align: middle;
}

.ssa__pull-quote {
  width: 100%;
}
.ssa__pull-quote--small {
  max-width: 605px;
}
.ssa__rte-embed--full .ssa__pull-quote {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}
.ssa__rte-embed--left .ssa__pull-quote, .ssa__rte-embed--right .ssa__pull-quote {
  max-width: 390px;
}
@media (max-width: 910px) {
  .ssa__rte-embed--left .ssa__pull-quote, .ssa__rte-embed--right .ssa__pull-quote {
    max-width: 605px;
  }
}

.ssa__pull-quote__figure {
  margin: 0;
}
@media (min-width: 910px) {
  .ssa__rte-embed--left .ssa__pull-quote__figure {
    margin-right: 44px;
  }
}
@media (min-width: 910px) {
  .ssa__rte-embed--right .ssa__pull-quote__figure {
    margin-left: 44px;
  }
}

.ssa__pull-quote__design-container {
  position: relative;
}

.ssa__pull-quote__blockquote {
  font-size: 30px;
  color: #000;
  line-height: 1.2;
  margin: 0;
  padding: 24px 0 24px 32px;
}
.ssa__pull-quote--small .ssa__pull-quote__blockquote {
  padding-left: 28px;
  color: #000;
  font-size: 24px;
  line-height: 1.3;
}
.ssa__pull-quote--quote-marks .ssa__pull-quote__blockquote {
  padding-top: 12px;
  padding-left: 48px;
}

.ssa__pull-quote__cite {
  font-size: 16px;
  font-style: normal;
  display: block;
  margin-top: 9px;
  padding-left: 32px;
  line-height: 1.1;
}
.ssa__pull-quote--small .ssa__pull-quote__cite {
  padding-left: 28px;
}
.ssa__pull-quote--quote-marks .ssa__pull-quote__cite {
  padding-left: 48px;
}

.ssa__pull-quote__name,
.ssa__pull-quote__company {
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.ssa__pull-quote__name {
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.6px;
}

.ssa__pull-quote__company {
  letter-spacing: 0.2px;
}

.ssa__pull-quote__bar {
  background-position: center center;
  bottom: 0;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
}
.ssa__pull-quote__bar .ssa__pull-quote--small {
  width: 4px;
}

.ssa__page-banner {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (max-width: 909.98px) {
  .ssa__page-banner {
    max-height: none !important;
  }
}
.ssa__container.ssa__container--has-background .ssa__page-banner {
  margin-top: -30px;
  margin-right: -30px;
  margin-bottom: -30px;
  margin-left: -30px;
}
.ssa__page-banner--four, .ssa__page-banner--one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ssa__page-banner--two, .ssa__page-banner--three {
  color: #fff;
  color: var(--color, #fff);
}
@media (min-width: 910px) {
  .ssa__page-banner--one {
    color: #fff;
    color: var(--color, #fff);
  }
}
.ssa__page-banner--four {
  color: #000;
  color: var(--color, #000);
}
@media (max-width: 909.98px) {
  .ssa__page-banner--one, .ssa__page-banner--four {
    background-color: #fff;
  }
}

.ssa__page-banner__container {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 2;
}
@media (min-width: 910px) {
  .ssa__page-banner__container {
    display: grid;
    grid-template-columns: [gutter-left] 30px [col1-start] 95px [col2-start] calc((100% - 30px * 2 - 95px) / 3) [col3-start] calc((100% - 30px * 2 - 95px) / 3) [col4-start] calc((100% - 30px * 2 - 95px) / 3) [gutter-right] 30px [col-end];
    grid-template-rows: [row1-start] 64px [row2-start] auto [row3-start] 64px [row-end];
  }
}
@media (min-width: 1250px) {
  .ssa__page-banner__container {
    grid-template-columns: [gutter-left] calc(calc(100% - 1190px) / 2) [col1-start] 95px [col2-start] calc((100% - calc(calc(100% - 1190px) / 2) * 2 - 95px) / 3) [col3-start] calc((100% - calc(calc(100% - 1190px) / 2) * 2 - 95px) / 3) [col4-start] calc((100% - calc(calc(100% - 1190px) / 2) * 2 - 95px) / 3) [gutter-right] calc(calc(100% - 1190px) / 2) [col-end];
    grid-template-rows: [row1-start] 122px [row2-start] auto [row3-start] 122px [row-end];
  }
  .ssa__page-banner__container *::-ms-backdrop, .ssa__page-banner__container {
    display: block;
    max-width: 1190px;
    margin: 0 auto;
  }
}
@media (min-width: 910px) {
  .ssa__page-banner--one .ssa__page-banner__container {
    display: grid;
    grid-template-columns: [gutter-left] 30px [col1-start] 95px [col2-start] calc((100% - 30px * 2 - 95px) / 4) [col3-start] calc((100% - 30px * 2 - 95px) / 4) [col4-start] calc((100% - 30px * 2 - 95px) / 4) [col5-start] calc((100% - 30px * 2 - 95px) / 4) [gutter-right] 30px [col-end];
    grid-template-rows: [row1-start] 64px [row2-start] auto [row3-start] 64px [row-end];
  }
}
@media (min-width: 1250px) {
  .ssa__page-banner--one .ssa__page-banner__container {
    grid-template-columns: [gutter-left] calc(calc(100% - 1190px) / 2) [col1-start] 95px [col2-start] calc((100% - calc(calc(100% - 1190px) / 2) * 2 - 95px) / 4) [col3-start] calc((100% - calc(calc(100% - 1190px) / 2) * 2 - 95px) / 4) [col4-start] calc((100% - calc(calc(100% - 1190px) / 2) * 2 - 95px) / 4) [col5-start] calc((100% - calc(calc(100% - 1190px) / 2) * 2 - 95px) / 4) [gutter-right] calc(calc(100% - 1190px) / 2) [col-end];
    grid-template-rows: [row1-start] 122px [row2-start] auto [row3-start] 122px [row-end];
  }
}

.ssa-page-banner__color-opacity {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 909.98px) {
  .ssa__page-banner--four .ssa-page-banner__color-opacity, .ssa__page-banner--one .ssa-page-banner__color-opacity {
    display: none;
  }
}

.ssa__page-banner__text-container {
  position: relative;
  padding: 15px 15px;
  width: 100%;
  z-index: 3;
}
@media (max-width: 909.98px) {
  .ssa__page-banner__text-container {
    max-width: 570px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 909.98px) {
  .ssa__page-banner:not(.ssa__page-banner--four) .ssa__page-banner__text-container > * {
    max-width: 570px;
  }
}
.ssa__page-banner--one .ssa__page-banner__text-container {
  padding-top: 50px;
}
@media (min-width: 910px) {
  .ssa__page-banner--one .ssa__page-banner__text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-column-start: col1-start;
    grid-column-end: col4-start;
    grid-row-start: row2-start;
    grid-row-end: row3-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 790px;
    padding: 0 60px 0 0;
  }
}
@media (min-width: 1250px) {
  .ssa__page-banner--one .ssa__page-banner__text-container {
    max-width: 690px;
  }
}
@media (min-width: 910px) {
  .ssa__page-banner--two .ssa__page-banner__text-container, .ssa__page-banner--three .ssa__page-banner__text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-column-start: col2-start;
    grid-column-end: col4-start;
    grid-row-start: row2-start;
    grid-row-end: row3-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 795px;
    padding: 0;
  }
}
.ssa__page-banner--four .ssa__page-banner__text-container {
  padding-top: 50px;
}
@media (min-width: 910px) {
  .ssa__page-banner--four .ssa__page-banner__text-container {
    background-color: #fff;
    padding: 64px 100px 0 64px;
    grid-column-start: col1-start;
    grid-column-end: gutter-right;
    grid-row-start: row2-start;
    grid-row-end: row-end;
  }
}
@media (min-width: 1250px) {
  .ssa__page-banner--four .ssa__page-banner__text-container {
    padding: 64px 200px 0 95px;
  }
}

.ssa__page-banner__figure {
  line-height: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.ssa__page-banner__figure--blur {
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.ssa__page-banner--two .ssa__page-banner__figure {
  display: none;
}
@media (min-width: 910px) {
  .ssa__page-banner--one .ssa__page-banner__figure {
    grid-column-start: col4-start;
    grid-column-end: col-end;
    grid-row-start: row1-start;
    grid-row-end: row-end;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
  }
}
.ssa__page-banner--one .ssa__page-banner__figure, .ssa__page-banner--four .ssa__page-banner__figure {
  height: 216px;
}
@media (min-width: 910px) {
  .ssa__page-banner--one .ssa__page-banner__figure, .ssa__page-banner--four .ssa__page-banner__figure {
    height: 100%;
    margin: 0;
  }
}
.ssa__page-banner--three .ssa__page-banner__figure {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 910px) {
  .ssa__page-banner--three .ssa__page-banner__figure, .ssa__page-banner--four .ssa__page-banner__figure {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.ssa__page-banner__figure picture {
  width: 100%;
}
.ssa__page-banner__figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.ssa__page-banner__figure *::-ms-backdrop, .ssa__page-banner__figure {
  display: none;
}

.ssa__page-banner--two .ssa__page-banner__publisher a, .ssa__page-banner--three .ssa__page-banner__publisher a,
.ssa__page-banner--two .ssa__page-banner__people a,
.ssa__page-banner--three .ssa__page-banner__people a {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: rgba(#fff, 0.4);
  border-bottom-color: rgba(var(--color, #fff), 0.4);
  color: #fff;
  color: var(--color, #fff);
}
.ssa__page-banner--two .ssa__page-banner__publisher a:hover, .ssa__page-banner--three .ssa__page-banner__publisher a:hover,
.ssa__page-banner--two .ssa__page-banner__people a:hover,
.ssa__page-banner--three .ssa__page-banner__people a:hover {
  border-bottom-style: solid;
  border-bottom-color: rgba(#fff, 0.7);
  border-bottom-color: rgba(var(--color, #fff), 0.7);
}
@media (min-width: 910px) {
  .ssa__page-banner--one .ssa__page-banner__publisher a,
  .ssa__page-banner--one .ssa__page-banner__people a {
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: rgba(#fff, 0.4);
    border-bottom-color: rgba(var(--color, #fff), 0.4);
    color: #fff;
    color: var(--color, #fff);
  }
  .ssa__page-banner--one .ssa__page-banner__publisher a:hover,
  .ssa__page-banner--one .ssa__page-banner__people a:hover {
    border-bottom-style: solid;
    border-bottom-color: rgba(#fff, 0.7);
    border-bottom-color: rgba(var(--color, #fff), 0.7);
  }
}
.ssa__page-banner--four .ssa__page-banner__publisher a,
.ssa__page-banner--four .ssa__page-banner__people a {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: rgba(#000, 0.4);
  border-bottom-color: rgba(var(--color, #000), 0.4);
  color: #000;
  color: var(--color, #000);
}
.ssa__page-banner--four .ssa__page-banner__publisher a:hover,
.ssa__page-banner--four .ssa__page-banner__people a:hover {
  border-bottom-style: solid;
  border-bottom-color: rgba(#000, 0.7);
  border-bottom-color: rgba(var(--color, #000), 0.7);
}

@media (min-width: 910px) {
  .ssa__page-banner__people--hide-on-desktop {
    display: none;
  }
}

.ssa__page-banner__header {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 909.98px) {
  .ssa__page-banner__header.ssa__page-banner__header--desktop {
    display: none;
  }
}
@media (min-width: 910px) {
  .ssa__page-banner__header.ssa__page-banner__header--mobile {
    display: none;
  }
}
@media (min-width: 910px) {
  .ssa__page-banner__header {
    line-height: 1.134;
    font-size: 52px;
    margin-left: -3px;
  }
}

@media (min-width: 910px) {
  .ssa__page-banner__header .mobile-only-linebreak {
    display: none;
  }
}

.ssa__page-banner__subtitle {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 40px;
}
@media (max-width: 909.98px) {
  .ssa__page-banner__subtitle.ssa__page-banner__subtitle--desktop {
    display: none;
  }
}
@media (min-width: 910px) {
  .ssa__page-banner__subtitle.ssa__page-banner__subtitle--mobile {
    display: none;
  }
}
@media (min-width: 910px) {
  .ssa__page-banner__subtitle {
    font-size: 28px;
  }
}

.ssa__page-banner__meta {
  font-size: 16px;
  line-height: 1.37;
  margin-top: 16px;
}
.ssa__page-banner__subtitle + .ssa__page-banner__meta {
  margin-top: 40px;
}
@media (min-width: 910px) {
  .ssa__page-banner__subtitle + .ssa__page-banner__meta.ssa__page-banner__people--hide-on-desktop + .ssa__page-banner__meta {
    margin-top: 40px;
  }
}
@media (min-width: 910px) {
  .ssa__page-banner__meta .ssa__page-banner:not(.ssa__page-banner--four) {
    font-size: 20px;
  }
}

.ssa__page-banner__divider {
  padding-left: 6px;
  padding-right: 6px;
}
@media (min-width: 910px) {
  .ssa__page-banner__divider {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.ssa__page-banner__date {
  text-transform: uppercase;
}
.ssa__page-banner__date.ssa__page-banner__meta {
  font-size: 14px;
}

.ssa__page-summary {
  border-bottom: #fbcc11 solid 2px;
  border-top: #fbcc11 solid 2px;
  padding: 25px 15px;
  width: 100%;
}
.ssa__page-summary + div {
  margin-top: 56px;
}

.ssa__page-summary__header {
  color: #003d79;
  font-size: 20px;
  line-height: 1;
  margin: 0;
}

.ssa__page-summary__rte.ssa__rich-text {
  font-size: 16px;
}
.ssa__page-summary__header + .ssa__page-summary__rte.ssa__rich-text {
  margin-top: 20px;
}
.ssa__page-summary__rte.ssa__rich-text p {
  margin-bottom: 18px;
}
.ssa__page-summary__rte.ssa__rich-text ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 15px;
}
.ssa__page-summary__rte.ssa__rich-text ul li {
  position: relative;
  margin: 0;
  padding-left: 24px;
}
.ssa__page-summary__rte.ssa__rich-text ul li::before {
  display: block;
  height: 8px;
  width: 8px;
  min-width: 8px;
  color: #368644;
  position: absolute;
  top: -1.5px;
  left: 0;
  font-size: 20px;
  background-color: transparent;
  border-radius: 100%;
  content: "»";
}
.ssa__page-summary__rte.ssa__rich-text ul li + li {
  margin-top: 18px;
}

.ssa__related-insight {
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  font-size: 16px;
  padding: 22px 0;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}
.ssa__related-insight--in-view, .is-experience-editor .ssa__related-insight {
  opacity: 1;
}
.ssa__related-insight:hover {
  cursor: pointer;
}
@media (min-width: 910px) {
  .ssa__rte-embed--left .ssa__related-insight, .ssa__rte-embed--right .ssa__related-insight {
    border-left: 1px solid #eeeeee;
    border-top: 2px solid #fbcc11;
    border-right: 1px solid #eeeeee;
    opacity: 1;
    padding: 16px 16px 32px 16px;
    -webkit-transition: -webkit-transform ease-in-out 250ms;
    transition: -webkit-transform ease-in-out 250ms;
    transition: transform ease-in-out 250ms;
    transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
    width: 270px;
  }
}
@media (min-width: 910px) {
  .ssa__rte-embed--right .ssa__related-insight {
    margin-left: 24px;
    -webkit-transform: translateX(270px);
            transform: translateX(270px);
  }
  .ssa__rte-embed--right .ssa__related-insight.ssa__related-insight--in-view, .is-experience-editor .ssa__rte-embed--right .ssa__related-insight {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (min-width: 910px) {
  .ssa__rte-embed--left .ssa__related-insight {
    -webkit-transform: translateX(-270px);
            transform: translateX(-270px);
  }
  .ssa__rte-embed--left .ssa__related-insight.ssa__related-insight--in-view, .is-experience-editor .ssa__rte-embed--left .ssa__related-insight {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.ssa__related-insight__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 690px;
}
@media (min-width: 910px) {
  .ssa__rte-embed--full .ssa__related-insight__content {
    margin-left: 150px;
  }
}
.ssa__rte-embed--text-width .ssa__related-insight__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 910px) {
  .ssa__rte-embed--left .ssa__related-insight__content, .ssa__rte-embed--right .ssa__related-insight__content {
    display: block;
  }
}

.ssa__related-insight__title {
  margin-bottom: 24px;
  max-width: 690px;
  text-align: center;
}
.ssa__rte-embed--full .ssa__related-insight__title, .ssa__rte-embed--text-width .ssa__related-insight__title {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 910px) {
  .ssa__rte-embed--left .ssa__related-insight__title, .ssa__rte-embed--right .ssa__related-insight__title {
    text-align: left;
  }
}

.ssa__related-insight__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 57px;
  margin-right: 16px;
  width: 100px;
}
@media (min-width: 910px) {
  .ssa__related-insight__image {
    height: 134px;
    width: 238px;
  }
}
@media (min-width: 910px) {
  .ssa__rte-embed--full .ssa__related-insight__image, .ssa__rte-embed--text-width .ssa__related-insight__image {
    margin-right: 24px;
  }
}
.ssa__rte-embed--left .ssa__related-insight__image, .ssa__rte-embed--right .ssa__related-insight__image {
  margin-bottom: 16px;
}
@media (min-width: 910px) {
  .ssa__rte-embed--left .ssa__related-insight__image, .ssa__rte-embed--right .ssa__related-insight__image {
    margin-right: 0;
  }
}
.ssa__rich-text .ssa__related-insight__image img, .ssa__related-insight__image img {
  height: 100%;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ssa__related-insight__link {
  display: block;
  line-height: 1.375;
  margin-bottom: 8px;
}

.ssa__related-insight__summary {
  line-height: 1.375;
}

body {
  counter-reset: tablecounter;
  counter-reset: chartcounter;
}

.ssa__rich-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ssa__rich-text > *:first-child {
  margin-top: 0;
}
.ssa__rich-text > * {
  margin: 24px auto;
}
@media screen and (min-width: 910px), print and (min-width: 768px) {
  .ssa__container:not(.ssa__article-container) .ssa__rich-text > * {
    margin-left: 300px;
  }
}
.ssa__rich-text > *:not(.ssa__rte-embed--full) {
  max-width: 570px;
}
@media (min-width: 1250px) {
  .ssa__rich-text > *:not(.ssa__rte-embed--full) {
    max-width: 690px;
  }
}
@media screen and (min-width: 910px), print and (min-width: 768px) {
  .ssa__rich-text.ssa__rich-text--left > * {
    margin-left: 0;
  }
  .ssa__container:not(.ssa__article-container) .ssa__rich-text.ssa__rich-text--left > * {
    margin-left: 0;
  }
}
.ssa__rich-text .ssa__container__col.ssa__container__col--50 {
  font-size: 16px;
}
.ssa__rich-text img {
  height: auto;
  max-width: 100%;
}
.ssa__rich-text p {
  margin-top: 0;
}
.ssa__rich-text p + .ssa__rich-text p {
  margin-top: 24px;
}
.ssa__rich-text ul li,
.ssa__rich-text ol li {
  margin-bottom: 0;
}
.ssa__rich-text ul li + li,
.ssa__rich-text ol li + li {
  margin-top: 25px;
}
.ssa__rich-text .ssa__container__col--50 ol li + li,
.ssa__rich-text .ssa__container__col--50 ul li + li {
  margin-top: 18px;
}
.ssa__rich-text h3,
.ssa__rich-text h4,
.ssa__rich-text h5,
.ssa__rich-text h6 {
  margin-bottom: 16px;
  margin-top: 32px;
}
.ssa__rich-text h2 {
  font-size: 30px;
  color: #003d79;
  margin-bottom: 24px;
  margin-top: 56px;
}
.ssa__rich-text h2:focus {
  outline: 0;
}
.ssa__rich-text h2:not(.ssa__page-summary__header, .ssa__authors__title) {
  font-size: 30px;
  margin-top: 2.2em;
  margin-bottom: 15px;
}
.ssa__rich-text h3 {
  margin-bottom: 8px;
  margin-top: 32px;
  font-size: 24px;
  line-height: 1.4;
  color: #000;
}
.ssa__rich-text h4 {
  font-size: 20px;
  margin-bottom: 6px;
  line-height: 1.4;
  color: #003d79;
}
.ssa__rich-text h5 {
  font-size: 15px;
  color: #000;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.ssa__rich-text h6 {
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  color: #003d79;
  font-size: 18px;
  text-transform: uppercase;
}
.ssa__rich-text h6.chart {
  counter-increment: chartcounter;
}
.ssa__rich-text h6.table {
  counter-increment: tablecounter;
  width: 100%;
}
.ssa__rich-text h6.chart::before, .ssa__rich-text h6.table::before {
  display: block;
  width: 150px;
  margin-right: 5px;
  font-size: 13px;
  content: counter(mycounter);
}
.ssa__rich-text h6.chart::before {
  content: "Chart " counter(chartcounter);
}
.ssa__rich-text h6.table::before {
  content: "Table " counter(tablecounter);
}
.ssa__rich-text h2 + h3 {
  margin-top: 26px;
}
.ssa__rich-text h3 + h4 {
  margin-top: 10px;
}
.ssa__rich-text h4 + h5 {
  margin-top: 0;
}
.ssa__rich-text h3 + h6 {
  margin-top: 10px;
}
.ssa__rich-text h4 + h6 {
  margin-top: 0;
}
.ssa__rich-text blockquote:not([class*=ssa__]) {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 40px;
  margin-top: 40px;
  padding-left: 25px;
  position: relative;
  color: #4c4c4e;
}
.ssa__rich-text blockquote:not([class*=ssa__]):before {
  background-color: #fbcc11;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}
.ssa__rich-text > table {
  clear: both;
  margin-top: 56px;
  margin-bottom: 56px;
}
.ssa__rich-text > table caption {
  margin-bottom: 15px;
  font-weight: bold;
}
.ssa__rich-text > table td,
.ssa__rich-text > table th {
  min-width: 150px;
}

.ssa__rte-embed {
  min-width: 50px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 910px) {
  .ssa__container:not(.ssa__article-container) .ssa__rich-text .ssa__rte-embed:not(.ssa__rte-embed--text-width) {
    margin-left: 0;
  }
}
@media (min-width: 910px) and (max-width: 1249.98px) {
  .ssa__container:not(.ssa__article-container) .ssa__rich-text .ssa__rte-embed:not(.ssa__rte-embed--text-width).ssa__rte-embed--right {
    margin-left: 30px;
  }
}
@media (min-width: 910px) {
  .ssa__rte-embed--left {
    float: left;
  }
}
@media (min-width: 910px) {
  .ssa__rte-embed--right {
    float: right;
  }
}
.ssa__rte-embed--text-width, .ssa__rte-embed--full {
  clear: both;
  margin-top: 56px;
  margin-bottom: 56px;
}

.ssa__rte-embed--left {
  background: #fff;
}

.ssa__sticky-toolbar {
  background-color: #f5f7f9;
  bottom: 0;
  font-size: 18px;
  left: 0;
  position: sticky;
  right: 0;
  width: 100%;
  -webkit-transition: background-color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out;
  z-index: 80;
}
@media (max-width: 909.98px) {
  .ssa__sticky-toolbar {
    background-color: #f5f7f9;
    color: #003d79;
    font-size: 16px;
  }
}
@media print {
  .ssa__sticky-toolbar {
    display: none !important;
  }
}
.ssa__sticky-toolbar.ssa__sticky-toolbar--unstick {
  background-color: #fff;
}
.ssa__sticky-toolbar .share-bar li {
  margin: 0;
}
.ssa__sticky-toolbar .share-bar li + li {
  margin-left: 10px;
}
.ssa__sticky-toolbar .share-bar .icon {
  background-size: cover;
}
.ssa__sticky-toolbar .icon-wechat {
  background-image: url("/build/article/images/svg/wechat-grey.svg");
  background-repeat: no-repeat;
}
.ssa__sticky-toolbar .icon-wechat:hover {
  background-image: url("/build/article/images/svg/wechat.svg");
}
.ssa__sticky-toolbar .icon-email {
  background-image: url("/build/article/images/svg/email-grey.svg");
  background-repeat: no-repeat;
}
.ssa__sticky-toolbar .icon-email:hover {
  background-image: url("/build/article/images/svg/email.svg");
}
.ssa__sticky-toolbar .icon-facebook {
  background-image: url("/build/article/images/svg/facebook-grey.svg");
  background-repeat: no-repeat;
}
.ssa__sticky-toolbar .icon-facebook:hover {
  background-image: url("/build/article/images/svg/facebook.svg");
}
.ssa__sticky-toolbar .icon-twitter {
  background-image: url("/build/article/images/svg/twitter-grey.svg");
  background-repeat: no-repeat;
}
.ssa__sticky-toolbar .icon-twitter:hover {
  background-image: url("/build/article/images/svg/twitter.svg");
}
.ssa__sticky-toolbar .icon-linkedin {
  background-image: url("/build/article/images/svg/linkedin-grey.svg");
  background-repeat: no-repeat;
}
.ssa__sticky-toolbar .icon-linkedin:hover {
  background-image: url("/build/article/images/svg/linkedin.svg");
}

.ssa__sticky-toolbar__container--desktop {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 96px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 990px;
}
@media (max-width: 909.98px) {
  .ssa__sticky-toolbar__container--desktop {
    display: none;
  }
}

.ssa__sticky-toolbar__share-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc((100% - 170px) / 2);
}
.ssa__sticky-toolbar__share-container .share-bar {
  margin: 0;
}

.ssa__sticky-toolbar__share-label {
  color: #003d79;
  margin-right: 24px;
  line-height: 1;
  margin-top: 4px;
}

.ssa__sticky-toolbar__download {
  outline: 2px solid transparent;
  color: rgb(76, 76, 76);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px;
  text-transform: uppercase;
  min-width: 170px;
  letter-spacing: 4px;
  -webkit-transition-property: background-color, outline, color;
  transition-property: background-color, outline, color;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
@media (min-width: 910px) {
  .ssa__sticky-toolbar__download {
    font-size: 14px;
  }
}
.ssa__sticky-toolbar__download span {
  white-space: nowrap;
  height: 1em;
  line-height: 1.2;
}
.ssa__sticky-toolbar__download svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ssa__sticky-toolbar__download:hover {
  outline: 2px solid #fbcc11;
  background-color: #fbcc11;
  color: #fff;
}

.ssa__sticky-toolbar__contact-us-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: calc((100% - 170px) / 2);
}

@media (min-width: 910px) {
  .ssa__sticky-toolbar__container--mobile {
    display: none;
  }
}

.ssa__sticky-toolbar__tabs {
  border-top: #003d79 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.ssa__sticky-toolbar__tab {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  font-size: 16px;
  padding-bottom: 9px;
  padding-top: 9px;
  text-align: center;
  width: 50%;
}
.ssa__sticky-toolbar__tab:nth-last-child(3):first-child, .ssa__sticky-toolbar__tab:nth-last-child(3):first-child ~ .ssa__sticky-toolbar__tab {
  width: 33.33%;
}
.ssa__sticky-toolbar__tab.is-current {
  background-color: #003d79;
  color: #fff;
}
.ssa__sticky-toolbar__tab + .ssa__sticky-toolbar__tab {
  border-left: #003d79 1px solid;
}

.ssa__sticky-toolbar__tab-content {
  height: 0;
  -webkit-transition: height 250ms ease-in-out;
  transition: height 250ms ease-in-out;
  outline: 0;
}
.ssa__sticky-toolbar__tab-content.is-current {
  border-top: solid 1px #003d79;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 96px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ssa__sticky-toolbar__share-tab:not(.is-current),
.ssa__sticky-toolbar__download-tab:not(.is-current),
.ssa__sticky-toolbar__contact-tab:not(.is-current) {
  display: none;
}

.ssa__sticky-toolbar__contact-us {
  outline: solid 2px transparent;
  color: rgb(76, 76, 76);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px;
  text-transform: uppercase;
  letter-spacing: 4px;
  -webkit-transition-property: background-color, outline, color;
  transition-property: background-color, outline, color;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
@media (min-width: 910px) {
  .ssa__sticky-toolbar__contact-us {
    outline: solid 2px #368644;
    font-size: 14px;
  }
}
.ssa__sticky-toolbar__contact-us span {
  height: 1em;
  line-height: 1.2;
}
.ssa__sticky-toolbar__contact-us:hover {
  background-color: #368644;
  outline: solid 2px #368644;
  color: #fff;
}

.ssa__article-page .site-content {
  padding-bottom: 0;
  padding-top: 0;
}

.ssa__article-hr {
  margin-bottom: 60px;
}
@media screen and (min-width: 910px) {
  .ssa__article-hr {
    margin-bottom: 100px;
  }
}
.ssa__article-hr svg,
.ssa__article-hr img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 520px) {
  .ssa__article-hr svg,
  .ssa__article-hr img {
    max-width: 490px;
  }
}

.three-col-nav {
  font-family: "FFScalaSansWebBold", helvetica, arial, sans-serif;
  font-size: 20px;
  border: thin solid #ececec;
  -webkit-margin-after: 64px;
          margin-block-end: 64px;
  -webkit-padding-after: 12px;
          padding-block-end: 12px;
}
.three-col-nav a {
  display: block;
  -webkit-padding-after: 16px;
          padding-block-end: 16px;
}
.three-col-nav a::after {
  color: #338441;
  content: url("data:image/svg+xml,%3Csvg width='7' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.822916 8.60807L0.646139 8.78485L0.822916 8.96162L1.53807 9.67678L1.71484 9.85355L1.89162 9.67678L5.89162 5.67678L6.0684 5.5L5.89162 5.32322L1.89162 1.32322L1.71484 1.14645L1.53807 1.32322L0.822916 2.03837L0.64614 2.21515L0.822916 2.39193L3.93099 5.5L0.822916 8.60807Z' fill='%23338441' stroke='%23338441' stroke-width='0.5' /%3E%3C/svg%3E");
  -webkit-margin-start: 4px;
          margin-inline-start: 4px;
}
.three-col-nav a:hover {
  color: #7cb085;
}
.three-col-nav svg {
  color: #338441;
}

.three-col-nav__col {
  width: auto;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
  padding-inline: 32px;
}

.three-col-nav__col__title {
  color: #4c4c4e;
  font-size: 18px;
  text-transform: capitalize;
}

.three-col-nav__container {
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 800px) {
  .three-col-nav__container {
    grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
  }
}

.three-col-nav__link {
  color: #338441;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  cursor: pointer;
}

.three-col-nav__list {
  list-style: none;
  margin-inline: 0;
  padding-inline: 0;
}

.three-col-nav__list__item {
  margin: 0;
}

.three-col-nav__title {
  background-color: #f5f7f9;
  -webkit-border-after: thin solid #ececec;
          border-block-end: thin solid #ececec;
  -webkit-margin-after: 12px;
          margin-block-end: 12px;
}
.three-col-nav__title h3 {
  margin: 0;
  font-size: 20px;
  padding-block: 16px;
  padding-inline: 24px;
}
/*# sourceMappingURL=index-generated.css.map */

