body, img {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

h1, h2, h3, p, ul, li, a {
    font-family: PoppinsExtraLight, Arial, sans-serif;
    font-weight: 100;
    color: white;
}

h1 {
    font-family: PoppinsLight, Arial, sans-serif;
    font-size: 54pt;
    line-height: 60pt;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 0px;
}

em {
    font-style: normal;
    color: red;
}

h2 {
    font-size: 48pt;
    line-height: 56pt;
    margin-top: 0;
}

p, li {
    font-size: 24pt;
}

a {
    color: white;
    text-decoration: none;
}

div#header-container {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 0 5vw;
    z-index: 1;
}

div#header {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 0 5vw;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    scale: 0;
    opacity: 0;
}

div#hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0;
}

img#hero {
    position: absolute;
    top: 10vh;
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

img#expand-more {
    position: absolute;
    bottom: 1vh;
    left: calc(50vw - 24px);
    filter: invert(1);
}

div.split-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
}

img.split-image, div.split-content {
    opacity: 0;
    scale: 0.5;
}

img.split-image {
    width: 100%;
    height: 50%;
    object-fit: cover;
}

div.split-content {
    color: white;
    padding: 3em;
}

div#footer {
    box-sizing: border-box;
    width: 100%;
    padding: 3em;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

div#footer p {
    margin: 0;
    line-height: 28pt;
    letter-spacing: 1px;
    font-weight: 300;
}

div#footer em {
    font-weight: 900;
}

ul {
    margin-top: -1em;
    padding-left: 0;
}

li {
    list-style-type: none;
}

li ul {
    margin-top: 0;
    margin-bottom: 10px;
}

li ul li {
    margin-left: 25px;
}

#logo-toulouse {
    max-height: 180px;
    transform: translateY(6.8px);
}

@media only screen and (min-width: 1000px) {
    h1 {
        font-size: 32pt;
        line-height: 36pt;
        max-width: 600px;
    }

    h2 {
        font-size: 32pt;
        line-height: 36pt;
    }

    p, li {
        font-size: 12pt;
    }

    div#header {
        margin-top: 0px;
    }

    div#header p {
        max-width: 700px;
    }

    div.split-content {
        padding: 40px 120px;
    }

    div#footer {
        box-sizing: border-box;
        padding: 20px 120px;
        flex-direction: row;
        justify-content: space-between;
    }

    div#footer p {
        line-height: 21pt;
        font-size: 18pt;
    }
}

@media only screen and (min-width: 1200px) {
    img#hero {
        top: 0vh;
        height: 100vh;
    }

    div.split-panel {
        height: 50vw;
        flex-direction: row;
    }

    div.split-panel:nth-child(even) {
        flex-direction: row-reverse;
    }

    img.split-image {
        width: 50%;
        height: 100%;
        object-fit: cover;
    }

    div.split-content {
        width: 50%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3em 6em;
    }

    div#footer {
        padding: 6em;
    }
}

@font-face {
    font-family: PoppinsLight;
    src: url(assets/fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: PoppinsExtraLight;
    src: url(assets/fonts/Poppins-ExtraLight.ttf);
}