header {
    color: white;
    border-bottom: solid 1px #ffffff47;
    background: transparent;
    box-shadow: none;
}
header > .button-toggle button span {
    background: white;
}
header #previous {
    background-color: white;
}
header #previous svg path {
    stroke: #222222;
}

.top-informations {
    height: calc(var(--vh, 1vh) * 100);
    margin-top: -120px;
    padding: 120px 20vw 0;
    text-align: center;
    color: white;
    background-color: #222222;
    background-position: center;
    background-size: cover;
}
.top-informations .title-page {
    margin-bottom: 30px;
    font-size: 12px;
}
.top-informations .title {
    margin-bottom: 30px;
    font-family: 'Migra semibold';
    font-size: 100px;
	line-height: 1.1;
}
.top-informations .text {
    font-size: 25px;
}

#content {
    max-width: 640px;
    margin: 150px auto;
    padding: 0 20px;
}
#content > *:first-child {
	margin-top: 0;
}
#content h3 {
    margin: 50px 0 30px;
    font-size: 40px;
    font-family: 'Migra semibold';
}
#content label {
    width: 100%;
    margin-bottom: 15px;
}
#content input,
#content textarea {
    width: 100%;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-family: "Maison Neue";
}
#content textarea {
    padding: 15px 20px;
}
input::placeholder,
textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: lightgray;
    opacity: 1; /* Firefox */
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: lightgray;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: lightgray;
}
#content input[type="submit"] {
    display: block;
    width: initial;
    margin-left: auto;
    padding: 18px 31px;
    color: white;
    background-color: #222222;
    border: none;
    font-size: 12px;
    border-radius: 30px;
    text-transform: uppercase;
}

footer > nav {
    height: 300px;
    border-top: solid 1px lightgray;
}


@media screen and (max-width: 414px) {
    .top-informations .title {
        font-size: 70px;
        line-height: 75px;
    }
    .top-informations .text {
        font-size: 15px;
    }
    #content {
        margin: 10px 0 auto;
    }
    #content {
        font-size: 18px;
        line-height: 30px;
    }
    #content input[type="submit"] {
        width: 100%;
        margin: 0;
    }
}