:root {
	--top-image-height: 55vh;
	--site-width: 60vw;
	--page-margins: 2rem;
}
@media (max-width: 1400px) {
	:root {
		--top-image-height: 40vh;
		--site-width: 80vw;
		--page-margins: 1rem;
	}
}
@media (max-width: 1000px) {
	:root {
		--site-width: 90vw;
		font-size: 90%;
	}
}
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	max-width: 100%;
}
body {
	margin: 0;
	padding: 0;
	font-family: "Raleway",Helvetica,Arial,sans-serif;
	color: #333;
	background-color: #FFF;
	overflow-x: hidden;
	max-width: 100%;
	overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6 {
	color: #00435F; /*#bf5700*/
}
h1 {
	font-size: 2rem;
	margin: 0;
}
h2 {
	font-size: 1.8rem;
	margin: 0;
}
p {
	line-height: 1.7rem;
	font-size: 1.1rem;
	color: #555;
}

a {
	text-decoration: none;
	color: #00435F;
}
a:hover {
	color: #bf5700;
}

ol {
	padding-left: 0;
	margin-left: 0;
	list-style-position: inside;
	color: #555;
}
ol li {
	line-height: 1.7rem;
	margin-bottom: 1.5rem;
	text-align: justify;
	font-size: 1.1rem;
}

ul {
	padding-left: 1rem;
}
ul li {
	font-size: 1.1rem;
	line-height: 1.7rem;
	color: #555;
}

div.home-image {
	background-image: url(../img/home.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	/*background-size: auto 100vh;*/
	width: auto;
	height: 100vh;
	position: relative;
	overflow: auto;
	overflow-x: hidden;
	max-width: 100%;
}
div.top-image {
	background-image: var(--bg-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: auto;
	height: var(--top-image-height);
	overflow: auto;
	position: relative;
	overflow-x: hidden;
	max-width: 100%;
}
div.image-title {
	position: absolute;
	height: auto;
	padding-bottom: 2rem;
	width: 100vw;
	bottom: 0;
}
div.image-title#home-title {
	display: none;
}
div.image-title h1 {
	padding-top: 0.5rem;
	font-size: 2.5rem;
	font-weight: normal;
	font-variant: small-caps;
	text-shadow: 0em 0.1em 0.1em rgba(0,0,0,0.5);
	width: var(--site-width);
	margin: auto;
	color: white;
}
div.top-image.people {
	background-position: center 5rem;
}
a.home-expand {
	position: absolute;
	top: 85vh;
	left: 50%;
	width: 64px;
	height: 64px;
	transform: translate(-50%);
	background: url(../img/expand_down.svg);
	background-repeat: no-repeat;
	background-position: center;
	text-decoration: none;
}
a.home-expand:hover {
	filter: brightness(0) invert(1);
	cursor: pointer;
}

header.header-bar {
	width: 100%;
	height: 5rem;
	position: fixed;
	top: 0;
	background-color: white;
	border-bottom: 1px solid rgba(0,0,0,.1);
	box-shadow: 0 0 7px rgba(0,0,0,.1);
	transition: 0.2s;
	z-index: 999;
}
header.header-bar.home-bar {
	background-color: transparent;
	border-bottom: 0px;
	box-shadow: none;
}

div.nav-bar {
	width: var(--site-width);
	height: 100%;
	margin: auto;
	/*display: flex;*/
}
a.logo-main {
	display: block;
	height: 3rem;
	width: 15vw;
	min-width: 13rem;
	margin-top: 1rem;
	margin-right: 1rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/logo.png);
	/*float: left;*/
	position: absolute;
}

div.nav-menu-container {
	overflow: hidden;
}

a.mobile-menu-button {
	float:right;
	margin-top: 1.5rem;
	height: 2rem;
	background-image: url(../img/menu.svg);
	background-repeat: no-repeat;
	display: block;
	width: 2rem;
	background-size: 2rem;
}

@media (min-width: 1400px) {
	nav.top-menu {
		display: flex;
		justify-content: space-between;
		margin-left: max(15vw, 13rem);
	}
	a.mobile-menu-button {
		display: none;
	}
}
@media (max-width: 1400px){
	div#full-menu-container {
		display: none;
	}
	nav.top-menu {
		margin-top: 5rem;
		background-color: white;
		display: flex;
		flex-direction: column;
		padding-left: 2rem;
		padding-right: 2rem;
		padding-bottom: 1rem;
		border-top: 2px solid #00768F;
		border-left: 1px solid rgba(0,0,0,.1);
		border-right: 1px solid rgba(0,0,0,.1);
		border-bottom: 1px solid rgba(0,0,0,.1);
	}
	header.home-bar div.nav-bar div.nav-menu-container nav.top-menu {
		border-top: 2px solid rgba(0,0,0,0.0);
	}
	ul.main-menu {
		flex-direction: column;
	}
	ul.main-menu li {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		border-bottom: 1px solid #EEE;
	}
	ul.main-menu li:hover {
		background-color: #F9F9F9;
	}
}

ul.main-menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	/*overflow: hidden;*/
	padding-top: 1rem;
	height: auto;
	display: flex;
}
ul.main-menu li a {
	display: block;
	color: #bf5700;
	text-decoration: none;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	line-height: 1rem;
	font-weight: bold;
}
ul.main-menu li a:hover {
	color: #ae4600;
}
ul.language-picker {
	list-style-type: none;
	margin: 0;
	padding: 0;
	/*overflow: hidden;
	height: 3rem;*/
	padding-top: 1rem;
	height: auto;
	/*margin-left: auto;*/
}
ul.language-picker li {
	float: left;
	padding-left: 0.5rem;
}
ul.language-picker li.divider {
	display: block;
	color: #00102C;
	text-decoration: none;
	padding-top: 1rem;
	padding-bottom: 1rem;
	line-height: 1rem;
	font-weight: normal;
	font-variant: small-caps;
}
ul.language-picker li a {
	display: block;
	color: #00435F;
	text-decoration: none;
	padding-top: 1rem;
	padding-bottom: 1rem;
	line-height: 1rem;
	font-weight: normal;
	font-variant: small-caps;
}
ul.language-picker li a:hover {
	color: #00213D;
}
ul.language-picker li a.disabled {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: #999;
}
div.block-container {
	background-color: white;
	margin-bottom: 4rem;
}
div.block-container.alternate {
	background-color: #EEE;
}
div.block {
	display: flex;
	flex-wrap: wrap;
	/*gap: 2em;*/
	margin: auto;
	width: var(--site-width);
	padding-top: 2rem;
	/*padding-left: 2rem;
	padding-right: 2rem;*/
	padding-bottom: 2rem;
}
div.divider {
	margin: auto;
	width: var(--site-width);
	padding-left: 2rem;
	padding-right: 2rem;
	background-color: white;
}
div.divider-line {
	margin: auto;
	width: 70%;
	border-bottom: 1px solid #bf5700;	
}
div.info-block {
	padding-top: 1.5rem;
	padding-right: 1.5rem;
	/*min-width: 45%;*/
	/* flex: 1 1 0;*/
	width: 45%;
	/*min-width: 30rem;*/
}
@media (max-width: 1400px) {
	div.info-block {
		padding-right: 0;
	}
}
div.info-block.single {
	width: 100%;
}
div.info-block.large {
	width: 60%;
}
div.info-block.large + div.info-block {
	width: auto;
}

@media (max-width: 1400px) {
	div.info-block {
		width: 100%;
	}
	div.info-block.large {
		width: 100%;
	}
}

div.rankings-container {
	float: right;
	margin-right: -8rem;
	/*padding-left: 1rem;
	padding-bottom: 1rem;*/
}
@media (max-width: 1400px) {
	div.rankings-container {
		margin-right: 0;
		padding-left: 1rem;
		padding-bottom: 1rem;
	}
}
div.rankings-container > a > img {
	width: 6rem;
	filter: saturate(0%) opacity(70%);
}
@media (hover: none) {
	div.rankings-container > a > img {
	filter: none;
}
}
div.rankings-container > a > img:hover {
	filter: none;
}

div.flex-enum-container {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}
a.flex-enum-item {
	width: 20%;
	margin: 0;
	padding: 0.5rem;
	border: 1px solid #CCC;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 7px;
	color: #00435F;
	text-decoration: none;
}
a.flex-enum-item:hover {
	color: #00768F;
	cursor: pointer;
	border: 1px solid #AAA;
}

ul.expertise-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, 15rem);
	grid-gap: 1rem;
	justify-content: space-between;

	/* boring properties */
	list-style: none;
	padding: 0;
}
ul.expertise-container li {
	border-bottom: 1px solid #00768F;
	display: flex;
	padding: 0;
	position: relative;
}
ul.expertise-container li:after {
	font-family: 'Material Icons';
	color: #bf5700;
	content: 'chevron_right';
	font-size: 1.5rem;
	font-weight: normal;
	float: right;
	margin-right: 0em;
	vertical-align: -50%;
	height: 100%;
}
ul.expertise-container li a {
	width: 100%;
	font-weight: bold;
	align-self: center;
	font-size: 1.1rem;
	padding: 0;
	margin: 0;
	line-height: 1.7rem;
	padding-right: 1rem;
}

p.item-header {
	padding: 0;
	padding-left: 3.5rem;
	line-height: 1.5rem;
	font-weight: bold;
	position: relative;
	color: inherit;
}
p.item-header:before {
	margin-left: -1.5rem;
	line-height: 1.5rem;
	position: absolute;
	font-family: 'Material Icons';
	content: attr(data-icon);
	font-size: 2rem;
}


a.specialist {
	display: block;
	background-color: #F6F6F6;
	border: 1px solid #DDD;
	padding: 0.5rem;
	padding-left: 7rem;
	height: auto;
	margin-bottom: 1rem;
	text-decoration: none;
}
a.specialist:hover {
	background-color: #F9F9F9;
	border: 1px solid #AAA;
}
div.specialist-image {
	width: 5rem;
	height: 5rem;
	float: left;
	margin-left: -6.5rem;
	position: absolute;
	background-image: var(--specialist-image);
	background-repeat: no-repeat;
	background-size: 5rem;
	
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}
a.specialist h1 {
	font-size: 1em;
	font-weight: bold;
	padding: 0;
	margin: 0;
	line-height: 1.5rem;
}
a.specialist p {
	font-size: 0.9rem;
	padding: 0;
	padding-left: 1.2rem;
	margin: 0;
	line-height: 1.3rem;
}
a.specialist p:before {
	margin-left: -1.2rem;
	position: absolute;
	font-family: 'Material Icons';
	content: attr(data-contact-type);
	font-size: inherit;
}

div.contact-block {
	background-color:#DDD;
	padding: 1.3rem;
	max-width: 30rem;
}

div.contact-block h2 {
	color: #444;
	font-size: 1.5rem;
}
div.contact-block p {
	margin-bottom: 0;
}
span.contact-detail {
	padding: 0;
	padding-left: 2rem;
}
span.contact-detail:before {
	margin-left: -2rem;
	position: absolute;
	font-family: 'Material Icons';
	content: attr(data-contact-type);
	font-size: inherit;
}

a.expertise-area-small {
	display: inline-block;
	padding:0.5rem;
	margin: 0.25rem;
	font-size: 0.8rem;
	background-color: #F6F6F6;
	border: 1px solid #DDD;
}
a.expertise-area-small:hover {
	background-color: #F9F9F9;
	border: 1px solid #AAA;
}

div.team-small-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: left;
	margin-top: 1rem;
	gap: 0.5rem;
}
div.team-small-container > a {
	display: block;
	width:10vw;
	min-width: 10rem;
	margin-bottom: 2rem;
	box-shadow: 0 3px 12px 0 rgba(0,0,0,.06),0 1px 3px 0 rgba(0,0,0,.08);
}
div.team-small-container > a > img {
	width: 100%;
}
div.team-small-container > a:hover > img {
	opacity: 0.8;
}
div.team-small-container > a:hover > p {
	color: #888;
}
div.team-small-container > a > p {
	margin-top: 0;
	color: #555;
	font-size: 1rem;
	padding-top: 0.5rem;
	padding-left: 0.5rem;
	padding-bottom: 0.5rem;
	margin-bottom: 0;
}
div.people-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	/*justify-content: space-between;*/
	margin-top: 1rem;
	gap: 1rem;
}

a.people-block {
	display: block;
	width: 18vw;
	min-width: 15rem;
	margin-bottom: 2rem;
	box-shadow: 0 3px 12px 0 rgba(0,0,0,.06),0 1px 3px 0 rgba(0,0,0,.08);
}

a.people-block:hover > img.people-image {
	opacity: 0.8;
}
a.people-block:hover > p {
	color: #00435F;
}

img.people-image {
	width: 100%;
}
a.people-block p {
	margin-top: 0;
	color: #555;
	font-weight: bold;
	font-size: 1rem;
	padding-top: 0.5rem;
	padding-left: 0.5rem;
	padding-bottom: 0;
	margin-bottom: 0;
}
a.people-block p.function {
	margin-top: 0;
	padding: 0;
	font-size: 0.9rem;
	font-weight: normal;
	padding-left: 0.5rem;
	padding-bottom: 0.5rem;
}

a.news-item {
	display: block;
	margin-top: 1rem;
	padding: 1rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #CCC;
}
a.news-item:hover {
	background-color: #F6F6F6;
}
div.news-title {
	display: flex;
	justify-content: space-between;
}
div.news-title > h2 {
	max-width: 70%;
	font-size: 1.2rem;
}
div.news-title > span {
	min-width: 30%;
	text-align: right;
	color: #6A6A6A;
	font-size: 0.9rem;
}
@media screen and (max-width: 1400px) {
	div.news-title {
		flex-direction: column;
	}
	div.news-title > h2 {
		max-width: 100%;
		padding-bottom: 0.5rem;
	}
	div.news-title > span {
		text-align: left;
	}
}

div.news-footer {
	display: flex;
	flex-wrap: wrap;
}
div.news-footer > div.person {
	padding-left: 3.5rem;
	margin-right: 2rem;
	margin-bottom: 1rem;
}
div.news-footer > div.person > p {
	line-height: 1rem;
	margin: 0;
	padding: 0;	
	padding-top: 1rem;
	color: #6A6A6A;
}
div.news-footer > div.person > img {
	float: left;
	margin-left: -3.5rem;
	width: 3rem;
	height: 3rem;
	-moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

div.page-numbers {
	padding-top: 2rem;
	width: 100%;
	text-align: center;
}
div.page-numbers > span > input {
	width: 1.2rem;
	border: none;
	background-color: #EEE;
	font-size: 1rem;
	display: inline-block;
	text-align: right;
	font-family: "Raleway",Helvetica,Arial,sans-serif;
}
div.page-numbers > span > input:hover {
	background-color: #F3F3F3;
}
a.icon {
	font-family: 'Material Icons';
	font-size: 1.2rem;
	vertical-align: middle;
}

p.news-info {
	color: #777;
	font-size: 0.9rem;
}

table.services-table {
	border: 0;
}
table.services-table td {
	line-height: 1.2rem;
	color: #555;
}

footer.site-footer {
	background-color: #222;
	width: 100%;
}
div.footer-container {
	margin: auto;
	width: var(--site-width);
	padding: 1rem;
}
div.footer-block {
	color: #CCC;
	text-align: center;
	padding-bottom: 1rem;
}
div.footer-block p {
	color: #CCC;
	line-height: 1rem;
	margin: 0;
	font-size: 0.8rem;
}
div.footer-block a {
	color: #CCC;
	text-decoration: none;
}
div.footer-block a:hover {
	color: #EEE;
}
ul.footer-menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: inline-block;
}
ul.footer-menu li {
	float: left;
	padding-right: 0.5rem;
	line-height: 1.5rem;
	color: #CCC;
}
ul.footer-menu li a {
	display: block;
	text-decoration: none;
}

input.not-found-search {
	font-size: 1.3rem;
	padding: 0.3rem;
}