header {
    display: grid;
    grid-template-columns: 45% 55%;
    background-color: var(--labodoc-beige);

    > div {
        padding-top: 20px;
        background-color: var(--labodoc-middle-blue);
        border-radius: 0 80px 0 0;
    }
}

h1 {
    width: 300px;
    height: 60px;
    background: url("../img/Labodoc-logotype-horizontal-blanc.svg") no-repeat center center;
    background-size: contain;

    text-indent: -9999px; /* Moves text off-screen */
    white-space: nowrap; /* Prevents wrapping */
    overflow: hidden; /* Prevents accidental scrollbars */

    margin: 0;
    padding: 0 5vw 0 5vw;
}


.top-sections {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    background-color: var(--labodoc-beige);
    color: var(--labodoc-deep-blue);
}


/* Presentation */
.presentation {
    padding: 50px 0;
    background-color: var(--labodoc-middle-blue);
}

.presentation__title {
    color: white;
    max-width: 350px;
    margin: 0 0 50px 0;
    font-size: 24px;
    font-weight: 900;
}

.presentation__paragraph {
    max-width: 500px;
    color: white;
}

.presentation__discover_button {
    display: inline-block;
    font-weight: bold;
    padding: 0.5em 5em;
    margin: 30px 0;
    text-decoration: none;
    background-color: var(--labodoc-light-blue);
    color: var(--labodoc-deep-blue);
}

.presentation__download-links {
    display: flex;
    gap: 10px;
}

.presentation__download-link-image {
    display: block;
    width: 170px;
    height: 65px;
}


/* Login */
.login__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login__title {
    padding: 0 10px 10px;
    border-bottom: 5px solid var(--labodoc-yellow);
    font-weight: 900;
}

.login__link {
    width: 100%;
    max-width: 300px;
    padding: 0.5em 0;
    margin: 10px 0;
    text-decoration: none;
    font-weight: bold;
}

.login__link--register {
    background-color: var(--labodoc-yellow);
    border: 2px solid var(--labodoc-yellow);
    color: white;
}

.login__link--login {
    background-color: transparent;
    border: 2px solid var(--labodoc-middle-blue);
    color: var(--labodoc-middle-blue);
}


/* Pros */
.pros {
    text-align: center;
    padding: 50px 0 0 0;
    margin: 0 0 50px 0;
    background: linear-gradient(
            to bottom,
            var(--labodoc-beige) 0%,
            var(--labodoc-beige) 60%,
            white 60%,
            white 100%
    );
}

.pros__title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 3em;
}

.pros__arguments {
    display: flex;
    justify-content: center;
    gap: 3vw;
    list-style: none;
    padding: 0;
}

.pros__argument-wrapper {
    width: 30vw;
    max-width: 400px;
}

.pros__argument {
    /*height: 100%;*/
    padding: 50px 25px 50px 25px;
    background-color: white;
    border-radius: 50px 50px 50px 0;
    filter: drop-shadow(0 0 5pt var(--shadow-color));
    text-align: center;
}

.pros__argument-title {
    margin: 0 auto 20px auto;
    font-weight: 900;
}

.pros__argument-separator {
    background-color: var(--labodoc-yellow);
    height: 2px;
    width: 100px;
    margin: auto;
}





/* Features */
.features {
    margin: 50px 0;
}

.features__container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.features__list {
    padding-left: 25px;
}

.features__item::marker {
    color: var(--labodoc-middle-blue);
    font-size: 1.5em;
}

.features__item:not(:last-child) {
    margin-bottom: 5px;
}

.features__image {
    max-width: 600px;
    width: 30vw;
    border-radius: 100px 100px 0 100px;
    box-shadow: 0 0 15px var(--shadow-color);
    object-fit: cover;
    object-position: center;
}


/* Missions */
.missions {
    margin: 50px 0;
}

.missions__container {
    display: grid;
    grid-template-columns: 200px 4px 1fr;
    align-items: center;
    justify-items: center;
    gap: 20px;
}

.missions__separator {
    width: 100%;
    height: 100%;
    background-color: #f6c168;
}

.missions__link {
    grid-column: 1 / -1;
    text-decoration: none;
    background-color: var(--labodoc-yellow);
    border: 2px solid var(--labodoc-yellow);
    color: white;
    font-weight: bold;
    padding: 0.5em 2em;
}


@media screen and (max-width: 1000px) {
    header {
        grid-template-columns: 50% 50%;
    }

    h1 {
        width: 250px;
        height: 50px;
    }

    .top-sections {
        grid-template-columns: 50% 50%;
    }

    /* Presentation */
    .presentation__download-link-image {
        width: 150px;
        height: 57px;
    }

    /* Pros */
    .pros__arguments {
        justify-content: initial;
        gap: initial;
    }

    .pros__argument-wrapper {
        flex-shrink: 0;
        width: initial;
        max-width: initial;
    }

    .swiper {
        touch-action: pan-y;
        overflow: hidden;
    }

    .swiper-pagination-bullet {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 4px;
        border-radius: 50%;
        opacity: 0.2;
        background: #000;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--labodoc-deep-blue);
    }

    /* Features */
    .features__container {
        flex-direction: column;
    }

    .features__title {
        text-align: center;
    }

    .features__image {
        width: 100%;
        margin: 30px;
    }

    /* Missions */
    .missions__container {
        grid-template-columns: 150px 4px 1fr;
    }
}


@media screen and (max-width: 700px) {
    header {
        grid-template-columns: 95vw 1fr;

        > div {
            max-width: 95vw;
            border-radius: 0;
        }
    }

    h1 {
        margin: auto;
    }

    .top-sections {
        grid-template-columns: 1fr;
    }

    /* Presentation */
    .presentation {
        border-radius: 0 0 40px 0;
        max-width: 95vw;
        padding-bottom: 25px;
    }

    .presentation__container {
        border-radius: 0 0 40px 0;
        max-width: 95vw;
        padding-bottom: 25px;
        text-align: center;
    }

    .presentation__title {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
        text-align: center;
    }

    .presentation__paragraph {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .presentation__download-links {
        justify-content: center;
    }

    .presentation__download-link-image {
        width: 125px;
        height: 48px;
    }

    /* Login */
    .login {
        margin: 30px 0;
    }

    .login__text {
        display: none;

    }

    .login__link {
        padding: 0.5em 3em;
        max-width: 200px;
    }

    /* Pros */
    .pros {
        padding: 30px 0 0 0;
    }

    /* Features */
    .features {
        margin: 30px 0;
    }

    /* Missions */
    .missions {
        margin: 30px 0;
    }

    .missions__container {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .missions__separator {
        height: 3px;
        width: 200px;
    }

    .missions__paragraph {
        text-align: center;
    }
}
