:root {
    --white: #fff;
    --black: #000;
    --brown: #333333;
    --brown-translucent: #333333cc;
    --lighter-grey: #f6f6f6;
    --light-grey: #e6e6e6;
    --section-3: #c6c6c5;
    --section-4: #9d9c9c;
    --section-5: #7c7c7c;
    --section-6: #646464;
    --grey: #bbbbbb;
    --dark-grey: #717171;
    --header-height: 40px;
    --footer-height: 80px;
    --hamburger-height: 2px;
    --hamburger-width: 24px;
    --transition-duration: 0.3s;
}
@media screen and (min-width: 426px) {
    :root {
        --header-height: 50px;
    }
}
@media screen and (min-width: 1024px) {
    :root {
        --footer-height: 120px;
    }
}
html {
    box-sizing: border-box;
}
*,
*::after,
*::before {
    box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}
@font-face {
    font-family: Akzidenz;
    src: url('../fonts/AkzidenzGrotesk-Regular.otf') format('opentype');
}
@font-face {
    font-family: Akzidenz;
    font-weight: bold;
    src: url('../fonts/AkzidenzGrotesk-Bold.otf') format('opentype');
}
@font-face {
    font-family: Knockout;
    src: url('../fonts/Knockout-HTF92-UltmtCruiserwt.otf') format('opentype');
}
.pseudoelements {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
body {
    overflow-x: hidden;
    overflow-y: auto;
    min-width: 300px;
    margin: 0;
    font-family: Akzidenz, sans-serif;
}
a {
    outline: 0;
}
a {
    text-decoration: none;
    color: var(--black);
}
input::-webkit-input-placeholder {
    color: var(--lighter-grey);
}
input::-moz-placeholder {
    color: var(--lighter-grey);
}
input:-moz-placeholder {
    color: var(--lighter-grey);
}
input:-ms-input-placeholder {
    color: var(--lighter-grey);
}
textarea::-webkit-input-placeholder {
    color: var(--lighter-grey);
}
textarea::-moz-placeholder {
    color: var(--lighter-grey);
}
textarea:-moz-placeholder {
    color: var(--lighter-grey);
}
textarea:-ms-input-placeholder {
    color: var(--lighter-grey);
}
input[type='submit']:focus {
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
}
/**************************** HEADER */
header {
    background: var(--brown);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    width: 100%;
}
header nav {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
header nav,
header nav div,
header nav img {
    height: 100%;
}
header nav div.logo {
    padding: 10px 0;
}
header .navigation-wrapper {
    display: none;
}
header .mobile-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 16px 0;
}
header .mobile-menu-wrapper :not(:last-child) {
    margin-right: 32px;
}
header .mobile-menu-wrapper .mobile-toggle {
    position: absolute;
    right: 0;
    height: var(--hamburger-height);
    width: var(--hamburger-width);
    background: var(--white);
    -webkit-transition: all var(--transition-duration) ease-out;
    -moz-transition: all var(--transition-duration) ease-out;
    transition: all var(--transition-duration) ease-out;
}
header .mobile-menu-wrapper .mobile-toggle:before,
header .mobile-menu-wrapper .mobile-toggle:after {
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    position: absolute;
    display: block;
    content: '';
    height: var(--hamburger-height);
    width: var(--hamburger-width);
    background: var(--white);
    -webkit-transition: all var(--transition-duration) ease-out;
    -moz-transition: all var(--transition-duration) ease-out;
    transition: all var(--transition-duration) ease-out;
}
header .mobile-menu-wrapper .mobile-toggle:before {
    top: -5px;
}
header .mobile-menu-wrapper .mobile-toggle:after {
    bottom: -5px;
}
header .mobile-navigation-wrapper {
    display: block;
    overflow: hidden;
    height: 0;
    -webkit-transition: all var(--transition-duration) ease-out;
    -moz-transition: all var(--transition-duration) ease-out;
    transition: all var(--transition-duration) ease-out;
    background-color: var(--light-grey);
}
header .mobile-navigation-wrapper ul.main-menu li {
    border-bottom: 2px solid var(--black);
}
header .mobile-navigation-wrapper ul.main-menu li a {
    display: inline-block;
    font-family: 'Akzidenz', sans-serif;
    font-weight: bold;
    font-size: 0.9375rem;
    color: var(--brown);
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 0 8px 20px;
    width: 100%;
}
header .mobile-navigation-wrapper ul.submenu li a {
    font-weight: normal;
    text-transform: capitalize;
}
header .mobile-navigation-wrapper ul.submenu li {
    border-top: 1px solid var(--white);
    border-bottom: none;
}
header .mobile-navigation-wrapper ul.submenu li ul.submenu li {
    padding-left: 15px;
}
header .mobile-navigation-wrapper .menu-icons {
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #000;
    padding-left: 8px;
    margin-bottom: 30px;
}
header .mobile-navigation-wrapper .menu-icons a.menu-icon {
    display: block;
    width: 32px;
    padding: 5px 0 5px 12px;
    float: left;
    font-size: 0;
}
header .mobile-navigation-wrapper .menu-icons a.menu-icon::after {
    clear: both;
    content: '';
    display: table;
}
header.menu-open .mobile-menu-wrapper :not(:last-child) {
    visibility: hidden;
}
header.menu-open .mobile-menu-wrapper .mobile-toggle {
    height: 0;
}
header.menu-open .mobile-menu-wrapper .mobile-toggle:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
}
header.menu-open .mobile-menu-wrapper .mobile-toggle:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 0;
    top: 0;
}
header.menu-open .mobile-navigation-wrapper {
    height: calc(100vh - var(--header-height));
    overflow: scroll;
}
/**************************** FOOTER */
footer {
    background: var(--brown);
    color: var(--lighter-grey);
    height: var(--footer-height);
    width: 100vw;
}
footer .footer-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
}
footer .footer-wrapper .footer-text {
    flex: 1;
    text-align: left;
}
footer .footer-wrapper .footer-text h1 {
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 3px;
}
footer .footer-wrapper .footer-text p {
    font-size: 0.8125rem;
    margin-bottom: 6px;
    display: none;
}
footer .footer-wrapper .footer-text h2 {
    font-size: 0.625rem;
}
footer .footer-wrapper .footer-logos {
    position: relative;
    display: block;
    flex: 1;
    text-align: right;
    height: var(--footer-height);
    font-size: 0;
}
footer .footer-wrapper .footer-logos a {
    height: 100%;
    display: inline-block;
}
footer .footer-wrapper .footer-logos img {
    display: inline-block;
    margin-left: 3px;
    height: var(--footer-height);
}
footer .footer-wrapper .footer-images {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 1s ease-in;
    -moz-transition: all 1s ease-in;
    transition: all 1s ease-in;
}
footer .footer-wrapper .footer-images {
    height: 70px;
    width: auto;
}
footer .footer-wrapper .footer-images.visible {
    visibility: visible;
    opacity: 1;
}
/**************************** CONTENT */
.content {
    padding-top: var(--header-height);
}
.content section {
    padding: 0 20px;
}
/**************************** HOMEPAGE */
.homepage {
    height: 100%;
}
.homepage .content {
    height: calc(100vh - var(--footer-height));
}
.homepage section,
.homepage article,
.hero-image div {
    height: 100%;
}
.homepage .content section,
.homepage .content article {
    padding: 0;
}
.homepage section {
    position: relative;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hero-image div {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 1s ease-in;
    -moz-transition: all 1s ease-in;
    transition: all 1s ease-in;
}
.hero-image.visible div {
    visibility: visible;
    opacity: 1;
}
/* HIGHLIGHTS */
/* Slideshow container */
.highlights-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.highlight {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: none;
}
.highlight.visible {
    display: block;
}
.highlight > img {
    width: 100%;
    height: auto;
}
.highlight-text-container {
    position: absolute;
    width: 100%;
    top: 40%;
    padding: 0px 50px 0px 50px;
}
/* Caption text */
.highlight-title {
    color: var(--white);
    font-size: 2rem;
    width: 100%;
    text-align: center;
    font-weight: bold;
}
.highlight-title a {
    text-decoration: none;
    color: var(--white);
}
.highlight-subtitle {
    color: var(--white);
    font-size: 0.625rem;
    width: 100%;
    margin: 10px 0;
    text-align: center;
    font-weight: bold;
}
.highlight-date {
    color: var(--white);
    font-size: 0.5rem;
    width: 100%;
    text-align: center;
    font-weight: bold;
}
/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 0;
    height: 100%;
    padding: 16px;
    color: var(--black);
    font-weight: bold;
    font-size: 0.625rem;
    -webkit-transition: all var(--transition-duration) ease-out;
    -moz-transition: all var(--transition-duration) ease-out;
    transition: all var(--transition-duration) ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}
/* Position the "next button" to the right */
.next {
    right: 0;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: var(--brown-translucent);
    color: var(--white);
}
/* The dots/bullets/indicators */
.dotsContainer {
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 30px;
}
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: var(--grey);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    -webkit-transition: background-color var(--transition-duration) ease;
    -moz-transition: background-color var(--transition-duration) ease;
    transition: background-color var(--transition-duration) ease;
}
.dot.active,
.dot:hover {
    background-color: var(--dark-grey);
}
/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}
.expand-toggle {
    cursor: pointer;
}
.expand-container .expand-content {
    background: var(--white);
    display: none;
    -webkit-transition: height var(--transition-duration);
    -moz-transition: height var(--transition-duration);
    transition: height var(--transition-duration);
}
.expand-container.expanded .expand-content {
    display: block;
    padding: 1.5rem;
}
/**************************** CONTENT SECTIONS */
.content-sections h2,
.content-sections h3 {
    font-family: 'Knockout', sans-serif;
    color: var(--brown);
    text-transform: lowercase;
    margin-bottom: 3rem;
}
.content-sections h2 {
    font-size: 3rem;
}
.content-sections h3 {
    font-size: 2rem;
}
.content .content-sections {
    padding: 2.5rem 1.5rem;
}
.content .content-sections article,
.about-boxes {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.about-sections article > * {
    flex: 1;
}
/**************************** ABOUT */
.about .section-content {
    line-height: 150%;
}
.about .section-content a {
    text-decoration: underline;
}
.about h3 {
    font-family: Akzidenz, sans-serif;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.125rem;
    margin-top: 2rem;
    text-transform: none;
}
.about p {
    margin-top: 0;
    font-size: 1.125rem;
}
.content article {
    padding: 2.5rem 0;
}
.about .about-boxes {
    /* padding: 2.5rem 1.5rem; */
    padding-bottom: 0;
}
section.about-sections {
    padding: 0;
}
/* .about-sections article:nth-child(even),
.about .about-boxes {
    background-color: var(--light-grey);
} */
.about .about-boxes article {
    border-top: 3px solid var(--brown);
    padding: 0;
}
.about .about-boxes article:not(:last-child) {
    margin-bottom: 2rem;
}
.about .about-boxes .about-box-image {
    height: 150px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.about .about-boxes .about-box-content {
    background: var(--white);
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
}
.about .about-boxes h3 {
    font-family: 'Knockout', sans-serif;
    font-weight: normal;
    font-size: 1.875rem;
    margin: 0 0 1rem 0;
    color: var(--brown);
}
/**************************** RESEARCH */
.research-page section:not(:last-child) {
    padding-bottom: 5.5rem;
}
section:nth-child(1) {
    background-color: var(--lighter-grey);
}
section:nth-child(2) {
    background-color: var(--light-grey);
}
section:nth-child(3) {
    background-color: var(--section-3);
}
section:nth-child(4) {
    background-color: var(--section-4);
}
section:nth-child(5) {
    background-color: var(--section-5);
}
section:nth-child(6) {
    background-color: var(--section-6);
}
.research-page a {
    text-decoration: underline;
}
/**************************** SUBPROJECTS */
.subprojects-list {
    width: 100%;
}
.subproject {
    position: relative;
}
.subprojects-projects article {
    display: block;
    padding-bottom: 0;
}
.subprojects-projects article {
    padding-top: 0;
}
.subproject-text,
.subproject-text h2 {
    color: var(--white);
}
.subproject-text {
    padding: 1.5rem;
}
.subproject-text h2 {
    text-transform: capitalize;
    font-size: 2rem;
}
.subproject-text h3 {
    font-family: 'Akzidenz', sans-serif;
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 0px;
    color: var(--white);
}
.subproject .expand-button,
.event .expand-button {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--white);
    border: 1px solid var(--white);
    text-transform: uppercase;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.3125rem 0.625rem;
    -webkit-transition: all var(--transition-duration) ease;
    -moz-transition: all var(--transition-duration) ease;
    transition: all var(--transition-duration) ease;
    cursor: pointer;
}
.expand-button:hover {
    background-color: var(--white);
    color: var(--brown);
}
.subproject-wrapper .card p {
    font-family: 'Akzidenz', sans-serif;
    font-size: 1.125rem;
}
.subproject-wrapper {
    margin-bottom: 1rem;
}
article.subprojects-container {
    display: block;
}
/**************************** PUBLICATIONS */
article.publication-year {
    border-top: 2px solid var(--brown);
    background: var(--white);
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 2rem;
}
.paper {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--brown);
    line-height: 1.25;
    font-size: 1.125rem;
}
.paper:first-child {
    border-top: 1px solid var(--brown);
}
.paper a {
    text-decoration: underline;
    cursor: pointer;
}
/**************************** EVENTS */
article.event {
    border-top: 2px solid var(--brown);
    background-color: var(--white);
    padding: 0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}
.event .header {
    position: relative;
    padding: 2.5rem 2rem;
}
.event.expanded .expand-content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
}
.event .header h3 {
    font-size: 1.5rem;
    text-transform: none;
    margin-bottom: 0;
    margin-top: 2rem;
}
.event .header .expand-button {
    bottom: unset;
    top: 2.5rem;
    right: 2.5rem;
}
.event .header .expand-button:hover {
    background-color: var(--black);
    color: var(--white);
}
.event .header .expand-button,
.event .header .date {
    color: var(--black);
    border: 1px solid var(--black);
}
.event .header .date {
    text-transform: uppercase;
    text-align: center;
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0.3125rem 0.625rem;
    -webkit-transition: all var(--transition-duration) ease;
    -moz-transition: all var(--transition-duration) ease;
    transition: all var(--transition-duration) ease;
    display: inline-block;
}
.event .location-and-date,
.event .header-info {
    margin-bottom: 1rem;
}
.event .convenor {
    margin-bottom: 2.5rem;
}
.event .meeting-files,
.event .meeting-photos,
.event .meeting-videos {
    margin-top: 2rem;
}
.event h4 {
    font-family: Akzidenz, sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    padding: 10px 0;
}
.event .meeting-files a .meeting-file {
    border-top: 1px solid var(--black);
    height: 3rem;
    line-height: 3rem;
    padding-left: 2.25rem;
    font-family: 'Akzidenz', sans-serif;
    font-size: 0.875rem;
}
.event .meeting-files a:last-child .meeting-file {
    border-bottom: 1px solid var(--black);
}
.event .meeting-photos .gallery a:not(:first-child) {
    display: none;
}
.event .meeting-photos img,
.event .meeting-videos img {
    height: 6.25rem;
    width: 9.375rem;
    display: block;
    margin-bottom: 6px;
    margin-right: 6px;
}
.video-gallery {
    display: flex;
    flex-wrap: wrap;
}
section#videosinterviews .meeting-text p {
    margin-bottom: 1rem;
}
.event .meeting-files a {
    text-decoration: none;
}
/**************************** PEOPLE */
.member-image {
    width: 100%;
    padding-top: 100%;
}
.member-info {
    padding: 1rem 1.5rem;
}
.member-description {
    margin-top: 2rem;
}
.member-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 3rem;
}
.member-links li:not(:last-child) {
    margin-right: 0.5rem;
}
.member-links li a {
    white-space: nowrap;
}
section#people-committe h2 {
    max-width: 30%;
}
article.event.committe-member {
    padding: 2rem 1rem;
    font-size: 1rem;
}
.committe-member h3 {
    text-transform: capitalize;
    font-family: 'Akzidenz', sans-serif;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.committe-member h3 a {
    text-decoration: underline;
}
/**************************** INFO */
.info-page section:nth-child(1) {
    background-color: var(--lighter-grey);
}
.info-page section:nth-child(2) {
    background-color: var(--light-grey);
}
section#contacts {
    background-color: var(--lighter-grey);
    padding-left: 0;
    padding-right: 0;
}
section#contacts .header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
section#contacts article:last-child {
    padding-top: 0;
}
section#contacts article.event {
    border-top: 0;
    background-color: transparent;
}
section#contacts .header :last-child,
section#press .header :last-child {
    margin-bottom: 0;
}
section#contacts .image-slider {
    height: 20rem;
    overflow: hidden;
    position: relative;
}
section#contacts .image-slider .hero-image {
    height: 100%;
    width: 100%;
}
section#contacts .contacts-info {
    padding: 2.5rem 1.5rem;
    padding-bottom: 0;
}
section#contacts .contacts-info h3 {
    font-family: 'Akzidenz', sans-serif;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
section#contacts .contacts-info p {
    line-height: 1.25;
}
section#contacts .contacts-info > div:not(:last-child) {
    margin-bottom: 2rem;
}
article.press-files {
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.press-button {
    margin-bottom: 1rem;
    flex-grow: 0;
    color: var(--black);
    border: 1px solid var(--black);
    text-transform: uppercase;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.3125rem 0.625rem;
    -webkit-transition: all var(--transition-duration) ease;
    -moz-transition: all var(--transition-duration) ease;
    transition: all var(--transition-duration) ease;
    cursor: pointer;
    display: inline-block;
}
.press-button:hover {
    background-color: var(--black);
    color: var(--white);
}
.info-page #faqs .expand-button {
    position: unset;
    top: unset;
    bottom: unset;
    right: unset;
    left: unset;
    transform: unset;
    display: inline-block;
    margin-top: 1rem;
    align-self: flex-end;
}
.event .faq-question h3 {
    margin-top: 0;
    font-size: 1.875rem;
}
.info-page #faqs .event .header {
    display: flex;
    flex-direction: column;
}
/**************************** FORM QUESTION */
.form-control {
    width: 100%;
    border: 1px solid var(--black);
    padding: 10px 15px;
    margin-bottom: 15px;
    font-family: 'Akzidenz', sans-serif;
    font-size: 1.125rem;
}
.form-control input {
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0;
    width: 100%;
}
.form-controlinput::-webkit-input-placeholder {
    color: var(--lighter-grey);
}
.form-control textarea {
    display: block;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0;
    width: 100%;
    overflow: hidden;
    resize: none;
}
.form-control button {
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0;
    width: 100%;
}
.form-control#sendform:hover,
.form-control#sendform:hover input {
    background-color: var(--black);
    color: var(--white);
    cursor: pointer;
}
.required-text {
    text-align: right;
}
/* TABLET *****************************************************************************************/
@media screen and (min-width: 426px) {
    header {
        height: var(--header-height);
    }
    header nav {
        padding: 0 50px;
    }
    header .mobile-navigation-wrapper ul.main-menu li a {
        padding-left: 50px;
    }
}
/* DESKTOP *****************************************************************************************/
@media screen and (min-width: 1024px) {
    /**************************** HEADER */
    header nav {
        padding: 0 50px;
    }
    header .mobile-menu-wrapper,
    header .mobile-navigation-wrapper {
        display: none;
    }
    header .navigation-wrapper {
        display: flex;
    }
    header nav .navigation-wrapper ul.main-menu {
        font-weight: bold;
        height: 100%;
    }
    header nav .navigation-wrapper ul.main-menu li {
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        position: relative;
        display: inline-block;
        text-transform: uppercase;
        height: 100%;
    }
    header nav .navigation-wrapper ul.main-menu li a {
        color: var(--white);
        display: inline-block;
        padding: 10px 20px;
        width: 100%;
        height: 100%;
        line-height: 30px;
    }
    header nav .navigation-wrapper ul.main-menu li .submenu {
        width: 100%;
        background: var(--lighter-grey);
        position: absolute;
        top: var(--header-height);
        left: 0;
        opacity: 0;
        pointer-events: none;
    }
    header nav .navigation-wrapper ul.main-menu li .submenu li {
        display: block;
        text-align: center;
        text-transform: capitalize;
        border-top: 1px solid var(--brown);
        height: 55px;
        line-height: 55px;
    }
    header nav .navigation-wrapper ul.main-menu li .submenu li .submenu {
        opacity: 0;
    }
    header nav .navigation-wrapper ul.main-menu li .submenu li a {
        position: absolute;
        top: 0;
        left: 0;
        color: var(--brown);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        width: 100%;
        line-height: 1;
    }
    header nav .navigation-wrapper ul.main-menu li .submenu li:hover a {
        background: var(--brown);
        color: var(--white);
    }
    header nav .navigation-wrapper ul.main-menu li:hover {
        background: #f4f4f4;
    }
    header nav .navigation-wrapper ul.main-menu li:hover a {
        color: var(--brown);
    }
    header nav .navigation-wrapper ul.main-menu li:hover .submenu {
        opacity: 1;
        -webkit-transition: opacity var(--transition-duration) ease-out;
        -moz-transition: opacity var(--transition-duration) ease-out;
        transition: opacity var(--transition-duration) ease-out;
        pointer-events: auto;
    }
    header nav .navigation-wrapper ul.main-menu li .submenu li:hover .submenu {
        opacity: 1;
        background: var(--brown);
        top: -1px;
        left: 100%;
    }
    header nav .navigation-wrapper ul.main-menu li .submenu li:hover .submenu li:hover a {
        background: var(--lighter-grey);
        color: var(--brown);
    }
    header nav .navigation-wrapper .menu-icons {
        height: 100%;
        display: flex;
        align-items: center;
        margin-left: 15px;
    }
    header nav .navigation-wrapper .menu-icons .menu-icon {
        padding: 7px 5px;
    }
    header nav .navigation-wrapper .menu-icons .menu-icon img {
        width: auto;
        height: 22px;
    }
    /**************************** FOOTER */
    footer .footer-wrapper {
        padding: 0 50px;
    }
    footer .footer-wrapper .footer-text p {
        display: block;
    }
    footer .footer-wrapper .footer-images {
        display: block;
        position: relative;
        visibility: visible;
        opacity: 1;
    }
    /**************************** HOMEPAGE */
    .prev,
    .next {
        font-size: 1rem;
    }
    .highlight-title {
        font-size: 2.5rem;
    }
    .highlight-subtitle {
        font-size: 1.5rem;
    }
    .highlight-date {
        font-size: 0.75rem;
    }
    .content-sections .header {
        display: flex;
    }
    .content-sections .header > * {
        flex: 1;
    }
    /**************************** ABOUT */
    .about .about-boxes {
        display: flex;
        padding: 5rem 0 0 0;
        flex-wrap: wrap;
    }
    .about .about-boxes article {
        display: flex;
        flex-direction: column;
        flex: 1 0 auto;
        max-width: 30%;
    }
    .about .about-boxes article:not(:last-child) {
        margin-bottom: 0;
    }
    .about .about-boxes article:nth-child(n + 4) {
        margin-top: 4rem;
    }
    .about .about-boxes article:not(:nth-child(3n + 3)) {
        margin-right: 5%;
    }
    .about .about-boxes .about-box-content {
        margin-bottom: 0;
        flex: 1;
    }
    /**************************** SUBPROJECTS */
    .subproject-wrapper {
        position: relative;
    }
    .subprojects-projects article {
        display: flex;
    }
    .subproject {
        position: unset;
        flex: 1;
    }
    .subproject .expand-button {
        position: absolute;
        top: 1.5rem;
        right: 2.5rem;
        bottom: unset;
    }
    .subproject-wrapper.expanded .expand-button {
        color: var(--brown);
        border-color: var(--brown);
    }
    .subproject-wrapper .card {
        width: 0;
        -webkit-transition: width 0.3s;
        -moz-transition: width 0.3s;
        transition: width 0.3s;
        overflow: hidden;
        background-color: var(--white);
    }
    .subproject-wrapper.expanded .card {
        width: 45%;
        padding: 3rem 7.5rem 2.5rem 2.5rem;
        border-top: 2px solid var(--brown);
    }
    /**************************** PUBLICATIONS */
    .publication-year {
        display: flex;
    }
    .papers {
        margin-left: 3rem;
    }
    .paper:first-child {
        border-top: 0;
        padding-top: 0;
    }
    /**************************** EVENTS */
    .event .header .basic-info {
        display: flex;
        align-items: center;
        max-width: calc(100% - 75px);
    }
    .event .header .date {
        height: 2rem;
    }
    .event .meeting-files {
        max-width: 90%;
    }
    .event .header h3 {
        margin-left: 2rem;
        margin-top: 0;
    }
    .event .header .expand-button {
        top: 50%;
        transform: translateY(-50%);
    }
    .event .expand-content {
        margin-left: 8.25rem;
        width: 65%;
    }
    /**************************** PEOPLE */
    .people-team-member {
        display: flex;
    }
    .member-image {
        width: 40%;
        height: auto;
        padding-top: unset;
    }
    .member-info {
        width: 60%;
        padding: 3rem 6.25rem;
    }
    .member-description {
        margin-top: 2rem;
    }
    article.event.committe-member {
        display: flex;
    }
    article.event.committe-member > * {
        flex: 1;
    }
    /**************************** INFO */
    section#contacts {
        padding: 2.5rem 1.5rem;
    }
    section#contacts article.event {
        background-color: var(--white);
        border-top: 2px solid var(--brown);
        display: flex;
    }
    section#contacts .image-slider {
        width: 80%;
        height: 40rem;
    }
    .info-page section#faqs .expand-content {
        margin-left: 0;
        width: 100%;
    }
    .event .faq-question h3 {
        margin-left: 0;
    }
    .info-page #faqs .event .header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .info-page #faqs .expand-button {
        flex: 0;
        margin-top: 0;
        align-self: center;
    }
}
