*, ::after, ::before {
    box-sizing: border-box;
}

/* BODY */
html,
body {
    position: relative;
}

html {
    background: #fff;
}

body {
    font-family: "Barlow Condensed", Arial, Verdana, sans-serif;
    font-weight: normal;
    text-decoration: none;
    color: #142c3a;
    text-align: left;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.bg_blue {
    background: #142c3a;
}

.wrapper-logo {
    display: block;
    padding: 0;
}

.logo {
    display: block;
    height: 75px;
    margin: 0 auto;
    padding: 0;
    transition: height 0.3s ease-in-out 0s, width 0.3s ease-in-out 0s;
    width: 200px;
}

.bg_hero {
    align-items: center;
    background: #142c3a;
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.bg_hero picture,
.bg_hero img {
    height: auto;
    position: relative;
    width: 100%;
    z-index: 0;
}

.img-fluid {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 1150px;
    width: 100%;
}

.hero_title {
    align-items: center;
    color: #fff;
    display: flex;
    font-style: italic;
    font-size: 1.75rem;
    font-weight: 700;
    justify-content: center;
    left: 0;
    letter-spacing: 0.075em;
    line-height: 1em;
    height: 100%;
    margin: 0;
    max-width: 1000px;
    padding: 1rem 2rem;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 100%;
    z-index: 2;
}

.bc_corps {
    margin: 1rem auto 0 auto;
    max-width: 1000px;
    width: 100%;}

/* Brand section */
.brand_text {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.brand_section {
    text-align: center;
}

.brand_title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.075em;
    margin-top: 1.5rem;
    text-transform: uppercase;
}

.brand_section_text {
    color: #5A6F7C;
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    padding-top: 5px;
    text-align: center;
    text-transform: uppercase;
}

.grid {
    align-items: flex-start;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.grid-item {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0.9rem 1rem;
    position: relative;
    vertical-align: top;
    width: calc(100% / 3);
}

/* END - Brand section */

@media screen and (min-width: 476px) {
    .hero_title {
        font-size: 2.25rem;
    }

    .grid-item {
        width: calc(100% / 4);
    }
}

@media screen and (min-width: 768px) {
    .hero_title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .grid-item {
        width: calc(100% / 6);
    }

    .wrapper-logo {
        padding: 1.5rem 0;
    }
}

@media screen and (min-width: 992px) {
    .bc_corps {
        margin-top: 1.9rem;
    }

    .wrapper-logo {
        padding: 1.9rem 0;
    }

    .logo {
        height: 100px;
        width: 300px;
    }

    .hero_title {
        left: 50%;
        transform: translateX(-50%);
    }

    .grid-item {
        width: calc(100% / 8);
    }
}