html, body {
	margin: 0 auto;
	padding: 0;
	width: 100%;
    height: 100%;
	background-color: white;
	color: #333333;
	font-family: 'Nunito', sans-serif;
}

.section_wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	align-items: stretch;
}

/* ----- */

.greeter_wr {
	flex-basis: 100px;
	display: flex;
	flex-direction: row;
	width: 100%;
	align-self: center;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.2);
	border-bottom: 1px solid #d1cece;
	z-index: 1;
}

.greeter_item_wr {
	display: flex;
	flex-direction: row;
}
.greeter_logo_wr {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}
.greeter_logo {
	display: block;
	object-fit: contain;
	align-self: center;
	max-height: 90px;
	max-width: 350px;
	/* flex: 0 0 350px; */
}
.greeter_logo:hover {
	cursor: pointer;
}
.greeter_logo_sep {
	font-size: 90px;
	line-height: 90px;
	margin: 0px 10px;
	max-height: 90px;
	color: #333
}
.mobile_menu_toggle {
	width: 100%;
	text-align: center;
	padding: 10px 0px;
	/* margin-top: 15px; */
	display: none;
}
.mobile_menu_toggle:hover {
	cursor: pointer;
}

.greeter_nav_wr {
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

.nav_button {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	/* min-width: 100px; */
	height: 30px;
	margin-right: 25px;
	background-color: white;
	border-bottom: 3px solid transparent;
}
.nav_button:hover, .nav_button_selected {
    border-bottom: 3px solid #1d76b9;
}
.nav_button:last-child {
	margin-right: 0px;
}

.nav_link {
	width: 100%;
	height: 100%;
	color: #333;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	/* padding-right: 20px; */
}

.nav_dropdown {
	display: none;
	position: absolute;
	top: 100%;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	min-width: 150px;
	transform: translateY(0px);
	z-index: 1;
	background-color: #f9f9f9;
	border: 1px solid #d1cece;
}

.dropdown_button {
	padding: 10px 15px 10px 10px;
	text-decoration: none;
	border-left: 3px solid transparent;
	color: #333;
}
.dropdown_button:hover {
	background-color: #f3f3f3;
	border-left: 3px solid #1d76b9;
}

#nav_about:hover #about_dropdown {
	display: flex;
	flex-direction: column;
}
#nav_projects:hover #projects_dropdown {
	display: flex;
	flex-direction: column;
}

/* navigation menu for mobile */
.greeter_mob_nav_wr {
	display: flex;
	flex-direction: column;
	align-items: start;
	display: none;
	/* margin: 0px 20px; */
}
/* .mob_nav_button {
	width: 100%;
	border-top: 2px solid #f3f3f3;
	padding: 10px 20px;
} */
/* .mob_nav_button_indent {
	padding-left: 50px;
} */
.mob_nav_link {
	color: #333;
	text-decoration: none;
	display: flex;
	justify-content: start;
	align-items: center;
	padding: 10px 20px;
	align-self: stretch;
    border-top: 1px solid #d1cece;
}
.mob_nav_link_indent {
	padding-left: 50px;
}
.mob_nav_link:hover {
    font-weight: bold;
}

/* ----- */

.content_wr {
	background-color: #f3f3f3;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content_greeter {
	background: url("../img/bg-1.jpg");
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}

.content_greeter_text {
	font-size: 8vh;
	color: white;
	text-align: center;
	max-width: 750px;
	padding: 30px;
}

.project_category_title {
	width: 100%;
	text-align: center;
	font-weight: normal;
}

.projects_list {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: center;
	padding: 25px 0px;
}

.project_box {
	border: 1px solid #d1cece;
	border-radius: 15px;
	background-color: white;
	color: #333;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	margin-right: 30px;
	flex: 0 0 400px;
	padding: 20px;
}
.project_box:hover {
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	cursor: pointer;
}

/* .project_box_logo_wr {
	border-bottom: 1px solid #d0d0d0;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-basis: 200px;
	justify-content: center;
	font-size: 75px;
	padding: 20px 0px;
	max-height: 200px;
} */
.project_box_logo {
	max-width: 450px;
	max-height: 125px;
	align-self: center;
	object-fit: contain;
	width: 100%;
	/* padding-bottom: 20px; */
	/* margin-bottom: 5px; */
	min-height: 125px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.project_box_summary {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	border-top: 1px solid #d0d0d0;
	padding-top: 5px;
	margin-top: 20px;
}

.project_box_summary_row {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
}
.project_box_summary_row:not(:last-child) {
	border-bottom: 1px solid #d0d0d0;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

.project_box_summary_col_left {
	/* border-right: 1px solid #d0d0d0; */
	flex-basis: 130px;
	font-weight: bold;
	flex-shrink: 0;
	margin-right: 15px;
}

.project_box_summary_col_right {
	flex-grow: 1;
	justify-content: flex-end;
	text-align: right;
}

.project_box_summary_col_left, .project_box_summary_col_right {
	padding: 0px;
	display: flex;
	align-items: center;
}

.project_box_logo, .greeter_logo {
	font-size: 65px;
	text-align: center;
}

/* individual project pages */
/* .project_detail_box {
	display: flex;
	flex-direction: column;
	margin: 30px 0px;
	padding: 30px;
	background-color: white;
    width: 100%;
    max-width: 1000px;
    align-self: center;
	border-radius: 15px;
	font-family: 'Nunito', sans-serif;
}
.project_detail_box h1 {
	text-align: center;
	margin-top: 0px;
	margin-bottom: 30px;
}
.project_detail_box_header_wr {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 25px;
	margin-bottom: 10px;
}
.project_detail_box_header_wr h2 {
	flex-grow: 1;
	margin: 0px;
}
.project_detail_box_header_wr span {

} */

/* project detail box - table */
.project_detail_box_table_wr {
	display: flex;
	flex-direction: column;
	max-width: 600px;
	align-self: center;
	width: 100%;
}

.project_detail_box_table_row {
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
}
.project_detail_box_table_row_left {
	flex-basis: 250px;
	font-weight: bold;
}
.project_detail_box_table_row_right {
	flex-grow: 1;
	text-align: right;
}

/* project detail box - news */
.project_detail_box_news_wr {
	display: flex;
	flex-direction: column;
	align-self: stretch;
}
.project_detail_box_news_row {
	display: flex;
	flex-direction: row;
	margin-bottom: 15px;
}
.project_detail_box_news_row_left {
	flex: 120px 0 0;
	margin-right: 20px;
	font-weight: bold;
}
.project_detail_box_news_row_right {
	flex-grow: 1;
}

/* project detail box - summary */
.project_detail_box_summary_wr {
	display: flex;
	flex-direction: column;
	text-align: justify;
	align-self: stretch;
}
/* .project_detail_box_summary_wr:hover .read_more_toggle {
	visibility: visible;
} */
.read_more_toggle {
	/* text-align: center; */
	/* font-style: italic; */
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	padding: 3px 5px;
	background-color: #f3f3f3;
	/* max-width: 100px; */
	/* width: 100%; */
	flex-grow: 0;
	/* visibility: visible; */
	align-self: center;
	margin-top: 15px;
}
.read_more_toggle:hover {
	text-decoration: underline;
	cursor: pointer;
}
.read_more_toggle i {
	margin-right: 5px;
}
.read_more_toggle span {
	text-align: center;
}
.project_detail_box_summary_visible :first-child {
	margin-top: 0px;
}
.project_detail_box_summary_visible :last-child {
	margin-bottom: 0px;
}
.project_detail_box_summary_hidden :first-child {
	/* margin-top: 16px; */
}
.project_detail_box_summary_hidden :last-child {
	margin-bottom: 0px;
}

/* project info - consortium */
.project_detail_box_consortium {
	display: flex;
	flex-direction: column;
	align-self: stretch;
}
.project_detail_box_consortium_map_wr {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 15px;
}
.project_detail_box_consortium_map {
	width: 1000px;
	height: 500px;
}
.map_hover_country {
	font-weight: bold;
	margin: 10px 10px 0px 10px;
	display: block;
}
.map_hover_list {
	display: block;
	margin: 0px 10px 10px 0px;
	padding-left: 25px;
}
.project_detail_box_consortium_table_wr {
	display: flex;
	flex-direction: column;
	width: 100%;
	/* max-width: 800px; */
	align-self: center;
	margin-top: 20px;
}
.project_detail_box_consortium_table_row {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
	/* padding: 15px; */
	border-radius: 15px;
}
.project_detail_box_consortium_table_row:hover {
	/* background-color: #f3f3f3; */
}
.project_detail_box_consortium_table_row:last-child {
    margin-bottom: 0px;
}

.project_detail_box_consortium_table_left {
	/* flex-basis: 200px; */
    font-weight: bold;
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    align-self: auto;
    border-bottom: 1px solid #d1cece
}
.project_detail_box_consortium_table_left span {
	margin-right: 10px;
}

.project_detail_box_consortium_table_right {
	flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.project_detail_box_consortium_table_right ul {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* project info - mindnet */
.project_detail_box_mindnet {
	align-self: stretch;
	text-align: justify;
}

/* related links */
.project_detail_box_related_links {
	align-self: stretch;
	text-align: justify;
}

/* about us */
.about_content {
	text-align: justify;
}

.contact_content {
	text-align: justify;
}


/* team page */
.team_list_wr {
	display: flex;
	flex-direction: row;
	/* gap: 10px 10px; */
	flex-wrap: wrap;
	justify-content: space-between;
}
.person_box {
	display: flex;
	margin-bottom: 25px;
	/* max-height: 150px; */
	/* min-height: 150px; */
	border: 1px solid #d1cece;
	border-radius: 15px;
	background-color: #f3f3f3;
	color: #333;
	text-decoration: none;
	flex-basis: 485px;
	max-width: 485px;
	min-height: 180px;
}
.person_box:nth-child(2n+1) {
	margin-right: 25px;
}
.person_box:hover {
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
	/* cursor: pointer; */
}
.person_box_img {
	flex-basis: 150px;
	min-width: 150px;
	max-height: 180px;
	object-fit: contain;
	margin: -1px 0px -1px -1px;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	align-self: center;
	border: 1px solid #d1cece;
}
.person_box_info {
	display: flex;
	flex-direction: column;
	/* margin-left: 15px; */
	/* background-color: wheat; */
	flex-grow: 1;
}
.person_box_name {
	display: block;
	float: left;
	/* margin-bottom: 10px; */
	padding: 5px 15px;
	border-bottom: 1px solid #cfcfcf;
	font-weight: bold;
	/* font-style: italic; */
	font-size: large;
}
.person_box_details {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-evenly;
	/* padding: 5px 0px; */
}
.person_box_field {
	display: flex;
	flex-direction: row;
	padding: 0px 15px;
}
.person_box_field_left {
	display: flex;
	flex-basis: 30px;
	flex-shrink: 0;
	align-self: center;
	justify-content: start;
}


.person_box_field_right {
	display: flex;
	flex-direction: column;
}

/* publications page */

.publication_list_wr {
	display: flex;
	flex-direction: column;
}
.publication_list_item {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-decoration: none;
	color: #333;
	/* padding: 15px 0px; */
	margin-bottom: 30px;
}
.publication_list_item:hover .publication_list_item_right {
	background-color: #f3f3f3;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}
.publication_list_item_left {
	flex: 0 0 50px;
	text-align: end;
	padding-right: 30px;
}
.publication_year {

}
.publication_list_item_right {
	flex-grow: 1;
	border-left: 3px solid #1d76b9;
	padding: 10px 0px 10px 30px;
	display: flex;
	flex-direction: column;
}
.publication_title {
	font-weight: bold;
	margin-bottom: 5px;
}
.publication_authors {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.publication_author {
	padding: 1px 5px;
	margin: 0px 5px 5px 0px;
	border: 1px solid #757575;
	border-radius: 5px;
	background-color: beige;
	font-size: small;
}
.publication_other {
	display: block;
	font-size: 0px;
	margin-top: 10px;
}
.publication_other span {
	font-size: medium;
}
.publication_published_in {
	font-style: italic;
}
.publication_link {
	margin-top: 10px;
}

/* ----- */

.news_wr {
	display: flex;
	flex-direction: column;
}
.news_row {
	display: flex;
	flex-direction: row;
	margin-bottom: 25px;
}
.news_row:hover .news_row_right {
	background-color: #f3f3f3;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}
.news_row_left {
	flex: 0 0 150px;
	display: flex;
	margin-right: 0px;
	border-right: 3px solid #1d76b9;
	padding-right: 25px;
	align-items: center;
	font-weight: bold;
	min-width: 200px;
	justify-content: center;
}
.news_row_left_img {
	max-width: 200px;
	max-height: 100px;
	object-fit: contain;
}
.news_row_right {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	position: relative;
	justify-content: center;
	padding: 10px 25px;
}
.news_row_right_date {
	flex: 0 1 auto;
	text-align: left;
	margin-bottom: 5px;
	font-style: italic;
	color: #6c6c6c;
	/* position: absolute; */
	/* right: 0; */
	font-size: small;
}
.news_row_right_title {
	flex: 0 1 auto;
	text-align: left;
	margin-bottom: 5px;
}
.news_row_right_tags {
	flex: 0 1 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.news_row_right_more {
	margin-top: 10px;
}
.news_tag {
	padding: 3px 7px;
	/* border: 1px solid #f3f3f3; */
	font-size: small;
	margin-right: 20px;
	margin-bottom: 5px;
	/* border-radius: 10px; */
	background-color: #ffc000;
	flex: 0 1 auto;
	color: #333;
	text-decoration: none;
	display: flex;
	align-self: center;
	align-items: center;
	position: relative;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.news_tag::before {
	background: #fff;
	width: 8px;
	height: 8px;
	content: "";
	display: inline-block;
	border-radius: 20px;
	margin: 0 5px 0 0;
	border: 1px solid #757575;
}
.news_tag::after {
	display: inline-block;
	border: 12px solid;
	border-color: transparent transparent transparent #ffc000;
	height: 0;
	width: 0;
	position: absolute;
	right: -24px;
	top: 0;
	content: "";
	display: inline-block;
}
.news_tag:hover {
	/* text-decoration: underline; */
	cursor: pointer;
	background-color: #ffd450;
}
.news_tag:hover::after {
	border-color: transparent transparent transparent #ffd450;
}

/* ----- */

.fancy_link {
	background: url('../img/external-link.png');
	background-repeat: no-repeat;
	background-size: 13px 13px;
	padding-right: 17px;
	background-position: right;
	text-decoration: none;
	color: #1d76b9;
}
.fancy_link:hover {
	text-decoration: underline;
}

/* ----- */

.generic_button_link {
	text-decoration: none;
	color: #333;
	align-self: start;
}
.generic_button_link:hover {
	text-decoration: underline;
	cursor: pointer;
}
.generic_button_link i {
	margin-right: 5px;
}
#back_button {
	position: absolute;
}

/* ----- */

.contact_map {
	width: 100%;
	height: 420px;
	border: none;
}

/* ----- */

.capabilities_wr {
	display: flex;
	flex-direction: column;
	border-radius: 15px;
	border: 3px solid #c4c4c4;
	min-width: 100%;
	overflow: hidden;
}
.cap_item {
	display: flex;
	flex-direction: column;
	position: relative;
}
.cap_item:not(:first-child) {
	/* margin-top: 100px; */
}
.cap_item:not(:first-child) {
	border-top: 3px solid #c4c4c4;
}
.cap_item_visible {
	padding: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	/* background-color: #f3f3f3; */
}
.cap_item_visible:hover {
	cursor: pointer;
	color: #333;
	/* text-decoration: underline; */
	background-color: #f3f3f3;
}
.cap_item_visible i:first-of-type {
	/* margin-right: 10px; */
}
.cap_item_visible_title {
	flex: auto 1 1;
	font-weight: bold;
	margin-left: 5px;
}
.cap_item_visible_toggle {
	flex: auto 0 1;
	margin-left: 15px;
}
.cap_item_hidden {
	/* display: flex; */
	flex-direction: column;
	padding: 25px 50px;
}
.cap_item_hidden_row {
	display: flex;
	flex-direction: row;
}
.cap_item_hidden_row:not(:last-child) {
	margin-bottom: 30px;
}
.cap_item_hidden_row:nth-child(2n) {
	flex-direction: row-reverse;
}
.cap_item_hidden_row_img {
	flex: 300px 0 0;
	min-width: 300px;
}
.cap_item_hidden_row:nth-child(odd) > .cap_item_hidden_row_img {
	margin-right: 50px;
}
.cap_item_hidden_row:nth-child(even) > .cap_item_hidden_row_img {
	margin-left: 50px;
}
.cap_item_hidden_row_content {
	flex: auto 1 1;
	text-align: justify;
	display: flex;
	flex-direction: column;
	align-self: center;
}
.cap_item_hidden_row_content h2 {
	margin-top: 0px !important;
}
.cap_item_hidden_row_content p:last-child {
	margin-bottom: 0px;
}
.cap_item_hidden_row_content p:last-child {
	margin-top: 0px;
}

/* .cap_item:nth-child(2n+1) > .cap_item_img {
	margin-right: 25px;
	padding-right: 25px;
	border-right: 3px solid #1d76b9;
}
.cap_item:nth-child(2n) > .cap_item_img {
	margin-left: 25px;
	padding-left: 25px;
	border-left: 3px solid #1d76b9;
} */
/* .cap_item:nth-child(2n) {
	flex-direction: row-reverse;
} */

/* ----- */

.generic_content_box {
	display: flex;
	flex-direction: column;
	margin-top: 25px;
	margin-bottom: 25px;
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: white;
	width: 100%;
	max-width: 1000px;
	align-self: center;
	border-radius: 15px;
}


.generic_content_box_news {
	display: flex;
	flex-direction: column;
	margin-top: 25px;
	margin-bottom: 25px;
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: white;
	width: 100%;
	max-width: 1000px;
	align-self: center;
	border-radius: 15px;
}

.generic_content_box h1 {
	text-align: center;
	margin-top: 0px;
	margin-bottom: 30px;
	margin-left: 100px;
	margin-right: 100px;
}
.generic_content_box h2 {
	margin-top: 25px;
	margin-bottom: 10px;
	text-align: left;
}
.generic_content_box img {
    max-width: 100vw;
    object-fit: contain;
}
/* .generic_content_box_header_wr {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 25px;
	margin-bottom: 10px;
} */
/* .generic_content_box_header_wr h2 {
	flex-grow: 1;
	margin: 0px;
} */

/* ----- */

.blur {
	filter: blur(5px);
}

/* ----- */

.footer_wr {
	background-color: #222222;
	flex-basis: 50px;
	padding: 25px 0px;
	display: flex;
	justify-content: center;
	color: #f3f3f3;
	font-family: 'Nunito', sans-serif;
}

.footer_item_wr {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	align-self: center;
}

.footer_left {
	align-items: flex-start;
}

.footer_middle {
	align-items: center;
}

.footer_right {
	align-items: flex-end;
	text-align: right;
}

.footer_left, .footer_middle, .footer_right {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-basis: 0;
}

.footer_logo {
	max-width: 350px;
}
.footer_logo:hover {
	cursor: pointer;
}

.footer_wr a {
	text-decoration: none;
	color: #f3f3f3;
}
.footer_wr a:hover {
	text-decoration: underline;
}

/* ----- */

.greeter_item_wr, .project_category_title, .projects_list, .generic_content_box, .footer_item_wr {
	width: calc(100% - 50px);
	padding-left: 25px;
	padding-right: 25px;
}

.nav_link i, .mobile_menu_toggle i, .mob_nav_link i, .dropdown_button i {
	margin-right: 10px;
}


.box_table_wr_events {
	display: flex;
	flex-direction: column;
	max-width: 800px;
	align-self: center;
	width: 100%;
	font-size:18px;
	padding-top:20px;
}

.events_header_box {
	display: flex;
	flex-direction: row;
	align-self: center;
	width: 100%;
}

.events_header_box img {
	max-width:115px;
	max-height:115px;
	padding:10px;
}

.event_program_box_container{
    border: 3px solid black;
}

.event_about_paragraph {
	font-size:20px;
	text-align: justify;
	padding-left: 20px;
	padding-right: 20px;
}

.event_content_prop {
	border-style: solid;

}

.event_program_left{
	display: flex;
	flex-shrink: 0;
	flex-direction: column;
	align-self: center;
	justify-content: start;
	padding-right:10px;
	text-align: center;
}

.event_program_left img{
	max-width:70px;
	max-height: 70px;
	border-radius: 40%;
}

.event_project_detail_padding_left_30{
	padding-left:0px;
}

.event_project_detail_padding_right_30{
	padding-left:0px;
}

.event_program_right{
	display: flex;
	flex-shrink: 0;
	flex-direction: column;
	justify-content: start;
	text-align: center;
    flex: 1;

}

    .event_program_right p{
        padding:10px;

        margin:0;
    }
    .event_program_left p{
        padding:10px;
        margin:0;
    }


.event_program_time{
	font-weight: bold;
}

.event_detail{
		display: flex;
	flex-direction: column;
}

.event_program_box{
	display: block;
	/* margin-bottom: 10px; */
	padding: 5px 15px;
	border-bottom: 1px solid #cfcfcf;
	font-weight: bold;
	/* font-style: italic; */
	font-size: large;
}

.event_program_box img{
	max-width: 115px;
	padding: 15px;
}

.event_person_name{
    flex-grow: 1;
    align-self: center;
    display: flex;
    align-items: center;
}

.event_header_box_header{
    flex-grow: 1;
    align-self: center;
    display: flex;
    align-items: center;
    padding:10px;
    margin:0;
    font-size:2em;
    font-weight: bold;
    text-align: center;
}

.event_img_justify{
    display: flex;
    align-items: center;
    align-self: center;
}

.event_logo{
    max-width:115px;
    max-height: 115px;
}

.event_logo_15{
    padding:15px;
}

.event_no_logo_right_115{
    padding-right:115px;
}

.event_countdown{
	text-align:center;
	margin:20px;
	border-style: solid;
	background-color:#ffff66;
	border-width:2px;
}

.coffee_background{
    background-color: rgba(238, 238, 238, 0.71) !important;
    background: url('../img/events/coffee.png') no-repeat ;
    background-size:cover;
    background-blend-mode: color;

}

.lunch_background{
    background-color: rgba(238, 238, 238, 0.85) !important;
    background: url('../img/events/lunch.png') no-repeat ;
    background-size:cover;
    background-blend-mode: color;
}

.event_program_box:hover{
    background-color: #f3f3f3;
}

.cancelled{
	color: red;
	text-decoration: line-through;
	font-size:13px;
}
.event_row_field{
	display: flex;
	flex-direction: row;
	padding: 0px 15px;
}

@media screen and (max-width: 1051px){
    .event_row_field{
        flex-direction: column;
    }

    .event_program_right{
        padding:0;
    }

    .event_logo{
        padding-top:20px;
    }

}

/* @media only screen and (max-width: 1100px) {
	.project_box {
		margin-right: 0;
	}
} */

/* @media only screen and (min-width: 1101px) {
	.project_box:last-child {
		margin-right: 30px;
	}
} */

/* ----- */

@media only screen and (min-width: 1650px) {
	.greeter_item_wr, .project_category_title, .projects_list, .footer_item_wr {
		max-width: 1600px;
	}
	.project_box:nth-child(3n), .project_box:last-child {
		margin-right: 0px;
	}
}
@media only screen and (max-width: 1650px) {
	.project_category_title, .projects_list {
		max-width: 1200px;
	}
	.project_box:nth-child(2n), .project_box:last-child {
		margin-right: 0px;
	}
}
@media only screen and (max-width: 1250px) {
	.project_category_title, .projects_list {
		max-width: 800px;
	}
	.project_box {
		margin-right: 0px;
		/* max-width: 90%; */
	}
	.project_box_logo {
		max-width: 90%;
	}
	.project_box_logo_wr {
		font-size: 50px;
		flex-basis: 100px;
	}
	.project_box_summary_col_left {
		flex-basis: 100px;
	}
	.project_box_summary_col_left, .project_box_summary_col_right {
	    /* padding: 5px 10px; */
	}
	.greeter_item_wr {
	    flex-direction: column;
	}
	.greeter_logo {
		/* flex: 0; */
		max-width: 350px;
		/* width: calc(100% - 30px); */
		margin: 15px;
	}
	.greeter_nav_wr {
		justify-content: space-around;
		margin: 0px;
	}
	.nav_button {
		margin-right: 0px;
	}
	.project_detail_box {
		align-self: normal;
		width: auto;
		margin: 20px;
	}
	.project_detail_box_consortium_map {
		width: 100%;
	}
	.projects_list {
		padding: 10px 0px;
	}
	.project_box {
		flex-shrink: 1;
		margin: 10px 10px !important;
	}
	.footer_item_wr {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.footer_middle {
		order: -1;
		flex-basis: 100% !important;
		margin-bottom: 30px;
	}
}
@media only screen and (max-width: 1050px) {
	.greeter_wr {
		box-shadow: none;
		/* border-bottom: 1px solid #f3f3f3; */
	}
	.generic_content_box {
		margin: 0px;
		border-radius: 0px;
		align-items: center;
		max-width: 100%;
	}
	.person_box {
		margin-right: 0px !important;
	}
	.team_list_wr {
		justify-content: center;
		max-width: 950px;
	}
}

/* switch to mobile menu */
@media only screen and (max-width: 900px) {
	.greeter_item_wr {
		padding: 0px !important;
		width: 100%;
	}
	.mobile_menu_toggle {
		display: block;
	}
	.nav_button {
		min-width: 1px;
	}
	.nav_link i {
		margin: 0px 10px;
	}
	.greeter_nav_wr {
		display: none;
	}
}

@media only screen and (max-width: 800px) {
	.footer_item_wr {
		padding: 0px 15px;
	}
}

@media only screen and (min-width: 701px) {
	.generic_content_box img {
		max-width:200px;
	}

	.event_logo img{
    	max-width:115px;
    	max-height: 115px;
		padding:0px;
	}

	.event_project_detail_padding_left_30{
	padding-left:40px;
	}
	.event_project_detail_padding_right_30{
	padding-right:20px;
	}
}


@media only screen and (min-width: 701px) {
	.generic_content_box_news img {
		max-width:1000px;
	}
}


@media only screen and (max-width: 700px) {
	.event_program_box img{
		padding:0px;
	}


	.project_detail_box_table_row {
		flex-direction: column;
	}
	.project_detail_box_table_row_left {
		flex-basis: auto;
		text-align: center;
	}
	.project_detail_box_table_row_right {
		text-align: center;
	}
	.project_detail_box_consortium_map {
		height: 200px;
	}
	.news_row {
		flex-direction: column;
		border-bottom: 1px solid #d1cece;
		padding-bottom: 25px;
	}
	.news_row_left {
		margin-right: 0px;
		padding-right: 0px;
		border-right: none;
		flex-basis: auto;
	}
	.news_row_right {
		margin-top: 15px;
		padding-top: 0px;
	}
	.news_row_right_date {
		text-align: center;
		margin-top: 10px;
	}
	.news_row:hover .news_row_right {
		background-color: #f3f3f3;
		border-radius: 15px;
	}
	.generic_content_box h1 {
		margin-left: 0px;
		margin-right: 0px;
	}
	#back_button {
		position: initial;
		align-self: center;
		margin-bottom: 15px;
	}
	.capabilities_wr {
		border: none;
	}
	.cap_item_hidden {
		padding: 25px 5px;
	}
	.cap_item_hidden_row {
		flex-direction: column !important;
	}
	.cap_item_hidden_row_img {
		max-width: 300px !important;
		margin-left: 0px !important;
		margin-right: 0px !important;
		padding-left: 0px !important;
		padding-right: 0px !important;
		align-self: center;
		margin-bottom: 30px;
		flex: auto;
		min-width: 200px;
	}
}

@media only screen and (max-width: 500px) {
	.projects_list {
		width: 100%;
	}
	.project_box_summary {
		/* margin-top: 10px; */
	}
	.project_box_summary_row {
		flex-direction: column;
	}
	.project_box_summary_col_left {
		flex-basis: auto;
		margin-right: 0px;
	}
	.project_box_summary_col_left, .project_box_summary_col_right {
		justify-content: center;
		text-align: center;
	}
	.project_box_summary_row, .project_box_summary {
		border: none !important;
	}
	.person_box {
		flex-direction: column;
		flex-basis: 300px;
		max-width: 300px;
	}
	.person_box_img {
		border-radius: 15px;
		margin: 10px 0px;
	}
	.person_box_details {
		padding: 10px 0px;
	}
	.person_box_name {
		text-align: center;
	}
	.person_box_field {
		padding: 5px 15px;
	}
	.read_more_toggle {
		text-align: center;
		padding: 5px;
		border-radius: 0px;
		width: 100%;
	}
}

@media only screen and (max-width: 400px) {
	.publication_list_item_left {
		flex: 0 1 40px;
		padding-right: 0px;
		align-self: center;
		transform: rotate(270deg);
		text-align: center;
	}
	.publication_list_item_right {
		padding-left: 15px;
	}
}

@media only screen and (max-width: 800px) {
	.events_header_box{
		flex-direction: column;
	}

}
@media only screen and (max-width: 1000px) {
	.generic_content_box{
		width: 100%;
	}
}

