@import url("https://fonts.googleapis.com/css2?family=Krona+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@400;700;900&display=swap");

@-webkit-keyframes pulseShadow {
    0% {
        box-shadow: 0
    }

    50% {
        box-shadow: 0 4px 2px -2px red
    }

    to {
        box-shadow: 0
    }
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0
    }

    50% {
        box-shadow: 0 4px 2px -2px red
    }

    to {
        box-shadow: 0
    }
}

@-webkit-keyframes icon-slide-right {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(180deg)
    }
}

@keyframes icon-slide-right {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(180deg)
    }
}

@-webkit-keyframes icon-slide-left {
    0% {
        transform: rotate(180deg)
    }

    to {
        transform: rotate(0)
    }
}

@keyframes icon-slide-left {
    0% {
        transform: rotate(180deg)
    }

    to {
        transform: rotate(0)
    }
}

@-webkit-keyframes slide-up-in {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slide-up-in {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-down-out {
    0% {
        opacity: 1;
        transform: translateY(100%)
    }

    to {
        opacity: 0;
        transform: translateY(0)
    }
}

@keyframes slide-down-out {
    0% {
        opacity: 1;
        transform: translateY(100%)
    }

    to {
        opacity: 0;
        transform: translateY(0)
    }
}

.container,
.page.container {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 2em
}

.page,
.post {
    margin: 0;
    padding: 0
}

:root {
    --pink: #f47ac0;
    --l_blue: #a9dbeb;
    --midnight_blue: #0e1434;
    --grey_100: #e5e5e5;
    --grey_600: #707070;
    --dark_blue: #171d49
}

a {
    transform-origin: left
}

a.btn-blue,
a.btn-white {
    text-transform: uppercase
}

a.btn-white {
    border: 1px solid;
    border-radius: 5px;
    box-shadow: none;
    color: #fff;
    display: inline-block;
    padding: .5em 2em .5em 1em;
    position: relative;
    text-decoration: none;
    transition: all .25s ease-in
}

a.btn-white:after {
    -webkit-animation: icon-slide-left .5s forwards;
    animation: icon-slide-left .5s forwards;
    background-image: url(/wp-content/themes/mmli/static/btn-white-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 11px;
    position: absolute;
    right: .5em;
    top: calc(50% - 6.5px);
    transition: all .25s ease-in;
    width: 12px
}

a.btn-white:focus-visible:after,
a.btn-white:hover:after {
    -webkit-animation: icon-slide-right .5s forwards;
    animation: icon-slide-right .5s forwards;
    background-image: url(/wp-content/themes/mmli/static/button-full-icon.png)
}

a.btn-white:focus-visible,
a.btn-white:hover {
    background-color: #a9dbeb;
    color: #171d49;
    text-decoration: underline
}

a.btn-blue {
    border: 1px solid;
    border-radius: 5px;
    box-shadow: none;
    color: #171d49;
    display: inline-block;
    padding: .5em 2em .5em 1em;
    position: relative;
    text-decoration: none;
    transition: all .25s ease-in
}

a.btn-blue.btn-full {
    background: #171d49;
    border-color: #171d49;
    color: #fff;
    font-weight: 700
}

a.btn-blue.btn-full:after {
    background-image: url(/wp-content/themes/mmli/static/btn-arrow-right-white.png)
}

a.btn-blue:after {
    -webkit-animation: icon-slide-left .5s forwards;
    animation: icon-slide-left .5s forwards;
    background-image: url(/wp-content/themes/mmli/static/btn-blue-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 11px;
    position: absolute;
    right: .5em;
    top: calc(50% - 6.5px);
    width: 12px
}

a.btn-blue:focus-visible:after,
a.btn-blue:hover:after {
    -webkit-animation: icon-slide-right .5s forwards;
    animation: icon-slide-right .5s forwards;
    background-image: url(/wp-content/themes/mmli/static/button-full-icon.png)
}

a.btn-blue:focus-visible,
a.btn-blue:hover {
    background-color: #a9dbeb;
    color: #171d49;
    text-decoration: underline
}

h1 {
    font-size: 3.5rem
}

h2 {
    font-size: 2.5rem
}

h1,
h2 {
    font-family: Encode Sans Expanded, sans-serif;
    font-weight: 900
}

header.entry-header {
    margin: 0 calc(50% - 50vw)
}

header.entry-header h1 {
    margin: 0;
    text-transform: uppercase
}

hr.wp-block-separator {
    background-color: transparent;
    border: none;
    height: 0;
    padding: 1em 0;
    position: relative
}

hr.wp-block-separator:after {
    background-color: currentColor;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    top: calc(50% - 1px);
    width: 100vw
}

.content>h1,
.content>h2,
.entry-content>h1,
.entry-content>h2 {
    margin-top: .1em;
    text-transform: uppercase
}

body {
    color: #171d49;
    font-family: PT Sans, sans-serif;
    font-size: 15px;
    overflow-x: hidden
}

@media (max-width:752px) {
    :root {
        font-size: 13px
    }

    h1 {
        font-size: 2em
    }
}

footer {
    background: #000;
    color: #fff;
    min-height: 20em
}

footer .pre-footer {
    background: #e5e5e5;
    min-height: 10em
}

footer .pre-footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: space-between
}

@media (max-width:1050px) {
    footer .pre-footer .container {
        flex-direction: column;
        gap: 1em;
        padding: 2em 0
    }

    footer .pre-footer .container,
    footer .pre-footer .container a {
        align-content: center;
        justify-content: center
    }

    footer .pre-footer .container img {
        align-self: center;
        justify-self: center;
        max-height: 100px
    }
}

footer .pre-footer .container a {
    align-content: center;
    display: flex
}

footer .pre-footer .container a img {
    transition: transform .3s ease-in
}

footer .pre-footer .container a:hover img {
    transform: scale(1.2)
}

footer .footer-content .footer-bottom,
footer .footer-content .footer-top {
    display: flex;
    justify-content: space-between
}

@media (max-width:960px) {

    footer .footer-content .footer-bottom,
    footer .footer-content .footer-top {
        flex-direction: column;
        gap: 2em
    }
}

footer .footer-content .footer-top {
    margin: 1em 0
}

@media (max-width:960px) {
    footer .footer-content .footer-top {
        margin-bottom: 2em
    }
}

footer .footer-content .footer-top .icon-group {
    align-items: center;
    display: flex
}

@media (max-width:960px) {
    footer .footer-content .footer-top .icon-group {
        justify-content: center
    }
}

footer .footer-content .footer-top .icon-group a {
    display: inline-flex;
    height: 80px;
    padding: 0 2em;
    text-align: center
}

footer .footer-content .footer-top .icon-group a:first-of-type {
    border-right: 1px solid #fff;
    padding-left: 0
}

footer .footer-content .footer-top .icon-group a img {
    margin: 1em 0
}

footer .footer-content .footer-top .menu-footer-menu-container {
    align-items: center;
    display: flex
}

footer .footer-content .footer-top .menu-footer-menu-container ul#menu-footer-menu {
    display: flex;
    gap: 2em;
    list-style: none;
    margin: 0
}

@media (max-width:960px) {
    footer .footer-content .footer-top .menu-footer-menu-container ul#menu-footer-menu {
        flex-direction: column;
        padding-left: 0
    }
}

footer .footer-content .footer-top .menu-footer-menu-container ul#menu-footer-menu li {
    text-transform: uppercase
}

footer .footer-content .footer-top .menu-footer-menu-container ul#menu-footer-menu li a {
    color: #fff;
    text-decoration: none
}

footer .footer-content .footer-top .menu-footer-menu-container ul#menu-footer-menu li a:hover {
    text-decoration: underline
}

footer .footer-content .footer-bottom {
    padding-bottom: 1em
}

footer .footer-content .footer-bottom .copyright {
    align-content: center;
    display: flex
}

footer .footer-content .footer-bottom .copyright p {
    margin: auto 0
}

footer .footer-content .footer-bottom .links {
    align-items: center;
    display: flex;
    gap: 2em
}

footer .footer-content .footer-bottom .links .btn-group a:first-of-type {
    margin-right: 1.5em
}

footer .footer-content .footer-bottom .links .social-media-icon-group a {
    color: #fff;
    text-decoration: none;
    transition: color .1s ease-in
}

footer .footer-content .footer-bottom .links .social-media-icon-group a:first-of-type {
    margin-right: .5em
}

footer .footer-content .footer-bottom .links .social-media-icon-group a:hover {
    color: #a9dbeb
}

footer .footer-content .footer-bottom .links .social-media-icon-group a span {
    font-size: 1.5em
}

.content p {
    margin-top: 0
}

.person-post {
    padding-bottom: 2em
}

.person-post a.btn-blue.btn-email {
    margin-bottom: 2em
}

#page .page-header.person-header {
    padding-bottom: 0
}

#page .page-header,
.page .page-header {
    margin: 0 calc(50% - 50vw);
    padding-bottom: 3em;
    position: relative
}

#page .page-header.front-page,
.page .page-header.front-page {
    background: linear-gradient(90deg, #171d49, #0e1434);
    color: #fff
}

#page .page-header.thrust-header,
.page .page-header.thrust-header {
    padding-bottom: 1.5em
}

#page .page-header.thrust-header h1,
.page .page-header.thrust-header h1 {
    margin: 0;
    width: 90%
}

#page .page-header.thrust-header .page-header-slider object,
.page .page-header.thrust-header .page-header-slider object {
    margin: 2em auto 0;
    max-height: 20em
}

#page .page-header.thrust-header .page-header-slider img,
#page .page-header.thrust-header .page-header-slider object,
.page .page-header.thrust-header .page-header-slider img,
.page .page-header.thrust-header .page-header-slider object {
    position: relative
}

#page .page-header .page-header-slider,
.page .page-header .page-header-slider {
    display: flex;
    min-height: 25em;
    overflow: hidden;
    position: relative
}

#page .page-header .page-header-slider img,
#page .page-header .page-header-slider object,
.page .page-header .page-header-slider img,
.page .page-header .page-header-slider object {
    margin: 0 auto;
    max-height: 25em;
    position: absolute;
    width: 100%
}

#page .page-header .page-header-photo,
.page .page-header .page-header-photo {
    display: flex
}

#page .page-header .page-header-photo img,
.page .page-header .page-header-photo img {
    margin: 2em auto;
    max-height: 25em
}

#page .page-header .page-header-title,
.page .page-header .page-header-title {
    display: flex;
    margin-bottom: 1em;
    margin-top: 1em;
    position: relative
}

#page .page-header .page-header-title h1,
.page .page-header .page-header-title h1 {
    line-height: 1.1;
    margin: auto 0 0;
    max-width: 700px
}

@media (max-width:950px) {

    #page .page-header .page-header-title,
    .page .page-header .page-header-title {
        flex-direction: column
    }

    #page .page-header .page-header-title .icon-group,
    .page .page-header .page-header-title .icon-group {
        align-items: center;
        flex-direction: row !important;
        order: 1
    }

    #page .page-header .page-header-title .subtitle-content,
    .page .page-header .page-header-title .subtitle-content {
        order: 2 !important
    }
}

#page .page-header .page-header-title .icon-group,
.page .page-header .page-header-title .icon-group {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-left: auto;
    padding: 1em 0
}

#page .page-header .page-header-title .icon-group *,
.page .page-header .page-header-title .icon-group * {
    margin-left: auto
}

#page .page-header .page-header-title .icon-group .button-group,
.page .page-header .page-header-title .icon-group .button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em
}

#page .page-header .page-header-title:after,
.page .page-header .page-header-title:after {
    background-color: currentColor;
    bottom: -.5em;
    content: "";
    height: 1px;
    left: -100vw;
    position: absolute;
    right: 0
}

#page .page-header .page-header-title .subtitle-content,
.page .page-header .page-header-title .subtitle-content {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: auto
}

#page .page-header .page-header-subtitle,
.page .page-header .page-header-subtitle {
    display: flex;
    flex-wrap: wrap
}

#page .page-header .page-header-subtitle .subtitle-content,
.page .page-header .page-header-subtitle .subtitle-content {
    display: inline-block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: .5em;
    margin-top: auto;
    width: 90%
}

#page .page-header .page-header-subtitle .social-media-icon-group,
.page .page-header .page-header-subtitle .social-media-icon-group {
    margin-left: auto
}

#page .page-header .page-header-subtitle .social-media-icon-group a,
.page .page-header .page-header-subtitle .social-media-icon-group a {
    color: inherit;
    font-size: 1.2em;
    text-decoration: none;
    transition: color .3s ease-in
}

#page .page-header .page-header-subtitle .social-media-icon-group a:hover,
.page .page-header .page-header-subtitle .social-media-icon-group a:hover {
    color: #a9dbeb
}

#page .page-header.thrust-header .page-header-subtitle,
.page .page-header.thrust-header .page-header-subtitle {
    position: relative
}

#page .page-header.thrust-header .page-header-subtitle:after,
.page .page-header.thrust-header .page-header-subtitle:after {
    background-color: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: -100vw;
    position: absolute;
    right: 0
}

#page .page-header .page-header-slider object.bg-teal,
.page .page-header .page-header-slider object.bg-teal {
    -webkit-animation: move-teal 6s ease-out infinite normal;
    animation: move-teal 6s ease-out infinite normal;
    transition: all .25s ease-in-out
}

@-webkit-keyframes move-teal {
    0% {
        margin-left: 10px;
        transform: scale(.9)
    }

    25% {
        margin-left: 5px;
        transform: scale(1)
    }

    60% {
        margin-left: 0;
        transform: scale(.9)
    }

    to {
        margin-left: -5px;
        transform: scale(.9)
    }
}

@keyframes move-teal {
    0% {
        margin-left: 10px;
        transform: scale(.9)
    }

    25% {
        margin-left: 5px;
        transform: scale(1)
    }

    60% {
        margin-left: 0;
        transform: scale(.9)
    }

    to {
        margin-left: -5px;
        transform: scale(.9)
    }
}

#page .page-header .page-header-slider object.bg-gray,
.page .page-header .page-header-slider object.bg-gray {
    -webkit-animation: move-gray 8s ease-out infinite normal;
    animation: move-gray 8s ease-out infinite normal;
    transition: all .25s ease-in-out
}

@-webkit-keyframes move-gray {
    0% {
        margin-left: -5px;
        top: -5px;
        transform: scale(1)
    }

    50% {
        margin-left: -7px;
        top: 0;
        transform: scale(.9)
    }

    80% {
        margin-left: -5px;
        top: -5px;
        transform: scale(1)
    }

    to {
        margin-left: -4px;
        top: 0;
        transform: scale(.9)
    }
}

@keyframes move-gray {
    0% {
        margin-left: -5px;
        top: -5px;
        transform: scale(1)
    }

    50% {
        margin-left: -7px;
        top: 0;
        transform: scale(.9)
    }

    80% {
        margin-left: -5px;
        top: -5px;
        transform: scale(1)
    }

    to {
        margin-left: -4px;
        top: 0;
        transform: scale(.9)
    }
}

#page .page-header .page-header-slider object.bg-lav,
.page .page-header .page-header-slider object.bg-lav {
    -webkit-animation: move-lav 7s ease-out infinite normal;
    animation: move-lav 7s ease-out infinite normal;
    transition: all .25s ease-in-out
}

@-webkit-keyframes move-lav {
    0% {
        margin-left: 0;
        top: 10px
    }

    25% {
        margin-left: -5px;
        top: 0
    }

    60% {
        margin-left: 5px;
        top: 0
    }

    to {
        margin-left: 10px;
        top: 5px
    }
}

@keyframes move-lav {
    0% {
        margin-left: 0;
        top: 10px
    }

    25% {
        margin-left: -5px;
        top: 0
    }

    60% {
        margin-left: 5px;
        top: 0
    }

    to {
        margin-left: 10px;
        top: 5px
    }
}

#page .page-research-header.page-header-slider object,
.page .page-research-header.page-header-slider object {
    position: relative
}

#page .research-container,
.page .research-container {
    padding: 2em 0
}

#page .research-container .thrust,
.page .research-container .thrust {
    display: flex;
    gap: 4em;
    margin: 4em 0;
    opacity: 0
}

#page .research-container .thrust:first-of-type,
.page .research-container .thrust:first-of-type {
    margin-top: 1em
}

#page .research-container .thrust:last-of-type,
.page .research-container .thrust:last-of-type {
    margin-bottom: 1em
}

@media (max-width:680px) {

    #page .research-container .thrust,
    .page .research-container .thrust {
        align-items: center;
        flex-direction: column;
        gap: 2em
    }
}

#page .research-container .thrust.on-screen,
.page .research-container .thrust.on-screen {
    -webkit-animation: slide-up-in 1s forwards;
    animation: slide-up-in 1s forwards
}

#page .research-container .thrust .icon,
.page .research-container .thrust .icon {
    min-width: 200px;
    width: auto
}

#page .research-container .thrust .content,
.page .research-container .thrust .content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

#page .research-container .thrust .content .title,
.page .research-container .thrust .content .title {
    line-height: 1;
    margin: 0
}

#page .research-container .thrust .content .subtitle,
.page .research-container .thrust .content .subtitle {
    font-weight: 700;
    margin-bottom: 1em
}

#page .research-container .thrust .content .body,
.page .research-container .thrust .content .body {
    margin-bottom: 1em
}

#page .research-container .thrust .content .btn-blue,
.page .research-container .thrust .content .btn-blue {
    margin: 1em 0
}

#page .thrusts-page,
.page .thrusts-page {
    padding-bottom: 4em
}

#page .thrusts-page .thrust-projects-container,
.page .thrusts-page .thrust-projects-container {
    display: flex;
    flex-direction: column;
    gap: 4em
}

#page .thrusts-page .thrust-projects-container .bottom-border,
.page .thrusts-page .thrust-projects-container .bottom-border {
    position: relative
}

#page .thrusts-page .thrust-projects-container .bottom-border:after,
.page .thrusts-page .thrust-projects-container .bottom-border:after {
    background-color: currentColor;
    bottom: -.5em;
    content: "";
    height: 1px;
    left: -100vw;
    position: absolute;
    right: 0
}

#page .thrusts-page .thrust-projects-container h2,
.page .thrusts-page .thrust-projects-container h2 {
    margin-top: 0;
    text-align: center
}

#page .thrusts-page .thrust-projects-container .thrust-project,
.page .thrusts-page .thrust-projects-container .thrust-project {
    display: flex;
    gap: 2em
}

#page .thrusts-page .thrust-projects-container .thrust-project:nth-child(odd),
.page .thrusts-page .thrust-projects-container .thrust-project:nth-child(odd) {
    margin-left: 4em
}

#page .thrusts-page .thrust-projects-container .thrust-project .circle,
.page .thrusts-page .thrust-projects-container .thrust-project .circle {
    background: #a9dbeb;
    border-radius: 50%;
    height: 50px;
    min-width: 50px;
    position: relative;
    top: calc(50% - 25px);
    width: 50px;
    z-index: 2
}

#page .thrusts-page .thrust-projects-container .thrust-project .content,
.page .thrusts-page .thrust-projects-container .thrust-project .content {
    align-self: center;
    justify-self: center
}

#page .thrusts-page .thrust-projects-container .thrust-project .content a,
.page .thrusts-page .thrust-projects-container .thrust-project .content a {
    color: inherit;
    text-decoration: none
}

#page .thrusts-page .thrust-projects-container .thrust-project .content a:hover,
.page .thrusts-page .thrust-projects-container .thrust-project .content a:hover {
    text-decoration: underline
}

#page .thrusts-page .thrust-projects-container .thrust-project .content .title,
.page .thrusts-page .thrust-projects-container .thrust-project .content .title {
    font-size: 120%;
    font-weight: 700
}

#page .thrusts-page .lead-researchers-container h2,
.page .thrusts-page .lead-researchers-container h2 {
    text-align: center
}

#page .thrusts-page .lead-researchers-container .people-container,
.page .thrusts-page .lead-researchers-container .people-container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin: 0 auto;
    max-width: 800px
}

#page .thrusts-page .lead-researchers-container .people-container a,
.page .thrusts-page .lead-researchers-container .people-container a {
    color: inherit;
    text-decoration: none
}

#page .thrusts-page .lead-researchers-container .people-container .person-container,
.page .thrusts-page .lead-researchers-container .people-container .person-container {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 18em;
    max-width: 80vw;
    width: 12em
}

#page .thrusts-page .lead-researchers-container .people-container .person-container:hover img:after,
.page .thrusts-page .lead-researchers-container .people-container .person-container:hover img:after {
    background-color: hsla(0, 0%, 100%, .85);
    inset: 0;
    position: absolute
}

#page .thrusts-page .lead-researchers-container .people-container .person-container .title,
.page .thrusts-page .lead-researchers-container .people-container .person-container .title {
    background: hsla(0, 0%, 100%, .85);
    color: #171d49;
    flex-grow: 1;
    height: auto;
    padding: 1em 2.5em;
    text-align: center;
    transition: background .5s ease-out, color .3s ease-out
}

#page .thrusts-page .lead-researchers-container .people-container .person-container:hover .title,
.page .thrusts-page .lead-researchers-container .people-container .person-container:hover .title {
    background: rgba(23, 29, 73, .3);
    color: #fff
}

#page .thrusts-page .lead-researchers-container .people-container .person-container .image-container,
.page .thrusts-page .lead-researchers-container .people-container .person-container .image-container {
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%
}

#page .thrusts-page .lead-researchers-container .people-container .person-container .image-container:after,
.page .thrusts-page .lead-researchers-container .people-container .person-container .image-container:after {
    background: transparent;
    content: "";
    inset: 0;
    position: absolute;
    transition: background .5s ease-out
}

#page .thrusts-page .lead-researchers-container .people-container .person-container:hover .image-container:after,
.page .thrusts-page .lead-researchers-container .people-container .person-container:hover .image-container:after {
    background: rgba(168, 218, 235, .4)
}

#page .thrusts-page .lead-researchers-container .people-container .person-container img,
.page .thrusts-page .lead-researchers-container .people-container .person-container img {
    flex-shrink: 0;
    height: 12em;
    min-height: 100%;
    min-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top
}

#page .thrusts-page .link-container,
.page .thrusts-page .link-container {
    display: flex;
    padding-top: 2em
}

#page .thrusts-page .link-container a,
.page .thrusts-page .link-container a {
    display: inline-block;
    margin: 0 auto
}

.thrust-projects-container .thrust-project .content {
    opacity: 0;
    transition: opacity .5s ease-in
}

.thrust-projects-container .thrust-project .content.on-screen {
    opacity: 1
}

header.site-header.front-page {
    background: linear-gradient(90deg, #171d49, #0e1434)
}

nav#site-navigation {
    align-items: center;
    display: flex;
    gap: 2em;
    justify-content: center
}

nav#site-navigation a.site-icon {
    min-width: 125px
}

nav#site-navigation a.site-icon img {
    min-height: 90px
}

nav#site-navigation .menu-primary-menu-container {
    padding: 1em;
    width: 100%
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu {
    font-family: Krona, sans-serif;
    gap: 3em
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu.dark-menu>li>a {
    color: #fff
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li {
    cursor: pointer;
    padding: 1em;
    text-transform: uppercase;
    transition: all .2s ease-in
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li:hover {
    background: hsla(0, 0%, 100%, .35)
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li:first-of-type {
    margin-left: auto
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li>a {
    color: inherit;
    font-size: 1.2em;
    pointer-events: none
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li:hover ul.sub-menu {
    border-width: 1px
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li ul.sub-menu {
    background: hsla(0, 0%, 100%, .85);
    border: 0 solid #171d49;
    flex-direction: column;
    height: auto;
    left: auto;
    margin-left: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    right: 0;
    transition: max-height .35s ease-in, border-width .25s ease-out
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li ul.sub-menu>li {
    text-align: end
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li ul.sub-menu>li:hover>a {
    background: rgba(23, 29, 73, .85);
    color: #fff;
    padding-right: 1.25em
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li ul.sub-menu>li:last-of-type>a {
    border-bottom: none
}

nav#site-navigation .menu-primary-menu-container ul#primary-menu>li ul.sub-menu>li>a {
    border-bottom: 1px solid #171d49;
    color: #171d49;
    display: block;
    font-size: 1em;
    font-weight: 700;
    margin: 0;
    min-width: 100%;
    padding: .75em;
    transition: all .2s ease-in
}

#mobile-navigation {
    padding-bottom: 20px;
    padding-top: 20px
}

#mobile-navigation .mobile-header-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 2em
}

#mobile-navigation .mobile-header-container a.site-icon img {
    margin: 0 auto;
    max-height: 100px;
    min-width: 15em
}

#mobile-navigation ul {
    align-items: flex-start;
    display: block;
    flex-direction: column
}

#mobile-navigation ul li a {
    display: inline-block;
    position: relative;
    width: 100%
}

#mobile-navigation #mobile-menu {
    background: hsla(0, 0%, 100%, .85);
    display: none
}

#mobile-navigation #mobile-menu a {
    color: #171d49;
    padding: .25em;
    transition: all .3s ease-in
}

#mobile-navigation #mobile-menu a:hover {
    background-color: rgba(23, 29, 73, .85);
    color: #fff;
    padding-left: 2em
}

#mobile-navigation #mobile-menu>li {
    cursor: pointer;
    overflow: hidden
}

#mobile-navigation #mobile-menu>li>a {
    font-size: 1.2em;
    font-weight: 700;
    padding: 1.5em 1em;
    pointer-events: none;
    text-transform: uppercase
}

#mobile-navigation #mobile-menu>li .sub-menu {
    border-top: 1px solid #0e1434;
    float: none;
    max-height: 0;
    position: relative;
    transition: max-height .5s ease-out;
    width: 100%
}

#mobile-navigation #mobile-menu>li .sub-menu.active {
    border-bottom: 1px solid #0e1434;
    max-height: 300px
}

#mobile-navigation #mobile-menu>li .sub-menu li a {
    font-size: 1.1em;
    padding-left: 1em
}

#mobile-navigation #mobile-menu>li .sub-menu li:hover a {
    background-color: rgba(23, 29, 73, .85);
    color: #fff;
    padding-left: 2em
}

.burger {
    cursor: pointer;
    display: none;
    height: 36px;
    min-width: 48px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    width: 48px
}

.burger.burger-blue .line {
    background-color: #171d49
}

.burger .line {
    background: #fff;
    border-radius: 9px;
    display: block;
    height: 4px;
    left: 0;
    opacity: 1;
    position: absolute;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    width: 100%
}

.burger .line-1 {
    top: 0;
    transform-origin: left center
}

.burger .line-2 {
    top: 13.5px;
    transform-origin: left center
}

.burger .line-3 {
    top: 27px;
    transform-origin: left center
}

.burger.open .line-1 {
    left: 8px;
    top: -3px;
    transform: rotate(45deg)
}

.burger.open .line-2 {
    left: 50%;
    opacity: 0;
    width: 0
}

.burger.open .line-3 {
    left: 8px;
    top: 31px;
    transform: rotate(-45deg)
}

@media (min-width:1050px) {
    nav#mobile-navigation {
        display: none
    }

    nav#site-navigation {
        display: flex
    }
}

@media (max-width:1050px) {
    nav#mobile-navigation {
        display: block
    }

    nav#site-navigation {
        display: none
    }

    .burger {
        display: block
    }
}

.publications-app-container {
    min-height: 40vh
}

.publications-app-container .post-results-enter-active,
.publications-app-container .post-results-leave-active,
.publications-app-container .post-results-move {
    transition: all .5s ease
}

.publications-app-container .post-results-enter-from,
.publications-app-container .post-results-leave-to {
    opacity: 0;
    transform: translateY(20px)
}

.publications-app-container .post-results-leave-active {
    position: absolute
}

.publications-app-container .input-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em
}

.publications-app-container .input-container .filter-title {
    border: none;
    border-bottom: 2px solid #171d49;
    font-size: 25px;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%
}

.publications-app-container .input-container .filter-authors,
.publications-app-container .input-container .filter-topics,
.publications-app-container .input-container .filter-years {
    align-items: baseline;
    border: 1px solid #171d49;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    margin-top: 1em;
    padding: 1em
}

.publications-app-container .input-container .filter-authors .filter-authors-title,
.publications-app-container .input-container .filter-authors .filter-topics-title,
.publications-app-container .input-container .filter-authors .filter-years-title,
.publications-app-container .input-container .filter-topics .filter-authors-title,
.publications-app-container .input-container .filter-topics .filter-topics-title,
.publications-app-container .input-container .filter-topics .filter-years-title,
.publications-app-container .input-container .filter-years .filter-authors-title,
.publications-app-container .input-container .filter-years .filter-topics-title,
.publications-app-container .input-container .filter-years .filter-years-title {
    display: inline-block;
    font-size: 120%;
    font-weight: 700
}

.publications-app-container .input-container .filter-authors label input,
.publications-app-container .input-container .filter-topics label input,
.publications-app-container .input-container .filter-years label input {
    accent-color: #171d49;
    vertical-align: baseline
}

.publications-app-container .posts-results .post-item {
    border: 1px solid #171d49;
    border-radius: 15px;
    margin-bottom: 1em;
    padding: 1em
}

.publications-app-container .posts-results .post-item .post-item-title {
    font-size: 120%;
    font-weight: 700
}

.publications-app-container .posts-results a {
    margin-bottom: 1em;
}

.publications-app-container .posts-results .post-item .post-item-additional-links {
    display: flex;
    gap: 1em
}

.publications-app-container .posts-results .post-item .post-item-additional-links a {
    margin-bottom: 0
}

.datasets-app-container {
    min-height: 40vh
}

.datasets-app-container .post-results-enter-active,
.datasets-app-container .post-results-leave-active,
.datasets-app-container .post-results-move {
    transition: all .5s ease
}

.datasets-app-container .post-results-enter-from,
.datasets-app-container .post-results-leave-to {
    opacity: 0;
    transform: translateY(20px)
}

.datasets-app-container .post-results-leave-active {
    position: absolute
}

.datasets-app-container .input-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em
}

.datasets-app-container .input-container .filter-title {
    border: none;
    border-bottom: 2px solid #171d49;
    font-size: 25px;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%
}

.datasets-app-container .input-container .filter-authors,
.datasets-app-container .input-container .filter-topics,
.datasets-app-container .input-container .filter-years {
    align-items: baseline;
    border: 1px solid #171d49;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    margin-top: 1em;
    padding: 1em
}

.datasets-app-container .input-container .filter-authors .filter-authors-title,
.datasets-app-container .input-container .filter-authors .filter-topics-title,
.datasets-app-container .input-container .filter-authors .filter-years-title,
.datasets-app-container .input-container .filter-topics .filter-authors-title,
.datasets-app-container .input-container .filter-topics .filter-topics-title,
.datasets-app-container .input-container .filter-topics .filter-years-title,
.datasets-app-container .input-container .filter-years .filter-authors-title,
.datasets-app-container .input-container .filter-years .filter-topics-title,
.datasets-app-container .input-container .filter-years .filter-years-title {
    display: inline-block;
    font-size: 120%;
    font-weight: 700
}

.datasets-app-container .input-container .filter-authors label input,
.datasets-app-container .input-container .filter-topics label input,
.datasets-app-container .input-container .filter-years label input {
    accent-color: #171d49;
    vertical-align: baseline
}

.datasets-app-container .posts-results .post-item {
    border: 1px solid #171d49;
    border-radius: 15px;
    margin-bottom: 1em;
    padding: 1em
}

.datasets-app-container .posts-results .post-item .post-item-title {
    font-size: 120%;
    font-weight: 700
}

.datasets-app-container .posts-results .post-item .post-item-content {
    margin: 1em 0;
}

.datasets-app-container .posts-results .post-item .post-item-additional-links {
    display: flex;
    gap: 1em
}

.datasets-app-container .posts-results .post-item .post-item-additional-links a {
    margin-bottom: 0
}

main.news-archive .news-row {
    border-bottom: 1px solid #0e1434;
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(12, 1fr);
    margin-top: 1em;
    padding-bottom: .5em;
    width: 100%
}

main.news-archive .news-row:last-of-type {
    border: none
}

main.news-archive .news-row:first-of-type {
    margin-top: 0
}

main.news-archive .news-row .news-image {
    grid-column: 1/4
}

main.news-archive .news-row .news-info {
    grid-column: 4/12
}

main.news-archive .news-row .news-info .date {
    font-size: 110%
}

main.news-archive .news-row .news-info .news-title {
    font-size: 120%;
    font-weight: 700
}

main.news-archive .news-row .news-info .news-title a {
    color: inherit;
    text-decoration: none
}

main.news-archive .news-row .news-info .news-title a:focus-visible,
main.news-archive .news-row .news-info .news-title a:hover {
    text-decoration: underline
}

/*# sourceMappingURL=main.css.map */