* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;

    -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;
    align-self: center;
}

html {
    font-size: 62.5%;
}

body {
    background: #fff;
    font-family: "Inter", serif;
    font-size: 1.2rem;
    text-align: center;
    color: rgb(53 53 53);
}

img,
video {
    max-width: 100%;
}

/*LANDING*/
main {
    display: grid;
    justify-items: center;
    align-content: space-between;
}

#language {
    position: absolute;
    top: 5px;
    right: 5px;
}

.logo {
    width: 140px;
    margin: 20px auto 15px;
}

h1 {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 15px;
}

/*BLOC PROCESS*/

.blocProcess {
    display: flex;
    width: 98%;
    justify-content: space-around;
}

.num {
    width: 50px;
    margin: 8px 0 auto;
}

.num2 {
    width: 70px;
    margin: auto 0;
}

/*BARRE PROCESS*/

.barreProcess {
    width: 90%;
    height: 40px;
    margin: 10px 0 0;
    
}

/*CONTENU*/

.contenu {
    width: 100%;
    margin: 2vh auto;
}

#content {
    font-size: 18px;
    font-weight: 700;
}

/*MAIN*/

.hand {
    width: 70px;
    margin: 2vh 0 3vh;
    animation: jump .8s infinite;
}

@keyframes jump {
    0% {
        padding-top: 0;
        padding-bottom: 6px;
    }

    50% {
        padding-top: 6px;
        padding-bottom: 0;
    }

    100% {
        padding-top: 0;
        padding-bottom: 6px;
    }
}

h2 {
    font-size: 16px;
    width: 90%;
    margin: 0px auto 10px;
    font-weight: 700;
    color: #000000;
}

/*ICON FLÈCHE*/

.arrow {
    width: 90px;
    margin-bottom: 5vh;
}

/*BOX CTA*/

#pg_form {
    width: 90%;
    font-family: "Inter", serif;
}

.blocCTA {
    display: flex;
    border: 2px solid #09aa05;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 15px 0px;
}

.encartOrange {
    display: flex;
    flex-direction: column;
}

.iconPhone {
    color: #404040;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
}

.encart {
    width: 270px;
    background: var(--input-error);
    border-radius: 4px;
    padding: 3px 5px;
    color: var(--bg-color);
    font-size: 14px;
}

.small-arrow {
    content: '';
    width: 0;
    height: 0;
    margin-left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--input-error);
}

#msisdn_lead {
    border: none;
    width: 35px;
    margin: 0 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    font-family: "Inter";
    background-color: white;
}

.form-control {
    border: none;
    font-size: 22px;
    width: 60%;
    margin-left: 10px;
    font-family: "Inter";
    letter-spacing: 2px;
}

.field-check {
    width: 25px;
}

#subscribe {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
}

#submit_button {
    margin-top: 10px;
}

.btn-enable {
    background: #09aa05;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 15px;
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-disable {
    background-color: #b2b2b2;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 15px;
    color: #818181;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 84, 0.7)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 98, 0)
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 112, 0)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 84, 0.7)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 98, 0)
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 112, 0)
    }
}

.form-valid .field-check {
    fill: #09aa05;
}

#pg_pin_code {
    width: 50%;
    text-align: center;
    border: 1px solid black;
    padding: 10px;
    margin: 10px auto;
    font-size: 20px;
}

#pg_resend_pin {
    color: #10ae58;
}

.legal {
    display: grid;
}

#safetext {
    margin: 10px auto;
    width: 85%;
}

#exit {
    color: #09aa05;
    text-align: center;
}

#popular {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin: 10px auto 0;
    width: 90%;
}

#info {
    padding: 15px;
    background-color: #ececec;
    font-size: 1.2rem;
    margin-top: 15px;
}

#conditions {
    color: #000;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    background-color: #ececec;
    padding: 0 0 10px;
}

/* FOOTER*/
footer {
    text-align: center;
    padding: 12px;
    width: 100%;
    background: #000;
}

footer a {
    color: #a5a5a5;
    text-decoration: none;
}

/*VIGNETTE D'IMAGES*/

.vignette {
    width: 85%;
    display: flex;
    font-family: "Inter", serif;
    border-radius: 20px;
    margin: 20px auto 0px;
    min-height: 170px;
}

#un {
    background: url(../images/bonbon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

#deux {
    background: url(../images/poisson.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 10px;
}

.left {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 15px;
    width: 50%;
}

.left p {
    font-size: 10px;
    margin-bottom: 10px;
}

.icon {
    width: 60px;
}

.fish {
    width: 30px;
}

.right {
    margin: auto 0 0;
    width: 50%;
    height: 190px;
}

.bonbon {
    background: url(../images/bonbon.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}

.poisson {
    background: url(../images/poisson.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}

/*FAQ*/

.grey {
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0px;
    margin: 20px auto 0;
}

.faq {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin-bottom: 20px;
}

#faq {
    font-size: 18px;
    width: 100%;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.gauche {
    text-align: left;
}

.faq p {
    font-size: 10px;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}

.toggle-section {
    width: 85%;
    border-bottom: 1px solid;
    margin-bottom: 10px;
}

.toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.toggle-header h2 {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    width: 90%;
    letter-spacing: 0;
    margin: 0;
}

.toggle-content {
    max-height: 0;
    margin: 5px 0;
    overflow: hidden;
    transition: max-height 0.2sease -out;
    text-align: justify;
    font-size: 12px;
}

.toggle-content a {
    color: #000000;
}

.toggle-icon {
    transition: transform 0.2sease-out;
    width: 13px;
}

.toggle-icon.expanded {
    transform: rotate(180deg);
    transition: transform 0.2s ease-out;
}

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

/*MEDIAQUERIES*/

@media screen and (min-width: 768px) {

    .text {
        width: 26%;
    }

    .catalogue {
        width: 35%;
    }

    .vignette {
        width: 130px;
        height: 185px;
    }

    .blocProcess {
        display: flex;
        width: 28%;
        justify-content: space-around;
    }

    .barreProcess {
        width: 26%;
    }

    .blocImg {
        width: 30%;
        margin: 10px;
    }

    h2 {
        font-size: 18px;
        width: 100%;
    }

    .main-container {
        width: 30%;
        margin: 0 auto;
    }

    .faq {
        display: flex;
        justify-content: space-between;
        width: 35%;
        margin-bottom: 20px;
    }

    .toggle-section {
        width: 35%;
    }

    .toggle-header h2 {
        font-size: 14px;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        text-align: left;
        width: 90%;
        letter-spacing: 0;
        margin: 0;
    }

    .faq h2 {
        font-size: 18px;
        width: 100%;
        margin: 0;
    }

    .descriptionBox {
        text-align: justify;
        width: 35%;
        font-family: 'Poppins', sans-serif;
    }

    .vignette {
        width: 35%;
    }

    #pg_form {
        width: 30%;
        font-family: "Inter", serif;
    }

}
