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: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 100%;
	background: url(img/bg.png)top left repeat #e5e5e5;
	font-size: 13px;
	color:#000;
	font-family: "acumin-pro", sans-serif;
	font-weight: 400;
	overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img{
	outline: none;
}
body,html{
	height: 100%;
}
a{
	text-decoration: none;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}
p{
	line-height: 1.6em;
}
/*
===========================
COMMON
===========================
*/
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}
.fixed{
	position: fixed;
}
.full{
	width: 100%;
}
.half{
	width: 50%;
}
.lefted{
	float: left;
}
.container{
	width: 1024px;
	margin: auto;
}
.hi_container{
	width: 1200px;
	margin: auto;
}
.container:after {
  content: "";
  display: table;
  clear: both;
}
.retour{
	clear:both;
}
.full_wrapper{
	padding: 130px 0 0 0;
	z-index: 2;
}
.strong{
	font-weight: 600;
}
.col50{
	width: 29.5%;
	float: left;
}
.col50_devis{
	width: 50%;
	float: left;
}
.col25_devis{
	width: 25%;
	float: left;
}
.col100_devis{
	width: 100%;
	float: left;
}
/*
===========================
FIN-COMMON
===========================
*/
/*
===========================
HEAD
===========================
*/
.lign_top{
	width: 100%;
	height: 30px;
	background: #fff;
	z-index: 2;
}

.pat_top{
	height: 270px;
	width: 100%;
	background: rgba(199, 199, 199, 0.3);
	z-index: 1;
}

.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  /* background: moccasin; */
  height: 175px;
  width: 100%;
  z-index: 10;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 1170px) {
  .cd-header {
/*
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
*/
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-header.is-fixed {
    /* when the user scrolls down, we hide the header right above the viewport */
    position: fixed;
    top: -175px;
    /* background-color: rgba(199, 199, 199, 0.3); */
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-header.is-visible {
    /* if the user changes the scrolling direction, we show the header */
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  .cd-header.menu-is-open {
    /* add a background color to the header when the navigation is open */
    /* background-color: rgba(2, 23, 37, 0.96); */
  }
}



.cd-logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 2.2em;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-logo img {
  display: block;
  width: 91px;
}


.cd-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
/*   background-color: #03263d; */
}
.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 23px;
  height: 3px;
  background-color: black;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: black;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -7px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 7px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
/*
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: white;
}
*/
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav-trigger {
    width: 100px;
    /* padding-left: 1em; */
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 2.2em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-primary-nav-trigger .cd-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
}

.cd-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  z-index: 5;
  text-align: center;
  padding: 175px 0 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-primary-nav a {
  display: inline-block;
  padding: 0.4em 1em 0.5em 1em;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 1.5em;
  color:#747474;
}
.cd-primary-nav a.link_menu{
	border-radius: 0.25em;
}
.no-touch .cd-primary-nav a.link_menu:hover {
  background-color: #c0c0c0;
  color:#fff;
}
.cd-primary-nav .cd-label {
  color: #c0c0c0;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 700;
  margin: 2.4em 0 .8em;
}
.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
}
.cd-primary-nav .cd-social a {
  width: 11px;
  height: 11px;
  padding: 0;
  background-image: url("img/facebook.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-primary-nav .cd-facebook a {
  background-position: 0 0;
}

.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
/*
===========================
FIN-HEAD
===========================
*/
/*
===========================
PREHOME
===========================
*/
.logo_prehome{
	width: 236px;
	height: 236px;
	margin: auto;
	background: url(img/prehome_logo.svg)center center no-repeat;
}
.prehome h1{
	text-align: center;
	padding-top: 45px;
    font-size: 2.5em;
    font-weight: 600;
    color:#8f8f8f;
}
.prehome .map{
	width: 773px;
	height: 335px;
	margin: auto;
	background: url(img/prehome_map.png)center center no-repeat;
}
.prehome .map .marqueur{
	width: 22px;
	height: 36px;
	background: url(img/prehome_marqueur.png)center center no-repeat;
	bottom: 124px;
    left: 407px;
	-webkit-animation: loop 2s infinite; 
  	-moz-animation:    loop 2s infinite; 
  	-ms-animation:    loop 2s infinite; 
  	-o-animation:      loop 2s infinite; 
  	animation:         loop 2s infinite; 
}

@-webkit-keyframes loop {
  0%   { bottom: 124px;}
  60% { bottom: 134px;}
  100%   { bottom: 124px;}
}
@-moz-keyframes loop {
  0%   { bottom: 124px;}
  60% { bottom: 134px;}
  100%   { bottom: 124px;}
}
@-ms-keyframes loop {
  0%   { bottom: 124px;}
  60% { bottom: 134px;}
  100%   { bottom: 124px;}
}
@-o-keyframes loop {
  0%   { bottom: 124px;}
  60% { bottom: 134px;}
  100%   { bottom: 124px;}
}
@keyframes loop {
  0%   { bottom: 124px;}
  60% { bottom: 134px;}
  100%   { bottom: 124px;}
}
.legal{
	width: 450px;
	margin: auto;
	text-align: center;
	padding-top: 15px;
}
.legal a{
	border-radius: 0.25em;
	display: inline-block;
    padding: 0.4em 1em 0.5em 1em;
	transition: all 0.2s;
    font-size: 1.5em;
    color: #747474;
}
.legal a:hover{
	background-color: #c0c0c0;
	color:#fff;
}
.legal .legal_p{
	padding-bottom: 25px;
}
/*
===========================
FIN-PREHOME
===========================
*/
/*
===========================
INDEX
===========================
*/
.index{
	padding-top: 50px;
}
.index .inner_index{
	padding: 0 0 120px 0;
}
.inner_index .inner_left{
	width: 841px;
	padding-right: 10px;
	float: left;
	height: 600px;
}
.inner_index .inner_right{
	width: 349px;
	float: left;
	height: 600px;
}
.img_index_top{
	width: 100%;
	height: 400px;
	margin-bottom: 10px;
	background: url(img/img_index_top.jpg)center center no-repeat;
}
.img_index_bottom{
	width: 100%;
	height: 190px;
	background: url(img/img_index_bottom.jpg)center center no-repeat;
}
.img_index_right{
	width: 100%;
	height: 600px;
	background: url(img/img_index_right.jpg)center center no-repeat;
}



.wrapper_link_index{
	width: 274px;
	height: 137px;
	position: absolute;
}
.wrapper_link_index_cuvees{
	top:200px;
	right: -40px;
}
.wrapper_link_index_contact{
	top: 335px;
    right: 338px;
}
.wrapper_link_index_actu{
	top: 508px;
    right: 600px;
}
	
.box_shadow{
	width: 137px;
	height: 137px;
	line-height: 137px;
	text-align: center;
	position: absolute;
	background: #fff;
	color:#000;
	font-weight: 600;
	font-size: 1em;
	z-index: 99;
	top: 0;
	right: 0;
}
.box_shadow:before{
	content:"";
	position:absolute;
	top:0;
	left:-100%;
	width:200%;
	height:100%;
	box-shadow:60px 60px 50px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow:60px 60px 50px 0px rgba(0,0,0,0.2);
	-ms-box-shadow:60px 60px 50px 0px rgba(0,0,0,0.2);
	-moz-box-shadow:60px 60px 50px 0px rgba(0,0,0,0.2);
	-o-box-shadow:60px 60px 50px 0px rgba(0,0,0,0.2);
	opacity:0;
	
	transition:all 0.6s cubic-bezier(.55,.01,.46,1);
	-webkit-transition:all 0.6s cubic-bezier(.55,.01,.46,1);
	-moz-transition:all 0.6s cubic-bezier(.55,.01,.46,1);
	-ms-transition:all 0.6s cubic-bezier(.55,.01,.46,1);
	-o-transition:all 0.6s cubic-bezier(.55,.01,.46,1);
}
.box_shadow:hover:before{
	opacity:1;
}
.icon{
	position:absolute;
	top:0;
	right:0;
	width:137px;
	height:137px;
	background: crimson;
	z-index: 1;
	
	transition:all 0.6s cubic-bezier(.17,.78,.29,1);
	-webkit-transition:all 0.6s cubic-bezier(.17,.78,.29,1);
	-moz-transition:all 0.6s cubic-bezier(.17,.78,.29,1);
	-ms-transition:all 0.6s cubic-bezier(.17,.78,.29,1);
	-o-transition:all 0.6s cubic-bezier(.17,.78,.29,1);
}
.icon_link_cuvees{
	background: url(img/link_cuvees.svg)center center no-repeat #484848;
	background-size: 42px 48px;
}
.icon_link_contact{
	background: url(img/link_contact.svg)center center no-repeat #484848;
	background-size: 40px 50px;
	
}
.icon_link_actu{
	background: url(img/link_actu.svg)center center no-repeat #484848;
	background-size: 44px 62px;
}
.icon_hovered{
	right:137px;
}

.wrapper_welcome{
	position: absolute;
	background: #fff;
	top: 170px;
	left: -200px;
	width: 580px;
}
.wrapper_welcome p{
	padding: 80px 50px;
}

/*
===========================
FIN-INDEX
===========================
*/
/*
===========================
BTLLE
===========================
*/
.btlle{
	padding-bottom: 30px;
}
.btlle_desc, .btlle_img, .btlle_comp{
	float: left;
}
.btlle_desc{
	width: 395px;
	padding-top: 180px;
}
.btlle_desc h3{
	padding-bottom: 5px;
	font-size: 1.3em;
	font-weight: 200;
}
.btlle_desc h2{
	padding-bottom: 30px;
	font-size: 2.5em;
	font-weight: 800;
	
}
.inner_desc{
	padding: 0 45px 25px 0;
}

/*
============================================================
LIEN VERS FICHE PDF !! PASSER EN DIPSPLAY BLOCK LE JOUR J
============================================================
*/


.link_fiche{
	display: none;
	float: left;
	width: 70px;
	height: 70px;
	margin-top: 68px;
}


/*
============================================================
LIEN VERS FICHE PDF !! PASSER EN DIPSPLAY BLOCK LE JOUR J
============================================================
*/

.btlle_mythique .link_fiche{
	background: url(img/fiche_mythique.svg)center center no-repeat #c0b8b4;
	background-size: 21px 26px;
}
.btlle_esthetique .link_fiche{
	background: url(img/fiche_mythique.svg)center center no-repeat #ffba93;
	background-size: 21px 26px;
}
.btlle_emblematique .link_fiche{
	background: url(img/fiche_mythique.svg)center center no-repeat #a7acb1;
	background-size: 21px 26px;
}
.btlle_allegorique .link_fiche{
	background: url(img/fiche_mythique.svg)center center no-repeat #d58166;
	background-size: 21px 26px;
}
.btlle_historique .link_fiche{
	background: url(img/fiche_mythique.svg)center center no-repeat #7f706f;
	background-size: 21px 26px;
}
.btlle_millesime .link_fiche{
	background: url(img/fiche_mythique.svg)center center no-repeat #d6d6d6;
	background-size: 21px 26px;
}
.link_fiche:after{
	content: "";
	display: block;
	position: absolute;
	width: 11px;
	height: 11px;
	top:20px;
	left: 50%;
	margin-left: -5px;
	margin-top: 0;
	opacity: 0;
	
	transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
}
.link_fiche:after{
	background: url(img/down.svg)center center no-repeat;
}

.link_fiche:hover:after{
	opacity: 1;
	top:50%;
	margin-top: -5px;
}


.btlle_img{
	width: 233px;
	height: 803px;
	position: relative;
	z-index: 1000 !important;
}
.wrapper_btlle{
	width: 233px;
	height: 803px;
}
.btlle_mythique .wrapper_btlle{
	background: url(img/btlle_mythique.png)top center no-repeat;
}
.btlle_esthetique .wrapper_btlle{
	background: url(img/btlle_esthetique.png)top center no-repeat;
}
.btlle_emblematique .wrapper_btlle{
	background: url(img/btlle_emblematique.png)top center no-repeat;
}
.btlle_allegorique .wrapper_btlle{
	background: url(img/btlle_allegorique.png)top center no-repeat;
}
.btlle_historique .wrapper_btlle{
	background: url(img/btlle_historique.png)top center no-repeat;
}
.btlle_millesime .wrapper_btlle{
	background: url(img/btlle_millesime.png)top center no-repeat;
}
.btlle_ratafia .wrapper_btlle{
	background: url(img/btlle_ratafia.png)top center no-repeat;
}
.shadow_btlle{
	width: 662px;
	height: 150px;
	background: url(img/shadow_btlle.png)top left no-repeat;
	left: -24px;
	bottom: -75px;
	z-index: 5;
}



.btlle_comp{
	width: 396px;
	padding-top: 155px;
	color:#474747;
	z-index: 1 !important;
}
.wrapper_comp{
	padding: 15px 37px;
	float: right;
}
.percent{
	font-weight: 700;
	font-size: 1.5em;
}
.indic_comp{
	font-size: 0.8em;
}
.inner_comp{
	z-index: 2;
}
.inner_comp p{
	padding: 3px 0;
}
.square_comp{
	height: 100%;
	width: 136px;
	top:0;
	left: 0;
	z-index: 1;
}
.btlle_mythique .square_comp{
	background: #c0b8b4;
}
.btlle_esthetique .square_comp{
	background: #ffba93;
}
.btlle_emblematique .square_comp{
	background: #a7acb1;
}
.btlle_allegorique .square_comp{
	background: #d58166;
}
.btlle_historique .square_comp{
	background: #7f706f;
}
.btlle_millesime .square_comp{
	background: #d6d6d6;
}
.btlle_ratafia .square_comp{
	background: #c2c1c0;
}

.wrapper_img_comp{
	padding: 225px 10px 0 0;
	z-index: 0 !important;
}

.img_btlle_1{
	width: 138px;
	height: 138px;
	float: left;
	margin-right: 10px;
}
.btlle_mythique .img_btlle_1{
	background: url(img/img_btlle_1_mythique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_esthetique .img_btlle_1{
	background: url(img/img_btlle_1_esthetique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_emblematique .img_btlle_1{
	background: url(img/img_btlle_1_emblematique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_allegorique .img_btlle_1{
	background: url(img/img_btlle_1_allegorique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_historique .img_btlle_1{
	background: url(img/img_btlle_1_historique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_millesime .img_btlle_1{
	background: url(img/img_btlle_1_millesime.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_ratafia .img_btlle_1{
	background: url(img/img_btlle_1_ratafia.jpg)center center no-repeat;
	background-size: cover;
}

.img_btlle_2{
	width: 205px;
	height: 205px;
	margin-left: 148px;
	margin-top: 10px;
}
.btlle_mythique .img_btlle_2{
	background: url(img/img_btlle_2_mythique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_esthetique .img_btlle_2{
	background: url(img/img_btlle_2_esthetique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_emblematique .img_btlle_2{
	background: url(img/img_btlle_2_emblematique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_allegorique .img_btlle_2{
	background: url(img/img_btlle_2_allegorique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_historique .img_btlle_2{
	background: url(img/img_btlle_2_historique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_millesime .img_btlle_2{
	background: url(img/img_btlle_2_millesime.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_ratafia .img_btlle_2{
	background: url(img/img_btlle_2_ratafia.jpg)center center no-repeat;
	background-size: cover;
}

.img_btlle_3{
	width: 205px;
	height: 205px;
	top:10px;
	left: -33px;
	z-index: 0 !important;
}
.btlle_mythique .img_btlle_3{
	background: url(img/img_btlle_3_mythique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_esthetique .img_btlle_3{
	background: url(img/img_btlle_3_esthetique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_emblematique .img_btlle_3{
	background: url(img/img_btlle_3_emblematique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_allegorique .img_btlle_3{
	background: url(img/img_btlle_3_allegorique.jpg)center center no-repeat;
	background-size: cover;
}
.btlle_historique .img_btlle_3{
	background: url(img/img_btlle_3_historique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_millesime .img_btlle_3{
	background: url(img/img_btlle_3_millesime.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_ratafia .img_btlle_3{
	background: url(img/img_btlle_3_ratafia.jpg)center center no-repeat;
	background-size: cover;
}

.img_btlle_4{
	width: 205px;
	height: 205px;
	top:225px;
	left: -33px;
	z-index: 0 !important;
}
.btlle_mythique .img_btlle_4{
	background: url(img/img_btlle_4_mythique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_esthetique .img_btlle_4{
	background: url(img/img_btlle_4_esthetique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_emblematique .img_btlle_4{
	background: url(img/img_btlle_4_emblematique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_allegorique .img_btlle_4{
	background: url(img/img_btlle_4_allegorique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_historique .img_btlle_4{
	background: url(img/img_btlle_4_historique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_millesime .img_btlle_4{
	background: url(img/img_btlle_4_millesime.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_ratafia .img_btlle_4{
	background: url(img/img_btlle_4_ratafia.jpg)center center no-repeat;
	background-size: cover;
}

.img_btlle_5{
	width: 205px;
	height: 205px;
	float: right;
	margin-bottom: 10px;
}
.btlle_mythique .img_btlle_5{
	background: url(img/img_btlle_5_mythique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_esthetique .img_btlle_5{
	background: url(img/img_btlle_5_esthetique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_emblematique .img_btlle_5{
	background: url(img/img_btlle_5_emblematique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_allegorique .img_btlle_5{
	background: url(img/img_btlle_5_allegorique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_historique .img_btlle_5{
	background: url(img/img_btlle_5_historique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_millesime .img_btlle_5{
	background: url(img/img_btlle_5_millesime.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_ratafia .img_btlle_5{
	background: url(img/img_btlle_5_ratafia.jpg)center center no-repeat;
	background-size: cover;
}

.img_btlle_6{
	width: 138px;
	height: 138px;
	float: right;
}
.btlle_mythique .img_btlle_6{
	background: url(img/img_btlle_6_mythique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_esthetique .img_btlle_6{
	background: url(img/img_btlle_6_esthetique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_emblematique .img_btlle_6{
	background: url(img/img_btlle_6_emblematique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_allegorique .img_btlle_6{
	background: url(img/img_btlle_6_allegorique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_historique .img_btlle_6{
	background: url(img/img_btlle_6_historique.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_millesime .img_btlle_6{
	background: url(img/img_btlle_6_millesime.jpg)center center no-repeat;
	background-size: cover; 
}
.btlle_ratafia .img_btlle_6{
	background: url(img/img_btlle_6_ratafia.jpg)center center no-repeat;
	background-size: cover;
}






.right{
	width: 33px;
	height: 33px;
	top:182px;
	right:-33px;
}
.btlle_mythique .right{
	background: url(img/right.svg) center center no-repeat #c0b8b4;
	background-size: 11px 11px; 
}
.btlle_esthetique .right{
	background: url(img/right.svg) center center no-repeat #ffba93;
	background-size: 11px 11px; 
}
.btlle_emblematique .right{
	background: url(img/right.svg) center center no-repeat #a7acb1;
	background-size: 11px 11px; 
}
.btlle_allegorique .right{
	background: url(img/right.svg) center center no-repeat #d58166;
	background-size: 11px 11px; 
}
.btlle_historique .right{
	background: url(img/right.svg) center center no-repeat #7f706f;
	background-size: 11px 11px; 
}
.btlle_millesime .right{
	background: url(img/right.svg) center center no-repeat #d6d6d6;
	background-size: 11px 11px; 
}
.btlle_ratafia .right{
	background: url(img/right.svg) center center no-repeat #c2c1c0;
	background-size: 11px 11px; 
}
/*
===========================
FIN-BTLLE
===========================
*/


/*
===========================
LIST_BTLLE
===========================
*/
.full_list{
	background: #fff;
	padding: 25px 0 120px 0;
	margin-bottom: 30px;
}
.full_list h1{
	font-size: 1.3em;
	font-weight: 200;
}
.wrapper_list{
	padding-top: 50px;
}
.wrapper_list li{
	width: 138px;;
	height: 237px;
	float: left;
}
.up_title_list{
	transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
	color:#fff;
	font-weight: 700;
	font-size: 1em;
}
.up_title_list-unhover{
	color:#fff;
}
.up_title_list-hover{
	color:#000;
}



.img_list{
	z-index: 2;
	width: 136px;
	height: 237px;
	display: block;
	top:0;
	left: 0;
}
.list_btlle_1 .img_list{
	background: url(img/list_btlle_historique.png)top center no-repeat;
	background-size: auto 100%;
}
.list_btlle_2 .img_list{
	background: url(img/list_btlle_allegorique.png)top center no-repeat;
	background-size: auto 100%;
}
.list_btlle_3 .img_list{
	background: url(img/list_btlle_esthetique.png)top center no-repeat;
	background-size: auto 100%;
}
.list_btlle_4 .img_list{
	background: url(img/list_btlle_emblematique.png)top center no-repeat;
	background-size: auto 100%;
}
.list_btlle_5 .img_list{
	background: url(img/list_btlle_mythique.png)top center no-repeat;
	background-size: auto 100%;
}
.list_btlle_6 .img_list{
	background: url(img/list_btlle_millesime.png)top center no-repeat;
	background-size: auto 100%;
}
.list_btlle_rat .img_list{
	background: url(img/list_btlle_ratafia.png)top center no-repeat;
	background-size: auto 100%;
}
.list_btlle_1,
.list_btlle_2,
.list_btlle_3,
.list_btlle_4,
.list_btlle_5,
.list_btlle_6{
	margin: 0 8px 0 0;
}
.list_btlle a{
	line-height: 237px;
	text-align: center;
	display: block;
	position: relative;
	z-index: 3;
	color:rgba(0,0,0,0);
	background: rgba(255,255,255,0);
	font-weight: 800;
	font-size: 1.3em;
	
	transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
}
.list_btlle a:hover{
	color:rgba(0,0,0,1);
	background: rgba(255,255,255,0.7);
}
.list_btlle a:before{
	line-height: 199px;
	position: absolute;
	font-weight: 200;
	font-size: 0.7em;
}
.list_btlle_1 a:before{
	content:"BRUT";
}
.list_btlle_2 a:before{
	content:"DEMI-SEC";
}
.list_btlle_3 a:before{
	content:"ROSÉ";
}
.list_btlle_4 a:before{
	content:"BRUT";
}
.list_btlle_5 a:before{
	content:"BRUT";
}
.list_btlle_6 a:before{
	content:"BRUT";
}
.square_list{
	width: 100%;
	height: 90%;
	top:5%;
	left: 50%;
	margin-left: -50%;
	background: #eae8e8;
	z-index: 1;
	display: block;
	
	transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
}
.square_list-hover{
	width: 80%;
	margin-left: -40%;
	height: 70%;
	top:15%;
}
/*
===========================
FIN-LIST_BTLLE
===========================
*/
/*
===========================
GAMME
===========================
*/
.gamme{
	padding: 180px 0 120px 0;
	position: relative;
	width: 1200px;
}
#gamme_list{
	position: relative;
	left: 50%;
	margin-left: -600px;
}
.gamme h3{
	padding-bottom: 5px;
    font-size: 1.3em;
    font-weight: 200;
}
.gamme h2 {
    padding-bottom: 65px;
    font-size: 2.5em;
    font-weight: 800;
}
.gamme_list ul li {
    float: right;
    height: 402px;
    position: relative;
    width: 25%;
}
.gamme_list ul li a{
	display: block;
	width: 100%;
	height: 402px;
	position: relative;
	z-index: 500;
}
.gamme_1 a{
	background: url(img/btlle_historique.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_2 a{
	background: url(img/btlle_allegorique.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_3 a{
	background: url(img/btlle_emblematique.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_4 a{
	background: url(img/btlle_esthetique.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_5 a{
	background: url(img/btlle_mythique.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_6 a{
	background: url(img/btlle_millesime.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_rat a{
	background: url(img/btlle_ratafia.png)center center no-repeat;
	background-size: auto 100%;
}

.gamme_list ul li .nb{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 402px;
	z-index: 2;
	display: none;
}
.gamme_list ul li.gamme_1 .nb{
	background: url(img/btlle_historique_nb.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_list ul li.gamme_2 .nb{
	background: url(img/btlle_allegorique_nb.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_list ul li.gamme_3 .nb{
	background: url(img/btlle_emblematique_nb.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_list ul li.gamme_4 .nb{
	background: url(img/btlle_esthetique_nb.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_list ul li.gamme_5 .nb{
	background: url(img/btlle_mythique_nb.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_list ul li.gamme_6 .nb{
	background: url(img/btlle_millesime_nb.png)center center no-repeat;
	background-size: auto 100%;
}
.gamme_list ul li.gamme_rat .nb{
	background: url(img/btlle_ratafia_nb.png)center center no-repeat;
	background-size: auto 100%;
}


.gamme_img_1{
	display: block;
	width: 77px;
	height: 77px;
	left: 50%;
	top:20px;
	margin-left: -250px;
	z-index: 1;
	display: none;
	pointer-events: none;
}
.gamme_img_2{
	display: block;
	width: 166px;
	height: 166px;
	left: 50%;
	top:115px;
	margin-left: -180px;
	z-index: 1;
	display: none;
	pointer-events: none;
}
.gamme_img_3{
	display: block;
	width: 133px;
	height: 133px;
	left: 50%;
	top:80px;
	margin-left: 80px;
	z-index: 5;
	display: none;
	pointer-events: none;
}
.gamme_1 .gamme_img_1{
	background: url(img/gamme_img_historique_1.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_1 .gamme_img_2{
	background: url(img/gamme_img_historique_2.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_1 .gamme_img_3{
	background: url(img/gamme_img_historique_3.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_2 .gamme_img_1{
	background: url(img/gamme_img_allegorique_1.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_2 .gamme_img_2{
	background: url(img/gamme_img_allegorique_2.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_2 .gamme_img_3{
	background: url(img/gamme_img_allegorique_3.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_3 .gamme_img_1{
	background: url(img/gamme_img_emblematique_1.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_3 .gamme_img_2{
	background: url(img/gamme_img_emblematique_2.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_3 .gamme_img_3{
	background: url(img/gamme_img_emblematique_3.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_4 .gamme_img_1{
	background: url(img/gamme_img_esthetique_1.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_4 .gamme_img_2{
	background: url(img/gamme_img_esthetique_2.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_4 .gamme_img_3{
	background: url(img/gamme_img_esthetique_3.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_5 .gamme_img_1{
	background: url(img/gamme_img_mythique_1.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_5 .gamme_img_2{
	background: url(img/gamme_img_mythique_2.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_5 .gamme_img_3{
	background: url(img/gamme_img_mythique_3.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_6 .gamme_img_1{
	background: url(img/gamme_img_millesime_1.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_6 .gamme_img_2{
	background: url(img/gamme_img_millesime_2.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_6 .gamme_img_3{
	background: url(img/gamme_img_millesime_3.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_rat .gamme_img_1{
	background: url(img/gamme_img_ratafia_1.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_rat .gamme_img_2{
	background: url(img/gamme_img_ratafia_2.jpg)center center no-repeat;
	background-size: cover;
}
.gamme_rat .gamme_img_3{
	background: url(img/gamme_img_ratafia_3.jpg)center center no-repeat;
	background-size: cover;
}

.gamme_list li h1{
	position: absolute;
    font-size: 1.5em;
    font-weight: 800;
    z-index: 3;
    top:0;
    left: 50%;
    margin-left: 70px;
    z-index: 10;
    min-width: 100%;
    display: none;
}
.gamme_list li h1:before{
	content:'';
	position: absolute;
	display: block;
	width: 120px;
	height: 120px;
	left: -25px;
	top: -50px;
	z-index: -1;
}
.gamme_list li.gamme_1 h1:before{
	background: #7f706f;
}
.gamme_list li.gamme_2 h1:before{
	background: #d58166;
}
.gamme_list li.gamme_3 h1:before{
	background: #a7acb1;
}
.gamme_list li.gamme_4 h1:before{
	background: #ffba93;
}
.gamme_list li.gamme_5 h1:before{
	background: #c0b8b4;
}
.gamme_list li.gamme_6 h1:before{
	background: #d6d6d6;
}
.gamme_list li.gamme_rat h1:before{
	background: #c2c1c0;
}
.gamme_list li h1:after{
	position: absolute;
	font-weight: 200;
	font-size: 0.7em;
	top:-20px;
	left: 0;
}
.gamme_list li.gamme_1 h1:after{
	content:'BRUT';
}
.gamme_list li.gamme_2 h1:after{
	content:'DEMI-SEC';
}
.gamme_list li.gamme_3 h1:after{
	content:'BRUT';
}
.gamme_list li.gamme_4 h1:after{
	content:'ROSE';
}
.gamme_list li.gamme_5 h1:after{
	content:'BLANC DE BLANCS';
}
.gamme_list li.gamme_6 h1:after{
	content:'BRUT';
}
.gamme_list li.gamme_rat h1:after{
	content:'';
}
.gamme_list li .shadow{
	display: block;
	width: 479px;
	height: 108px;
	background: url(img/shadow_gamme.png)center center no-repeat;
	display:none;
	bottom: -50px;
	left: 8px;
}
/*
===========================
FIN-GAMME
===========================
*/
/*
===========================
CONTACT
===========================
*/
.contact{
	padding: 85px 0 120px 0;
}
.contact_left{
	width: 391px;
	margin-right: 10px;
	float: left;
}
.contact_right{
	width: 603px;
	float: left;
	padding-left: 20px;
	padding-top: 60px;
}
.contact_right h3{
	font-size: 1.3em;
    font-weight: 200;
    padding-bottom: 5px;
}
.contact_right h2{
	font-size: 2.5em;
    font-weight: 800;
    padding-bottom: 30px;
}
#nom,
#prenom,
#email,
#message,
#sujet {
	width: 100%;
	margin: 0 0;
	height: 35px;
	border: solid 1px rgba(0,0,0,0.1);
	padding: 10px;
	background-color: rgba(255,255,255,0.4);
	font-size: 13px;
}
#message{
	height: 200px;
	resize: none;
}
.nom,
.prenom,
.email,
.message{
	font-weight: 200;
	font-size: 1.2em;
}
.btn-contact{
	width: 150px;
	height: 40px;
	font-size: 1.2em;
	background-color: #c0b8b4;
	border: none;
	margin-top: 20px;

	transition: all ease 1s;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
}
.btn-contact:hover{
	cursor: pointer;
	box-shadow: 20px 20px 30px rgba(0,0,0,0.3);
	
	transition: all ease 1s;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
}
.red{
	color: #d36868;
}
.error-message{
	color: #d36868;
	font-size: 10px;
	margin-left: 2px;
}
.envoi{
	color: #70a86f;
	margin: 10px 0;
}
/*
===========================
FIN-CONTACT
===========================
*/
/*
===========================
MAP
===========================
*/
#google-container {
  position: relative;
  width: 100%;
  height: 640px;
  background-color: #e7eaf0;
}
#cd-google-map {
  position: relative;
}
#cd-google-map address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1em 1em;
  background-color: rgba(211, 104, 104, 0.9);
  color: white;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 768px) {
  #cd-google-map address {
    font-size: 15px;
    font-size: 0.9375rem;
    text-align: center;
  }
}

#cd-zoom-in, #cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: #2f2d2f;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("img/cd-icon-controller.svg");
}
.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover {
  background-color: #747474;
}

#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}

#cd-zoom-out {
  background-position: 50% -32px;
}

.content_map h1.firstHeading{
	color:#2f2d2f;
}

/*
===========================
FIN-MAP
===========================
*/
/*
===========================
DEVIS
===========================
*/
.wrapper-devis h3{
	font-size: 1.3em;
    font-weight: 200;
    padding-bottom: 5px;
    text-transform: uppercase;
}
.wrapper-devis h2{
	font-size: 2.5em;
    font-weight: 800;
    padding-bottom: 65px;
    text-transform: uppercase;    
}
#adressepostale,
#departement,
#ville,
#telephone{
	width: 100%;
	margin: 0 0;
	height: 35px;
	border: solid 1px rgba(0,0,0,0.1);
	padding: 10px;
	background-color: rgba(255,255,255,0.4);
	font-size: 13px;
}
#departement{
	width: 95%;
}
.adressepostale,
.departement,
.ville,
.telephone{
	font-weight: 200;
	font-size: 1.2em;
}
h4{
	font-size: 1.3em;
    font-weight: 600;
    padding-bottom: 5px;
    text-transform: uppercase;
    margin-top: 6px;
}
#demie_bouteille_historique,
#bouteille_historique,
#magnum_historique,

#demie_bouteille_allegorique,
#bouteille_allegorique,
#magnum_allegorique,

#demie_bouteille_emblematique,
#bouteille_emblematique,
#magnum_emblematique,
#jero_emblematique,

#demie_bouteille_esthetique,
#bouteille_esthetique,
#magnum_esthetique,

#demie_bouteille_mythique,
#bouteille_mythique,
#magnum_mythique,

#demie_bouteille_millesime,
#bouteille_millesime,
#magnum_millesime,

#demie_bouteille_ratafia,
#bouteille_ratafia,
#magnum_ratafia{
	width: 95%;
	margin: 0 0;
	height: 35px;
	border: solid 1px rgba(0,0,0,0.1);
	padding: 10px;
	background-color: rgba(255,255,255,0.4);
	font-size: 13px;
}

.demie_bouteille_historique,
.bouteille_historique,
.magnum_historique,

.demie_bouteille_allegorique,
.bouteille_allegorique,
.magnum_allegorique,

.demie_bouteille_emblematique,
.bouteille_emblematique,
.magnum_emblematique,
.jero_emblematique,

.demie_bouteille_esthetique,
.bouteille_esthetique,
.magnum_esthetique,

.demie_bouteille_mythique,
.bouteille_mythique,
.magnum_mythique,

.demie_bouteille_millesime,
.bouteille_millesime,
.magnum_millesime,

.demie_bouteille_ratafia,
.bouteille_ratafia,
.magnum_ratafia{
	font-weight: 200;
	font-size: 1.2em;
}
.col33{
	width: 33%;
	float: left;
}
.margin-top{
	margin-top: 50px;
}
.margin-bottom{
	margin-bottom: 50px;
}
/*
===========================
FIN DEVIS
===========================
*/
/*
===========================
FOOTER
===========================
*/
.top_footer{
	background: #d5d5d5;
}
.top_footer .container{
	padding-top: 48px;
	background: url(img/top_footer.png)top center no-repeat;
}
.wrapper_left_footer,
.wrapper_mid_footer,
.wrapper_right_footer{
	width: 33.3%;
	float: left;
	padding: 55px 0 80px 0;
}


.inner_left_footer,
.inner_mid_footer{
	display: table;
	margin: auto;
}
.inner_left_footer h4,
.inner_mid_footer h4{
	color:#6b6b6b;
	padding-bottom: 10px;
	font-weight: 600;
	font-size: 0.9em;
}
.inner_left_footer p,
.inner_left_footer li a,
.inner_mid_footer p,
.inner_mid_footer li a {
	color:#8e8e8e;
	line-height: 1.4em;
	font-size: 0.8em;
}
.inner_left_footer li a{
	transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
}
.inner_left_footer li a:hover{
	color:#575757;
}
.inner_left_footer li {
	padding-bottom: 3px;
}
.inner_mid_footer p{
	padding-bottom: 35px;
}
.inner_mid_footer ul li{
	float: left;
}
.footer_fb{
	width: 16px;
	height: 16px;
	background: url(img/logo-facebook-footer.png);
	display: block;
	padding-right: 16px;
	background-size: 100%;
}
.footer_insta{
	width: 16px;
	height: 16px;
	background: url(img/logo-instagram-footer.png);
	display: block;
	padding-left: 16px;
	margin-left: 5px;
	background-size: 100%;
}


.inner_right_footer{
	padding-top: 40px;
}
.devis{
	display:table;
	margin: auto;
	padding: 30px 35px;
	background: #ededed;
	color:#8e8e8e;
	z-index: 2;
	font-weight: 600;
}
.devis:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	box-shadow:0 5px 15px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.2);
	-ms-box-shadow:0 5px 15px rgba(0,0,0,0.2);
	-moz-box-shadow:0 5px 15px rgba(0,0,0,0.2);
	-o-box-shadow:0 5px 15px rgba(0,0,0,0.2);
	opacity:0;
	
	transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	-webkit-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	-ms-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.devis:hover:before{
	opacity:1;
}
.mentions{
	text-align: center;
	color:#8e8e8e;
	padding-bottom: 35px;
	font-size: 0.8em;
}
.mentions a{
	color:#8e8e8e;
	
	transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
}
.mentions a:hover{
	color:#575757;
}
.circle{
	background:#989898;
  	border-radius:50%;
  	-webkit-border-radius:50%;
  	-moz-border-radius:50%;
  	-o-border-radius:50%;
  	-ms-border-radius:50%;
  	width:3px;
  	height:3px;
  	display: inline-block;
  	margin: 0 7px 2px 5px;
}

.bottom_footer{
	background: #8e8e8e;
	padding: 20px 0;
}
.bottom_footer p{
	color:#656565;
	text-align: center;
	font-size: 0.8em;
	letter-spacing: 2px;
}
/*
===========================
FIN-FOOTER
===========================
*/

/*
===========================
DEBUT-ACTUALITES
===========================
*/
.padding-top{
	padding-top: 180px;
}
.margin-right{
	margin-right: 43px;
}
.wrap_actu{
	width: 490px;
	float: left;
}
.actu h3{
    font-size: 1.3em;
    font-weight: 200;
    padding-bottom: 5px;
    text-transform: uppercase;
}
.actu h2{
    font-size: 2.5em;
    font-weight: 800;
    padding-bottom: 30px;
    text-transform: uppercase;
    min-height: 100px;
}
.wrap_photo-actu{
	width: 490px;
	min-height: 157px;
	margin: 20px 0;
}
.thumb-actu{
	margin-right: 13px;
}
.btn-article{
    background: #fff none repeat scroll 0 0;
    color: #8e8e8e;
    display: table;
    font-weight: 600;
    padding: 20px 25px;
    z-index: 2;
    text-transform: uppercase;
    margin-bottom: 50px;
    cursor: pointer;
}
.btn-article:hover{
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.btn-article a{
    color: #8e8e8e;
    width: 100%;
    height: 100%;
}
.wrap_actu-pages{
	width: 100%;
	min-height: 600px;
}
.wrap_photo-actu-pages{
	width: 100%;
	min-height: 157px;
	margin: 20px 0;
}
.wrap_photo-actu-pages a img:first-child{
	margin-bottom: 20px;
}
.thumb-actu-pages{
	margin: 0 20px;
}
/*
===========================
FIN-ACTUALITES
===========================
*/
.zone-mentions{
	width: 100%;
}
.zone-mentions h2{
	padding-bottom: 30px;
	font-size: 2.5em;
	font-weight: 800;
}
.zone-mentions h3{
	font-size: 1.3em;
    font-weight: 200;
    padding-bottom: 5px;
}
.zone-mentions a{
	color: #3f3c3c;
}
.zone-mentions a:hover{
	text-decoration: underline;
}




/*
===========================
MODIF CLIENTS
===========================
*/
.spe_devis_gamme{
	position: absolute;
	right: 0;
	top: 110px;
}
.infoplus{
	margin-top: 20px;
	color: #777777;
}



@media screen and (max-width: 1540px){
	.wrapper_welcome{
		left: -60px;
	}
}
@media screen and (max-width: 1320px){
	#btle_right li h1{
		margin-left: -150px;
	}
	.inner_index .inner_left{
		width: 65%;
	}
	.inner_index .inner_right{
		width: 31%;
	}
	.wrapper_link_index_contact{
		right: 135px;
	}
	.wrapper_link_index_cuvees{
		right: 0px;
		top: 100px;
	}
	.hi_container{
		width: 83%;
	}
	.wrapper_welcome{
		left: -20px;
	}
}
@media screen and (max-width: 1200px){
	.spe_devis_gamme{
		right: 40px;
	}
	.gamme{
		width: 100%;
	}
	#gamme_list{
		margin-left: -65%;
	}
	.col50{
		width: 35%;
	}
}
@media screen and (max-width: 1170px){
	.wrapper_link_index_contact{
		right: 65px;
	}
	.wrapper_welcome{
		width: 480px;
	}
	.wrapper_welcome p{
		padding: 50px;
	}
}
@media screen and (max-width: 1065px){
	.contact_left{
		width: 40%;
	}
	.contact_right{
		width: 58%;
	}
}
@media screen and (max-width: 1000px){
	.wrapper_link_index_actu{
		right: 440px;
	}
}
@media screen and (max-width: 1100px) {
	.btlle_desc{
		width: 255px;
	}
	.btlle_comp{
		width: 296px;
	}
}
@media screen and (max-width: 880px){
	.btlle_img{
		width: 50%;
	}
	.btlle_comp{
		width: 50%;
	}
	.btlle_desc{
		width: 100%;
	}
}
@media screen and (max-width: 1024px) {
	.container{
		width: 90%;
	}
	.wrap_actu{
		width: 45%;
	}
	#magnum_historique,
	#magnum_allegorique,
	#magnum_emblematique,
	#magnum_esthetique,
	#magnum_mythique,
	#magnum_millesime,{
		width: 100%;
	}
	.wrapper_list li{
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 980px) {
	#btle_left li{
		margin-bottom: 50px;
	}
	#btle_left .gamme_3 h1{
		margin-left: -150px;
	}
	#btle_right .gamme_4 h1{
		margin-left: 70px;
	}
	.wrapper_welcome{
		width: 350px;
		height: 390px;
		top: 60px;
	}
	#departement{
		width: 100%;
	}
	.wrapper-devis h4{
		font-size: 0.9em;
	}
	.demie_bouteille_historique,
	.bouteille_historique,
	.magnum_historique,
	
	.demie_bouteille_allegorique,
	.bouteille_allegorique,
	.magnum_allegorique,
	
	.demie_bouteille_emblematique,
	.bouteille_emblematique,
	.magnum_emblematique,
	.jero_emblematique,
	
	.demie_bouteille_esthetique,
	.bouteille_esthetique,
	.magnum_esthetique,
	
	.demie_bouteille_mythique,
	.bouteille_mythique,
	.magnum_mythique,
	
	.demie_bouteille_millesime,
	.bouteille_millesime,
	.magnum_millesime,
	
	.demie_bouteille_ratafia,
	.bouteille_ratafia,
	.magnum_ratafia{
		font-size: 1em;
	}
	.wrapper-devis h4{
		margin-top: 20px; 
	}
}
@media screen and (max-width: 860px){
	.prehome .map{
		background-size: 100%;
		width: 537px;
	}
	.prehome .map .marqueur{
		left: 279px;
		bottom: 150px;
		height: 76px;
	}
}
@media screen and (max-width: 830px){
	.wrapper_link_index_actu{
		right: 310px;
	}
	.wrapper_link_index_contact {
	    right: 0;
	}
	.wrap_actu{
		width: 100%;
	}
}
@media screen and (max-width: 800px){
	.col50{
		width: 100%;
		float: none;
	}
	.gamme_list ul li{
		float: left;
	}
	#gamme_list{
		margin-left: 0px;
		left: 0%;
	}
	.gamme_rat{
		margin-bottom: 50px;
	}
	#btle_left .gamme_3 h1, #btle_right .gamme_5 h1{
		margin-left: 80px;
	}
}
@media screen and (max-width: 730px){
	.wrapper_welcome{
		top: 180px;
		width: 90%;
		height: auto;
	}
	.wrapper_link_index_cuvees {
	    right: 320px;
	    top: 10px;
	}
	.wrapper_link_index_contact {
	    top: 10px;
	}
	.wrapper_link_index_actu{
		right: 150px;
	}
	.col50_devis{
		width: 100%;
	}
	.col25_devis{
		width: 50%;
	}
}
@media screen and (max-width: 650px){
	.wrapper_link_index_cuvees{
		right: 280px;
	}
	.wrapper_link_index{
		width: 200px;
		height: 100px;
	}
	.box_shadow {
	    height: 100px;
	    line-height: 16px;
	    padding: 32px 0;
	    width: 100px;
	}
	.icon {
	    height: 100px;
	    width: 100px;
	}
	.icon_hovered{
		right: 100px;
	}
	.legal{
		width: 80%;
		margin-bottom: 50px;
	}
	.demie_bouteille_historique,
	.bouteille_historique,
	.magnum_historique,
	.demie_bouteille_allegorique,
	.bouteille_allegorique,
	.magnum_allegorique,
	.demie_bouteille_emblematique,
	.bouteille_emblematique,
	.magnum_emblematique,
	.demie_bouteille_esthetique,
	.bouteille_esthetique,
	.magnum_esthetique,
	.demie_bouteille_mythique,
	.bouteille_mythique,
	.magnum_mythique,
	.demie_bouteille_millesime,
	.bouteille_millesime,
	.magnum_millesime,
	.adressepostale,
	.departement,
	.ville,
	.telephone,
	.nom,
	.prenom,
	.email,
	.message,
	.btn-contact{
		font-size: 1em;
	}
	.inner_right_footer a{
		font-size: 10px;
	}
}
@media screen and (max-width: 860px){
	.prehome .map{
		width: 450px;
	}
	.prehome .map .marqueur{
		height: 90px;
		left: 233px;
	}
}
@media screen and (max-width: 580px){
	.wrap_photo-actu-pages{
		width: 100%;
		min-height: 380px;
	}
	.wrap_photo-actu-pages a img:last-child{
		margin-top: 20px;
	}
	.btlle, .gamme{
		overflow: hidden;
	}
}
@media screen and (max-width: 560px){
	.wrapper_link_index_actu{
		top: 570px;
		right: 50px;
	}
	.wrapper_link_index_cuvees {
	    right: 230px;
	}
	.contact_left{
		width: 100%;
	}
	.contact_right{
		width: 100%;
	}
	.cd-primary-nav a {
	    padding: 0.1em 1em 0.5em;
	}
}
@media screen and (max-width: 500px){
	.wrapper_welcome{
		top: 140px;
		width: 100%;
		left: -10px;
	}
	.wrapper_link_index_cuvees {
	    right: 200px;
	}
	.prehome .map{
		width: 370px;
	}
	.prehome .map .marqueur{
		height: 100px;
		left: 189px;
	}
	.gamme_list li.gamme_2 h1 {
		left: -100px;
	}
	.gamme_list ul li{
		width: 33%;
		margin-bottom: 50px;
	}
	.col25_devis{
		width: 100%;
	}
}
@media screen and (max-width: 400px){
	.wrapper_link_index{
		display: none;
	}
	.wrapper_welcome{
		top: 50px;
	}
}
@media screen and (max-width: 375px){
	.thumb-actu-pages{
		margin: 20px 0;
	}
	.wrap_photo-actu-pages{
		min-height: 550px;
	}
	#btle_left ul li{
		width: 50%;
	}
	#btle_right ul li{
		width: 50%; 
	}
	#btle_right li{
		margin-bottom: 50px;
	}
}


