/*	Theme Name: Nautelis
	Theme URI: https://nautelis.com
	Description: Nautelis
	Version: 1
	Author: L'Encre bleue
	Author URI: https://alencrebleue.com
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: var(--font-primary);
    font-style: normal;
    color: var(--color-primary);
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: var(--font-primary);
    background: #fff;
    position: relative;
    margin: 0;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
ol {
    list-style-type: none;
    margin-left: 2rem;
}

.li {
    position: relative;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.li::before {
    content: url(/wp-content/themes/Nautelis/images/puce.svg)
}

/* Khand - latin */
@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 300;
    src: url('/wp-content/themes/Nautelis/assets/fonts/Khand/Khand-Light.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 400;
    src: url('/wp-content/themes/Nautelis/assets/fonts/Khand/Khand-Regular.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 500;
    src: url('/wp-content/themes/Nautelis/assets/fonts/Khand/Khand-Medium.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 600;
    src: url('/wp-content/themes/Nautelis/assets/fonts/Khand/Khand-SemiBold.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 700;
    src: url('/wp-content/themes/Nautelis/assets/fonts/Khand/Khand-Bold.woff2');
    font-display: swap;
}

/* SplineSans - latin */
@font-face {
    font-family: 'SplineSans';
    font-style: normal;
    font-weight: 300;
    src: url('/wp-content/themes/Nautelis/assets/fonts/SplineSans/SplineSans-Light.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'SplineSans';
    font-style: normal;
    font-weight: 400;
    src: url('/wp-content/themes/Nautelis/assets/fonts/SplineSans/SplineSans-Regular.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'SplineSans';
    font-style: normal;
    font-weight: 500;
    src: url('/wp-content/themes/Nautelis/assets/fonts/SplineSans/SplineSans-Medium.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'SplineSans';
    font-style: normal;
    font-weight: 600;
    src: url('/wp-content/themes/Nautelis/assets/fonts/SplineSans/SplineSans-SemiBold.woff2');
    font-display: swap;
}

@font-face {
    font-family: 'SplineSans';
    font-style: normal;
    font-weight: 700;
    src: url('/wp-content/themes/Nautelis/assets/fonts/SplineSans/SplineSans-Bold.woff2');
    font-display: swap;
}

/*------------------------------------*\
    Variable
\*------------------------------------*/

:root {
    --font-primary: 'SplineSans';
    --font-secondary: 'Khand';
    --gradiant: linear-gradient(180deg, #BEC8BD 0%, #ECC792 100%);
    --color-primary: #27314A;
    --color-secondary: #ECC792;
    --fond: #F8FAFC;
}

/*------------------------------------*\
    MARGE SUR MENU ADMIN (lorsque le menu est en fixe, il est caché en partie)
\*------------------------------------*/
.logged-in.admin-bar header {
    margin-top: 32px;
}

/*------------------------------------*\
    LA GRID
\*------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    width: 90%;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row>* {
    float: left;
    width: 100%;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1280px;
    }
}

@media screen and (min-width:1025px) and (max-width:1199px) {
    .container {
        max-width: 1060px;
    }
}

@media screen and (min-width:1024px) {
    .row>* {
        padding-left: .9375em;
        padding-right: .9375em;
    }
}

@media screen and (max-width:1024px) {
    .container {
        width: 95%;
    }
}

@media screen and (max-width:1023px) {
    .row>* {
        padding-left: .46875em;
        padding-right: .46875em;
    }
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-secondary);
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    outline: 0;
}

:focus {
    outline: none;
}

section {
    padding: 6rem 0;
}

.logo-site a {
    display: flex;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 1rem;
}

h2 span,
h3 span,
h3 span {
    color: var(--color-secondary);
}

/* à mettre dans style.css */

p {
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

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

.btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    text-transform: uppercase;
    padding: 0.5rem 2rem;
    font-size: 18px;
    font-family: var(--font-secondary);
    font-weight: 700;
    background: var(--color-secondary);
    border-radius: 6px;
}

.btn::after {
    content: url(/wp-content/themes/Nautelis/images/right-arrow.svg);
}

.btn:hover {
    background-color: #12006C;
    color: #FFF;
}

.btn-sec {
    background: var(--color-primary);
    color: white;
}

.btn-sec::after {
    content: url(/wp-content/themes/Nautelis/images/right-arrow-sec.svg);
}

.btn-ter {
    display: flex;
    align-items: center;
    width: max-content;
    text-transform: uppercase;
    padding: 0.5rem 2rem;
    font-size: 18px;
    font-family: var(--font-secondary);
    font-weight: 700;
    background: var(--color-primary);
    color: white;
    border: 1px solid var(--color-secondary);
    border-radius: 6px;
}

.grp-btn {
    display: flex;
    gap: 1rem;
}

.barre {
    position: relative;
    margin-bottom: 2rem;
}

.barre::after {
    content: url(/wp-content/themes/Nautelis/images/barre.svg);
    position: absolute;
    bottom: -25%;
    left: 0;
}

@media only screen and (min-width: 1280px) {
    h1 {
        font-size: 76px;
    }

    h2 {
        font-size: 52px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 801px) and (max-width: 1279px) {
    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 21px;
    }
}

@media only screen and (max-width: 800px) {}

@media only screen and (min-width: 481px) and (max-width: 800px) {
    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    h2 {
        font-size: 26px;
    }
}

/* =====================================
        HEADER
=======================================*/
#top.current {
    overflow: hidden;
}

#top.highlight {
    overflow: hidden;
    position: initial;
}

header {
    width: 100%;
    background: #fff;
    top: 0;
    z-index: 11;
    position: fixed;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#menu-aeb.dynamic,
#menu-aeb.smallogo {
    background: #fff;
}

header.hidden {
    transform: translateY(-104px);
}

#menu-aeb .contain {
    width: 90%;
    margin: auto;
    display: flex;
    padding: 0;
    position: relative;
}

.loghead {
    max-width: initial;
}

.wrap-nav {
    list-style-type: none;
    margin: 0;
}

.menu-rs {
    list-style-type: none;
    margin: 0;
}

footer .menu-rs li {
    padding: 0;
}

.menu .wrap .rs-head {
    margin: 0;
    display: flex;
    gap: 1rem;
}

.menu .wrap .rs-head li,
.menu .wrap .rs-head a {
    display: block;
    width: 20px;
    height: 20px;
}

.sprites {
    width: 20px;
    height: 20px;
    background: url(/wp-content/themes/Nautelis/images/sprites.svg) no-repeat center center;
    display: inline-block;
}

.rs-fb {
    background-position: -3px 0;
}

.rs-li {
    background-position: -31px 0;
}

@media only screen and (min-width: 1025px) {
    header.hidden {
        transform: translateY(-150px);
    }

    .loghead {
        height: 120px;
    }

    .content_aeb {
        margin-top: 108px;
    }

    header .menu {
        width: 100%;
        align-self: center;
    }

    header .wrap-nav {
        display: inline-flex;
        justify-content: end;
    }

    .menu .wrap {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1rem;
    }

    #menu-aeb {
        box-shadow: 0 3px 6px #00000029;
        background: #fff;
        padding: 1rem 0;
        height: 108px;
    }

    .dropdown-content {
        display: none;
    }

    .menu-rs li {
        align-self: center;
        padding-left: 0.5em;
    }

    #menumara .wrap-nav li {
        align-self: center;
        padding-left: 1px;
    }

    #menumara .menu-contact {
        display: none;
    }

    .dropdown,
    .wrap-nav li a {
        font-family: var(--font-secondary);
        font-size: 18px;
        font-weight: 500;
        display: block;
        cursor: pointer;
        padding: 0.5rem 1rem 0.25rem;
        text-transform: uppercase;
    }

    .wrap-nav a.btn {
        background: #12006C;
        color: #fff;
        padding: 0.5em;
        margin-left: 0.5em;
    }

    .wrap-nav a.btn.contact-menu {
        margin-left: .75em;
    }

    .dropdown {
        position: relative;
        padding-right: 1em;
    }

    .dropdown:after {
        content: url();
        position: absolute;
        right: 0;
        top: 17px;
    }

    .dropdown:hover .dropdown-content {
        display: grid;
        position: absolute;
        top: 3.5em;
        width: max-content;
        background: rgba(255, 255, 255, 0.88);
        border-top: 5px solid #2CEBA2;
        box-shadow: 0 3px 6px #00000029;
    }

    .dropdown:hover .dropdown-content a {
        font-weight: 400;
        font-size: 15px;
        padding: 0.5em 1em;
    }

    .dropdown:hover .dropdown-content a:hover {
        background: #fff;
    }

    #secondaire {
        position: absolute;
        top: 1em;
        right: 0;
        padding: 0;
        margin: 0;
        width: max-content;
    }

    /* MOTEUR DE RECHERCHE */
    .searchbutton {
        border: 0px solid;
        display: block;
        background: url() no-repeat;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 3px;
        right: 0;
        cursor: pointer;
    }

    form#searchform {
        display: block;
        height: 32px;
        position: relative;
        border: none;
        margin-top: 5px;
        border-bottom: 1px solid #e0dddd;
    }

    #s {
        border: none;
        font-size: 1em;
        height: 28px;
        background: transparent;
        padding: 0 .5em;
        font-family: 'Open Sans', sans-serif;
        color: #12006C;
    }

    #s::placeholder {
        color: rgba(187, 187, 187, 1);
        font-size: 15px;
        text-transform: uppercase;
        padding: 5% 5% 5% 0;
    }
}

@media only screen and (max-width: 1024px) {
    header.hidden {
        transform: translateY(-80px);
    }

    .loghead {
        height: 100px;
    }

    .content_aeb {
        margin-top: 100px;
    }

    .menu {
        display: none;
        position: fixed;
        background: rgba(18, 0, 108, 0.9);
        height: 100%;
        width: 100%;
        z-index: 100;
        left: -100%;
    }

    .menu.active {
        display: block;
        right: 0%;
        left: inherit;
        margin-top: 100px;
    }

    .menu .wrap {
        height: 100%;
        position: relative;
        text-align: left;
        overflow: scroll;
        padding-bottom: 5em;
        display: flex;
        justify-content: center;
    }

    .menu .wrap .mara {
        position: absolute;
        width: max-content;
        padding: 1em 4em;
        height: 100%;
        z-index: 2;
    }

    .menu .wrap .wrap-nav {
        margin: 4em auto;
    }

    .menu .wrap ul li {
        position: relative;
        color: #12006C;
        text-transform: uppercase;
        padding: 0.5em 0 .25em;
    }

    .menu .wrap ul li a,
    .menu .wrap ul li.dropdown {
        color: #27ECA0;
        font-size: 20px;
        line-height: 25px;
        font-weight: 700;
        cursor: pointer;
    }

    .menu .wrap ul li a:hover {
        color: #fff;
    }

    .menu .wrap ul li a.btn {
        width: inherit;
        text-transform: inherit;
        position: inherit;
        padding: 0;
        margin: 0;
    }

    .menu .wrap ul li a:hover:after {
        width: 100%;
    }

    .hamburger {
        cursor: pointer;
        display: inline-flex;
        overflow: hidden;
        align-self: center;
    }

    .buttonMenu {
        display: flex;
    }

    .buttonMenu .text {
        text-align: left;
        color: #12006C;
        font-size: 24px;
        font-weight: 600;
        line-height: 48px;
        display: initial;
        padding-left: 0.75em;
        position: relative;
    }

    .buttonMenu .text a:after {
        position: absolute;
        right: -1.5em;
        top: 0.3em;
        content: url();
        zoom: 0.8;
    }

    .buttonMenu .text a {
        color: #fff;
    }

    .hamburger__container {
        width: 55px;
        height: 42px;
        position: relative;
    }

    .hamburger:hover .hamburger__inner {
        transform: translate(-51px, 50%);
        opacity: 0;
    }

    .hamburger:hover .hamburger__inner::before,
    .hamburger:hover .hamburger__inner::after {
        transform: translate(102px, 0);
        opacity: 0;
    }

    .hamburger.is-active .hamburger__inner {
        display: none;
    }

    .hamburger__inner {
        background-color: #0FECA0;
        border-radius: 20px;
        position: absolute;
        transition-property: transform, opacity;
        transition-timing-function: ease;
        transition-duration: 0.4s;
        top: 50%;
        transform: translate(0, -50%);
        opacity: 1;
    }

    .hamburger__inner::before,
    .hamburger__inner::after {
        background-color: #0FECA0;
        border-radius: 20px;
        position: absolute;
        transition-property: transform, opacity;
        transition-timing-function: ease;
        transition-duration: 0.4s;
        content: "";
        opacity: 1;
        right: 0;
    }

    .hamburger__inner::before {
        top: -14px;
    }

    .hamburger__inner::after {
        top: 14px;
    }

    .hamburger:hover .hamburger__hidden {
        opacity: 1;
        transform: translate(0, -50%);
    }

    .hamburger:hover .hamburger__hidden::before,
    .hamburger:hover .hamburger__hidden::after {
        opacity: 1;
        transform: translate(0, 0);
    }

    .hamburger.is-active .hamburger__hidden {
        opacity: 1;
        transform: rotate(45deg);
    }

    .hamburger.is-active .hamburger__hidden::before {
        transform: translate(0, 14px) rotate(90deg);
        transform-origin: center;
    }

    .hamburger.is-active .hamburger__hidden::after {
        transform-origin: center;
        transform: translate(0, -14px) rotate(0);
        opacity: 0;
    }

    .hamburger__hidden {
        opacity: 0;
        background-color: #0FECA0;
        border-radius: 20px;
        position: absolute;
        transition-property: transform, opacity;
        transition-timing-function: ease;
        transition-duration: 0.4s;
        top: 50%;
        transform: translate(51px, -50%);
    }

    .hamburger__hidden::before,
    .hamburger__hidden::after {
        background-color: #0FECA0;
        border-radius: 20px;
        position: absolute;
        transition-property: transform, opacity;
        transition-timing-function: ease;
        transition-duration: 0.4s;
        content: "";
        transform: translate(102px, 0);
    }

    .hamburger__hidden::before {
        top: -14px;
    }

    .hamburger__hidden::after {
        top: 14px;
    }

    #entete .nav-site {
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
    }

    .nav-site {
        display: inline-flex;
        align-self: center;
        position: absolute;
        right: 0;
    }

    /* AJout Toggle sur le menu burger pour les liens en sous menu */
    .dropdown-content {
        display: block;
        padding-top: 0.25em;
    }

    .dropdown span {
        position: relative;
        padding: 0 0.5em 0 0;
    }

    .dropdown span:before {
        content: ' ';
        transform: rotate(45deg);
        position: absolute;
        right: -0.5em;
        top: .55em;
        margin: 0;
        height: 3px;
        width: 10px;
        border-radius: 10px;
        background: #12006C;
    }

    .dropdown span:after {
        content: ' ';
        transform: rotate(-45deg);
        position: absolute;
        right: -0.5em;
        top: .8em;
        margin: 0;
        height: 3px;
        width: 10px;
        border-radius: 10px;
        background: #12006C;
    }

    .dropdown .active:before {
        transition: 0.35s;
        transform: rotate(225deg);
        right: -0.47em;
        top: 0.75em;
        background: #27ECA0;
    }

    .dropdown .active:after {
        transition: 0.35s;
        transform: rotate(-225deg);
        right: -0.75em;
        top: 0.75em;
        background: #27ECA0;
    }

    .dropdown span.active {
        color: #27ECA0;
        transition: 0.25s;
    }

    .dropdown>div>a:after {
        display: none;
    }

    .menu .dropdown .dropdown-content a {
        display: block;
        text-align: left;
        text-transform: initial;
        color: #fff;
        font-size: 17px;
        font-weight: 400;
        line-height: 28px;
        position: relative;
    }

    .menu .dropdown .dropdown-content a:hover {
        color: #27ECA0;
    }

    header {
        position: fixed;
    }

    .hamburger__inner,
    .hamburger__inner::before,
    .hamburger__hidden,
    .hamburger__hidden::before,
    .hamburger__hidden::after {
        width: 45px;
        height: 4px;
    }

    .hamburger__inner::after {
        width: 26px;
        height: 4px;
    }

    .menu.active {
        width: 100%;
    }

    .nav-site a.billetterie {
        display: none;
    }

    .nav-site {
        width: 40px;
    }

    .hamburger__inner,
    .hamburger__inner::before,
    .hamburger__hidden,
    .hamburger__hidden::before,
    .hamburger__hidden::after {
        width: 40px;
        height: 4px;
    }

    .hamburger__inner::after {
        width: 22px;
        height: 4px;
    }

    #menu-aeb {
        position: fixed;
        z-index: 99;
        width: 100%;
        background: #fff;
        box-shadow: 0 3px 6px #00000029;
    }

    header.hidden {
        transform: translateY(-100px);
    }

    .menu .wrap .wrap-nav {
        width: max-content;
    }

    .menu .wrap .resoc {
        display: block;
        margin: auto;
        width: max-content;
        /*margin-left: 5.5em;*/
    }
}

@media only screen and (max-width: 600px) {
    .menu .wrap .mara {
        width: 100%;
    }
}

/* =========================
      FIN HEADER 
===========================*/

/* =========================
      FOOTER 
===========================*/
footer {
    background: #12006C;
    position: relative;
    z-index: 9;
}

footer * {
    color: #fff;
    text-align: center;
}

footer p {
    font-size: 16px;
    padding: 0;
}

footer p,
footer a,
footer span {
    font-family: 'Myriad Pro', sans-serif;
    font-weight: 700;
}

.assur h3 {
    font-size: 20px;
    display: block;
    position: relative;
    width: max-content;
    margin: 1em 0;
    letter-spacing: -1.18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

.assur h3:after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: #27ECA0;
    right: -1.2em;
    top: 1px;
}

.localiser,
.mail,
.telephone,
.suivez {
    position: relative;
    padding-top: 1.5em;
    margin-top: 1em;
}

.mail p,
.telephone p {
    margin: 0.25em 0;
    color: #fff;
}

.localiser p {
    line-height: 1.2;
    color: #fff;
}

.localiser p:nth-child(odd) {
    margin: 0.25em 0 0;
}

.localiser p:nth-child(even) {
    margin: 0 0 0.35em;
}

.mail a,
.telephone a {
    color: #fff;
}

.mail a:hover,
.telephone a:hover {
    color: #0FECA0;
}

.suivez p {
    color: #fff;
}

.localiser span,
.mail span,
.telephone span {
    color: #27ECA0;
}

.localiser:before,
.localiser:before,
.localiser:before {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.localiser:before {
    content: url();
    top: 10px;
}

.mail:before {
    content: url();
    top: 25px;
}

.telephone:before {
    content: url();
    top: 25px;
}

.suivez {
    margin-bottom: .5em;
}

.menu-rs {
    display: inline-flex;
}

.sprite-foot {
    background: url() no-repeat center center;
}

.sprite-foot:hover {
    background: url() no-repeat center center;
}

.buttonenbalade a.btn {
    background: #0FECA0;
    color: #12006C;
    margin: 1em auto 0;
    width: 200px;
}

.buttonenbalade a.postuler {
    color: #fff;
}

.buttonenbalade a.btn:hover {
    background-color: #FFF;
    color: #12006C;
}

footer hr {
    border: none;
    border-bottom: 1px solid #27ECA0;
}

.menufoot {
    padding: 1rem 0;
}

@media only screen and (max-width: 480px) {
    .logofoot {
        margin-bottom: 2em;
    }

    footer {
        padding: 2em 0 .5em;
    }

    .localiser,
    .mail,
    .telephone,
    .suivez {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        margin: 0 0 0.5em;
    }
}

@media only screen and (max-width: 1199px) {
    .menufoot {
        display: none;
    }
}

@media only screen and (min-width: 801px) and (max-width: 1023px) {

    .localiser,
    .mail,
    .telephone,
    .suivez {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        margin: 1em 0 0.5em;
    }

    .buttonenbalade {
        margin-top: -2em;
        margin-bottom: 1em;
    }
}

@media only screen and (max-width: 800px) {

    .localiser,
    .mail,
    .telephone,
    .suivez {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        margin: 1em 0 0.5em;
    }

    footer hr {
        margin: 1.5em 0 0.25em;
    }
}

@media only screen and (min-width: 1024px) {
    footer {
        padding: 1.5em 0 0.25em;
    }

    footer .assur h3 {
        font-size: 32px;
        margin: 1em 0 1.5em;
    }

    footer .assur h3:after {
        width: 25px;
        height: 25px;
        top: 4px;
    }

    .mail,
    .telephone,
    .suivez {
        margin-top: 0;
    }

    .localiser {
        margin-top: 1.75em;
    }

    .foot-elements {
        position: relative;
    }

    .foot-elements .logofoot img {
        margin-left: 0;
    }

    .buttonenbalade {
        position: absolute;
        display: inline-flex;
        bottom: 0;
        right: 0em;
        width: auto;
    }

    .buttonenbalade a.btn {
        margin-left: 2.5em;
    }

    footer hr {
        margin: 2em 0 0.5em;
    }
}

@media only screen and (min-width: 1200px) {
    .menufoot a {
        font-weight: 700;
        font-size: 16px;
        line-height: 21px;
        padding: 1em 0.65em;
        color: #fff;
        display: inline-block;
    }

    .menufoot a:hover {
        color: #0FECA0;
    }
}

/* =========================
      FIN FOOTER 
===========================*/
/* RESPONSIVE */
@media only screen and (min-width: 801px) {
    .bloc-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bloc-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .bloc-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3%;
        flex: 0 0 33.3%;
        max-width: 33.3%;
    }

    .bloc-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .bloc-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .bloc-2-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66%;
        flex: 0 0 66.66%;
        max-width: 66.66%;
    }

    .bloc-3-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .bloc-2-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }

    .bloc-3-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }

    .bloc-4-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        max-width: 80%;
    }
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
    background: #424242;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #424242;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #424242;
    color: #FFF;
    text-shadow: none;
}