@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@400;500;600;700&display=auto");

* {
    padding: 0;
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    background-color: #F7F7F7;
    color: #102749;
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    cursor: default;
}

input,
textarea,
select,
button {
    font-family: "Prompt", sans-serif;
}

div,
a,
span,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner {
    border: 0;
}

input:focus,
div:focus,
h1:focus,
h2:focus,
h3:focus,
span:focus,
textarea:focus,
select:focus {
    outline: none;
    background-image: none;
}

input::-ms-clear {
    display: none;
}

.touch {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 25;
    transition: 0.25s;
}

.bar-compact {
    background-color: #F7F7F7;
    padding-top: 20px;
    padding-bottom: 20px;
}

.bar-layout {
    display: flex;
    column-gap: 24px;
}

.bar-brand {
    flex: none;
}

.bar-brand img {
    display: block;
    width: auto;
    height: 42px;
    transition: 0.25s;
}

.bar-compact .bar-brand img {
    height: 32px;
}

.bar-nav {
    flex: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.bar-buttons {
    display: flex;
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
}

.bar-button,
.bar-button:link,
.bar-button:visited {
    color: #3585EF;
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.18s;
}

.bar-button:hover {
    color: #222222;
}

.touch .bar-button:hover {
    color: #3585EF;
}

.bar-button:active,
.touch .bar-button:active {
    color: #222222;
}

.bar-menu {
    flex: auto;
    display: none;
    justify-content: flex-end;
    align-items: center;
}

.bar-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 4px;
    width: 32px;
    height: 100%;
    cursor: pointer;
}

.bar-menu-line {
    background-color: #3585EF;
    width: 20px;
    height: 2px;
    transition: 0.18s;
}

.bar-menu-btn:hover .bar-menu-line {
    background-color: #222222;
}

.touch .bar-menu-btn:hover .bar-menu-line {
    background-color: #3585EF;
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    background-color: #222222;
}

/* PANEL */

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3585EF;
    opacity: 0.9;
    z-index: 999;
}

.panel-bg-show {
    animation-name: anima-panel-bg-show;
    animation-duration: 0.25s;
}

@keyframes anima-panel-bg-show {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.9;
    }
}

.panel-bg-hide {
    animation-name: anima-panel-bg-hide;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes anima-panel-bg-hide {
    from {
        opacity: 0.85;
    }

    to {
        opacity: 0;
    }
}

.panel {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    opacity: 1;
    z-index: 999;
    transform: scale(1);
}

.panel-show {
    animation-name: anima-panel-show;
    animation-duration: 0.25s;
}

@keyframes anima-panel-show {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.panel-hide {
    animation-name: anima-panel-hide;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes anima-panel-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

.panel-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 66px;
    height: 66px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 18px;
    height: 18px;
    transition: 0.18s;
}

.panel-close:hover img {
    transform: scale(1.2);
}

.touch .panel-close:hover img {
    transform: scale(1);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: scale(1.2);
}

.panel-buttons {
    text-align: center;
}

.panel-btn,
.panel-btn:link,
.panel-btn:visited,
.panel-btn:visited:hover {
    display: inline-block;
    padding: 7px;
    padding-bottom: 9px;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.18s;
}

.panel-btn:hover {
    color: #222222;
}

.touch .panel-btn:hover {
    color: #FFFFFF;
}

.panel-btn:active,
.touch .panel-btn:active {
    color: #222222;
}

/* LAYOUT */

.canvas {
    position: relative;
    width: 100%;
}

.rainbow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/resources/rainbow.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.23;
    z-index: 3;
}

.dream {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    z-index: 4;
}

.dream-img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(-5%);
    transition: 3s;
}

.dream-img-on {
    opacity: 1;
    transform: translateY(0);
}

.dream-curve {
    opacity: 0;
    transition: 3s;
}

.dream-curve-on {
    opacity: 1;
}

.curve {
    position: absolute;
}

.curve img {
    display: block;
}

.curve-1 {
    right: 0;
    top: 5%;
    height: 100%;
}

.curve-1 img {
    width: 100%;
    height: auto;
}

.curve-2 {
    left: 0;
    top: 0%;
    width: 100%;
    transform: translateY(25%);
}

.curve-2 img {
    width: 100%;
    height: auto;
}

.curve-3 {
    left: 0;
    bottom: 20%;
    width: 100%;
    transform: translateY(-35%);
}

.curve-3 img {
    width: 100%;
    height: auto;
}

.curve-4 {
    left: 0;
    top: -10%;
    width: 36%;
    z-index: 2;
    transform: translateY(25%);
}

.curve-4 img {
    width: 100%;
    height: auto;
}

.curve-5 {
    left: 0;
    bottom: 18%;
    width: 100%;
    transform: translateY(-30%);
}

.curve-5 img {
    width: 100%;
    height: auto;
}

.content {
    position: relative;
}

.frame {
    width: 100%;
    max-width: 1164px;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
    margin: 0 auto;
}

.layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    padding-bottom: 130px;
    z-index: 4;
}

.layout-alt {
    padding-bottom: 0px;
}

.layout-alt-2 {
    padding-bottom: 248px;
}

.column-1 {
    padding-bottom: 24px;
}

.column-2 {
    padding-bottom: 24px;
}

.column-alt {
    padding-bottom: 0px;
}

.block {
    padding-bottom: 130px;
}

.full {
    position: relative;
    padding-bottom: 130px;
}

.full-alt {
    padding-top: 70px;
}

.heading {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 230px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(-25%);
    transition: 2s;
}

.heading-on {
    opacity: 1;
    transform: translateY(0%);
}

.title {
    width: 100%;
    max-width: 400px;
    padding-bottom: 16px;
    color: #3585EF;
    font-size: 33px;
    line-height: 45px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-30%);
    transition: 1.5s;
}

.title-on {
    transform: translateY(0%);
    opacity: 1;
}

.title-alt {
    padding-bottom: 8px;
}

.caption {
    padding-top: 20px;
    color: #3585EF;
    font-size: 23px;
    line-height: 35px;
    font-weight: 600;
    opacity: 0;
    transition: 1.5s;
}

.caption-on {
    opacity: 1;
}

.text {
    font-size: 16px;
    line-height: 30px;
}

.text-alt {
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(10%);
    transition: 3s;
}

.text-alt-on {
    transform: translateY(0%);
    opacity: 1;
}

.text p {
    padding-bottom: 24px;
}

.text p:last-of-type {
    padding-bottom: 0px;
}

.button,
.button:link,
.button:visited {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
    min-width: 210px;
    height: 44px;
    padding-left: 20px;
    padding-right: 18px;
    margin-top: 24px;
    margin-left: -4px;
    border-radius: 100px;
    background-color: #FFAA00;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: 0.18s;
}

.button-1,
.button-2,
.button-3 {
    display: inline-block;
    opacity: 0;
    transform: scale(0.75);
    transform-origin: top left;
    transition: 1s;
}

.button-on {
    opacity: 1;
    transform: scale(1);
}

.button-triangle {
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -1px;
}

.button>div {
    padding-top: 1px;
}

.button:hover {
    background-color: #3585EF;
}

.touch .button:hover {
    background-color: #FFAA00;
}

.button:active,
.touch .button:active {
    background-color: #3585EF;
}

.button-alt,
.button-alt:link,
.button-alt:visited {
    background-color: #FF80BB;
}

.button-alt:hover {
    background-color: #3585EF;
}

.touch .button-alt:hover {
    background-color: #FF80BB;
}

.button-alt:active,
.touch .button-alt:active {
    background-color: #3585EF;
}

.button-alt-2,
.button-alt-2:link,
.button-alt-2:visited {
    background-color: #3BC986;
}

.button-alt-2:hover {
    background-color: #3585EF;
}

.touch .button-alt-2:hover {
    background-color: #3BC986;
}

.button-alt-2:active,
.touch .button-alt-2:active {
    background-color: #3585EF;
}

.arrow {
    display: block;
    width: 17px;
    height: 54px;
    margin-top: 56px;
    animation: arrow-anima 1.5s linear infinite;
}

@keyframes arrow-anima {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    40% {
        opacity: 0;
        transform: translateY(16px) scale(.95);
    }

    60% {
        opacity: 0;
        transform: translateY(-16px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.neuromed {
    position: relative;
    width: 100%;
    padding-bottom: 52.77777777777778%;
    margin-bottom: 80px;
    background-image: url(/resources/neuromed.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.neuromed-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* PICTURES */

.picture {
    position: relative;
    width: 100%;
    z-index: 4;
}

.picture-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.picture-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.picture-shape img,
.picture-image img {
    display: block;
    width: 100%;
    height: auto;
}

.picture-image img {
    transform: scale(0.75) rotate(-5deg);
}

.picture-shape img {
    position: absolute;
    transform: rotate(0deg);
    animation: picture-shape-anima 30s linear infinite;
}

@keyframes picture-shape-anima {
    to {
        transform: rotate(360deg);
    }
}

.picture-1 {
    padding-bottom: 92%;
}

.picture-1 .picture-shape img {
    bottom: 4%;
    right: -1%;
    width: 89%;
}

.picture-2 {
    padding-bottom: 76%;
}

.picture-2 .picture-shape img {
    bottom: 0%;
    left: 4%;
    width: 75.5%;
}

.picture-3 {
    padding-bottom: 84%;
}

.picture-3 .picture-image img {
    width: auto;
    height: 100%;
}

.picture-3 .picture-shape img {
    bottom: 7%;
    right: 0%;
    width: 84%;
}

.picture-4 {
    padding-bottom: 82%;
}

.picture-4 .picture-shape img {
    bottom: 0%;
    left: 11%;
    width: 75.5%;
}

/* VIDEO */

.media {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 22px;
    background-color: #222222;
    background-image: url(/resources/video.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    z-index: 4;
}

.media-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-button {
    display: block;
    width: 68px;
    height: 58px;
    animation-name: media-button-anima;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes media-button-anima {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.video-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    -webkit-transform: scale(0.95) !important;
    transform: scale(0.95) !important;
}

.video-viewer-show {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
    transition: 0.25s;
}

.video-viewer-hide {
    opacity: 0 !important;
    -webkit-transform: scale(0.95) !important;
    transform: scale(0.95) !important;
    transition: 0.35s !important;
}

.video-viewer-bg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px;
    box-sizing: border-box;
    box-sizing: border-box;
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    transition: 0.35s !important;
}

.video-viewer-player {
    width: 100%;
    max-width: 900px;
}

.video-viewer-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    padding: 20px;
    box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.video-viewer-close img {
    display: block;
    width: 100%;
    transition: 0.18s;
}

.video-viewer-close:hover img {
    transform: scale(1.2);
}

.touch .video-viewer-close:hover img {
    transform: scale(1);
}

.video-viewer-close:active img,
.touch .video-viewer-close:active img {
    transform: scale(1.2);
}

.embed-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CONTACT */

.form {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.textbox {
    display: block;
    width: 100%;
    height: 56px;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
    border: solid 1px transparent;
    border-radius: 10px;
    color: #3585EF;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    transition: 0.25s;
}

.textbox::placeholder {
    color: #616161;
    font-weight: 400;
    opacity: 1;
}

.textbox:focus {
    border-color: rgba(53, 133, 239, 0.5);
}

.textarea {
    display: block;
    width: 100%;
    height: 156px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
    border: solid 1px transparent;
    border-radius: 10px;
    color: #3585EF;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    resize: none;
    transition: 0.25s;
}

.textarea::placeholder {
    color: #616161;
    font-weight: 400;
    opacity: 1;
}

.textarea:focus {
    border-color: rgba(53, 133, 239, 0.5);
}

.submit,
.submit:link,
.submit:visited {
    position: relative;
    display: block;
    width: 100%;
    height: 46px;
    margin-top: 14px;
    border-style: none;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.25s;
}

.submit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/resources/gradient.png);
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    transition: 0.25s;
}

.submit:hover .submit-bg {
    opacity: 1;
}

.touch .submit:hover .submit-bg {
    opacity: 0.7;
}

.submit:active .submit-bg,
.touch .submit:active .submit-bg {
    opacity: 1;
}

.submit-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.contact-brand {
    display: block;
    width: 100%;
    max-width: 383px;
    height: auto;
    margin-top: 40px;
    margin-bottom: 66px;
    opacity: 0;
    transform: scale(0.9);
    transition: 1.5s;
}

.contact-brand-on {
    transform: scale(1);
    opacity: 1;
}

.contact-layout {
    display: flex;
}

.contact-links {
    flex: auto;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.contact-links-title {
    padding-bottom: 4px;
    color: #616161;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-link,
.contact-link:link,
.contact-link:visited {
    display: inline-block;
    color: #616161;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.18s;
}

.contact-link:hover {
    color: #3585EF;
}

.touch .contact-link:hover {
    color: #616161;
}

.contact-link:active,
.touch .contact-link:active {
    color: #3585EF;
}

.contact-networks {
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-network,
.contact-network:link,
.contact-network:visited {
    display: block;
    cursor: pointer;
    transition: 0.25s;
}

.contact-network img {
    display: block;
    width: 28px;
    height: 28px;
}

.contact-network:hover {
    transform: scale(1.25);
}

.touch .contact-network:hover {
    transform: scale(1);
}

.contact-network:active,
.touch .contact-network:active {
    transform: scale(1.25);
}

.contact-email,
.contact-email:link,
.contact-email:visited {
    display: inline-block;
    margin-top: 68px;
    color: #616161;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.18s;
}

.contact-email:hover {
    color: #3585EF;
}

.touch .contact-email:hover {
    color: #616161;
}

.contact-email:active,
.touch .contact-email:active {
    color: #3585EF;
}

/* FOOTER */

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    padding-top: 46px;
    padding-bottom: 46px;
    color: #222222;
    font-size: 13px;
    line-height: 16px;
}

.footer strong {
    font-weight: 600;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer a,
.footer a:link,
.footer a:visited {
    color: #222222;
    text-decoration: none;
    transition: 0.18s;
}

.footer a:hover {
    color: #3585EF;
}

.touch .footer a:hover {
    color: #222222;
}

.footer a:active,
.touch .footer a:active {
    color: #3585EF;
}

/* TOAST */

#toast {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    padding-top: 48px;
    text-align: center;
    z-index: 1000;
}

#toast-content {
    display: inline-block;
    padding: 17px;
    padding-bottom: 19px;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: #3585EF;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    opacity: 0;
    box-shadow: 0 0 16px 0 rgba(53, 133, 239, 0.2);
    transform: translateY(-80%);
}

@keyframes toast-show {
    0% {
        transform: translateY(-100%) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
}

#confirm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3585EF;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    z-index: 999;
}

#confirm strong {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

#confirm>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 32px;
    box-sizing: border-box;
}

#confirm>div>div {
    max-width: 600px;
    margin: 0 auto;
}

#confirm>div>div>div {
    padding-bottom: 10px;
}

#exit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 50px;
    padding: 0 !important;
    padding-top: 1px !important;
    margin-top: 16px;
    border-radius: 8px;
    border: solid 2px #FFFFFF;
    color: #FFFFFF;
    font-size: 16px !important;
    line-height: 16px !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.18s;
}

#exit:hover {
    background-color: #FFFFFF;
    color: #3585EF;
}

.touch #exit:hover {
    background-color: transparent;
    color: #FFFFFF;
}

#exit:active,
.touch #exit:active {
    background-color: #FFFFFF;
    color: #3585EF;
}

/* RESPONSIVE */

@media (max-width: 980px) {

    .bar-nav {
        display: none;
    }

    .bar-menu {
        display: flex;
    }

    .heading {
        max-width: unset;
        margin-top: 180px;
        margin-bottom: 20px;
    }

    .arrow {
        margin-top: 16px;
    }

    .dream {
        width: 130%;
    }

    .dream-img {
        opacity: 0.1;
    }

    .curve-1 {
        opacity: 0.15;
    }

    .neuromed {
        background-image: url(/resources/neuromed-2.png);
    }    

    .layout {
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }

    .layout-inverse .column-1 {
        order: 2;
    }

    .layout-inverse .column-2 {
        order: 1;
    }

    .block {
        padding-bottom: 50px;
    }

    .full {
        padding-bottom: 50px;
    }

    .picture {
        max-width: 520px;
    }

    .title {
        max-width: unset;
        line-height: 40px;
    }

    .text p {
        padding-bottom: 18px;
    }

    .neuromed {
        padding-bottom: 182%;
        margin-bottom: 32px;
        background-position: left center;
        background-size: cover;
    }

    .text-alt {
        color: #102749;
        padding-top: 7%;
    }

    .media-button {
        width: 30px;
        height: 20px;
    }

    .picture-1 .picture-shape img {
        left: 4%;
    }

    .picture-3 .picture-shape img {
        left: 4%;
    }

    .curve-4 {
        left: 0;
        top: -12%;
        width: 68%;
    }

    .curve-5 {
        bottom: 9%;
    }

    .footer {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .footer-right {
        justify-content: flex-start;
    }

}

@media (max-width: 480px) {

    .media {
        transform: scale(110%);
        padding-bottom: 72%;
    }

}