/*-------------------------------------------------*/

/* = Init CSS/*-------------------------------------------------*/

body,
html {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

/*	Affix	*/

.affix {
  top: 0;
  width: 100%;
}

.affix + .container-fluid {
  padding-top: 70px;
}


ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    outline: none;
    color: #070707;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color:  #070707;
}

figure {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
	max-width:100%;
}

.container-fluid {
    padding: 0;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    padding-right: 15px;
    padding-left: 0;
}

.col-xs-1:first-child,
.col-sm-1:first-child,
.col-md-1:first-child,
.col-lg-1:first-child,
.col-xs-2:first-child,
.col-sm-2:first-child,
.col-md-2:first-child,
.col-lg-2:first-child,
.col-xs-3:first-child,
.col-sm-3:first-child,
.col-md-3:first-child,
.col-lg-3:first-child,
.col-xs-4:first-child,
.col-sm-4:first-child,
.col-md-4:first-child,
.col-lg-4:first-child,
.col-xs-5:first-child,
.col-sm-5:first-child,
.col-md-5:first-child,
.col-lg-5:first-child,
.col-xs-6:first-child,
.col-sm-6:first-child,
.col-md-6:first-child,
.col-lg-6:first-child,
.col-xs-7:first-child,
.col-sm-7:first-child,
.col-md-7:first-child,
.col-lg-7:first-child,
.col-xs-8:first-child,
.col-sm-8:first-child,
.col-md-8:first-child,
.col-lg-8:first-child,
.col-xs-9:first-child,
.col-sm-9:first-child,
.col-md-9:first-child,
.col-lg-9:first-child,
.col-xs-10:first-child,
.col-sm-10:first-child,
.col-md-10:first-child,
.col-lg-10:first-child,
.col-xs-11:first-child,
.col-sm-11:first-child,
.col-md-11:first-child,
.col-lg-11:first-child,
.col-xs-12:first-child,
.col-sm-12:first-child,
.col-md-12:first-child,
.col-lg-12 {
    padding-left: 0;
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
}

.help-block {
    margin: 0;
}

.padding-0 {
	padding-right:0;	
}

.sx-spinner-bar > .after_logo{
	display: block;
    width: 156px;
    height:121px;
    background-image: url(../img/logo.png);
    background-position: center;
    background-repeat: no-repeat;
	background-color:transparent;
	border-radius: 0% !important;
	-webkit-animation: none;
    animation: none;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
	margin:0px auto 15px;
	background-size:contain;
	
}


.sx-spinner-bar {
    z-index: 10051;
    position: fixed;
    top: 40%;
    left: 50%;
    width: 100px;
    margin-left: -55px;
    text-align: center;
    -webkit-transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
    transition: all 0.17s ease-in-out;
    -webkit-backface-visibility: hidden;
}

.sx-spinner-bar > div {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 5px;
    border-radius: 100% !important;
    background: #eee;
    -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
    animation: bounceDelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.sx-spinner-bar .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.sx-spinner-bar .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

/***
Sx Basic Animations
***/

@-webkit-keyframes fadeInUp {    
    0 {
        opacity: 0;
        -webkit-transform: translateY(15px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {    
    0 {
        opacity: 0;
        -moz-transform: translateY(15px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {    
    0 {
        opacity: 0;
        -o-transform: translateY(15px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {    
    0 {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    -webkit-animation: fadeInUp .5s;
    animation: fadeInUp .5s;
}

@-webkit-keyframes bounceDelay {    
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes bounceDelay {    
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*-------------------------------------------------*/

/* = General code/*-------------------------------------------------*/

html {
    height: 100%;
}

body {
    height: 100%;
   /* font-family: 'merriweatheritalic';*/
   	/*font-family: 'Flamenco-Regular';*/
	font-family: 'comic sans ms';
    opacity: 0;
    background-color: #FFF;
    background-position: top;
    background-repeat: repeat-x;
	color:#070707;
	font-size: 16px;
}

body.active {
    opacity: 1;
}

#container {
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.17s ease-in-out;
    -moz-transition: all 0.17s ease-in-out;
    -o-transition: all 0.17s ease-in-out;
    transition: all 0.17s ease-in-out;
}

#container.active {
    opacity: 1;
}

.wrapper {
    width: 1150px;
    margin: 0 auto;
}

.sx-spinner-bar > div {
    background: #047e7e;
}

a.logo {
    display: block;
   	width: 156px;
	max-width: 156px;
    height: 95px;
    margin: 0 auto;
    background-image: url(/sgs/img/logo.png);
    background-position: center;
    background-repeat: no-repeat;
	position:absolute;
	right:0;
	left:0;
	top:25px;
	z-index:9999;
	background-size:100% auto;
}

.sx_galleria {
    width: 100%;
    height: 400px;
    margin-top: 10px;
}

.gmap3 {
    width: 100%;
    height: 420px;
}

.div-center {
    text-align: center;
}

.div-right {
    text-align: right;
}

.alert {
    display: none;
    margin-bottom: 15px;
    padding: 18px 24px;
    border: 0;
    -webkit-border-radius: reset;
    -webkit-border-radius: 0;
    -moz-border-radius: reset;
    -moz-border-radius: 0;
    border-radius: reset;
    border-radius: 0;
}

.alert .close {
    top: 2px;
    right: 0;
    font-size: 16px;
    line-height: 16px;
    color: #343434;
    opacity: 100;
    filter: alpha(opacity=10000);
}

.alert.error {
    color: #ff3f3f;
    background: #ffe9e9;
}

.alert.success {
    color: #609e21;
    background: #ebf6e0;
}

.alert.warning {
    color: #a7a33e;
    background: #fbfadd;
}

.alert.info {
    color: #4683a2;
    background: #e9f7fe;
}

.nicescroll-rails {
    z-index: 8!important;
}

/*-------------------------------------------------*/

/* = Slider/*-------------------------------------------------*/

.nivoSlider {
    max-height: 520px;
}

/*-------------------------------------------------*/

/* = Footer/*-------------------------------------------------*/
.bloc_footer_top{
	/*background-image:url(../img/bg_footer.png);
	background-repeat:repeat-x;
	background-position:top center;*/
	padding:30px 0 25px;
	background-color:#e9e9e9;
	text-transform:none;
	 font-family: 'loraitalic';
}


footer a {
    color: #070707;
}

.sx-copyright {
    padding: 12px 0;
    color: #fff;
	font-size:12px;
	text-transform:uppercase;
		text-align:right;
}

.sx-copyright a,
.sx-copyright a:hover {
    color: #dfb63c;
	font-size:12px;
}

footer {
    margin: 0;
	color: #070707;
	 font-family: 'loraitalic';
}

#menu_footer li a, #menu_footer2 li a {
    font-size: 11px;
    line-height: 18px;
    color: #070707;
	text-transform:uppercase;
}

#footer_bottom {
    margin-left: -3px;
    line-height: 40px;
}
#footer_bottom li a{
	  color: #ffffff;
	  font-size:12px;
	  text-transform:uppercase;
}
.bloc_footer_bottom {
    color: #ffffff;
    background-color: #1f1f1f;
}

footer ul.sx-social-icons {
    padding: 10px 0;
    text-align: left;
	margin-left:15px;
}

.coordonnees {
    font-size: 14px;
}
.bon_commande{
	font-size:11px;
}
.bloc_coord_titre {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 18px;
}
.texte_bloc_bottom{
	text-align:center;
	line-height:30px;
	font-size:15px;
	letter-spacing:2px;
	
}

/*-------------------------------------------------*/

/* = Contact/*-------------------------------------------------*/

.contact-info,
#sx-form {
    margin-bottom: 20px;
}

#professionnels .contact-info,
#sx-form {
    margin-top: 30px;
}

#sx-form.form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0;
}

#sx-form .form-control {
    height: auto;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    font-size: 12px;
    color: #919191;
    background-color: #fcfcfc;
}

#sx-form .form-control:focus {
    color: #555;
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.2);
}

#sx-form #sx-captcha {
    width: 80%;
}

#sx-form input[type="submit"] {
    border: none;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: #efc468; /* background color de boutton envoyer */
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#sx-form input[type="submit"]:hover,
.comment-form input[type="submit"]:hover {
    opacity: 0.8;
}

.btn-info,
.btn-info:hover,
.btn-info:focus {
    border-color: #efc468; /* border color de boutton captcha */
    background-color: #efc468; /* background color de boutton captcha */
}
#contact h2{
	font-size:20px;
	color: #efc468;
	
}
/********** | VALIDATION | *****************/

.sx-errblock {
    display: block;
    margin: 0;
    color: #eb2c06;
    opacity: 0.6;
}

small.sx-errblock {
    position: absolute;
    right: 5px;
    bottom: 0;
}

/*-------------------------------------------------*/

/* = Reservation/*-------------------------------------------------*/

.contact-info,
#reservation-form {
    margin-bottom: 20px;
}

#reservation-form .form-control {
    height: auto;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    font-size: 12px;
    color: #919191;
    background-color: #fcfcfc;
}

#reservation-form .form-control:focus {
    color: #555;
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.2);
}

#reservation-form #sx-captcha {
    width: 80%;
}

#reservation-form input[type="submit"] {
    border: none;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: #f29b1c; /* background color de boutton envoyer */
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#reservation-form input[type="submit"]:hover,
.comment-form input[type="submit"]:hover {
    opacity: 0.8;
}


/*-------------------------------------------------*/

/* = Carousel Slider/*-------------------------------------------------*/

.carousel {
    width: 100%;
    margin: 0 auto;
}

.slider-size {
    height: 278px; /*hauteur de carousel de les pages interieurs*/
    background-position: top center;
    background-size: cover;
}

#index .slider-size {
    height: 545px;
}

.fill-size {
    width: 100%;
    height: 100%;
}

.carousel .carousel-inner {
    position: relative;
    height: 100%;
}

/* Carousel Fading slide */

.carousel-fade .item {
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.carousel-fade .active.left,
.carousel-fade .active.right {
    z-index: 2;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.carousel-fade .carousel-control {
    z-index: 10;
}

.carousel-fade .next,
.carousel-fade .prev {
    z-index: 1;
    left: 0;
}

/* Carousel Control */

.carousel-control {
    top: 43%;
    font-size: 48px;
}

/* Animation */

.control-box,
a.carousel-control,
.carousel-indicators li {
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}

/* Removing BS background */

.carousel .control-box {
    opacity: 0;
}

a.carousel-control.left {
    left: 0;
    border: 0;
    background: none;
}

a.carousel-control.right {
    right: 0;
    border: 0;
    background: none;
}

/* Hover animation */

.carousel:hover .control-box {
    opacity: 1;
}

.carousel:hover a.carousel-control.left {
    left: 15px;
}

.carousel:hover a.carousel-control.right {
    right: 15px;
}

/* Carouse Indicator */

.carousel-indicators li.active,
.carousel-indicators li {
    border: 0;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 0 3px;
    background: #666;
}

.carousel-indicators li.active {
    margin: 0 3px;
    background: #fff;
}

/*-------------------------------------------------------*/

/* Isotope filtering/*-------------------------------------------------------*/

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    z-index: 1;
    pointer-events: none;
}

.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height,width;
    -moz-transition-property: height,width;
    transition-property: height,width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform,opacity;
    -moz-transition-property: -moz-transform,opacity;
    transition-property: transform,opacity;
}

/*-------------------------------------------------------*/

.sx-sizer,
.sx-item {
    width: 31.3333%;
    margin: 1%;
    overflow: hidden;
    background: #FFF;
}

.sx-item img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

/*-------------------------------------------------*/

/* = Isotope Zoom/*-------------------------------------------------*/

.gallery .item:before {
    content: "";
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
	display:block;
    width: 100%;
    height: 200px;
    background: none repeat scroll 0 0 transparent;
    transition: all 0.3s linear 0s;
}
.gallery .item:after {
    content:url(/sgs/img/ombre.png);
    z-index: 9;
    position: absolute;
    bottom: -34px;
    right: -14px;
    background: none repeat scroll 0 0 transparent;
    transition: all 0.3s linear 0s;
}
.gallery img{
	max-width:100%;
	height:200px;
}
.gallery .item {
    position: relative;
	width:320px;
    max-height: 214px;
    margin-bottom: 20px;
	border:7px solid #fff;
	text-align:center;
	background-color:#404647;
}
.gallery .item img {
	 position: relative;
}
.fa-external-link:before {
    content: url(/sgs/img/logo_hover.png);
}

.carousel-details a i {
    transition: all 0.3s linear 0s;
}

.carousel-details a {
    display: inline-block;
    z-index: 11;
    width: 68px;
    height: 68px;
    text-align: center;
    opacity: 0 !important;
    transition: all 0.3s linear 0s;
}

.carousel-details .zoom-images {
    display: inline-block;
    float: none;
    clear: none;
    position: relative;
    margin: 0 5px;
}

.carousel-details {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    margin: auto !important;
    overflow: hidden;
    text-align: center;
}

.carousel-details .zoom-images a {
    transform: translateX(-100px);
}

.carousel-details a:hover i {
    color: #fff !important;
}

.gallery .item:hover:before {
    background: none repeat scroll 0 0 rgba(0,0,0,0.5);
}

.gallery .item:hover .carousel-details a {
    opacity: 1 !important;
    transform: translateX(0px);
}

/*-------------------------------------------------*/

/* = Menu/*-------------------------------------------------*/

.navbar-default {
    border: none;
    background-color: transparent; /* enlever le background-color par defaut de boostrap   */
}
nav{
	padding-top:0;
}
.navbar {
    margin: 0;
    min-height: 56px;
    border: none;
}
.navbar-nav{
	float:none;
}
.navbar-collapse {
    padding: 0;
}

.header_bottom {
    padding-top: 74px;
}

.navbar-default .navbar-nav > li {
    position: relative;
}
.margin_right{
	/*margin-right:165px;*/
	margin-right: 210px;
}
.navbar-nav .sub-arrow, .navbar-nav .collapsible .sub-arrow{
	display:none
}
/* ---- style de parent de menu ---- */

.navbar-default .navbar-nav > li > a {
	font-family: 'loraitalic';
    position: relative;
    font-size: 12px;
	padding:15px 10px;
    color: #000;
    background-color: transparent;
	text-transform:uppercase;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    border: none;
    color: #096c6c;
    background-color: transparent;
}

/* annimation de border bottom */

.navbar-default a:before,
.navbar-default li:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 20%;
    height: 47px;
    text-shadow: 0 0 transparent;
    font-size: 37.2em;
    color: transparent;
    opacity: 0;
/*    background: url(../img/menu_hover.png) repeat scroll 0 0;
*/	border-top:3px solid #096c6c;
    transition: all 0.3s ease 0s,color 0.3s ease 0s;
    transform: translateX(-50%);
    pointer-events: none;
}

.navbar-default a.active:before,
.navbar-default a:hover:before,
.navbar-default a:focus:before,
.navbar-default li.active_parent:before {
    width: 100%;
    text-shadow: 10px 0 #fff,-10px 0 #fff;
    color: #fff;
    opacity: 1;
}

.dropdown-menu a.active:before,
.dropdown-menu a:hover:before,
.dropdown-menu a:focus:before,
.dropdown-menu li.active_parent:before {
    opacity: 0; /* désactiver annimation de border bottom*/
}

/* ---- FIN style de parent de menu ---- */

/* ---- style background-color par defaut open de parent  ---- */

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: #096c6c;
    background-color: transparent;
}

.dropdown-menu {
    padding: 6px 0;
    border: none;
    border-radius: 0;
    background-color: #transparent;
    box-shadow: none;
}

/*********** <<< Sous menu 1 >>> ***************/

.navbar-nav > li > .dropdown-menu {
    background-color: transparent; /* background-color Sous menu 1   */
	background-image: url(../img/sous_menu.png);
	background-repeat:repeat;
	background-position:top center;
	border-top:3px solid #096c6c;
}

.navbar-nav .dropdown-menu > li > a {
    font-size: 11px;
    color: #fff;
	text-align:left;
	text-transform:uppercase;
	border-bottom:1px solid transparent;
	
}

.navbar-nav .dropdown-menu > li > a:hover,
.navbar-nav .dropdown-menu > li > a:focus {
    color: #096c6c;
    background-color: transparent; /* background-color Sous menu 1 hover   */
	border-color: #096c6c;
}

/* ---- style background-color par defaut open de Sous menu 1   ---- */

.navbar-default .navbar-nav .dropdown-menu > .open > a,
.navbar-default .navbar-nav .dropdown-menu > .open > a:hover,
.navbar-default .navbar-nav .dropdown-menu > .open > a:focus {
    color: #096c6c;
    background-color: transparent;
}

/*********** <<< Sous menu 2 >>> ***************/

.navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    background-color: transparent; /* background-color Sous menu 2   */
	background-image: url(../img/sous_menu.png);
	background-repeat:repeat;
	background-position:top center;
}

/* ----  style de Sous menu  ---- */

.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
    font-size: 11px;
    color: #fff;
	
}

.navbar-nav > li > .dropdown-menu > li.open > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus {
    color: #096c6c;
	border-color: #096c6c;
	
    background-color: transparent; /* background-color Sous menu 2 hover   */
}

/*-------------------------------------------------*/

/* = social icons/*-------------------------------------------------*/

ul.sx-social-icons li {
    display: inline-block;
    margin-left: 5px;
}

ul.sx-social-icons li a {
    background: #000000 none repeat scroll 0 0;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 18px;
    height: 30px;
    line-height: 34px;
    margin: 0;
    outline: medium none;
    text-align: center;
    text-decoration: none;
    width: 31px;
}

.phone_icon {
    float: left;
    width: 25px;
    height: 25px;
    margin-right: 8px;
    border-radius: 5px;
    text-align: center;
    line-height: 24px;
    color: #000;
    background: none repeat scroll 0 0 #fff;
}

.social_header {
    padding-top: 15px;
    text-align: right;
}

/*	Coordonnees header	*/

.coordonnes_header {
    color: #000;
	display:inline-block;
}

.coordonnes_header a {
    color: #000;
}

/*-------------------------------------------------*/

/* = Parallax/*-------------------------------------------------*/

.bloc_parallax {
    text-align: center;
    font-size: 20px;
    color: #fff;
	font-family: 'merriweatheritalic';
	position:relative;
}

.bloc_parallax_image {
    margin: 0 0 0;
/*    padding: 60px 0;
*/    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.titre_bloc{
	 font-family: 'loraitalic';
	 font-size:30px;
}

.img_parallax {
      bottom: 23%;
    left: -60px;
    position: absolute;
}

.bloc_parallax .gmap3 {
    height: 460px;
}

/*-------------------------------------------------*/

/* = SX Flexslider /*-------------------------------------------------*/

.flexslider {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
    background: none repeat scroll 0 0 #fff;
    box-shadow: none;
}

.sx_flexslider .flex-slider .slides li {
    width: auto;
	height: auto;
   /* height: 296px;*/
    background-position:top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sx_flexslider .flex-carousel {
    margin-top: 10px;
}

.sx_flexslider .flex-carousel .slides li {
    display: block;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.sx_flexslider .flex-carousel .slides li img {
    height: 100px;
}

.sx_flexslider .flex-carousel .slides li:hover,
.sx_flexslider .flex-carousel .slides li:focus,
.sx_flexslider .flex-carousel .slides li.flex-active-slide {
    opacity: 0.8;
}

.sx_flexslider .flex-carousel .slides li.flex-active-slide {
    cursor: default;
}

.fancybox {
    display: block;
    width: 100%;
    height: 100%;
}

/*-------------------------------------------------*/

/* = Actus/*-------------------------------------------------*/
.bloc_all_actus{
	margin-bottom:20px;
	
}

.bloc_actus {
	padding-bottom:35px;
	margin-top:35px;
	border-bottom:1px solid #a8a8a8;
}
.no_border{
	border-bottom: none;
}
.bloc_all_actus h2 {
	padding-top:35px;
}
.bloc_actus h5, .bloc_all_actus h2 {
	font-size:18px;
	color:#070707;
	font-family: 'source_sans_probold';
	margin:0;
	text-transform: uppercase;
	margin-bottom:5px;
}
.actus_right{
	padding-left:60px;
}
.bloc_actus .actus-txt {
    margin: 10px 0;
}

.bloc_actus .actus-suite a {
    display: block;
    width: 90px;
    text-align: center;
    line-height: 26px;
    color: #070707;
	font-size:11px;
	height:30px;
	border:1px solid #a8a8a8;
	border-radius:5px;
	margin-top:20px;
	font-family: 'source_sans_prolight';
}
.border_right li a{
	color:#a5a2a2;
	font-size:18px;
	font-family: 'source_sans_prolight';
}
.border_right li a:hover{
	color:#070707;
}
.acus_date{
	font-size:14px;
	font-family: 'source_sans_prolight';
	margin-bottom:15px;
}
.texte_actus_detail a.fancybox img{
	float:left;
	margin-right:20px;
	margin-bottom:20px;
}
.texte_actus_detail{
	margin-top:40px;
}
/*-------------------------------------------------*/

/* = Partenaires/*-------------------------------------------------*/

.bloc_partenaire {
    margin: 20px 0;
}

.bloc_partenaire .partenaire_titre {
    margin-top: 10px;
    margin-bottom: 10px;
}

.bloc_partenaire .partenaire {
    margin: 0 0 20px;
}

.bloc_partenaire .partenaire:first-child {
    margin-left: 0;
    min-height: 330px;
}

.bloc_partenaire .partenaire_texte {
    margin: 10px 0;
}

.bloc_partenaire a {
    color: #000;
}

.bloc_partenaire .social-likes {
    float: right;
}

/*-------------------------------------------------*/

/* = Categories/*-------------------------------------------------*/

.titre_categorie {
    margin: 10px 0;
}

.categorie-suite a {
    display: block;
    width: 120px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    background-color: #666;
}

/*-------------------------------------------------*/

/* = Sous Categories/*-------------------------------------------------*/

.titre_sous_categorie {
    margin: 10px 0;
}

.sous_categorie_suite a {
    display: block;
    width: 120px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    background-color: #666;
}





/*-------------------------------------------------*/

/* = Menu produit/*-------------------------------------------------*/

.nav_produit ul {
    margin-right: 20px;
    padding: 10px;
    background-color: #666;
}

.nav_produit ul a {
    display: block;
    padding: 5px 10px;
    line-height: 18px;
    color: #fff;
}

.nav_produit ul a:hover {
    color: #000;
    background-color: #fff;
}

/*-------------------------------------------------*/

/* = modal/*-------------------------------------------------*/

#h_login {
    margin-bottom: 20px;
}

.alert-cat {
    margin-bottom: 10px;
    color: #ff0000;
}

/*-------------------------------------------------*/

/* = Pagination/*-------------------------------------------------*/

.paginate {
    margin-left:40%;
	margin-bottom:20px;
    text-align: center;
}

.paginate li {
    float: left;
    margin-right: 0px;
	background-image:url(../img/pagination.png);
	background-repeat:no-repeat;
	background-position: left center;
    height: 30px;
}
.paginate li:first-child /*, .paginate li:last-child*/{
	background:none;
}
.paginate li a {
	font-family: 'source_sans_proregular';
    display: block;
    width: 17px;
    color: #626262;
	font-size:18px;
	padding-left:5px;
	line-height:33px;
	height: 30px;
}

.paginate li a.suivant{
	background-image:url(../img/fleche_actu.png);
	background-repeat:no-repeat;
	background-position: top center;
	width: 32px;
	margin-left:10px;
	  height: 30px;
}

.paginate li a:hover,
.paginate li a.active {
    color: #070707;
}

/*-------------------------------------------------*/

/* = Code CSS/*-------------------------------------------------*/

header {
    margin-bottom: 0px;
	position:relative;
	z-index:99;
}


.header_top {
    padding: 0;
	background-color:#eef2f9;
	min-height:135px;
	position:fixed;
	right:0;
	left:0;
}

.header_top.smaller {
    padding: 0;
	background-image:url(../img/bg_top.png);
	background-repeat:repeat-x;
	background-position:top center;
	height:145px;
	min-height:inherit;
	position:fixed;
	right:0;
	left:0;
}
.smaller  a.logo{
	background-image: url(/sgs/img/logo2.png);
	height:130px;
	top:5px;
	width:140px;
}


.navbar-toggle .icon-bar {
    border-radius: 1px;
    display: block;
    height: 3px;
    width:30px;
	background-color:#000!important;
}


.smaller nav {
    padding-top: 50px;
}
.smaller .navbar-default a::before, .smaller .navbar-default li::before{
	height:40px;
}
.smaller .navbar-nav > li > a{
	padding-bottom:5px;
	padding-top:5px;
}
.bloc_contenu1, .bloc_contenu2, .bloc_contenu3, .bloc_contenu4{
	background-repeat:no-repeat;
	background-position:top center;
	background-size: cover;
	min-height:660px;
	background-attachment: fixed;

}

.langue {
    display: inline-block;
    width: 75px;
}

.langue li{
	display:inline-block;
	background-image:url(../img/seperateur.png);
	background-position: center right;
	background-repeat: no-repeat;
	padding-right:10px;
	
}

.langue li:last-child{
	background:none;
	
}
.langue li a{
	font-family: 'loraitalic';
	 font-size:14px;
	 color:#000;
	
}
.langue li a:hover, .langue li a.active{
	color:#000;
	 text-decoration:underline;
}
#sx-content{
	padding-top:135px;
	position:relative;
}

#index h1, #index h3{
	 font-family: 'loraitalic';
	font-size:35px;
	color:#fff;
	text-transform:uppercase;
	background-image: url(../img/bg_contenu.png);
	background-repeat:repeat;
	background-position:top center;
	display: table;
	padding:10px 30px;
	margin:42px 0;
	
}

.row_header {
    text-align: right;
}

h1{
	 font-family: 'loraitalic';
	color:#070707;
	font-size:30px;
	margin-top:60px;
	margin-bottom:20px;
	text-transform:uppercase;
}
.bloc_cms{
	max-width:750px;
	background-image: url(../img/bg_contenu.png);
	background-repeat:repeat;
	background-position:top center;
	padding:25px;
	margin-left:90px;
	color:#ffffff;
	line-height:23px;
	height:459px;
	position:relative;
	
}
#index .texte_cms{
	height:400px;
}
.texte_cms{
	margin-bottom:20px;
	font-size:15px;
}
ul.liens_sroll{
	width:100%!important;
/*	margin-top:25px;*/
}
.mTS_horizontal .liens_sroll > li.mTSThumbContainer{
	float:none;
}

.mTS_horizontal .liens_sroll > li.mTSThumbContainer a{
	font-family: 'merriweatheritalic';
	text-align:center;
	color:#edbd5d;
	font-size:15px;
	text-transform:uppercase;
	display:block;
	line-height:37px;
	border-bottom:1px solid #837656;
}
.mTS_horizontal .liens_sroll > li.mTSThumbContainer:last-child a{
	border-bottom: none;
}
.mTS_horizontal .liens_sroll > li.mTSThumbContainer a:hover{
	background-image:url(../img/bg_domaine_accueil.png);
	background-repeat:repeat;
	
}
.mTSWrapper{
	height:auto;
}

.fleches{
	position:absolute;
	bottom:10px;
	right:15px;
}
.fleches a{
	display: inline-block;
	width:29px;
	height:18px;
	background-repeat:no-repeat;
	background-position:top center;
}

.fleches a.top{
	background-image:url(../img/fleche_up.png);
}

.fleches a.bottom{
	background-image:url(../img/fleche_down.png);
}
.bloc_contenu4{
	position:relative;
}
.all_top{
	position:absolute;
	bottom:20px;
	right:15px;
	background-image: url(../img/all_top.png);
	background-repeat:no-repeat;
	background-position:top center;
	width:31px;
	height:31px;
	display:block;
}

.content{
	background-position:bottom right;
	background-repeat:no-repeat;
	background-color:#e9e9e9;
	min-height:660px;
	padding-bottom:60px;
}
.texte{
	padding-bottom:20px;
}

/*-------------------------------------------------*/

/* = Vins /*-------------------------------------------------*/

#vins .content{
	background-color:#fff;
}
.titre_categories{
	 font-family: 'loraitalic';
	 font-size:18px;
	 text-align:center;
	 text-transform:uppercase;
}
.titre_produit{
	  font-family: 'loraitalic';
	 font-size:16px;
	 text-align:center;
	 margin:5px 0;
}
.liste_contenu{
	margin-bottom:60px;
}
.row_image{
	text-align:center;
	margin-bottom:10px;
}
/*-------------------------------------------------*/

/* = Produits detail/*-------------------------------------------------*/

.titre_detail_produit {
	font-family: 'loraitalic';
    font-size: 22px;
    line-height: 22px;
    margin: 0 0 10px;
	color:#047e7e;
	border-bottom:1px solid #047e7e;
	padding-bottom:30px;
	margin-top:40px;
	margin-bottom:20px;
	text-transform:uppercase;

}

.texte_detail_produit {
    margin-bottom: 10px;
    min-height: 344px;
    font-size: 16px;
	 font-family: 'merriweatheritalic';
}

.produitdetail-suite a{
    float: left;
	font-family: 'loraitalic';
	 color:#047e7e;
	 font-size: 16px;
	 width:180px;
	 text-align:center;
	 border:1px solid #bababa;
	 border-radius:5px;
	 display:block;
	 height:40px;
	 line-height:36px;
	 margin-top:20px;
}



.pdf_produit{
	font-family: 'loraitalic';
	 color:#047e7e;
	 font-size: 16px;
	 width:207px;
	 text-align:center;
	 border:1px solid #bababa;
	 border-radius:5px;
	 display:block;
	 height:40px;
	 line-height:36px;
	 margin-top:20px;
	 float:left;
	 background-image:url(../img/ic_pdf.png);
	 background-position:20px center;
	 background-repeat:no-repeat;
	 padding-left:30px;
	 margin-right: 10px;
}

.image_detail{
	text-align:right;
}
.col-sm-3.border_right{
	border-right:1px solid #a8a8a8;
	min-height:660px;
	padding:0 0px 0 10%;
}
.logo_actus{
	position:absolute;
	bottom:0;
	left:30%;
	display:block;
}

.border_top{
	border-top:1px solid #a5a5a5;
	padding-top:30px;
	margin-bottom:30px;
}
.border_top h2{
	font-family: 'playfair_displayregular';
	font-size:30px;
	margin-bottom:20px;
	text-transform:uppercase;
}
.border_first{
	border-top: none;
}

.contenu_image {
	position:relative;
	transform: rotate(-3deg);
}
.contenu_image img{
	margin:17px 0 0 10px;
}
.mask{
	background-image:url(../img/masque-img.png);
	background-repeat:no-repeat;
	background-position:top center;
/*	position:absolute;
	top:-17px;
	left:13px;*/
	width:245px;
	height:215px;
}

.carte.col-md-4{
	padding-right:0px;
	padding-left:0;
}

.carte {
	margin: 0 0 0;
/*    padding: 60px 0;
    background-attachment: fixed;*/
    background-position: center;
    background-repeat: repeat;
    background-size: cover;	
	height:460px;
	position:relative;
}

.font{
	font-family: 'MarckScript-Regular';
	font-size: 19px;
}
.header_top .bon_commande{
	background-image:url(../img/btn-bon-commande.jpg);
    border-radius: 5px;
    color: #111111;
    font-family: "loraregular";
    font-size: 14px;
    padding: 1px 15px;
	height:24px;
	margin-top:10px;
	display:inline-block;
	
  
}

.bloc_bon_top {
    display: inline-block;
}


/* scrool menu referencement */ 

.referencement_top{
	padding:5px 0;
}
.referencement_contenu{
	padding:20px 0;
	display:none;
}
.referencement_contenu li a{
	color:#070707;
	font-size:14px;
	line-height:28px;
}
.referencement_contenu li{
	float:left;
	width:33%;
}
.referencement_titre{
	color:#070707;
	line-height:44px;
	font-size:20px;
	float:left;
}
.referencement_fleche {
	
	   background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #fefdfd;
    border-radius: 50%;
    color: #070707;
    float: right;
    height: 40px;
    margin-top: 10px;
    padding: 5px !important;
    width: 40px;
	/*background-image:url(../images/fleche.png);
	background-repeat:no-repeat;
	background-position:top right;
  	height:40px;
  	margin-top:17px;
	width:40px;
	background-size:100%;
	float:right;*/
}
.caret {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid;
    display: inline-block;
    height: 0;
    margin-left: 7px;
    margin-top: 8px;
    vertical-align: middle;
    width: 3px;
}


.title_refer {
    color: #2c2c2c;
    font-weight:bold;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 17px;
    margin-top: 32px;
    text-align: center;
}


/************/
#mon_texte_fermer{
	width:600px; 
}
.bloc_video {
    height: 0;
    padding-bottom: 66.25%;
    padding-top: 25px;
    position: relative;
	margin-bottom:50px;
}

.bloc_video iframe{
	width:100%;
	margin:0px auto 20px;
	display:block;
	height:100%;
	position:absolute;
}

.titre_video span{
	color:#096c6c;
	font-size:18px;
	font-family: 'oxygenbold';
	border-bottom:5px solid #096c6c;
}
.titre_video{
	display:block;
	margin-bottom:20px;
}
.texte_video{
	 font-family: 'oxygenregular';
	font-size:12px;
}
.control {
    background-color: #000;
    color: #fff;
	padding:5px;
	margin-right:20px;
}
/***********/
.bouton {
	background-color: #096c6c;
	-webkit-transform:skew(-30deg);
	-moz-transform:skew(-30deg);
	-o-transform:skew(-30deg);
	tranform:skew(-30deg);
    color: #FFFFFF;
    font-family: 'oxygenregular';
    line-height: 60px;
    margin: 0 auto;
   	width: 40%;
    text-align: center;
	margin-top: 40px;
	margin-bottom:20px;
  
}
.bouton a{
	 color: #FFFFFF;
	 -webkit-transform:skew(30deg);
	-moz-transform:skew(30deg);
	-o-transform:skew(30deg);
	tranform:skew(30deg);
	font-size:16px;
	display:block;
	
	}
/***************************/
/***********/