/* Davy - 2022 */
/* Yann - 2023 */

/* Générale */
:root {
    --color-1: #9E135A;
    --color-1-light: #b64e83;
    --color-1-very-light: #e7c4d6;
    --color-2: #d31d53;
    --color-3: #d31d53;
    --color-4: #F32C6A;
    --color-4-light: #f6618f;
    --color-4-very-light: #fccada;
    --color-black: #353535;
    --color-grey: #fcfcfc;
    --color-grey-2: #F5F5F5;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

footer {
    background: #c72564;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
a,
p,
fieldset {
    text-decoration: none;
    border: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3 {
    font-weight: 600;
}

body {
    font-weight: 400;
    font-size: 14px;
}

a {
    cursor: pointer;
}

.footer-text {
    display:inline-block;
}

input {
    border-radius: 3px !important;
}

/* input::placeholder, textarea::placeholder, input, textarea {
    font-size: 14px;
} */

textarea {
    overflow: auto;
    resize: vertical;
}

.text_center {
    text-align: center;
}

.text_justify {
    text-align: justify;
}

.text_right {
    text-align: right;
}

.block_center {
    margin: 0 auto;
}

.display_inline_block {
    display: inline-block;
}

.position_relative {
    position: relative;
}

.flex_center_y {
    display: flex;
    align-items: center;
}

.flex_center_x {
    justify-content: center;
}

.full_width {
    width: 100%;
}

.no_style {
    border: none !important;
    background: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.sticky_bottom {
    position: sticky;
    background: white;
    bottom: 0;
    z-index: 20;
}

.button {
    background: black;
    color: white;
    padding: 10px;
    border-radius: 7px;
}

.topnav {
    display: none;
}

@media (min-width: 769px) {
    .display_pc {
        display: block;
    }
    .display_mobile {
        display: none;
    }
    .display_none_pc {
        display: none;
    }
}

@media (max-width: 768px) {
    .topnav {
        display: flex;
    }

    .text_center_mobile {
        text-align: center;
    }
    body {
        font-size: 15px;
    }
    h1 {
        font-size: 22px;
    }
    /* input::placeholder, textarea::placeholder {
        font-size: 18px;
    }
    input, textarea {
        font-size: 18px;
    } */
    .display_mobile {
        display: block;
    }
    .display_pc {
        display: none;
    }
    .display_none_mobile {
        display: none;
    }
    .mobile_text_center {
        text-align: center;
    }
}
