* {
    padding: 0px;
    margin: 0px;
    text-align: center;
    font-family: museo-sans-display, sans-serif;
    font-weight: 800;
    font-style: normal;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: #22B573;
    position: relative;
    font-size: 62.5%;
    width: 100%;
}

h1 {
    font-family: monarcha, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5vw;
    text-align: center;
    color: white;
    margin-bottom: 2vw;
}

span {
    display: inline-block;
}

h2,
h2>* {
    font-family: monarcha, serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.5rem;
    text-align: center;
    color: white;
}

li a {
    font-size: 3rem;
}

.it {
    font-style: italic;
}

button {
    background-color: #FF5528;
    border: none;
    border-radius: 42px;
    width: 100%;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 1rem;
    padding: 14px 31px;
    margin-top: 30px;
    text-decoration: none;
    transition: 0.2s 0.2s;
}

button:hover {
    background-color: #4B00FF;
    transform: scale(1.1);
    transition: 1s cubic-bezier(0.1, 0.74, 0.24, 1);
}

button:active {
    position: relative;
    top: 1px;
}

.wrapper>* {
    grid-column: span 12;
    transition: 1s cubic-bezier(0.1, 0.74, 0.24, 1);
}

.wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: calc(100vw*0.60) 62vh auto;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    padding: 50px 5% 10px 5%;
 
}

.bgLottie {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 45%;
}

.lottieUsine {
    width: 101%;
    position: absolute;
    bottom: -10px;
    right: 0;
}

.bgImageHills {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 45%;
    background-image: url("assets/Illu_Usine02.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-attachment: fixed;
    z-index: -1;
    filter: blur(4px);
}


.mainHead {
    z-index: -1;
}

.goShowreel {
    display: block;
    grid-row: 0;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

a {
    color: white;
    font-style: normal;
    text-decoration: none;
}

li:hover {
    transform: scale(1.2);
    transition: 1s cubic-bezier(0.1, 0.74, 0.24, 1);
}

a:hover {
    color: #4B00FF;
    transition: 1s cubic-bezier(0.1, 0.74, 0.24, 1);
}

.mainFooter {
    bottom: 0;
    width: 100%;
    margin-top: 50px;
    padding: 0 5%;
    background-color: white;
    align-self: center;
}

.textFooter,
.textFooter>* {
    font-family: monarcha, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: black;

}
.copyright{
    padding-top: 10px

    }

.copyright, .copyright>*{
    font-family: monarcha, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    color: black;

}

#vimeoReel {
    padding-top: 20px;
}

@media (min-aspect-ratio:7/12) {
    .bgLottie {
        height: 42%;
    }

    .bgImageHills {
        height: 42%;
    }

    .wrapper {
        grid-template-rows: 70vh 30vh auto;
    }

}

@media (min-aspect-ratio:9/10) {

    button {
        font-size: 2rem;
        margin-top: 50px;
    }

    h2,
    H2>* {
        font-size: 2rem;
    }

    .goShowreel {
        display: inline-block;
    }

    .wrapper {
        grid-template-rows: auto auto 60vh;
    }

    #welcome>h1 {
        padding-top: 0vh;
    }

    .bgLottie {
        height: 100vh;
    }

    .bgImageHills {
        height: 100vh;
    }

    .lottieUsine {
        min-width: 1200px;
    }

    #welcome>h1 {
        font-size: calc(8px + 2vw);
        text-align: start;

    }

    .mainHead {
        min-width: 100px;
        grid-column: span 5;
        grid-row: 2/2;
        margin-left: -17px;
    }

    .mainNav {
        padding-top: 0;
        grid-column: 8/13;
        grid-row: 1;
        min-width: 250px;
    }

    nav ul {
        justify-content: space-between;
    }



    #vimeoReel {
        grid-column: span 8;
        grid-row: 4;
    }

    .prez {
        grid-column: 9/13;
        grid-row: 4;
        align-self: center;
    }

    h2,
    h2>* {
        text-align: end;

    }

    #welcome {
        grid-column: span 5;
        grid-row: 3/3;
    }

    .mainFooter {
        grid-column: span 12;
        grid-row: 5;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .textFooter,
    .textFooter>* {
        text-align: start;
    }

    .copyright {
        text-align: end;
    }
}