@charset "UTF-8";
/*
Projet: 
Author: Erick Gardin
Version: 1.0
Date: 2015-03
*/


/* === Base === */
html {
    /* set base font-size to equiv "10px", which is adapted to rem unit */
    font-size: 62.5%;
    /* IE9-IE11 math fixing. See http://bit.ly/1g4X0bX */
    /* thanks to @guardian, @victorbritopro and @eQRoeil */
    font-size: -webkit-calc(0.625em);
    font-size: calc(0.625em);
    /* disallow text zooming on orientation change (non standard property) */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    font-family: "Lato",Arial,sans-serif;
    font-size: 1.5em;
    color: #000;
}

/* === /Base === */
@font-face {
    font-family: 'icomoon';
    src:url('../fonts/icomoon.eot?ez2ymi');
    src:url('../fonts/icomoon.eot?#iefixez2ymi') format('embedded-opentype'),
        url('../fonts/icomoon.woff?ez2ymi') format('woff'),
        url('../fonts/icomoon.ttf?ez2ymi') format('truetype'),
        url('../fonts/icomoon.svg?ez2ymi#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
    content: "\e600";
}
/* === Useful === */
.clearfix:after{
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.clearfix{
    display: block;
}
html[xmlns].clearfix{
    display: block;
}
*.clearfix{
    height: 1%;
}
.ttu {
    text-transform: uppercase;
}
.tac {
    text-align: center;
	float: left;
	width: 33%;
	margin-left: 33%;
}
.hidden {
    display: none;
}
/* === /Useful === */

/* === Common === */
/*-- Titres --*/
h1 {
    margin: 0;   
    line-height: 1;
}
h2 {
    /*margin: 0 0 14px;
    font-size: 18px;    
    line-height: 1;*/
}
/*-- /Titres --*/
p {
    margin: 0 0 30px;
}
/*-- Liens --*/    
a {
    text-decoration: none;
}
/*-- /Liens --*/
/*-- Liste --*/
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
/*-- /Liste --*/
/* === /Common === */

/* === Header === */
header {
    display: table;
    width: 100%;
    padding: 11px 100px;
    background: #fff;
    -webkit-box-shadow: 0 5px 0 0 rgba(0,0,0,0.2);
    box-shadow: 0 5px 0 0 rgba(0,0,0,0.2);
}
.home-header, 
.details-header {
    position: absolute;
    height: 120px;
    z-index: 10;
}
.logo,
.main-nav,
.mobile-nav {
    display: table-cell;
    vertical-align: middle;
}
.logo {
    font-size: 15px;
}
.logo h2 {
    font-weight: 700;
}
.logo img {
    width: 150px;
    height: auto;
}
.logo-img,
.logo-text {
    display: inline-block;
}
.main-nav { 
    text-align: right;
}
.main-nav li {
    display: inline-block;
}
.main-nav a {
    display: block;
    color: #000;
    text-align: center;
    text-transform: uppercase;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2 ease-in-out;
    -o-transition: all 0.2 ease-in-out;
    transition: all 0.2 ease-in-out;
}
.main-nav a g {
    fill: rgba(0,0,0,0.5);

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2 ease-in-out;
    -o-transition: all 0.2 ease-in-out;
    transition: all 0.2 ease-in-out;
}
.main-nav a:hover,
.main-nav a.active {
    color: #e3032e;
}
.main-nav a:hover g,
.main-nav a.active g {
    fill: #e3032e;
}
.main-nav p {
    padding: 0 30px;
    margin: 10px 0 0;
    border-left: 1px solid #dadada;
}
.main-nav li:first-child p {
    border-left: none;
}
.main-nav li:last-child p {
    padding-right: 0;
}
.main-nav li:last-child svg {
    margin-right: -30px;
}
.mobile-nav {
    display: none;
    text-align: right;
}
.mobile-nav > a {
    display: block;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
}
.mobile-nav > a img {
    margin-top: -5px;
    margin-right: 10px;
    width: 25px;
    vertical-align: middle;
}
.mobile-nav .ico-menu {
    width: 25px;
    height: 4px;
    display: block;
    background-color: #184579;
    border-radius: 5px;
    position: relative;
}
.mobile-nav .ico-menu:after, .mobile-nav .ico-menu:before {
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    background-color: #184579;
    border-radius: 5px;
}
.mobile-nav .ico-menu:before {
    top: 16px;
}
.mobile-nav .ico-menu:after {
    top: 8px;
}
.mobile-nav ul {
    position: absolute;
    top: 100%;
    right: -30px;
    width: 100vw;
    text-align: center;
    background: #fff;
    z-index: 666;
}
.mobile-nav ul a {
    display: block;
    color: #000;
    text-transform: uppercase;
}
.mobile-nav li:first-child {
    margin-top: 20px;
}
/* === /Header === */

/* === Footer === */
footer {
    display: table;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #fff;
    z-index: 3;
}
footer > div:first-child {
    border: none;
    background-image: url(../img/bg-home-entreprise.jpg);
}
footer > div:nth-child(2) {
    background-image: url(../img/bg-home-realisations.jpg);
}
footer > div:nth-child(3) {
    background-image: url(../img/bg-home-contact.jpg);
}
footer > div {
    position: relative;
    display: table-cell;
    width: 33%;
    height: 200px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: middle;
    border-left: 1px solid #fff;
    -webkit-background-size:cover;
    background-size:cover;
    background-position: 0 0;
    background-repeat: no-repeat;
}
/*
footer .mask {
position: absolute;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.70);
z-index: 2;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
*/
footer .mask {
    max-height: 200px;
}
footer div:hover .mask {
    background: rgba(0,0,0,0.45);
}
footer .mask:before {
    content: '';
    margin: 0;
}
footer .mask + div {
    position: relative;
    position: relative;
    z-index: 3;
}
footer a {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px 10px;
    font-size: 0.933em;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
footer a:hover {
    background: #fff;
    color: #000;
}
footer a span {
    opacity: 1;
}
footer a span:before {
    margin-right: 5px;
    content: '> ';
}
.footer-part-ico {
    height: 66px;
}
footer > div:first-child svg {
    width: 25px;
}
footer > div:nth-child(2) svg {
    margin-top: 15px;
    width: 33px;
}
footer > div:nth-child(3) svg {
    margin-top: 30px;
    width: auto;
}
footer svg {
    margin-bottom: 20px;
    text-anchor:middle;
}
footer g {
    fill: #fff;
}
.details-footer {    
    display: table;
    width: 100%;
    padding: 0 0 0 30px;
    background: rgba(0,0,0,0.75);
}
.details-footer h1 {
    display: table-cell;
    width: auto;
    color: #fff;
    font-size: 2.667em;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
    vertical-align: middle;
}
.details-footer ul {
    float: right;
    /*    max-height: 100px;*/
    /*    min-width: 50%;*/
}
.details-footer li {
    float: left;
}
.details-footer a {
    position: relative;
    padding: 0;
    width: auto;
    height: auto;
    border-top: 0;
    border-left: 0;
}

.details-footer a img {
    width: 100px;
    height: auto;
}
.details-footer a:hover .mask {
    opacity: 0;
}
.details-footer li a {
    border-bottom: none;
}
.details-footer li:first-child a {
    border-left: 1px solid #fff;
}
.details-footer li:last-child a {
    border-right: none;
}
/* === /Footer === */

/* === Content === */
#slides {
    display: block;
    width: 100%;
    height: 100%;
}
#slides .mask {
    background: rgba(0,0,0,0.2);
}
.slides-pagination {
    bottom: 225px;
}
.slides-pagination a {
    background: rgba(255,255,255,0.5);
    border: 1px solid #fff;
    text-indent: -99999px;
}
.slides-pagination a.current {
    background: #fff;
}
.details .slides-pagination {
    display: none;
}
.slides-navigation a,
.back-button {
    display: table;
    width: 320px;
    height: 65px;
    font-size: 0.933em;
    color: #000;
    text-transform: uppercase;
    background: #fff;
}
.slides-navigation span,
.back-button span {
    display: block;
    font-size: 1.286em;
    font-weight: 900;
}
.slides-navigation a.next {
    padding-right: 30px;
    text-align: right;
}
.slides-navigation a.next div:last-child {
    padding-left: 20px;
}
.slides-navigation a.prev {
    padding-left: 30px;
    text-align: left;
}
.slides-navigation a.prev div:last-child {
    padding-left: 20px;
}
.slides-navigation a img {
    width: auto !important;
    height: auto !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    z-index: 1 !important;
}
.details .slides-navigation a svg {
    width: 39px;
    height: 79px;
}
.slides-navigation div,
.back-button div {
    display: table-cell;
    vertical-align: middle;
}
.slides-navigation-details a {
    width: auto;
    height: auto;
    background: none;
}
.slide-text {
    position: relative;
    margin-top: 260px;
    width: 100%;
    text-align: center;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
    z-index: 3;
}
.slide-text h2 {
    padding: 0 20px;
    margin-bottom: 0;
    font-size: 4.333em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
}
.slide-text h2 span {
    display: block;
    font-size: 0.554em;
    line-height: 40px;
    font-weight: 400;
}
.slide-text a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px 15px 40px;
    /*    color: #fff;*/
    color: #000;
    font-size: 1.200em;
    font-weight: 400;
    text-transform: uppercase;
    /*    background: rgba(255,255,255,0.1);*/
    background: rgba(255,255,255,1);
    border: 1px solid #fff;
    text-shadow: none;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2 ease-in-out;
    -o-transition: all 0.2 ease-in-out;
    transition: all 0.2 ease-in-out;
}
.slide-text a:hover {
    color: #e3032e;
}
.slide-text a:before {
    content: '> ';
}
.img-bar{
    display: block;
    position: relative;
    width: 50%;
    margin: 20px auto 0;
}
.img-bar:before,
.img-bar:after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    display: block;
    width: calc(50% - 30px);
    height: 1px;
    background: #fff;
    vertical-align: middle;
}
.img-bar:before {
    left: 0;
}
.img-bar:after {
    right: 0;
}
.slide-text img {
    position: relative !important;
    top:auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
}
/*
.main-real-list {
overflow-y: hidden: ;
overflow-x: scroll;
}
*/

.mask {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.70);
    z-index: 2;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.real-list {
    padding: 0;
    margin: 0;
    display: table;
    width: 1920px;
}
.real-list-item {
    position: relative;
    display: table-cell;
    width: 274px;
    height: calc(100vh - 112px);
    text-align: center;
    color: #fff;
    background: #000 url(../img/realisations/liste-pretaporter.jpg) center bottom no-repeat;
    border-left: 1px solid #fff;
    vertical-align: middle;
}
.real-list-item .mask {
    height: calc(100vh - 112px);
}
.real-list-item:hover .mask {
    opacity: .6;
}
.real-list-item:first-child {
    border: none;
}
.real-list-item:nth-child(5) {
    background-image: url(../img/realisations/liste-bijouterie.jpg)
}
.real-list-item:nth-child(3) {
    background-image: url(../img/realisations/liste-pretaporter.jpg)
}
.real-list-item:nth-child(2) {
    background-image: url(../img/realisations/liste-restauration.jpg)
}
.real-list-item:nth-child(3) {
    background-image: url(../img/realisations/liste-tertiaire.jpg)
}

.real-list-item:nth-child(4) {
    background-image: url(../img/realisations/liste-petite-enfance.jpg)
}

.real-list-item:nth-child(6) {
    background-image: url(../img/realisations/liste-particuliers.jpg)
}

.real-list-item:nth-child(7) {
    background-image: url(../img/realisations/liste-hotellerie.jpg)
}
.real-list h2 {
    font-size: 1.067em;
    text-transform: uppercase;
    font-weight: 900;
}
.real-list h2 span {
    display: block;
    font-weight: 300;
}
.real-list li .img-bar {
    margin-bottom: 15px;
    width: 90%;
}
.real-list h2,
.real-list li .img-bar {
    position: relative;
    z-index: 3;
}
.real-list li select,
.real-list li option {
    background: none;
    border: none;
    border: none;
}
.select-mobile {
    display: none;
}
div.cs-select {
    width: 80%;
}
div.cs-skin-border {
    font-size: 1em;
    font-weight: 300;
}
div.cs-skin-border.cs-active {
    background: #fff;
}
.cs-skin-border > span {
    padding-left: 30px;
    padding-right: 0;
    margin-left: 20px;
    text-transform: uppercase;
    border: none;
}
.cs-select ul {
    max-height: 159px;
    overflow-y: auto;
    padding-bottom: 10px;
}
.cs-skin-border ul span {
    padding: 5px 20px;    
}
.cs-skin-border .cs-options {
    font-size: 1em;
    color: #000;
}
.cs-skin-border.cs-active > span {
    margin: 0 20px;
    padding-right: 0;
    padding-left: 30px;
    color: #000;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
}
.cs-skin-border > span::after, 
.cs-skin-border .cs-selected span::after {
    right: auto;
    left: 0;
    content: "\e600";
    color: #fff;
    font-size: 10px;
}
.cs-skin-border .cs-options li span:hover, 
.cs-skin-border li.cs-focus span {
    background: #f5f5f5;
}
.cs-select.cs-active > span::after {
    color: #000;
}
.cs-skin-border .cs-options li span:hover:after {
    content: '> ';
    opacity: 1;
    position: absolute;
    left: 10px;
}
.cs-skin-border .cs-selected span::after {
    display: none;
}
.top-page {
    padding: 85px 0 100px;
    text-align: center;
    background: #000 url(../img/bg-entreprise.jpg) center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    color: #fff;
    text-transform: uppercase;
}
.top-page .img-bar {
    width: 25%;
}
.top-page h1 {
    margin-bottom: 30px;
    font-size: 2.400em;
}
.top-page h2 {
    font-weight: 300;
}
.back-button {
    position: absolute;
    top: 200px;
    right: 0;
    background: #fff;
    z-index: 3;
}
.back-button div {
    padding-right: 25px;
}
.back-button div:first-child {
    padding-right: 15px;
    text-align: right;
}
/* --- Contact --- */
.contact-top svg path {
    fill: white;
}
.contact,
.entreprise {
    margin-bottom: 85px;
    border-bottom: 1px solid #c6c6c6;
}
.contact {
    padding-bottom: 150px;
}
.contact > div:first-child {
    text-align: center;
}
.contact a {
    padding: 15px 0;
    font-size: 2.400em;
    color: #e4032e;
    font-weight: 700;
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
}
.contact > .row {
    margin-top: 90px;
}
.contact > .row:first-child {
    margin-top: 130px;
}
.address {
    padding-top: 35px;
    font-size: 1.200em;
    font-weight: 300;
}
.address:first-child {
    text-align: right;
}
.address span {
    display: block;
    color: #e4032e;
}
.address span:first-child {
    font-weight: 700;
    line-height: 1;
}
.address span:nth-child(2) {
    font-weight: 400;
}
.address:last-child span:first-child,
.address span:nth-child(2) {
    margin-bottom: 10px;
}
.address:first-child + div {
    text-align: center;
}
/* --- /Contact --- */
/* --- Entreprise --- */
.entreprise {
    font-size: 1.200em;
    padding-bottom: 60px;
}
.entreprise ul {
    margin-top: -105px;
}
.entreprise h2 {
    margin-top: 45px;
    margin-bottom: 15px;
    font-size: 2.000em;
    color: #e4032e;
}
.entreprise hr {
    width: 200px;
    height: 1px;
    margin-left: 0;
    margin-bottom: 30px;
    background: #c6c6c6;
    border: none;
}
.entreprise p:last-of-type {
    margin-bottom: 60px;
}
.entreprise img {
    text-align: center;
}
.entreprise .illustrations li {
    height: 209px;
    border: 1px solid #fff;   
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.entreprise .illustrations li:first-child {
    background-image: url(../img/illu-entreprise-1.jpg);
}
.entreprise .illustrations li:nth-child(2) {
    margin: 0 10px;
    background-image: url(../img/illu-entreprise-2.jpg);
}
.entreprise .illustrations li:last-child {
    background-image: url(../img/illu-entreprise-3.jpg);
}
.entreprise-intro {
    margin-bottom: 60px;
    font-size: 3.000em;
    text-transform: none;
}
/* --- /Entreprise --- */
/* === /Content === */


/*=== Responsive === */
@media (min-width: 1200px) {

}
@media (max-width: 1199px) {
    header {
        padding-left: 30px;
        padding-right: 30px;
    }
    .slides-navigation {
        top: auto;
        bottom: 280px;
    }
    .slides-navigation-details {
        bottom: auto;
        top: 50%;
    }
    .slides-pagination {
        display: none;
    }
    .details-footer {
        padding-left: 20px;
    }
}
@media (max-width: 1025px) {
    .slides-navigation a {
        width: 55px;
        height: 55px;
    }
    .slides-navigation .next > div:first-child,
    .slides-navigation .prev > div:last-child {
        display: none; 
    }
    .slides-navigation a.next {
        padding-right: 14px;
    }
    .slides-navigation a.prev {
        padding-left: 14px;
    }
}
@media (max-height: 900px) {
    .slides-navigation {
        top: auto;
        bottom: 305px;
    }
    .slides-navigation-details {
        bottom: auto;
        top: 50%;
    }
}
@media (max-height: 599px) {

    .real-list-item {
        vertical-align: top;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .real-list-item,
    .real-list-item .mask {

        height: calc(100vh - 94px);
    }
    .real-list li .select-mobile {
        position: relative;
        width: 150px;
        margin: 0 auto;
        display: block;
        color: #000;
        background: #fff;
        z-index: 3;
    }
    .cs-placeholder,
    div.cs-options {
        display: none !important;
    }
    .slides-navigation {
        display: none;
    }
    .home-header,
    .details-header {
        position: relative;
        height: 50px;
    }
    .logo img {
        width: 50%;
        height: 50%;
    }
    .slide-text {
        margin-top: 50px;
    }
    .slide-text h2 {
        font-size: 2em;
    }
}
/*
@media (orientation: landscape) and (max-height: 599px){ 
    footer {
        position: relative;
    }
}
*/
@media (min-width: 600px) and (max-height: 900px) and (max-width: 1199px) {
    .slide-text    {
        margin-top: 200px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {

}
@media (max-width: 991px) {
    .top-page .img-bar {
        width: 40%;
    }
    footer a {
        max-width: 252px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .main-nav p  {
        padding: 0 10px;
        font-size: 0.8em;
    }
    .main-nav li:last-child svg {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .main-nav {
        display: none;
    }
    .mobile-nav {
        display: table-cell;
        position: relative;
    }
    .slides-navigation a {
        width: auto;
    }
    .slides-navigation .next > div:first-child,
    .slides-navigation .prev > div:last-child {
        display: none; 
    }
    .slides-navigation a.prev {
        padding-right: 20px;
    }
    footer {
        position: relative;
    }
    .details-footer ul {
        min-width: 50%;                
    }
    footer > div {
        display: block;
        width: 100%;
        border-left: none;
        border-top: 1px solid #fff;
    }
    footer .mask {
        height: auto;
    }
    footer .mask + div {
        padding-top: 18px;
    }
    .real-list {
        width: 100%;
    }
    .real-list-item {
        display: block;
        width: 100%;
        height: auto;
        border-left: none;
        border-top: 1px solid #fff;
        background-image: url(../img/realisations/liste-pretaporter-small.jpg);
        -webkit-background-size: cover;
        background-size: cover;
    }
    .real-list-item:nth-child(5) {
        background-image: url(../img/realisations/liste-bijouterie-small.jpg)
    }
    .real-list-item:nth-child(6) {
        background-image: url(../img/realisations/liste-particuliers-small.jpg)
    }
    .real-list-item:nth-child(2) {
        background-image: url(../img/realisations/liste-restauration-small.jpg)
    }
    .real-list-item:nth-child(3) {
        background-image: url(../img/realisations/liste-tertiaire-small.jpg)
    }
	.real-list-item:nth-child(4) {
        background-image: url(../img/realisations/liste-petite-enfance-small.jpg)
    }
    .real-list-item:nth-child(6) {
        background-image: url(../img/realisations/liste-hotellerie-small.jpg)
    }
    .real-list-item .mask {
        height: auto;
    }
    .real-list h2 {
        margin: 0;
    }
    .slide-text h2 {
        font-size: 3em;    
    }
    .slide-text a {
        font-size: 1.1em;
    }
    .entreprise-intro {
        padding: 0 10px;    
        font-size: 2.3em;
    }
    .address:first-child,
    .address {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        width: 203px;
    }
    .contact {
        margin-bottom: 70px;
        padding-bottom: 70px;
    }
    .contact > .row:first-child {
        margin-top: 60px;
    }
    .contact > .row {
        margin-top: 45px;
    }
    .details-footer li {
        float: right;
    }
    .details-footer li a,
    .details-footer li:last-child a {
        border: 1px solid #fff;
    }
    .real-list li .select-mobile {
        position: relative;
        width: 150px;
        margin: 0 auto;
        display: block;
        color: #000;
        background: #fff;
        z-index: 3;
    }
    .cs-placeholder,
    div.cs-options {
        display: none !important;
    }
    .real-list-item {
        vertical-align: top;
        padding-top: 40px;
        padding-bottom: 25px;
    }
}

@media (max-width: 500px) {
    .slides-navigation {
        display: none;
    }
    .slide-text h2 {
        font-size: 2em;    
    }
    .slide-text a {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 0.9em;
    }
    .slide-text h2 span {
        line-height: 20px;
    }
    /*
    .home-header,
    .details-header {
    height: 90px;
}
    */
    .logo img {
        width: 50%;
        height: 50%;
    }
    .back-button {
        top: 110px;
        width: auto;
        height: 40px;
    }
    .back-button div:first-child {
        display: none;
    }
    .back-button div:last-child {
        padding-left: 7px;
        padding-right: 7px;
    }


}
/*=== /Responsive === */

/* Ekypia Loic */
.no-margin {
    margin: 0 !important;
}

.pt-30 {
    padding-top: 30px;
}
.bottom-link a {
    font-size: 1.2em;
}
@media(max-width:991px) {
    .bottom-link a{
        border-top:none;
        display: inline-block;
        margin-bottom: 30px;
    }
}

#cookies-rgpd {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-family: inherit;
    bottom: 15px;
    width: 300px;
    height: auto;
    max-height: 645px;
    padding: 25px 15px;
    overflow: auto;
    position: fixed;
    left: 15px;
    right: auto;
    top: auto;
    display: block;
    text-align: center;
    border-radius:4px;
    z-index: 999;
}

#cookies-rgpd a {
    color: rgb(155, 155, 155);
}


#cookies-rgpd .btn-accept {
    color: #fff;
    background-color: #e3032e;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding: 8px 16px 8px;
    border-radius:4px;
    margin-top: 10px;
    position: relative;
    cursor: pointer;
    margin-left: 0px;
    text-decoration: none;
    display: inline-block;
}

.mentions h2 {
    font-size: 1.7em;
}

@media(max-width:580px) {
    #cookies-rgpd {
        left:50%;
        transform:translateX(-50%);
    }
}