:root {
    /******************* Fonts *******************/
    --main-font: "poppins", sans-serif;

    /*************** Fonts weight ***************/
    --light: 300;
    --regular: 400;
    --medium: 500;
    --bold: 700;
    --extrabold: 900;

    /***************** Colors *******************/
    --dark: #000000;
    --dark-footer: #092E4B;

    /* White & grey */
    --white: #ffffff;
    --grey: #f5f5f5;
    --dark-grey: #e6e6e6;
    --box-grey: 0px 100px 99px rgba(216, 216, 216, 0.16);

    /* Blue */
    --azur: #00B7CE;
    --light-blue: #093c64;
    --blue: #00355f;
    --dark-blue: #00355f;
    --dark-blue-55: rgba(9, 46, 75, 0,55);

    /* Red */
    --red: #cd0823;
    --dark-red: #920014;

    /* Gold */
    --gold: #B8860B;
    --gold-hover: #6f520b;

    /****************** Others ******************/
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);

    /****************** Containers ******************/
    /* Devices < 576px */
    --container-sm: 540px;
    /* Devices < 768px */
    --container-md: 720px;
    /* Devices  < 992px */
    --container-lg: 960px;
    /* Devices < 1200px */
    --container-xl: 1140px;
    /* Devices < 1400px */
    --container-xxl: 1320px;

    /* Gutter des containers */
    --gutter-x: 1.5rem;
    --gutter-y: 0;
}