* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
scroll-behavior: smooth;
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;

    margin: 0px;
    padding: 0px;
    outline: none;
    list-style: none;
    text-decoration: none;
}

img {
    max-width: 100%;
}

html {
    height: 100%;
    font-size: 62.5%;
}

body {
    background: black;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

/*VIDEO*/

#vid {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.filtre{
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000073;
}

/* === CONTENU === */
/*LOGO*/

.landing {
    color: white;
}

.logo {
    width: 50%;
    margin: 0 auto;
}

.logo img {
    width: 100%;
}

.bandeau {
    position: absolute;
    left: 50%;
    z-index: 100;
    width: 100%;
    transform: translateX(-50%);
    background-color: #EB2556;
    padding: 1.5vh;
}

/* CTA */

#step1 {
    margin: 4vh 2vh;
}

#zone-cta {
    display: grid;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
}

.cta button {
    font-size: 31px;
    padding: 22px;
    width: 90%;
    background: #eb2556;
    box-shadow: 0px 0px 10px 0px #eb2556;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    animation: pulse .8s infinite;
}

#zone-cta div {
    text-align: center;
}

#zone-cta h1 {
    font-size: 19px;
    width: 90%;
    margin: 0 auto 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#zone-cta div > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 30px;
    font-weight: 600;
    padding: 2.5vh;
    background: #EB2553;
    width: 90%;
    border-radius: 6px;
    margin: 0 auto;
    animation: pulse .8s infinite;
    font-family: arial;
}

@keyframes pulse {
    0% {
        box-shadow: #EB2553 0 0 0;
    }

    70% {
        box-shadow: #EB2553 0 0 10px;
    }

    100% {
        box-shadow: #EB2553 0 0 0;
    }
}

#disclaimer1 {
    font-size: 17px;
    color: #fff;
    font-family: arial;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 10px;
}

#disclaimer2 {
    font-size: 12px;
    margin-bottom: 10px;
}

.tarif {
    font-size: 12px;
    margin-top: 13px;
    font-family: arial;
}

/* form */
form {
    display: grid;
    justify-items: center;
    grid-gap: 2vh;
}

#submitBtn:disabled {
    background: linear-gradient(#ccc, #ccc);
    color: #666;
    box-shadow: none;
    animation: none;
}

#enter {
    font-size: 1.4rem !important;
}

#phoneNumber {
    font-size: 2rem;
    border-radius: 50px;
    text-align: center;
    padding: 2vh 0;
    width: 75%;
    letter-spacing: 2px;
}

#phoneNumber::placeholder {
    color: lightgrey;
}

#phoneNumber:invalid {
    border: 5px solid #eb2556;
}

#phoneNumber:valid {
    border: 5px solid #5eb67f;
}

#error {
    color: red;
}


/* FOOTER*/
.menu-footer {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.internetplus img {
    width: 100px;
    padding: 1vh 0;
}

.sub-footer {
    display: flex;
    flex-direction: column;
    border-top: solid .01rem #000;
}

.menu-footer a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    padding: 20px 0;
    font-weight: bold;
    text-transform: capitalize;
}

.menu-footer a:nth-child(2) {
    border-top: solid .01rem #000;
    border-bottom: solid .01rem #000;
}


/* ======================== */

@media only screen and (min-width: 780px) and (max-width: 1023px) {
    #vid {
        height: 100vh;
        width: 100vw;
    }

    #zone-cta {
        width: 100%;
    }

    #zone-cta h1 {
        font-size: 25px;
    }

    .logo {
        width: 35%;
    }
}

@media screen and (min-width: 1024px) {
    .landing {
        /* margin-bottom: 8vh; */
        height: 100%;
        width: 36%;
        margin: 0 auto 3vh;
        display: flex;
        justify-content: center;
    }

    .bandeau {
        width: 36%;
    }

    #zone-cta {
        width: 36%;
    }

    #vid {
        /* height: 100vh; */
        /* width: 100vw; */
        object-fit: cover;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
    }

    .logo {
        width: 25%;
    }
}
