/* ==================================
   RESET
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    overflow-x:hidden;
    max-width:100%;
    height:100%;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f6f9;
    color:#222;
    line-height:1.6;
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

main{
    flex:1;
}
/* ==================================
   LAYOUT
================================== */

.container{
    width:90%;
    max-width:1300px;
    margin:0 auto;
}

/* ==================================
   TYPOGRAPHIE
================================== */

h1,h2,h3,h4,h5,h6{
    font-weight:700;
    line-height:1.2;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ==================================
   TITRES DE SECTION
================================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    color:#003E7E;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.section-subtitle{
    display:inline-block;
    color:#E30613;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title.light h2{
    color:white;
}

.section-title.light p{
    color:rgba(255,255,255,.8);
}

/* ==================================
   BOUTONS
================================== */

.btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:15px 30px;

    background:#E30613;

    color:white;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

/* ==================================
   UTILITAIRES
================================== */

.text-center{
    text-align:center;
}

.mt-50{
    margin-top:50px;
}

.mb-50{
    margin-bottom:50px;
}