body {
    font-family: "halyard-text", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

/* STRUCTURE
******************************************************************************/
#wrapper {
    width: 80vw;
    margin: 0 auto;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    #wrapper {
        width: 94vw;
    }
}

/* EN-TETE
******************************************************************************/
#header {
    display: flex;
    justify-content: space-between;
    padding: 1.5em 0 0em;

}

#logo {
    text-indent: -9999px;
    width: 13vw;
    height: 4vw;
   /* background: url(/img/insigne.svg);*/
    background: url(/img/smsa-logo-rouge.svg);
    background-repeat: no-repeat;
    background-size: cover;

}

.page-nav {
    position: fixed;
    width: 40px;
    height: 40px;
    top:30px;
    opacity: 0;
    background-size: contain;
    transform:scale(.5);
    transition: .2s ease-in-out transform;
    cursor: pointer;
}

.page-nav.show {
    opacity: 1;
    transform:scale(1.1);
}

#btn-insigne {
    background: url(../img/smsa-insigne-rouge.svg);
    left:10px
}

#btn-top {
    background: url(../img/smsa-insigne-rouge.svg);
    right:10px
}



@media screen and (min-device-width: 320px) and (max-width: 768px) {

    .page-nav {
        display: none;
    }
    #logo {
        width: 180px;
        height: 50px;
    }
}


/* NAVIGATION
******************************************************************************/
#nav {
    align-self: center;

}

#nav a {
    font-family: "halyard-micro", sans-serif;
    padding: 0;
    margin: 0 .5em;
    text-transform: uppercase;
    color: #861A22;
    font-weight: normal;
    font-size: 1.3vw;
    border-color: transparent;
    transition: .5s ease-in-out border-bottom-color;
}

#nav a:hover {
    border-bottom: 4px solid silver;
    text-decoration: none;
}

#nav a.selected {
    font-weight: 900;
    border-bottom: 4px solid #009AD9;
}

#btn-account i {
    font-size: 80%;
    }

#btn-mobile-menu {
    display: none;
}


@media screen and (min-device-width: 320px) and (max-width: 768px) {


    #btn-mobile-menu {
        position: absolute;
        font-size: 4vw;
        margin: 0;
        width: 60px;
        height: 60px;
        top: 40px;
        right: 10px;
        z-index: 99900000;
        display: block;
        cursor: pointer;
        color: #861A22;
        text-align: right;
        /*background-color: #B4252D;*/
    }


    .nav-on {
        overflow: hidden;
    }

    #header nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20vh;
        margin: 0 0;

    }

    #header nav > div {
        display: block;
        margin: 0;
        padding: 10vh;
        width: 100%;
    }

    #header nav > div > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    #header nav a {
        font-size: 20px;
        text-align: center;
        padding: .2em 0 0;
        background: transparent;
        display: block;
        color: white;
        width: fit-content;
        align-self: center;
        border-bottom: 4px solid transparent;
    }


    #header nav a.active {
        background: transparent;
        font-weight: 900;
    }

    #accueil #header nav a {
        color: white;
    }

    .nav-on #header nav {
        display: flex;
        z-index: 10000;
        background: #861A22;
        top: 0;
    }

    .nav-on #btn-mobile-menu {
        color: white
    }

    #lang {
        visibility: hidden;
    }

    .nav-on #lang {
        width: 90%;
        visibility: visible;
        position: absolute;
        bottom: 10vh;
        z-index: 100001;
        color: white;
        text-align: center;
    }

    .nav-on #lang a {
        color: white;
        font-size: 5vw;
    }

    .nav-on #lang a.active {
        color: white;
        font-weight: 900;
        border-bottom: 4px solid #009AD9;
    }


}

/* SOUS-NAVIGATION
******************************************************************************/
#subnav {
    font-family: "halyard-micro", sans-serif;
    display: flex;
    justify-content: center;
    border-color: transparent;
    /*border-bottom: 1px solid rgba(192, 192, 192, 0.5);*/
    border-top: 1px solid rgba(192, 192, 192, 0.5);
    padding: .5em 0;
    margin-top: 10px;
}

#subnav a {
    font-size: 1.10vw;
    padding: 0;
    margin: 0 1em;
    text-transform: uppercase;
    color: #861A22;
    font-weight: 100;
    transition: .5s ease-in-out border;
}

#subnav a.selected {
    font-weight: 900;
    border-bottom: 4px solid #009AD9;
}

#subnav a:hover {
    border-bottom: 4px solid silver;
    text-decoration: none;
}


/* MOBILE */
@media screen
and (min-device-width: 320px)
and (max-width: 768px) {

    #subnav {
        overflow-x: scroll;
        overflow-style: marquee-block;
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        justify-content: space-between;
        width: 96vw;
        /*position:                   relative;*/
        display: flex;
        /*flex-wrap:                  nowrap;*/
        /*top:                        -1.5vh;*/
        padding: 1.5em 0 1em;
        border-top: 0;

    }

    ::-webkit-scrollbar {
        width: 0px; /* remove scrollbar space */
        background: transparent; /* optional: just make scrollbar invisible */
    }

    #subnav {
        /*left: 0;*/
    }


    #subnav a {
        flex: 0 0 auto;
        /*height:  fit-content;*/
        margin: 0 01em;
        padding: 0;
        font-size: 18px;
    }

}


/* CONTENUS
******************************************************************************/

/* GENERAL */

#title {
    background: url(../img/structure_titre.svg) #861A22;
    background-size: cover;
    background-position: center;
    color: white;
    font-size: 4vw;
    /*padding: .5em;*/
    padding: 2px;
    height: 120px;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
    flex: 0 0 100%;
}

#title h3, #title h4 {
    align-self: center;
    display: block;
}

#title span {
    background: #861A22;
}

#title h3 {
    font-family: "halyard-micro", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 3vw;
    align-self: flex-end;
    flex: 0 0 40%;
    padding: 0;
}

#title h4 {
    font-size: 1.5vw;
    padding: 0;
    align-self: flex-end;
}

#title .back-button {
    flex: 0 0 5%;
    display: flex;
    padding: 0;
    margin: 0;
    font-size: 40px;
}

#title .back-button span {
    margin: 0;
    background: #AF1D33;;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 .2em;
    margin-right: 1em;
}

#title .back-button i {

    color: white;
    padding: 0;
    margin: 0;

}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #title {
        /*margin-bottom: 10px;*/
        flex-direction: column;
        align-content: flex-start;
        justify-content: flex-end;
        padding: 2px;

    }
    
    #title .back-button {
            width: 40px;
        height: 40px;
        font-size: 200%;
        display:none
        }

    #title h3 {
        font-size: 8vw;
        /*flex: 0 0 100%*/
        justify-self: flex-start;
        align-self: flex-start;
        margin: 4px;
        flex:0
    }

    #title h4 {
        font-size: 4vw;
        justify-self: flex-start;
        align-self: flex-start;
        margin: 4px;
        /*flex: 0 0 100%*/
    }
}

#page {
    min-height: 70vh;
    width: 100%;
    margin: 0 0 5vh 0;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*justify-content: space-between;*/
}

.cols {
    display: flex;
    flex: 0 0 100%;
    justify-content: space-between;
    margin-bottom: 8vh;
    padding: 0;
}

.col {
    padding: 0;

}

.col.one {
    flex: 0 0 100%;
}

.col.two {
    flex: 0 0 48%;
    max-width: 48%;
}

.col.two:first-child {
    margin-right: 4%;
}

.col.three {
    flex: 0 0 33%;
    max-width: 33%;
    margin: 1% 1% 0 0;
}

#grid {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;

}

#grid .bloc {
    flex: 0 0 30%;
    margin: 3% 3.28% 0 0;
    align-self: flex-start;

}

.card {
    flex: 0 0 31%;
  justify-content: space-between;
    display: flex;
    aspect-ratio: 4/2;
    flex-direction: row;
    margin:2% 2% 0 0;
    border:0
}

.card .photo {
    flex: 0 0 42%;;
    height: 100%;
}

.card .text {
    flex:  0 0 54%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1em;
    font-size: 1vw;
}

.card h5 {
    font-family: "halyard-micro", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2vw;
}

.contenu .card a {
    color:  #AF1D33;;
}

.card p {
    font-size: 80%;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #grid .bloc {
        flex: 0 0 100%;
        margin: 10% 0 0 0;
    }

    .card {
        flex: 0 0 100%
    }

    .card h5 {
        font-size: 4vw;
    }

    .card .text {
        font-size: 4vw;
    }

    .card p {
        font-size: 90%;
    }

}

.s-mask {
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    overflow: hidden;
}

.visuel {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.visuel img {
    width: 100%;
}

.visuel .rounded {
    width: 30px;
    height: 30px;
    position: absolute;
    margin-bottom: 0;
}

.smsa-rounded {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 0px;
}

.legende {
    text-align: right;
    font-size: 80%;
}

a.link {
    color: #861A22;
    font-family: "halyard-micro", sans-serif;
    padding: 0 0 1em 0;
}


@media screen and (min-device-width: 320px) and (max-width: 768px) {

    .cols {
        flex-wrap: wrap;
    }

    .col.two, .col.three {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* LANGUES
******************************************************************************/
#lang {
    align-self: center;
}

#lang a {
    font-size: 1vw;
    text-transform: uppercase;
    color: grey;
    padding-left: 0.2em;
}

#lang a.active {
    font-weight: 900;
    color: #861A22;
}

/* TYP0
******************************************************************************/
h3.titre, .contenu>h3 {
    font-family: "halyard-micro", sans-serif;
    /*font-size: 120%;*/
    text-transform: uppercase;
    color: #861A22;
    padding-bottom: .3em;
    margin-top: 2em;
    margin-bottom: .3em;
    border-bottom: 6px solid #009AD9;
    flex: 0 0 100%
}

h3.titre:first-child, .contenu>h3:first-child {
    margin-top: 0;
}

.contenu {
    font-family: "halyard-text", sans-serif;
    font-weight: 100;
    line-height: 1.7em;
    color: #861A22;
    margin: 0;
    margin-bottom: 2em;
}

.contenu a:not(.bouton) {
    color: #009AD9;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    h3.titre, .contenu>h3 {
        font-size: 5vw;
        padding-top: 2em;
        border-bottom: 5px solid #009AD9;
    }
}

/* ACCUEIL
******************************************************************************/
#slogan {
    font-family: "halyard-micro", sans-serif;
    font-weight: 900;
    margin-top: 1em;
}

#slogan h1 {
    display: none;
}

#slogan h2 {
    font-size: 2vw;
}


.splash {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    color: #333;
    text-decoration: none;
    /*aspect-ratio: 16/9;*/
    /*overflow: hidden;*/
}

.splash .gutter {
    width: 100%;
    aspect-ratio: 16/8;
    overflow: hidden;
}


.splash video, .splash img {
    width: 100%;

}

.splash video {
    pointer-events: none;
}

#accueil .bouton {
    float: right
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    #slogan h2 {
        font-size: 5vw;
    }
}


/* CONTENUS
****************************************************/
/* BLOC */
.bloc {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 1em;
    transition: .4s ease transform;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}


.bloc:hover {
    text-decoration: none;
    transform: scale(1.03);

}


/* CARTOUCHE */
.cartouche {
    /*position: absolute;*/
    width: 100%;
    /*text-align: right;*/
    font-size: 100%;
}

.splash .cartouche {
    position: absolute;
    z-index: 100;

}

.carrousel .splash .cartouche {
    bottom: 0
}


.cartouche h3, .cartouche h4, .cartouche h5 {
    width: fit-content;
    background: white;
    padding: .1em .5em;
    text-transform: uppercase;
    color: #871A22;
    margin: 2px 0;

}

.cartouche a {
    color: #871A22;
}


.cartouche h3 {
    background: #F7F0E7;
    font-size: 2vw;
}

.cartouche h4 {
    background: #EEE1CF;
    font-size: 1.5vw;
}

.cartouche h5 {
    background: #DEC39F;
    font-size: 1.5vw;
}

.medium .cartouche h3 {
    font-size: 1.5vw;
}

.medium .cartouche h4 {
    font-size: 1.25vw;
}

.medium .cartouche h5 {
    font-size: 1vw;
}

.small .cartouche h3 {
    font-size: 1.1vw;
    font-weight: 900;
}

.small .cartouche h4 {
    font-size: 1vw;
}

.small .cartouche h5 {
    font-size: .9vw;
}

.cartouche.blue h3 {
    font-family: "halyard-micro", sans-serif;
    font-weight: 900;
    font-size: 2.5vw;
    color: white;
    margin: 0;
    width: fit-content;
    text-align: left;
    background-color: #009AD9;
}

#grid.medium .cartouche.blue h3 {
    font-size: 2.2vw;
}

#grid.small .cartouche.blue h3 {
    font-size: 1.8vw;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    .carrousel .splash .cartouche h3 {
        font-size: 4vw;
    }

    .carrousel .splash .cartouche h4 {
        font-size: 3vw;
    }

    .small .cartouche h3, .medium .cartouche h3 {
        font-size: 4vw;
        font-weight: 900;
    }

    .small .cartouche h4, .medium .cartouche h4 {
        font-size: 3vw;
    }

    .small .cartouche h5, .medium .cartouche h5 {
        font-size: 3vw;
    }

    #grid.medium .cartouche.blue h3 {
        font-size: 4vw;
    }

    #grid.small .cartouche.blue h3 {
        font-size: 4vw;
    }
}


#home-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 8vh 0;
}

.col #home-buttons {
    flex-direction: column;
}

#home-buttons .home-button {
    font-family: "halyard-micro", sans-serif;
    font-size: 1vw;
    font-weight: 700;
    padding: .5em 2em;
    background: #861A22;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    margin: 10px;
    width: 20vw;
    text-align: center;
    align-content: center;
    display: flex;
    justify-content: space-between;
}

.home-button > * {
    align-self: center;
}

#home-buttons .home-button i {
    font-size: 2vw;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #home-buttons {
        flex-wrap: wrap;
    }

    #home-buttons .home-button {
        font-size: 4vw;
        width: 100%;
    }
}

/* BOUTONS */
.bouton {
    color: white;
    background: #009AD9;
    padding: .5em 2em;
    font-family: "halyard-micro", sans-serif;
    font-weight: 900;
    font-size: 80%;
    transition: .5s background-color ease-in-out;
    text-transform: uppercase;
    display: inline-block;
    margin: .5em 0;
    border: 0;
    /*float: right;*/
}

.bouton:hover {
    text-decoration: none;
    color: white;
    background: #871A22;
}


/* VIDEO */
#video {
    margin-top: 5vh;
}

.video-thumb #video {
    width: 39vw;
   height: 24vw;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
  #video {
      width: 95vw;
  }

    .video-thumb #video {
        width: 95vw;
        height: 50vw;
    }
}

/* GALERIES */
#galerie {
    margin: 5vh 0 ;
    display: flex;
    flex-wrap: wrap;
}

#galerie a {
    flex: 0 0 48%;
    margin: 2% 2% 0 0;
}

#galerie img {
    width: 100%;
}

/* PERSONNES */
.personne.item {
    /*display: flex;*/
    /* width: 50vw;*/
}


/* PAGINATION */

#pagination {
    text-align: center;
    margin-top: 1em;
    width: 100%;

    font-family: "halyard-micro", sans-serif;
    font-size: 120%;
    font-weight: 900;
    color: white;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    align-self: flex-start;

}

#pagination li {
    text-align: center;
    width: 1.3em;
    font-weight: 900;
    display: inline-block;
    font-size: 70%;
    margin: 4px;
    background: #871A22;
    color: white;
}

#pagination li a {
    background: silver;
    color: white;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-weight: 200;

}


/* FILTRES */
#filter {
    background: #EDE4D4;
    border: 2px solid #871A22;;
    margin: -50px 0 2em;
    padding: 0em;
    display: flex;


}

#filter a {
    text-transform: uppercase;
    color: #871A22;
    flex: 0 1 100%;
    display: block;
    font-size: 1vw;
    width: fit-content;
    padding: .1em .2em;
    transition: .5s ease-in-out background-color;
    border-right: 1px solid #871A22;
    text-align: left;
}

#filter a:hover {
    background: #E7D7BF;
    text-decoration: none;

}

#filter a.selected {
    background: #AD9878;
    font-weight: bold;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    #filter {
        flex-direction: column;
    }

    #filter a {
        width: 100%;
        display: block;
        border-right: 0;
        border-bottom: 1px solid #871A22;
        font-size: 4vw;
    }
}


/* PRODUITS */
.produit.item {
    /*display: block;*/
    /*width: 33%;*/

}

.produits.bloc {

}

p.file {
    width: 100%;
    text-align: right;
    margin: 1em 0;
    padding-left: 0;
}

p.file.left {
    text-align: left;
}

p.button {
    width: 100%;
    text-align: left;
    margin: 0;
    padding-left: 0;
}


.categories-liste {
    display: flex;
    justify-content: flex-end;
}

.categories-liste a {
    color: #009AD9;
    padding: 0 1em;
}

.list-line {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px dotted silver;
    padding-bottom: .5em;
}

.list-line h4 {
    flex: 0 0 20%;
    font-family: "halyard-micro", sans-serif;
    font-weight: 900;
    font-size: 150%;
    align-self: center;
}

.list-line div {
    flex: 0 0 27%;
    text-align: center;

    margin: 20px 20px 0 0;
}

.list-line .bouton {
    float: none;
    margin: 0 auto;
    padding: .2em .4em;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
  .list-line {
      flex-wrap: wrap;
      flex-direction: column;

  }

    p.file {
        text-align: center;
    }

    p.file a {
        width: 100%;
    }

    .list-line h4 {
        margin-top: 1em;
    }

    .list-line div {
        margin: 0px 0px 10px 0;
    }

    .list-line .bouton {
        width: 100%;
    }

}

/* EVENEMENTS */
.stand, .dates, .adresse {
    font-size: 2vw;
    border-bottom: 1px dotted silver;
    margin: .2em 0;
    padding: .2em 0;
    font-family: "halyard-micro", sans-serif;
    font-weight: 900;
}

.adresse img {
    height: 1em;
    margin: -.2em 0 0 .2em;
    border: 1px solid silver
}

#map {
    width: 100%;
    height: 40vh;
}
/* PARTENAIRES
******************************************************************************/
#map_partenaires {
    width: 100%;
    height: 50vh;
}

.flag{
    height: 1em;
    margin-right: .5em;
}

.partenaires.item {
    padding: 1em 0 2em;
    line-height: 1.2em;
}

.partenaires.item h5 {
    font-family: "halyard-micro", sans-serif;
    font-weight: 700;
}

.partenaires.item a {
    color: #871A22;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    .partenaires.item {
        padding: 1em 0 1em;
        line-height: 1.5em;
    }
}

    /* EMPLOIS
    ******************************************************************************/
.none {
    font-family: "halyard-micro", sans-serif;
    font-weight: 900;
    text-align: center;
    height: 40vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* PRESTATIONS
******************************************************************************/
#prestations-visuel {
    width: 100%;
    height: 60vh;
    background: url(/img/visuel-prestations.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#prestations-visuel .pastille {
    position: absolute;
    background: rgba(135, 26, 34, 0.95);
    color: white;
    font-family: "halyard-micro", sans-serif;
    font-weight: bold;
    width: 11vw;
    height: 11vw;
    padding: .5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
    font-size: .9vw;
    cursor: pointer;
    /*word-break: break-word;*/
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
    text-transform: uppercase;
    transition: .5s ease-in-out transform;
}

#prestations-visuel .pastille:hover {
    text-decoration: none;
    transform:scale(1.1);
}


.titre.inner-nav {
    display: flex;
    justify-content: space-between;
    /*top:0;*/
    /*position: sticky;*/
    /*z-index: 100;*/
    /*background: white;*/
    }

.titre.inner-nav a {
    color:rgba(135, 26, 34, 1);
    cursor: pointer;
    }

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #prestations-visuel .pastille {
        width: 20vw;
        height: 20vw;
        font-size: 2vw;
        line-height: 1em;
    }

}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    10% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    20% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
        box-shadow:      0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    10% {
        -moz-box-shadow: 0 0 0 20px rgba(0, 0, 44, 0);
        box-shadow:      0 0 0 20px rgba(0, 0, 0, 0);
    }
    20% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow:      0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* ERREUR
******************************************************************************/
#erreur {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#erreur h3 {
    font-size: 4vw;
    font-weight: 900;

}

/* FORMULAIRE
******************************************************************************/
form label {
    font-family: "halyard-micro", sans-serif;
    font-weight: 700;
    display: block;
}

form input[type=text], input[type=email], textarea {
    width: 100%;
    border: 1px solid #6D1E27;
    padding: .2em;
    background: #E7D7BF;
}

form textarea {
    height: 6em;
}


#footer form input[type=text], #footer input[type=email] {
    font-size: 75%;
    margin-bottom: .5em;
    width: 50%;
    float: left;
}


/* PIED DE PAGE
******************************************************************************/
#footer {
    background: #6D1E27;
    width: 100vw;
    color: white;
    display: flex;

}

#footer .col {
    padding: 3vw;
}

#footer h4 {
    font-family: "halyard-micro", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 1.5em 0 .5em;
    padding-bottom: 0;
    font-size: 100%;
}

#footer p {
    margin-bottom: 0;
}

#footer a {
    color: white;
}

#footer .rs {
    color: white;
    font-size: 150%;
    margin-right: .3em;
}

#footer img {
    width: 5vw;
}

#credits {
    flex: 0 0 100%;
    font-size: 60%;
    padding: 3vw;
    color: rgba(255, 255, 255, .4);
    text-align: right;
    font-weight: 100;
    background: #6D1E27;
}

#credits a {
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
}

.inf-main_7247d70004dfb4ffb60a39768e381097 {
    background-color: transparent !important;
    padding: 0 !important;;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    #footer {
        flex-direction: column;
        font-size: 80%;
    }

    #footer .col {
        flex: 0 0 100%
    }

    #credits {
        padding: 2em;
    }

    #footer img {
        width: 40vw;
    }
}

/* COOKIES
*********************************************************************************************************************/
#_cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: rgba(0, 0, 0, .90);
    color: white;
    padding: 2em;
    display: none;
    justify-content: space-between;
}

#btn-accepte-cookies {
    border: 0;
    color: white;
    font-family: "halyard-micro", sans-serif;
    font-weight: 900;
    background: #6D1E27;;
    font-size: 1vw;
}



@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #_cookieBanner {
        font-size: 16px;
        flex-direction: column;
    }

    #btn-accepte-cookies {
        padding: .5em;
        font-size: 4vw;
    }
}