@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --bg-color: #fdfdfd;
    --text-color: #404040;

    --service-name: #387cff;

    --icon-color: #09aa05;

    --menu-bg: #404040;

    --nav-bg: #fdfdfd;
    --nav-close: #404040;
    --nav-text: #404040;
    --nav-link: #09aa05;

    --proggress-text: #387cff;
    --progress-bg: rgba(0, 0, 0, .15);
    --progress-filled: #387cff;

    --title: #000;

    --input-border: #387cff;
    ;
    --input-text: #404040;
    --input-icon: #404040;
    --input-icon-grey: #404040;
    --input-label: #387cff;

    --input-border-focus: #387cff;
    --input-icon-focus: #387cff;
    --input-label-focus: #387cff;
    --input-error: #FC5B53;

    --btn-bg: #387cff;
    --btn-text: #fff;
    --btn-bg-disabled: #B3B6B7;
    --btn-text-disabled: rgba(0, 0, 0, .3);

    --btn-exit-bg: rgba(0, 0, 0, .1);
    --btn-exit: rgba(0, 0, 0, .6);

    --form-bottom: #000;

    --footer: #c0c0c0;

    --price: #c0c0c0;
}

*,
:before,
:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
}

html,
body {
    height: 100%;
}

html {
    font-size: 62.5%;
}

body {
    background: #ffffff;
    color: var(--text-color);
    font-family: "Glory", sans-serif;
    font-size: 1.2rem;
    line-height: 1.18;
    text-align: center;
}

p {
    font-size: 16px;
    text-transform: none;
    font-family: "Arial", sans-serif;
    font-weight: 300;
}

/*HEADER*/

.bandeau {
    background-color: #a6a6a6;
    padding: 10px;
}

.logo {
    width: 150px;
}

.arrow {
    width: 150px;
    margin: 30px;
}

/*MAIN*/

main, footer {
    max-width: 768px;
    width: 100%;
    padding: 0 1em;
    margin: 0 auto;
}

h1 {
    font-size: 2.8rem;
    font-family: "Glory", sans-serif;
}

h2 {
    font-weight: 500;
    font-size: 14px;
}

.progress {
    background: url(../images/bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    margin-bottom: 10px;
}

/*CTA*/

.btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 80px;
    border-radius: 1em;
    padding: 0.5em;
    font-size: 25px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: "Arial", sans-serif;
    background: #006fff;
    box-shadow: 0 8px 32px 0 #1c416a4f;
    border-radius: 10px;
    border: 3px solid rgba( 255, 255, 255, 0.18 );
    overflow: hidden;
    color: white;
    margin: 10px auto 0;
    text-decoration: none;
}

/*PRIX*/
.tarif {
    color: #fff;
    background: #000;
    padding: 1vh;
    font-size: 12px;
    font-family: 'Trebuchet MS', sans-serif;
    width: 100%;
}

/*MT*/

.text {
    text-align: justify;
    font-size: 12px;
    margin: 0 auto 20px;
    color: #343434;
    line-height: 15px;
}

.text a {
    color: #000000;
}

/*VIGNETTE D'IMAGES*/

.vignette {
    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;
    font-family: 'Trebuchet MS', sans-serif;
}

.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*/
.faq {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

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

.gauche {
    text-align: left;
}

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

.toggle-section {
    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;
    letter-spacing: 0;
    margin: 0;
    padding: 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;
}

/*ICON*/

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

.int {
    width: 100px;
    margin: 30px auto 10px;
}

.seize {
    width: 25px;
    margin: 0 auto;
}

/*FOOTER*/

footer {
    display: grid;
    justify-items: center;
    align-items: center;
    padding: 2vh 0;
}

footer a {
    text-transform: capitalize;
    width: 100%;
    padding: 2vh 0;
    font-weight: 600;
    font-size: 14px;
    color: #006fff;
    text-decoration: none;
}

/*MEDIAQUERIES*/

@media screen and (min-width: 768px) {
    .bottom {
        background: url(../images/bottom.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: calc(1920px / 3);
        height: calc(602px / 3);
        margin: 0 auto;
    }

    .btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .btn::before {
        width: 45%;
    }
}

#mw_pin_code {
    display: block;
    width: 100%;
    height: 64px;
    background: var(--bg-color);
    border: 2px solid var(--input-border);
    border-radius: 8px;
    color: var(--input-text);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    transition: 0.5s ease;
}
