
/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/*  FONT  */

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather-Bold.eot');
    src: url('../fonts/Merriweather-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Merriweather-Bold.woff2') format('woff2'),
        url('../fonts/Merriweather-Bold.woff') format('woff'),
        url('../fonts/Merriweather-Bold.ttf') format('truetype'),
        url('../fonts/Merriweather-Bold.svg#Merriweather-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

/*  GENERAL  */

body {
    background-color: #eeeeee;
	font-family: 'Montserrat', Arial, Helvetica, Sans-serif;
	font-size: 16px;
    line-height: 1.5;
	color: #663333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 {
    font-weight: normal;
}
h1 {
    font-family: 'Merriweather';
    font-size: 43px;
    line-height: 1.4;
    margin: 20px 0px;
}
h2 {
    font-family: 'Merriweather';
    font-size: 35px;
    line-height: 1.4;
}
h3 {
    font-family: 'Merriweather';
    font-size: 24px;
    line-height: 1.4;
}
h4 {
    font-family: 'Merriweather';
    font-size: 21px;
    line-height: 1.4;
}
h5 {
    font-family: 'Merriweather';
    font-size: 18px;
    line-height: 1.4;
}
p {
    margin: 0 0 15px;
}
a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
a:focus, a:hover {
    color: inherit;
    text-decoration: none;
}
a:focus {
    outline: 0;
    outline-offset: -2px;
}
:focus {
    outline: none;
}
.bold {
	font-family: 'Montserrat', Arial, Helvetica, Sans-serif;
    font-weight: 700;
}
.merry {
    font-family: 'Merriweather';
}
.uppercase {
    text-transform: uppercase;
}
.white { 
    color: #ffffff;
}
.marron {
    color: #663333;
}
.beige { 
    color: #dd9977;
}
.right {
    float: right;
}
.left {
    float: left;
}
.inline-block {
    display: inline-block;
}
.center {
    margin: 0 auto;
}
.txt-right {
    text-align: right;
}
.txt-left {
    text-align: left;
}
.txt-center {
    text-align: center;
}
.flex-center {
    display: flex;
    align-items: center;
}
.button {
    border: 1px solid #dd9977;
    color: #dd9977;
    font-size: 16px;
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    text-transform: uppercase;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.btn-white, .btn-white:focus  {
    background-color: transparent; 
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}
.btn-beige, .btn-beige:focus  {
    background-color: transparent; 
    border: 1px solid #dd9977;
    color: #dd9977;
}
.btn-beige:hover {
    border: 1px solid #663333;
    color: #663333;
}
.btn-marron, .btn-marron:focus  {
    background-color: transparent; 
    border: 1px solid #663333;
    color: #663333;
}
.bg-white {
    background-color: #FFFFFF;
}
.boxshadow {
    box-shadow: 2px 2px 15px 0px rgba(0,0,0,0.07);
}
.nofloat {
    float: none
}
.noborder {
    border: 0 none !important;
}
.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}
.invisible {
    opacity: 0;
}
.visible {
    opacity: 1 !important;
}
.parallax-inner {
    display: none;
}

/******  COMMUN PAGE  ******/

/* Header */
header {
    color: #FFFFFF;
}
header span.title {
    display: block;
    font-size: 60px;
    line-height: 1;
    width: 100%;
}
header span.subtitle {
    margin: 15px auto 20px;
    display: block;
}
.subtitle {
    font-size: 20px;
}
.icon-arrow {
    margin-left: 11px;
    position: relative;
    left: 0;
    -webkit-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
}
a:hover .icon-arrow {    
    left: 3px;
    -webkit-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
}
div#contenu {
    padding: 30px 0 50px;
}
.sep {
    width: 45px;
    height: 1px;
    background: #dd9977;
    margin: 20px auto 23px;
}

/* Slider */
.owl-carousel .owl-item {
    background: #FFF;
    padding: 40px 25px 20px;
    box-shadow: 2px 2px 15px 0px rgba(0,0,0,0.07);
    margin-bottom: 15px;
}
.owl-carousel  .owl-item .img {
    display: flex;
    height: 220px;
}
.owl-carousel .owl-item a {
    width: auto;
    max-width: 100%;
    margin: auto;
}
.owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
    margin: auto;
}

/* Nav */
.owl-nav {
    color: #dd9977;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -15px;
    transform: translateY(-50%);
}
.owl-nav .owl-prev, .owl-nav .owl-next {
    height: 40px;
    width: 40px;
    border: 1px solid rgba(221,153,119,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    position: absolute;
}
.owl-nav .icon-arrow {
    margin: auto;
}
.owl-nav .owl-prev{
    left: -60px;
}

.owl-nav .owl-next {
    right: -60px;
}

/* Modal */
.modal {
  text-align: center;
}

.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
}
.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

/*  Menu top / bottom  */
.navbar-default {
    background-color: transparent;
    border: none;
    padding: 35px 0 30px;
    margin-bottom: 0;
}
.navbar-header {
    float: none;
}
.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
    float: none;
    color: #FFF;
    margin: 0 auto;
    display: block;
    height: auto;
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
    opacity: 1;
}
.navbar-center {
    margin-top: 6px;
    margin-right: 0;
}
.navbar-center .close-nav {
    display: none;
    position: absolute;
    right: 27px;
    top: 27px;
}
ul.nav.navbar-nav {
    float: none;
}
.nav-top .nav li {
    margin: 10px 4.25px;
    text-align: center;
    display: inline-block;
    float: none;
}
.nav-top .nav li a {
    color: #FFF;
    text-transform: uppercase;
    font-size: 18px;
}
.nav-top .nav a:after {
    position: absolute;
    left: 50%;
    right: 50%;
    height: 1px;
    bottom: 5px;
    content: "";
    background-color: #FFF;
    transition: 0.4s ease;
    transform: translate3d(0, 0, 0);
}
.nav-top .nav a:hover:after {
    left: 40%;
    right: 40%;
}
.nav-top .navbar-nav .active a:after {
    position: absolute;
    left: 40%;
    right: 40%;
    height: 1px;
    bottom: 5px;
    content: "";
    background-color: #FFF;
    transition: 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translate3d(0, 0, 0);
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #FFF;
    background-color: transparent;
    opacity: 1;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #FFF;
    background-color: transparent;
}

/* Page */
#contenu .title-page .subtitle {
    margin-bottom: 40px;
}


/******  HOME  ******/

#home section h2 {
    font-size: 40px;
    text-align: center;
    margin: 15px auto;
}
#home header {
    height: 685px;
    opacity: 0;
    transition: opacity 0.5s;
}
#header-carousel {
    position: absolute;
    z-index: 0;
}
#header-carousel .owl-item {
    padding: 0;
}
#header-carousel .owl-item .slide {
    display: flex;
    align-items: center;
    width: 100%;
    height: 685px;
    overflow: hidden;
    position: relative;
}
#header-carousel .owl-item .slide1 {
    background: url(../img/slider-header/slide1.jpg) no-repeat scroll center top / cover;
}
#header-carousel .owl-item .slide2 {
    background: url(../img/slider-header/slide2.jpg) no-repeat scroll center top / cover;
}
#header-carousel .owl-item .slide3 {
    background: url(../img/slider-header/slide3.jpg) no-repeat scroll center top / cover;
}


#home header:before {
    content: "";
    background: url(../img/header-overlay.png) repeat-x scroll 0 0;
    height: 399px;
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0.7;
}
#home header h1 {
    font-size: 70px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    position: relative;
}
#home header p {
    float: left;
    font-size: 30px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    position: relative;
}
#home header a.button {
    background-color: #FFFFFF;
    border-radius: 2px;
    border: 0 none;
    float: left;
    margin: 0 0 0px 35px;
    text-shadow: none;
    position: relative;
}
#home header p a.button:hover {
    color: #dd9977;
}
#home #contenu .subtitle {
    margin-top: 25px;
}

/* Edito */
#home #contenu {
    padding: 0 0 35px 0;
}
#home-edito .bloc-text {
    background-color: #FFFFFF;
    padding: 35px 110px 45px;
    margin-top: -85px;
}

/* Produits */
section#home-produits {
    padding: 45px 0 60px;
}
#slide-produits {
    margin-top: 30px;
}
#slide-produits .item h3 {
    margin-bottom: 2px;
}
#slide-produits .item .sep {
    background-color: #dd9977;
    height: 1px;
    margin-bottom: 15px;
    width: 100%;
}
#slide-produits .item a {
    color: #dd9977;
    font-size: 14px;
    text-transform: uppercase;
}
#slide-produits .item a:hover {
    color: #663333;
}
#home-produits .button {
    margin-top: 30px;
}

/* Sur mesure */
#home-sur-mesure {
    height: 500px;
    background: transparent;
    color: #FFF;
}
#home-sur-mesure .flex-center {
    height: 500px;
}
#home-sur-mesure .bloc-text {
    margin: -115px auto 0;
}

/* Actualité */
#home #home-actualite h2 {
    margin-bottom: 30px;
}
#home-actualite .bloc-actu {
    background-color: #FFFFFF;
    padding: 25px 110px 60px;
    margin-top: -85px;
    position: relative;
    z-index: 1;
}
#home-actualite .bloc-img {
    width: 305px;
    text-align: right;
}
#home-actualite .bloc-text {
    text-align: left;
}
#home-actualite .bloc-text .date {
    opacity: 0.5;
}
#home-actualite .bloc-text h3 {
    margin: 3px 0 11px;
}
#home-actualite .bloc-text .button {
    padding: 10px 20px;
    margin: 0;
}
#home-actualite .bloc-text .button .icon-arrow {
    margin-left: 6px;
}

/* Engagements */
section#home-engagements {
    padding: 45px 0px;
    text-align: center;
}
#home-engagements .bloc-title p {
    margin-bottom: 25px;
}
#home-engagements .engagement1 {
    background: transparent url(../img/home-bg-engagement1.jpg) no-repeat scroll center center; 
}
#home-engagements .engagement2 {
    background: transparent url(../img/home-bg-engagement1.jpg) no-repeat scroll center center; 
}
#home-engagements .engagement3 {
    background: transparent url(../img/home-bg-engagement1.jpg) no-repeat scroll center center; 
}
#home-engagements .bloc-engagement {
    color: #FFFFFF;
    height: 200px;
    border-radius: 2px;
}
#home-engagements .bloc-engagement h3 {
    display: inline-block;
    margin: 0 0 5px;
}
#home-engagements .bloc-engagement p {
    opacity: 0.5;
}

/* Garanties */
section#home-garanties {
    padding: 0 0 10px;
    text-align: center;
}
#home-garanties .bloc-title p {
    margin-bottom: 40px;
}
#home-garanties .bloc-picto {
    display: inline-block;
    margin: 0px 25px 25px;
}
#home-garanties .bloc-picto .picto {
    background-color: #FFFFFF;
    height: 140px;
    width: 140px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    box-shadow: 2px 2px 15px 0px rgba(0,0,0,0.07);
}
#home-garanties .bloc-picto .picto img {
    margin: 0 auto;
}
#home-garanties .bloc-picto h3 {
    margin: 20px 0 0 0;
}
#home-garanties .bloc-picto p {
    margin: 0;
}


/******  NOS PRODUITS  ******/

#nos-produits header {
    height: 300px;
}

/* Navbar produit */
.navbar-produits {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
    position: absolute;
    margin: 30px 0 0 80px;
    height: auto;
    width: 100%;
    overflow: auto;
    border-top-width: 0;
    border-bottom-width: 0;
    border-radius: 0;
    padding: 10px 20px;
    z-index: 1;
}
.navbar-produits>.container .navbar-brand {
    color: #663333;
    padding: 20px 10px 25px;
}
.navbar-fixed-side .navbar-nav .dropdown-menu>.active>a {
    background-color: #f8f8f8;
}
.navbar-fixed-side .navbar-nav>li>a {
    font-size: 14px;
    text-align: left;
}
.navbar-fixed-side .navbar-nav>li>a:focus, .navbar-fixed-side .navbar-nav>li>a:hover {
    background-color: #f0f0f0;
    color: #333;
}
.navbar-fixed-side .navbar-nav>.active>a, .navbar-fixed-side .navbar-nav>.active>a:focus, .navbar-fixed-side .navbar-nav>.active>a:hover {
    color: #555;
}
.navbar-toggle-produits {

}
.bloc-produits {
    width: 78%;
}
.bloc-produits .container {
    width: auto;
    margin-left: 100px;
}

#nos-produits .bloc-produit {
    background: #FFF;
    padding: 40px 25px 20px;
    box-shadow: 2px 2px 15px 0px rgba(0,0,0,0.07);
    margin-bottom: 15px;
    margin-top: 30px;
}
#nos-produits .bloc-produit .img {
    display: flex;
    height: 220px;
}
#nos-produits .bloc-produit img {
    width: auto;
    max-width: 100%;
    margin: auto;
}
#nos-produits .bloc-produit h3 {
    margin-bottom: 2px;
}
#nos-produits .bloc-produit .sep {
    background-color: #dd9977;
    height: 1px;
    margin-bottom: 15px;
    width: 100%;
}
#nos-produits .bloc-produit a {
    color: #dd9977;
    font-size: 14px;
    text-transform: uppercase;
}
#nos-produits .bloc-produit a:hover {
    color: #663333;
}
#nos-produits .bloc-produit .button {
    margin-top: 30px;
}

.pagination>li>a, .pagination>li>span {
    color: #663333;
}
.pagination>li>a:focus,.pagination>li.active, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
    color: #dd9977 !important;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{
    background-color: #eee;
    color: #dd9977 !important;
    border-color: #ddd !important;
}



/****** SINGLE PRODUIT  ******/

#produit header {
    height: 300px;
}
#produit div#contenu {
    padding-bottom: 0;
}
#produit .title-page {
    margin-bottom: 30px;
}
#produit .bloc-produit {
    margin-top: 30px;
}
#produit .bloc-image {
    background-color: #FFFFFF;
    text-align: center;
    padding: 50px 85px;
    margin: 0 auto;
}
#slide-images-produit .owl-item {
    box-shadow: none;
    margin: 0;
    padding: 0;
}
#slide-images-produit .owl-item h5 {
    margin: 20px 0 0 0;
}
#slide-images-produit .owl-item p {
    margin: 0;
}

#produit .bloc-description {
    margin: 0 0 0 30px;
}

#produit .bloc-description .sep {
    margin: 20px 0 23px;
}
#produit #all-products {
    margin-top: 30px;
}
#produit #all-products .title h3::after {
    content: "";
    background-color: rgba(102,51,51,0.3);
    height: 1px;
    width: 75%;
    position: absolute;
    right: 15px;
    margin-top: 17px;
}
#sur-mesure {
    background-color: #663333;
    color: #FFFFFF;
    padding: 25px 0 60px;
    margin-top: 50px;
}


/****** FAQ  ******/

#faq header {
    height: 300px;
}

/* Accordion */
#accordion {
    margin: 30px 0 40px;
}
.panel {
    box-shadow: none;
}
.panel-group {
    margin-bottom: 0;
}
.panel-group .panel {
    margin-bottom: 0px;
    border: 0;
    border-radius: 0px;
    position: relative;
    margin-top: 0;
    z-index: 1;
}
.panel-group .panel+.panel {
    margin-top: 0;
    z-index: 1;
}
.panel-group .panel+.panel+.panel {
    margin-top: 0;
    z-index: 1;
}
.panel-body {
    padding: 30px;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: none;
}
.panel-group .panel-heading {
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.2);
    padding: 0px 5px;
    border-bottom: 0;
    border-radius: 0;
}
.panel-group .panel:nth-child(odd) .panel-heading{
    background-color: #663333;
    color: #FFFFFF;
}
.panel-group .panel:nth-child(even) .panel-heading{
    background-color: #dd9977;
    color: #FFFFFF;
}
.panel-group .panel-title {
    font-size: 25px;
}
.panel-group .panel-title a {
    vertical-align: middle;
    display: block;
    padding: 20px 25px;
    align-items: center;
    position: relative;
    padding-left: 0px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.panel-group .panel-title a.collapsed {
    padding-left: 0px;
}
.panel-group .panel-title a:hover {
    padding-left: 10px;
    transition: all 0.3s ease;
    opacity: 1;
}
.panel-group .panel .panel-heading .panel-title a:after {
    content: "";
    background: transparent url(../img/picto-arrow-accordion.png) no-repeat scroll right center / 100% auto;
    width: 37px;
    height: 37px;
    transition: transform 0.3s ease;
    float: right;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.panel-group .panel .panel-heading .panel-title a.collapsed:after {
    content: "";
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}


/****** PAGE WYSIWYG  ******/

#page header {
    height: 300px;
}


/******  CONTACT  ******/

#contact header {
    height: 300px;
}
#contact div#contenu {
    padding: 30px 0 15px;
}
#contact .bloc-lieu {
    margin-bottom: 30px;
}
form#contact-form {
    padding: 0 0 20px;
}



.form-control::-webkit-input-placeholder, ::-webkit-input-placeholder { color: #737373; } 
.form-control::-moz-placeholder, *::-moz-placeholder {color: #737373; opacity: 1; }
.form-control::-moz-placeholder, ::-moz-placeholder { color: #737373; } 
.form-control::-ms-input-placeholder, ::-ms-input-placeholder { color: #737373; }  
.form-control::-ms-input-placeholder, ::-ms-input-placeholder { color: #737373; }


#contact form div.form-group.has-noerror input, #contact form div.form-group.has-noerror textarea{
    border: 0;
}

#contact form input, #contact form textarea {
    width: 100%;
    background: #FFFFFF;
    padding: 15px 25px 15px;
    font-size: 14px;
    border-radius: 4px;
    margin: 8px 0;
    color: #737373;
    box-shadow: none;
    height: 55px;
}
#contact form textarea {
    resize: vertical;
    height: 250px;
    padding: 20px 25px 30px 25px;
    margin-top: 0;
}
#submit.button {
    font-size: 14px;
    margin-bottom: 10px;
    margin: 20px auto 0;
    display: block;
}
form span.infos {
    color: #ff6c6c;
    font-size: 13px;
    width: 100%;
    display: block;
    text-align: center;
}

section#map {
    margin-top: 15px;
    text-align: center;
}

/*  MODAL POPUP */
.modal-content {
    position: relative;
    background-color: #FFFFFF;
    padding: 35px;
}
.modal-header button.close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 15px;
}
.modal-header, .modal-body {
    padding: 0px;
    border-bottom: 0;
    text-align: center;
}
#modal-contact .modal-content img {
    margin: 20px auto 0;
}
#modal-contact .modal-content h2 {
    color: #663333;
    text-transform: inherit;
    line-height: 1.1;
    margin: 0 0 15px 0;
    font-size: 28px;
}
#modal-contact .modal-content p {
    color: #663333;
    margin: 0;
}

/* Map */
#map .title {
    margin-bottom: 15px;
}
#map1, #map2, #map3 {
    height: 400px;
}


/* Footer */

footer {
    background: transparent url(../img/footer-bg.jpg) no-repeat scroll center center / cover;
    color: #FFFFFF;
    padding: 40px 0 0;
}
footer h2 {
    margin-bottom: 45px;
    font-size: 40px;
    text-align: center;
}
footer h3 {
    font-family: 'Montserrat', Arial, Helvetica, Sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
footer p {
    
}
footer .bloc-img {
    margin-right: 20px;
}
.row.sub-footer {
    border-top: 1px solid rgba(255,255,255,0.2);
    height: 75px;
    display: flex;
    margin-top: 25px;
    align-items: center;
}
#nav-bottom {
    left: 17%;
}
#nav-bottom ul {
    padding: 0;
    margin: 0;
}
#nav-bottom ul li {
    display: inline-block;
    margin: 0 15px;
}
#nav-bottom ul li a {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 12px;
}
footer .legales {
    padding: 0;
}
footer .credits {
    text-align: right;
    padding: 0;
}

#scrollTopButton {
    width: 40px;
    height: 40px;
    background-color: #663333;
    color: #fff;
    border-radius: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1032;
    font-size: 22px;
}
#scrollTopButton svg {
    rotate: 90deg;
    margin: 0 auto;
}
#scrollTopButton i::before {
    font-weight: 800 !important;
}


/**** ** *  RESPONSIVE  * ** ****/

@media (max-width: 1199px) {
    #home-actualite .bloc-actu {
        padding: 25px 35px 60px;
    }
    footer .bloc-img {
        margin: 0 auto;
        float: none;
        text-align: center;
    }
    footer .bloc-text {
        text-align: center;
        margin: 15px auto;
        float: none;
    }
    .row.sub-footer {
        height: auto;
        display: block;
    }
    #nav-bottom {
        margin: 25px auto;
        left: 0;
        float: none;
        width: 100%;
    }
    #nav-bottom ul li {
        margin: 5px 15px;
    }
    #nos-produits .bloc-produits {
        width: 66.666%;
    }
    #nos-produits .bloc-produits .row {
        display: inherit;
    }
    #nos-produits .bloc-produits .row:before {
        display: inherit;
    }
    #all-products .title {
        float: none;
        text-align: center;
    }
    #produit #all-products .title h3::after {
        width: 100%;
        right: 0;
        margin-top: -17px;
        z-index: -1;
    }
    #all-products .title h3 {
        background: #eeeeee;
        display: inline-block;
        padding: 0 25px;
    }
    footer .legales {
        text-align: center;
        float: none;
        right: 0;
        margin: 0 auto;
        width: 100%;
    }
    footer .credits {
        text-align: center;
        margin: 30px auto;
        float: none;
        width: 100%;
    }
}
@media (max-width: 850px) {
    .owl-nav .owl-prev {
        left: -19px;
    }
    .owl-nav .owl-next {
        right: -19px;
    }
}
@media (max-width: 991px) {
    html.noscroll {
        overflow-y: hidden;
    }
    .navbar-default {
        padding: 75px 0 0;
    }
    #home .navbar-default {
        padding: 35px 0 0px;
    }
    .navbar-header {
        float: none;
        text-align: center;
    }
    .navbar-produits .navbar-header {
        text-align: left;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-produits {
        padding: 10px 20px;
    }
    .navbar-toggle-produits {
        display: none;
    }
    .navbar-default .navbar-toggle {
        border: none;
        cursor: pointer;
        position: absolute;
        right: 1px;
        margin-right: 0;
        top: 15px;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #FFFFFF;
    }
    .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
        background-color: transparent;
    }
    .navbar-brand {
        padding: 15px 30px;
    }
    .navbar-produits .navbar-brand {
        padding: 15px 15px;
    }
    .navbar-center, .navbar-nav, .navbar-nav>li {
        float: none !important;
        text-align: center;
    }
    .navbar-center {
        background-color: rgba(102,51,51,0.95);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 0;
        align-items: center;
        bottom: 0;
        margin: 0;
        opacity: 0;
        overflow: hidden;
        transition: height .6s ease 0s,opacity .6s ease 0s;
        z-index: 999999;
    }
    .navbar-center.open {
        opacity: 1;
        height: 100%;
        -webkit-transition: height .6s ease 0s,opacity .6s ease 0s;
        transition: height .6s ease 0s,opacity .6s ease 0s;
    }
    .navbar-center .close-nav {
        display: block;
    }
    .nav-top .navbar-nav {
        position: absolute;
        top: 50%;
        transform: translate(-50%,-50%);
        left: 50%;
        margin: 0;
    }
    .nav-top .nav > li {
        margin: 10px;
        height: 45px;
        display: block;
    }
    .nav-top .navbar-nav > li > a {
        color: #FFF;
        font-size: 15px;
        display: table;
        padding: 10px 0;
        margin: 15px auto;
    }
    .navbar-default .navbar-nav .active a, .navbar-default .navbar-nav .active a:focus, .navbar-default .navbar-nav li a:focus, .navbar-default .navbar-nav li a:hover, .navbar-default .navbar-nav .active a:hover, .navbar-nav li a:hover {
        background-color: transparent;
        color: #FFFFFF;
    }
    .navbar-default .navbar-nav>li>a::after, .navbar-default .navbar-nav .active a:after {
        bottom: 1px;
    }
    .navbar-fixed-side .navbar-nav>li>a:focus, .navbar-fixed-side .navbar-nav>li>a:hover {
        background-color: #f0f0f0;
        color: #333;
    }
	.owl-slider {
	    position: relative;
	    top: 0;
	    right: 0;
	    padding: 0;
	}
    header {
        z-index: 2 !important;
    }
    #home header {
        height: 550px;
    }
    #home header h1 {
        font-size: 45px;
    }
    #home header p, #home header a.button {
        float: none;
    }
    #home header a.button {
        margin: 0;
    }
    #home-actualite .bloc-img {
        width: 305px;
        margin: 0 auto 20px;
        text-align: center;
    }
    #home-actualite .bloc-text {
        text-align: center;
    }
    #home-actualite .bloc-text h3 {
        margin: 3px 0 25px;
    }
    #home-engagements .bloc-engagement {
        margin-top: 20px;
    }
    #produit .bloc-description {
        margin: 0;
        text-align: center;
    }
    #produit .bloc-description .sep {
        margin: 20px auto 23px;
    }
    .panel-group .panel-title {
        font-size: 20px;
        line-height: 1.7;
    }
    footer .bloc-text {
        margin: 15px auto 45px;
    }
    .row.sub-footer {
        margin-top: 0;
    }
    #map .map {
        padding: 15px 15px 0 !important;
    }
}
@media (max-width: 767px) {
	.row {
	    margin-right: 0;
	    margin-left: 0;
	}
	.txt-left, .txt-right {
		text-align: center;
	}
    .left, .right {
        float: none;
    }
    .col-blank {
        display: none;
    }
    br {
        display: none;
    }
    .navbar-default .navbar-toggle-produits {
        display: block;
        right: 20px;
    }
    .navbar-default .navbar-toggle-produits .icon-bar {
        background-color: #663333;
    }
    .navbar-fixed-side .navbar-nav>li>a {
        text-align: center;
    }
    .navbar-produits .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-produits .navbar-nav .open .dropdown-menu>li>a {
        padding: 5px 15px 5px 15px;
        text-align: center;
    }
    .navbar-produits {
        position: relative;
        margin: 0;
    }
    #nos-produits .bloc-produits {
        width: 100%;
    }
    .bloc-produits .container {
        margin: 0 auto;
    }
    #home section h2 {
        font-size: 35px;
    }
    .modal-dialog {
        width: 355px;
    }
}
@media (max-width: 680px) {
    body {
        font-size: 14px;
    }
    header span.title {
        font-size: 42px;
    }
    #home header h1 {
        font-size: 6.6vw;
    }
    #home header p {
        font-size: 4.5vw;
    }
    h1 {
        font-size: 35px;
    }
    h2, #home section h2, footer h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 22px;
    }
    .subtitle {
        font-size: 17px;
    } 
    .button {
        font-size: 12px;
        padding: 15px 20px;
    }
    #home-edito .bloc-text {
        padding: 35px 30px 45px;
    }
    #home-actualite .bloc-actu {
        padding: 25px 10px 60px;
    }
    #produit .bloc-produit {
        margin-top: 15px;
    }
    .panel-group .panel .panel-heading .panel-title a:after {
        display: none;
    }
    #map1, #map2, #map3 {
        height: 290px;
    }
}
@media (max-width: 499px) {
    #produit .bloc-produit .owl-nav {
        display: none;
    }

    #slide-produits .owl-nav {
        display: block!important;
        width: 82%;
        left: 29px;
    }
}
@media (max-width: 400px) {
	#home-actualite .bloc-img {
	    width: 100%;
	}
	#home-actualite .bloc-img img {
	    width: 100%;
	}
}




