* {
    font-family: 'Lato', sans-serif;
    color: #FFF;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: #1E1F24;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 100px 0 0;
}

body > * {
    flex-shrink: 0;
}

p, h1, h2, h3, figure, ul {
    margin: 0;
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.padded {
    padding-left: 12%;
    padding-right: 12%;
}

.marged {
    max-width: 1500px;
    width: 76%;
    margin: 0 auto;
}

.vpadded {
    padding-top: 90px;
    padding-bottom: 90px;
    box-sizing: border-box;
}

.centralized {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: normal;
    text-align: center;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.heighed {
    height: calc(100% - 80px);
}

.btn, button {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    background: #5D6CEC;
    white-space: nowrap;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 28px;
    border: none;
    transition: all ease 200ms;
    cursor: pointer;
}

.btn:not(:last-child), button:not(:last-child) {
    margin-right: 16px;
}

.btn.secondary, button.secondary {
    background: #16171B;
    color: #425687;
}

.btn:hover, button:hover {
    background: #475AFF;
}

.btn.secondary:hover, button.secondary:hover {
    background: #0d0e10;
}

section, header, footer {
    width: 100%;
    scroll-margin-top: 80px
}

section h2 {
    font-size: 12px;
    color: #8B8BA1;
    text-transform: uppercase;
    letter-spacing: 10px;
}

section h1 {
    font-size: 50px;
    font-style: italic;
    line-height: 1.1;
    margin: 5px 0 20px;
}

section p {
    color: #747390;
    line-height: 1.8;
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 40px;
}

section p:last-child {
    margin-bottom: unset;
}

nav {
    width: 100%;
    height: 80px;
    background: #1E1F24;
    border-bottom: 1px solid #2E3039;
    border-top: 3px solid #6776FF;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
}

nav img {
    cursor: pointer;
    height: 50px;
}

nav ul {
    display: flex;
    font-size: 16px;
    text-transform: uppercase;
    justify-content: end;
    font-weight: 700;
    font-style: italic;
    padding: 0;
}

nav ul li {
    opacity: .7;
    margin-right: 22px;
    transition: all ease 200ms;
    white-space: nowrap;
    cursor: pointer;
}

nav ul li:hover {
    opacity: 1;
}

header {
    display: flex;
    justify-content: center;
}

header figure {
    width: 100%;
    max-width: 1200px;
    height: 95%;
    position: absolute;
    margin: 0;
    left: 25%;
    bottom: -20px
}

header figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: -16px -12px 40px rgba(0, 0, 0, 0.2);
}

header figure::before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

header .address {
    position: absolute;
    bottom: 75px;
    right: 0;
    letter-spacing: 5px;
    text-align: right;
    font-size: 14px;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.5;
}

header .address p {
    margin: 0;
    font-weight: 300;
}

header main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 1;
    width: 45%;
}

header main h1 {
    font-family: 'Italiana', serif;
    font-size: 60px;
    line-height: 1.1;
    min-width: 500px;
}

header main p {
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    color: #67697A;
    margin: 12px 0 42px;
    white-space: nowrap;
}

#whoami {
    position: relative;
    padding: 0px 10% 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

#whoami figure {
    position: relative;
    width: 600px;
    max-width: 600px;
    max-height: 700px;
    margin-right: 8%;
    z-index: 1;
}

#whoami figure::before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

#whoami img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px -20px 40px rgba(0, 0, 0, .2);
}

#whoami ul {
    position: absolute;
    bottom: 50px;
    right: 50px;
}

#whoami ul li {
    margin-bottom: 30px;
}

#whoami ul li:last-child {
    margin-bottom: 0;
}

#whoami ul strong {
    display: block;
    font-size: 90px;
    font-weight: 800;
    line-height: .9;
}

#whoami ul li label {
    display: block;
    text-align: center;
    font-style: italic;
    font-size: 22px;
}

#whoami main {
    z-index: 2;
    max-width: 400px;
    margin: 90px 0;
}

#values {
    margin: 90px 0;
}

#values article {
    width: 65%;
    margin-bottom: 60px;
}

#values article:nth-child(2n) {
    text-align: right;
    margin-left: auto;
}

#statute {
    display: flex;
}

#statute main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-basis: 410px;
    flex-shrink: 0;
}

#statute figure {
    display: flex;
    margin-left: 90px;
    flex-shrink: 0;
}

#statute img {
    width: 190px;
    height: 100%;
    margin-right: -9px;
    border-radius: 5px;
    object-fit: cover;
    object-position: 0% center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: -6;
}

#statute img:first-child {
    width: auto;
}

#videocontent {
    align-items: center;
}

#videocontent main {
    margin-top: 60px;
    padding-bottom: 20px;
    width: 100%;
    height: 450px;
    min-height: 450px;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
}

#videocontent main::-webkit-scrollbar {
    background: hsl(230, 9%, 16%);
    height: 7px;
}

#videocontent main::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .7);
    border-radius: 30px;
    height: 4px;
}

#videocontent main figure {
    position: relative;
    width: 60%;
    height: 100%;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

#videocontent .highlight > img {
    object-fit: cover;
    object-position: right;
    width: 100%;
}

#videocontent main figure::before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    pointer-events: none;
    transition: all ease 200ms;
    position: absolute;
    top: 0;
    left: 0;
}

#videocontent main figure:hover::before {
    background: rgba(0, 0, 0, .2);
}

#videocontent main figure span {
    position: absolute;
    bottom: 35px;
    right: 35px;
    text-align: right;
    font-weight: 700;
    font-size: 20px;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.5;
    mix-blend-mode: color-dodge;
    color: #F9F5F5;
}

#videocontent main figure span img {
    width: 20px;
}

#videocontent main ul {
    height: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    padding-left: 20px;
}

#videocontent main li {
    height: 100%;
    display: flex;
}

#videocontent main ul a {
    display: flex;
    justify-content: center;
    align-items: center;
}

#videocontent main img {
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
}

#videocontent main li img {
    height: 212px;
    opacity: .4;
    transition: all ease 200ms;
}

#videocontent main li img:hover {
    opacity: 1;
}

#offer {
    background: rgba(0, 0, 0, .2);
}

#offer main {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#offer .qrcode {
    background: rgba(0, 0, 0, .2);
    padding: 30px;
    display: flex;
}

#offer .qrcode.mobile {
    display: none;
}

#offer .qrcode > img {
    height: 220px;
    margin-left: 26px;
}

#offer .qrcode span img {
    display: block;
    width: 40px;
    margin-bottom: 10px;
}

#offer .qrcode span {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    color: #B4BBD9;
    font-weight: 600;
    font-style: italic;
    font-size: 18px;
    min-width: 180px;
}

#offer .qrcode p {
    line-height: 1.4;
    word-break: break-all;
    margin: 17px 0;
    font-size: 14px;
}

#offer label {
    display: block;
    font-style: italic;
    text-transform: uppercase;
    color: #747390;
    font-weight: 300;
    font-size: 16px;
}

#offer ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 350px;
}

#offer li {
    margin-bottom: 20px;
}

#offer li.full {
    flex-basis: 100%;
}

#offer li.pad {
    margin-right: 70px;
}

#offer li span {
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
}

#offer li:last-child {
    margin-bottom: unset;
}

#offer li p {
    line-height: unset;
}

#calendar main {
    position: relative;
}

#calendar main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, .2);
    transform: translateY(-50%);
}

#calendar ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    max-width: 1200px;
}

#calendar li {
    width: 100%;
    box-sizing: border-box;
    background: #101013;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    padding: 26px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#calendar li:nth-child(2n) {
    position: relative;
    top: 50px;
}

#calendar li h1 {
    color: #E1ECF7;
    font-weight: 800;
    font-size: 30px;
    margin-top: -15px;
    margin-bottom: -2px;
    mix-blend-mode: color-dodge;
}

#calendar li h2 {
    font-family: 'Encode Sans Condensed', sans-serif;
    font-size: 72px;
    letter-spacing: unset;
    color: #384461;
    line-height: .85;
}

#calendar li span {
    color: #2D3442;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
}

#calendar li p {
    display: inline-block;
    color: #A3D7FF;
    line-height: 1.3;
    font-weight: 700;
    width: 90%;
    text-align: right;
    align-self: end;
    margin-top: 16px;
}

#calendar li:nth-child(1) h1 {
    color: var(--calendar-1-primary)
}

#calendar li:nth-child(1) p {
    color: var(--calendar-1-secondary)
}

#calendar li:nth-child(2) h1 {
    color: var(--calendar-2-primary)
}

#calendar li:nth-child(2) p {
    color: var(--calendar-2-secondary)
}

#calendar li:nth-child(3) h1 {
    color: var(--calendar-3-primary)
}

#calendar li:nth-child(3) p {
    color: var(--calendar-3-secondary)
}

#calendar li:nth-child(4) h1 {
    color: var(--calendar-4-primary)
}

#calendar li:nth-child(4) p {
    color: var(--calendar-4-secondary)
}

#calendar li:nth-child(5) h1 {
    color: var(--calendar-5-primary)
}

#calendar li:nth-child(5) p {
    color: var(--calendar-5-secondary)
}

#initiatives {
    width: 100%;
    height: 100%;
    position: relative;
}

#initiatives .highlight {
    background: url('../images/initiative01.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    will-change: opacity;
    opacity: .2;
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

#initiatives .highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #1E1F24, transparent);
    width: 100%;
    height: 100%;
    z-index: 1;
}

#initiatives .highlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%) contrast(25%);
    mix-blend-mode: color-dodge; */
}

#initiatives main {
    padding-bottom: 90px;
}

#initiatives aside,
#initiatives main {
    position: relative;
    z-index: 2;
}

#initiatives aside {
    width: 80%;
    padding-bottom: 50px;
}

#initiatives ul {
    display: flex;
    padding: 0;
}

#initiatives ul li {
    background: rgba(25, 26, 31, 0.6);
    padding: 16px 24px;
    color: #BBBDE2;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    margin-right: 1px;
    cursor: pointer;
    transition: all ease 200ms;
}

#initiatives main > ul li:hover,
#initiatives main > ul li.active,
#initiatives article {
    background: rgba(12, 12, 15, 0.4);;
}

#initiatives ul li.active {
    border-bottom: 3px solid #5D6CEC;
}

#initiatives article div {
    position: relative;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
}

#initiatives article p {
    width: 30%;
    margin-right: 54px;
    font-size: 16px;
    margin-bottom: 0;
    text-align: justify;
}

#initiatives article p:first-child {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    text-align: left;
    color: #FFF;
}

#initiatives article p:first-child b {
    color: #CFE5FC;
    mix-blend-mode: color-dodge;
    line-height: 1.8;
}

#initiatives article ul {
    display: flex;
    position: absolute;
    bottom: -20px;
    right: 0;
}

#initiatives article ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #151517;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 18px;
    padding: 16px 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .5);
}

#initiatives article ul strong {
    font-size: 42px;
    line-height: 1.1;
}

#contact {
    display: flex;
    position: relative;
}

#contact aside {
    width: 40%;
    text-align: right;
}

#contact form {
    width: 40%;
    max-width: 450px;
    flex-shrink: 0;
    background: #18191D;
    padding-top: 32px;
    position: absolute;
    z-index: 1;
    right: 0;
}

#contact form label {
    color: #928EA4;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    margin-right: 10px;
}

#contact form > label,
#contact form > textarea {
    margin: 0 32px;
}

#contact form > textarea {
    width: calc(100% - 64px);
    height: 130px;
    border: none;
    resize: none;
    display: block;
    background: transparent;
    border-bottom: 1px solid #3b3947;
    transition: all ease 200ms;
    box-sizing: border-box;
    margin-top: 2px;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 16px;
    font-style: italic;
}

#contact form > textarea:focus,
#contact form input[type=text]:focus {
    border-bottom: 1px solid #5D6CEC;
}

#contact form > input[type=checkbox] {
    margin-left: 32px;
    margin-bottom: 30px;
}

#contact form > label[for=contactme] {
    font-weight: 300;
    font-size: 13px;
    margin-left: 10px;
}

#contact form div {
    background: rgba(235, 235, 235, 0.01);
    padding: 5px 32px;
    position: relative;
}

#contact form div:first-of-type {
    padding-top: 20px;
}

#contact form div:last-of-type {
    border-bottom: 16px solid transparent;
}

#contact form div label {
    position: absolute;
    bottom: 15px;
}

#contact form div input {
    width: 100%;
    font-size: 16px;
    padding: 10px 0;
    padding-left: 85px;
    box-sizing: border-box;
    background: none;
    border: none;
    border-bottom: 1px solid #3b3947;
    transition: all ease 200ms;
    font-weight: 300;
}

#contact form button {
    width: 100%;
    border-radius: 0;
    margin-top: 12px;
}

footer {
    width: 100%;
    position: relative;
}

footer iframe {
    border: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: color-dodge;
    position: absolute;
}

footer h1 {
    font-size: 36px;
    font-style: italic;
    margin-bottom: 5px;
}

footer aside {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

footer aside p {
    font-size: 22px;
    color: #C8C4DB;
    font-style: italic;
    line-height: 1.4;
}

footer aside ul {
    display: flex;
    position: absolute;
    bottom: 30px;
    right: 0;
    margin: 0;
    gap: 12px;
}

footer aside ul li {
    background: #1A1B1F;
    border-radius: 50%;
    height: 46px;
    width: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer aside ul a {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer aside ul img {
    width: 24px;
    height: auto;
}

footer .maplink {
    font-size: 12px;
    color: #8B8BA1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

footer nav {
    height: 100px;
}

footer nav i {
    display: block;
}

footer nav strong {
    font-size: 22px;
    display: block;
    text-align: right;
    letter-spacing: 5px;
}

footer nav .links span {
    display: block;
    font-style: italic;
    text-align: right;
    color:rgba(235, 235, 235, 0.8)
}

footer nav > span {
    line-height: 1.5;
    color:rgba(235, 235, 235, 0.5)
}

.loading,
.loading * {
    color: transparent !important;
    position: relative;
}

.loading * {
    pointer-events: none;
    user-select: none;
}

.loader {
    display: none;
}

.loading .loader {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    filter: invert(100%) grayscale(1);
}

.btn img.loader,
button img.loader {
    width: 24px;
    height: 24px;
}

#initiatives ul .loader {
    width: auto;
    height: 10px;
}

#initiatives article.loading {
    min-height: 350px;
}

#videocontent main img.loader {
    height: auto;
}