/* 
Alexandre Morais
05.02.2003
*/

/* ---------- INITIALISATION ---------- */



body,
h1,
h2,
h3,
h4,
nav,
ul,
p {
    margin: 0;
    padding: 0;
    color: var(--secondary);
}

/* * {
     outline: 1px solid #000; 
} */

:root {
    --primary: #fff;
    --secondary: #343434;
}

body {
    font-family: sans-serif;
    background-color: var(--primary)
}

.flex {
    display: flex;
}

main {
    height: 100dvh;
    scroll-snap-type: y mandatory;
}

section {
    width: 100%;
    height: 100dvh;
    position: relative;
    /* outline: 1px solid #000; */
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* background-color: bisque; */
    /* pointer-events: none; */
}

.box {
    width: 50%;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.inner {
    width: 100%;
    height: 100dvh;
    padding: 0 200px;
    box-sizing: border-box;
    align-items: center;
}

p {
    max-width: 30em;
    margin: 1em 0;
}

h1,
h2 {
    text-transform: uppercase;
    font-size: 5em;
    margin-bottom: 1rem;
}

h3 {
    margin-top: 3em;
}

.phone-title {
    display: none;
}


li {
    list-style-type: none;
    margin-bottom: 1em;
}

li::before {
    content: '●';
    margin-right: 2em;
}

.transtion {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 1) 0%, rgba(208, 208, 208, 1) 100%);
    z-index: 10;
    pointer-events: none;
}


/* ---------- #PART-1 ---------- */

#part-1 {
    align-items: center;
    justify-content: center;
}

#part-1 #multiple-meds {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#part-1 h1 {
    pointer-events: none;
    position: relative;
    font-size: 7em;
    z-index: 2;
    white-space: nowrap;
}

/* ---------- #PART-2 ---------- */

#part-2 .scroll-container {
    /* overflow-y: scroll; */
    height: 9.2em;
}

#part-2 .scroll-container-item {
    margin: 0;
}

/* ---------- #PART-4 ---------- */

.content {
    margin-left: 2em;
}

#part-4 .scroll-container {
    height: 300px;
    margin-top: 3em;

}

#part-4 .scroll-container-item {
    min-height: 1000px;
}

#part-4 p,
#part-4 li {
    width: 20em;
}

/* ---------- #PART-5 ---------- */

#part-5 p {
    width: 20em;
}

#part-5 .scroll-container {
    display: block;
    height: 150px;
}

#part-5 .scroll-container-item {
    height: 150px;
}

.plus::before {
    content: '+';
    margin-right: 1em;
}

.moin::before {
    content: '-';
    margin-right: 1em;
}

/* ---------- #PART-6 ---------- */


#part-6 .container-item {
    width: 50%;
}

/* ---------- #PART-8 ---------- */

#part-8 {
    align-items: center;
    justify-content: center;
}

@media (max-width: 575px) {

    /* ---------- INITIALISATION ---------- */
    body {
        overflow-x: hidden;
    }

    h1,
    h2 {
        font-size: 2em;
    }

    p {
        width: 17em;
    }

    /* .transtion {
        display: none;
    } */

    canvas {
        height: 100dvh;
        pointer-events: none;
    }

    #part-1 canvas {
        pointer-events: none;
    }

    .inner {
        padding: 0 40px;
        margin: 0;
    }

    .flex {
        flex-direction: column;
    }

    .box {
        width: 100%;
    }

    section {
        height: 100dvh;
        padding: 50px 0;
        overflow-x: hidden;
    }

    .desktop-title {
        display: none;
    }

    .phone-title {
        display: block;
    }

    /* ---------- PART-1 ---------- */
    #part-1 h1 {
        font-size: 2em;
    }

    /* ---------- PART-2 ---------- */

    #part-2 .inner {
        justify-content: center;
        align-items: center;
    }

    #part-2 .pin-spacer {
        display: none !important;
    }

    /* ---------- PART-4 ---------- */

    #part-4 {
        overflow: hidden;
    }

    #part-4 .scroll-container {
        height: 100dvh;
        overflow-x: none;
    }
}

/* svg {
    display: none;
} */