* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.open {
    overflow: hidden;
}

figure {
    font-size: 0;
}

figure img {
    max-width: 100%;
    width: auto;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

p, li {
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: #032d3d;
}

.center {
    text-align: center;
}

.container {
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

/** TOP HEADER **/

.top_header {
    background-color: #032d3d;
}

.top_header_content {
    display: flex;
    justify-content: center;
}

.top_header_content .coordonnees {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.top_header_content .coordonnees li {
    padding: 0px 20px;
    color: #fff;
    line-height: 40px;
}

.top_header_content .coordonnees li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
}

/** HEADER **/

header {
    padding: 15px 0;
    border-top: 1px solid #ddd;
}

.headerContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerContent .logo a {
    display: flex;
    align-items: center;
}

.headerContent .logo figure img {
    width: 230px;
}

.notLogo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navDesktop {
    display: none;
}

.btnDevis {
    display: none;
}

.burgerMenu {
    position: relative;
    width: 26px;
    height: 26px;
    margin-left: 15px;
    border: none;
    cursor: pointer;
    outline: none;
    background: none;
    transition: all 0.5s ease;
}

.burgerMenu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #032d3d;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.burgerMenu span:nth-child(1) {
    top: 0;
}

.burgerMenu.open span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
}

.burgerMenu span:nth-child(2) {
    top: 12px;
}

.burgerMenu.open span:nth-child(2) {
    opacity: 0;
}

.burgerMenu span:nth-child(3) {
    bottom: 0;
}

.burgerMenu.open span:nth-child(3) {
    bottom: 12px;
    transform: rotate(-45deg);
}

/** MAIN CONTENT */

.intro {
    display: flex;
    position: relative;
    height: 450px;
}

.intro figure {
    flex-basis: 100%;
}

.intro figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
}

.intro h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    width: 90%;
}

.rubrique {
    padding: 30px 0;
}

.rubrique.gris {
    background-color: #f5f5f5;
}

.rubrique h1 {
    font-family: 'Tilt Warp', cursive;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.rubrique h1 span {
    color: #e41b12;
}

.rubrique h2 {
    font-family: 'Tilt Warp', cursive;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 24px;
} 

.rubrique h2 span {
    color: #e41b12;
}

.rubrique p, .rubrique ul {
    margin-bottom: 16px;
}

.rubrique ul {
    list-style-type: disc;
    padding-left: 32px;
}

.boutons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.rubrique .boutons {
    justify-content: flex-start;
}

.flex_contenu figure {
    margin-bottom: 20px;
}

.boutons .btn {
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    text-transform: uppercase;
    background-color: #e41b12;
    font-size: 14px;
    transition: all 0.5s ease;
}

.boutons .btn:hover {
    background-color: #032d3d;
}

.social {
    padding: 40px 0;
}

.flex_social {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social_bloc {
    background-color: #eee;
    flex-basis: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
}

.social_bloc h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.social_bloc p a {
    font-size: 18px;
}

.social_bloc:nth-child(2) {
    background-color: #e41b12;
    color: white;
}

/** FOOTER */

footer {
    padding: 30px 0;
    background-color: #032d3d;
    color: white;
}

.footerContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footerContent .footer_col {
    width: 100%;
    margin-bottom: 40px;
}

.footerContent .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footerContent .logo .marque p {
    font-family: 'Tilt Warp', cursive;
    line-height: 1;
}

.footerContent .logo .marque p:first-child {
    font-size: 30px;
}

.footerContent .logo .marque p:last-child {
    font-size: 21px;
    letter-spacing: 2px;
}

.footerContent .logo .marque span {
    color: #0055a4;
}

.footerContent .footer_social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.footerContent .footer_social a {
    color: white;
}

.footerContent .footer_social_liens {
    margin-left: 20px;
}

.footerContent .footer_social_liens a {
    color: white;
    font-size: 30px;
    margin: 0 10px;
}

.footerContent .liens_col {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.footerContent .liens_col a {
    color: white;
}

.footerContent .liens_col a:not(:last-child) {
    margin-bottom: 10px;
}

.footerContent .liens_col a:hover {
    text-decoration: underline;
}

.footerContent .partners {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.footerContent .partners figure {
    flex-basis: 40%;
}

.footerContent .partners img {
    max-width: 200px;
}

.footerContent .partners .logos_rge {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footerContent .partners .logos_rge figure {
    flex: 1;
}

/* NAV MOBILE */

.navMobile {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    transform: translateX(-100vw);
    transition: transform 0.5s ease;
}

.navMobile.open {
    transform: translateX(0);
}

.navMobile .header {
    margin-bottom: 60px;
    background-color: white;
}

.navMobile .navMobile_liens {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.navMobile_liens a {
    position: relative;
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-left: 45px;
    transform: translateX(-150px);
}

.navMobile.open .navMobile_liens a {
    transform: translateX(0);
}

.navMobile_liens .link1 {
    transition: transform 0.5s ease;
}

.navMobile_liens .link2 {
    transition: transform 0.6s ease;
}

.navMobile_liens .link3 {
    transition: transform 0.7s ease;
}

.navMobile_liens .link4 {
    transition: transform 0.8s ease;
}

.navMobile_liens .link5 {
    transition: transform 0.9s ease;
}

.navMobile_liens .link6 {
    transition: transform 1s ease;
}

/*
.navMobile_liens a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 28px;
    height: 11px;
    background-image: url(../images/arrow_btn.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
*/

.navMobile .navMobile_coordonnees {
    position: absolute;
    bottom: 30px;
}

.navMobile_coordonnees p {
    color: white;
    font-size: 10px;
    font-weight: 400;
}

.navMobile_coordonnees p:not(:last-child) {
    margin-bottom: 15px;
}

.navMobile_coordonnees p a {
    color: white;
}

.navMobile .navMobile_social {
    position: absolute;
    bottom: 30px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.navMobile .navMobile_social figure {
    margin: 0 10px;
}

/* MEDIA QUERIES */

@media (min-width: 768px){
    body  {
        font-size: 14px;
    }

    .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .top_header_content .coordonnees {
        flex-direction: row;
    }

    .headerContent .logo figure img {
        width: 300px;
    }

    .rubrique {
        padding: 70px 0;
    }

    .rubrique h1 {
        font-size: 45px;
        margin-bottom: 70px;
    }

    .rubrique h3 {
        font-size: 36px;
        text-align: left;
    } 

    .flex_contenu {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .flex_contenu figure {
        margin-bottom: 0;
    }

    .flex_contenu.big {
        align-items: stretch;
    }

    .flex_contenu.big figure img {
        height: 100%;
        object-fit: cover;
    }

    .flex_contenu.reverse figure {
        order: 1;
    }

    .flex_contenu_texte {
        flex-basis: 45%;
    }  

    .flex_contenu_texte p:last-of-type {
        margin-bottom: 0;
    }

    .flex_contenu figure {
        flex-basis: 40%;
    }

    .flex_contenu.reverse figure {
        order: 1;
    }

    .boutons .btn {
        font-size: 16px;
    }

    footer {
        padding: 30px 0;
    }

    .footerContent {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footerContent .footer_col {
        width: auto;
        margin-bottom: 0;
    }

    .footerContent .logo a {
        justify-content: unset;
    }

    .footerContent .logo .marque p:first-child {
        font-size: 40px;
    }

    .footerContent .logo .marque p:last-child {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .footerContent .social {
        justify-content: unset;
    }

    .footerContent .liens_col {
        margin-bottom: 0;
    }

    .footerContent .partners {
        flex-wrap: wrap;
        width: unset;
        margin-top: 40px;
    }

    .footerContent .partners figure:first-child {
        margin-bottom: 20px;
    }
}

@media (min-width: 992px){
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }

    .flex_social {
        flex-direction: row;
    }

    .intro h1 {
        width: unset;
    }
}

@media (min-width: 1200px){
     .navDesktop {
        display: block;
    }

    .navDesktop ul {
        display: flex;
        align-items: center;
    }

    .navDesktop li:not(:last-child) {
        margin-right: 10px;
    }

    .navDesktop a {
        position: relative;
        padding-bottom: 4px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        color: black;
    }

    .navDesktop a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 0;
        height: 1px;
        background: #e41b12;
        transition: width .3s;
    }

    .navDesktop a:hover {
        color: #e41b12;
    }

    .navDesktop a:hover::after {
        width: 100%;
    }

    .btnDevis {
        display: block;
    }

    .btnDevis a {
        display: block;
        padding: 16px 32px;
        background-color: #e41b12;
        transition: all 0.7s ease;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 16px;
    }

    .btnDevis a:hover {
        background-color: #032d3d;
    }

    .burgerMenu {
        display: none;
    }

    .navMobile {
        display: none;
    }

    .navDesktop li:not(:last-child) {
        margin-right: 20px;
    }

    .navDesktop a {
        font-size: 13px;
    }

    .intro h1 {
        font-size: 48px;
    }

    .rubrique h2 {
        font-size: 32px;   
    }
}

@media (min-width: 1300px){
    .navDesktop a {
        font-size: 14px;
    }
}

@media (min-width: 1440px){
    .navDesktop li:not(:last-child) {
        margin-right: 40px;
    }
}