* {
    font-family: Segoe UI;
}
html, body {
    padding:0;
    margin:0;
    height:100%;
    width: 100%;
    font-size: 1em;
}

body {
    display:flex;
    flex-direction: column;
}
header {
    height: 132px;
    position: fixed;
    top:0;
    width:100%;
    color:white;
    transition:background-color .3s ease;
    z-index: 1;
    font-size: 1em;
    text-align: right;
    box-shadow: 0 1px 0 0 lightgrey;
}
main {
    flex:1;
    font-size: 1em;
}
input,
textarea,
button {
    border:1px solid lightgrey;
    border-radius:0.5em;
    padding:0.5em;
    background:white;
}
button {
    cursor:pointer;
}

header ul,
footer ul {
    list-style:none;
    padding:0;
    margin:0;
}
header a,
footer a {
    text-decoration: none;
    color: rgb(30, 30, 30);
    font-weight:bold;
    transition: color .2s ease;
}
header a:hover,
footer a:hover {
    color:darkorange;
}
header>div {
    padding: 1em 1em;
    display:flex;
    flex-direction: row;
    align-items: center;
    background: white;
    justify-content: space-around;
}
header img {
    height: 96px;
}

header .nav-opener {
    display:none;
    position: absolute;
    right: 0;
    margin: 1em;
    aspect-ratio:1;
    height: 34px;
}

header .nav-opener>div {
    display:flex;
    width:100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
}
header .nav-opener>div>div {
    width:100%;
    height:5px;
    background-color: black;
    border-radius: 5px;
}
header nav>ul {
    position:relative;
    display:flex;
    flex-direction: row;
    font-size: 1.1em;
    text-transform: uppercase;
}
header nav li>ul {
    display:none;
    position:absolute;
    top:100%;
    left: 0;
    border-radius: 0.6em;
    background: white;
    padding: 0.25em;
    box-shadow: 0px 5px 5px 0 rgba(0,0,0,0.25);
    text-align: left;
}
header nav li>ul li:hover{
}
header nav li {
    position:relative;
    white-space: nowrap;
}
header nav li>a{
    display:block;
    padding:0.5em 1em;
}
header nav ul li>a {
    border-radius:0.5em;
}
header nav>ul>li>a:hover, header nav li>ul a:hover{
    background-color: rgba(0,0,0,0.1);
}
header nav li:hover>ul {
    display:unset;
}


main section {
    position:relative;
    height: calc(100vh - 132px);
}
main section .content {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex-direction: row;
    justify-content: space-between;
}
main section .content>div {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer {
    display: flex;
    padding-bottom:1em;
    border-top: 1px solid lightgrey;
    height: calc(100vh - 132px);
    flex-direction: column;
    justify-content: space-between;
}
.footer-content {
    width:75%;
    margin:0 auto;
}
footer .footer-links {
    display:flex;
    flex-direction: row;
    width:100%;
    justify-content: space-between;
    margin-top: 2em;
    flex-wrap: wrap;
}
footer .footer-links section ul {
    border-left:1px solid;
    padding-left:1em;
}
footer .footer-links section a {
    display: block;
    padding:0.5em 0;
}
footer .contact {
    margin: 2em 0;
    display:flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}
footer .contact>div {
    flex:1
}
footer .contact-form {margin-right: 2em;}
footer .contact form {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
footer .contact form {
    width:100%;
    display:block;
}
footer .contact form>div {
    margin:1em 0;
    font-weight:bold;
}
footer .contact input:not([type=checkbox]),
footer .contact textarea,
footer .contact button {
    font-size:1.25em;
    width:100%;
}
footer .contact button {
    float:right;
    width:unset;
}
footer .contact input:focus,
footer .contact textarea:focus {
    outline:orange 1px solid;
}
footer .map {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer .map iframe {
    width: 100%;
    height: 75%;
    border-radius: 1em;
    border: 1px solid lightgray;
    box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.2);
}

footer .footer-infos {
    text-align: center;
    color: lightgray;
    font-weight: normal;
    margin-bottom: 1em;
}






section.cover {
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding-top: 132px;
}
section.cover video {
    display: block;
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    object-position: bottom;
    object-fit: contain;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
section.cover .kiosk-preview {
    background: url(../img/background.jpg);
    background-size: cover;
    background-position: center;
    box-shadow: -80px 0 40px -40px white inset;
}
section.cover .description {
    /* width:75%; */
}
section.cover .description-content {
    margin: 0 5em;
    color: #373737;
    text-align: justify;
}
section.cover .description-content button {
    font-size: 1em;
    background:orange;
    color:white;
    font-weight:bold;
    border:none;
    text-transform: uppercase;
}
section.cover .description-content ul {
    font-size: 1.15em;
    line-height: 1.5em;
}
section.cover .description-content ul h3 {
    margin: 0;
}
section.cover .description-content ul p {
    margin-top: 0;
    font-weight:normal;
}
section.cover .description-content .contact-button {
    text-align:right;
}