* {
	box-sizing: border-box;
}

html {
	--sea-dark: #0E4F68;
	--sea-mid: #136D88;
	--sea-light: #0F8D95;
	--sep-dark: #3A326D;
	--sep-mid: #4F4D98;
	--sep-light: #7173B1;

	--sea-dark-light: #cfdce1;
	--sea-mid-light: #d0e2e7;
	--sea-light-light: #cfe8ea;
	--sep-dark-light: #d8d6e2;
	--sep-mid-light: #dcdbea;
	--sep-light-light: #e3e3ef;

	--black: #282828;
	--white: #FFFFFF;
	--inverse: black;
    --dark: var(--sea-dark);
    --mid: var(--sea-mid);
    --light: var(--sea-light);
}
.sep-dark {--color: var(--sep-dark);--inverse: white}
.sep-mid {--color: var(--sep-mid);--inverse: white}
.sep-light {--color: var(--sep-light);--inverse: white}
.sea-dark {--color: var(--sea-dark);--inverse: white}
.sea-mid {--color: var(--sea-mid);--inverse: white}
.sea-light {--color: var(--sea-light);--inverse: white}
.light.sep-dark {--color: var(--sep-dark-light);--inverse: black}
.light.sep-mid {--color: var(--sep-mid-light);--inverse: black}
.light.sep-light {--color: var(--sep-light-light);--inverse: black}
.light.sea-dark {--color: var(--sea-dark-light);--inverse: black}
.light.sea-mid {--color: var(--sea-mid-light);--inverse: black}
.light.sea-light {--color: var(--sea-light-light);--inverse: black}

body {
	padding: 0;
	margin: 0;
	font-family: 'Source Sans Pro', sans-serif;
}

#site-header {
	width: 100%;
	max-width: 100%;
	display: flex;
	height: 60px;
	/*align-items: center;*/
	padding: 0 calc(50vw - 700px);
	gap: 1em;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

#site-logo {
	height: 60px;
	/*padding-left: 10px;*/
}

#site-menu {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	height: 60px;
	align-items: center;
	transition: all .5s;
}

#site-menu li {
	height: 100%;
}

#site-menu a {
	height: 60px;
	padding: 0 1em;
	text-decoration: none;
	background-color: white;
	color: black;
	fill: black;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#site-menu a:hover, #site-menu.open li:last-child a {
	background-color: var(--sea-dark);
	color: white;
	fill: white;
}

#site-menu li:last-child {
	display: none;
}

@media only screen and (max-width: 700px) {
	#site-menu {
		flex-direction: column;
		align-items: flex-start;
		margin-top: -600px;
	}

	#site-menu li:last-child {
		position: absolute;
		display: block;
		right: 0;
		top: 0;
		width: fit-content;
	}

	#site-menu.open {
		margin-top: 60px;
	}

	#site-menu li {
		width: 100%;
	}
}

div#block-sustainabilityexcellence-local-tasks {
    position: absolute;
    z-index: 1;
    background-color: white;
    padding: 1em;
    right: 0;
}

div#block-sustainabilityexcellence-local-tasks > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#page-header {
	width: 100%;
	height: 40vh;
	min-height: 400px;
	position: relative;
}

#banner-image img {
	width: 100%;
	height: 40vh;
	min-height: 400px;
	object-fit: cover;
}

#banner-content {
	position: absolute;
	bottom: 25%;
	right: 0;
	padding: 0 1.5em;
	width: 60%;
	background-color: #fff;
}

p.attribution {
    margin: 0 .5em;
    text-align: right;
}

hr {
	width: 25%;
	margin: 3em auto;
	border: 0;
	border-top: 2px solid var(--sea-mid);
}

a {
	color: var(--sea-light);
}

a:hover {
	color: var(--sea-dark);
}

.button {
	--color: var(--mid);
	--inverse: white;
}

.button,
.btn {
	display: inline-block;
	padding: .5em .75em;
	transition: all .1s;
	border: .1em solid;
	background-color: var(--color);
	border-color: var(--color);
	color: var(--inverse);
    text-decoration: none;
}

.button:hover,
.btn:hover {
	text-decoration: none;
	background-color: transparent;
	color: var(--color);
}

.padded, .padded-bottom {padding-bottom: 2rem;}

.padded, .padded-top {padding-top: 2rem;}

.color-background.color-background {
	max-width: 100%;
	color: var(--inverse);
	background-color: var(--color);
	padding-left: calc(50vw - 450px);
	padding-right: calc(50vw - 450px);
}

.margin, .margin-top {margin-top: 2rem;}

.margin, .margin-bottom {margin-bottom: 2rem;}

.text-section, .header-table, .column-container {
	max-width: 900px;
	padding-left: 10px;
	padding-right: 10px;
	margin: auto;
}

.full-width.full-width {
    max-width: 100%;
    padding-left: max(10px, calc(50% - 440px));
    padding-right: max(10px, calc(50% - 440px));
}

.header-table {
    width: 100%;
}

.header-table th {
    text-align: left;
    vertical-align: top;
    width: 0;
    flex-grow: 1;
}

.header-table tr {display: flex;gap: 2em;}

.header-table tbody {
    display: flex;
    flex-direction: column;
}

.header-table td {
    width: 0;
    flex-grow: 2;
}

.header-table tr:not(:last-child) {
    padding-bottom: 1em;
    border-bottom: 2px solid var(--dark);
}

.header-table tr:not(:first-child) {
    padding-top: 1em;
}

.text-center {text-align:center}
.text-left {text-align:left}
.text-right {text-align:right}

.column-container {
	display: flex;
	flex-flow: row wrap;
    list-style: none;
}

.column-container > * {
	width: 0;
	flex-grow: 1;
}

.column-container.gap-between {
    gap: 2em;
}

.small-gap {
    gap: 1em;
}

.large-gap {
    gap: 3em;
}

.medium-gap {
    gap: 2em;
}

tr.head {
    background-color: var(--color);
    color: var(--inverse);
    font-weight: bold;
}

table {
    border-collapse: collapse;
}

:not(.header-table) td {
    padding: .75em 1em;
}

tbody tr:not(.head) {
    border-top: 1px solid var(--color);
}

#site-footer {
	width: 100%;
	background-color: var(--dark);
	color: white;
	padding: 1em;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
}

#site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#site-footer li {
	margin: .5em 0;
}

#site-footer a {
	text-decoration: none;
	color: white;
}

#site-footer h4, #site-footer h2 {
	font-size: 1.1em;
	border-bottom: 2px solid white;
	margin-bottom: .5em;
	padding-bottom: .5em;
	text-align: left;
	font-weight: bold;
	margin-top: 1em;
}

#block-footer-copyright-block {width: 100%;text-align: center;}

.search-text-section h2{
  color: black;
  font-size: 20px;
  font-family: 'Source Sans Pro', sans-serif;
}
.search-text-section label{
  color: black;
  font-size: 15px;
  font-family: 'Source Sans Pro', sans-serif;
}
.search-text-section label:hover{
  font-size: 15px;
  color: black !important;
}
.search-text-section imput:hover{
  font-size: 16px;
  color: black !important;
}
.search-text-section .search-icon{
  fill: #4bcca3 !important;
}
.search-text-section img.profile_img {
  height: 130px;
  width: 100px;
  object-fit: cover;
}
.plist-wrap{
  border-bottom: 1px solid #efefef;
  margin-bottom: 1%;
  padding-top: 2%;
  padding-bottom: 2%;
  display: flex;
}
.rightSide{
  margin-left: 30px;
}
.rightSide h5{
  font-size: 20px;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Source Sans Pro', sans-serif;
}
.rightSide h5 a{
  text-decoration: none;
}
.rightSide .people-list-bio {
  font-size: 14px;
  color: #777;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 0px;
  line-height: 28px;
}
.rightSide .people-location{
  font-size: 15px;
  color: #333;
  margin-left: 0px;
  padding-left: 0px !important;
  font-weight: bold;
  line-height: 28px;
}
.rightSide .people-desc{
  color: black;
  font-size: 15px;
  color: #333;
  margin-left: 0px;
  padding-left: 0px !important;
  margin-bottom: 9px;
}
/*.l-Filter ul li label:before{
  width: calc(15px);
  height: 15px;
  color: #4bcca3 !important;
  background-color: #FFFFFF;
}*/
/*.l-Filter ul li label:checked:before{
  width: calc(15px);
  height: 15px;
  border-color: #4bcca3 !important;
  color: #4bcca3 !important;
  background-color: #4bcca3;
}*/

.l-Filter ul li input:hover + label::before{
  border-color: #4bcca3;
}
.l-Filter ul li input:checked + label::before{
  border-color: #4bcca3;
  background-color: #4bcca3;
}

.user_profile .user-picture{
  margin-bottom: 20px;
}
.pd-wrap{
  display: flex;
  flex-direction: row;
}
.pd-wrap-left{
  padding-right: 30px;
  width: 175px;
}
.pd-wrap-right .user-title{
  margin-top: 0;
  font-size: 30px;
  margin-bottom: 0;
}
.pd-wrap-right .user-designation{
  margin-bottom: 0px;
  color: #777;
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.user_profile .biography {
  border-top: 5px solid #efefef;
  min-height: 300px;
  padding-top: 30px;
}
.spage-header h2{
  margin-top: 0;
  margin-bottom: 15px;
  font-family: 'Source Sans Pro', sans-serif;
}
.spage-header p{
  color: black;
  margin-top: 0;
  font-family: 'Source Sans Pro', sans-serif;
}
.profile.user_profile{
  margin-top: 15px;
}
.lr-Wrap{
  display: flex;
  flex-direction: row;
  margin-top: 15px;
}
.spage-header-top{
  display: none;
}
.u-pagination a.active{
  background-color:#4bcca3 !important;
}
.u-pagination a:focus{
  border-color: #4bcca3 !important;
}
.user_profile .social {
  margin-right: 0;
  margin-left: 0;
  display: flex;
  margin-bottom: 5px;
  justify-content: end;
}
.user_profile .user-social-icons {
  float: right;
  padding-left: 15px;
}
.user_profile .user-social-icons span {
  font-weight: 700;
  padding-right: 5px;
  font-size: 16px;
}
user_profile .user-social-icons a {
  padding-right: 5px;
}
@media only screen and (max-width: 991px) {
  .pd-wrap{
    flex-direction: column;
  }
  .spage-header{
    display: none;
  }
  .spage-header-top{
    display: block;
  }
  .lr-Wrap{
    display: flex;
    flex-direction: column;
  }
  .l-Filter{
    width: 100%;
  }
  .r-Content{
    width: 100%;
  }
}

body.react-page{
  display: none;
}
body.react-page.pshow{
  display: block;
}
body.react-page .selected-filters{
  margin-top: 10px;
}
.selected-filters a{
  width: 100%;
  max-width: 100%;
}
.selected-filters a span:first-child{
  width: 100%;
  max-width: 100% !important;
}
.react-page .search-text-section, .text-section.user_profile{
  min-height: 600px;
}
.panel-default.profile-info img{
  max-width: 100%;
  height: auto;
}
.biography .w-100 .field-name-field-personal-biography .field-item p:first-child{
  margin-top: 0;
}

.user-social-icons .per_twitter{
  text-decoration: none;
}
.user-social-icons .per_twitter svg{
  margin-bottom: -5px;
}