*{
	outline:	0;
	margin: 	0;
	padding: 	0;
	border: 	0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html{
	height: 100%;
}
		
body{
	font-family: serif;
	text-align: center;
	font-family: 'Playfair Display', serif;
}

header {
	background-color: rgb(255, 255, 255);
	color:black;
}

.text-blk {
	color: black;
}

#nos-vins .packshot .text-contenance{
	font-family: 'Nunito Sans', sans-serif;
}

.logo-header {
	width: 35vw;
    position: absolute;
	left: 8vw;
    bottom: 10vh;
}

.ctn-header {
    height: 100vh;
    background-image: url(/img/header/fond-paul-bur-header.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ctn-header .triptyque-bottles {
	position: absolute;
	width: fit-content;
	right: 8vw;
	bottom: 1vh;
	display: flex;
	flex-direction: row;
}

.ctn-header .triptyque-bottles img {
    width: 6vw;
    margin: 0 .5vw;
}

@media screen and (max-width: 1050px){
	.logo-header {
		width: 65vw;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 10vh;
		bottom: inherit;
	}

	.ctn-header .triptyque-bottles {
		left: 50%;
		transform: translateX(-50%);
		bottom: 12vh;
	}

	.ctn-header .triptyque-bottles img {
		width: 16vw;
	}

	section .hld{
		flex-direction: column !important;
	}
}


@media screen and (max-width: 680px){
	.logo-header {
		width: 90vw;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 16vh;
		bottom: inherit;
	}

	.ctn-header .triptyque-bottles img {
		width: 20vw;
	}
}

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

	.ctn-header .triptyque-bottles img {
		width: 16vw;
	}
}

#menu{

	position: fixed;
	top:0;
	right:0;
	left:0;
	z-index: 900;
	height: 50px;
	background: transparent;

	color:rgb(3, 3, 3);
	font-size:12px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding-right: 4em;
	
	padding-top: 1.5em;
	
	text-align: right;
	cursor: pointer;

	transition: background 0.4s ease-in-out;
}

#menu.darker{
	background: #dddddd;
	color: black;
}

#menu.darker::after{
	content: "";
	position: absolute;
	right: 1.5em;
	top: 1.5em;
	width: 1.4em;
	height: 0.15em;
	background: black;
	 box-shadow: 
    0 0.45em 0 0 black,
    0 0.9em 0 0 black;
}

#menu::after{
	content: "";
	position: absolute;
	right: 1.5em;
	top: 1.5em;
	width: 1.4em;
	height: 0.15em;
	background: rgb(0, 0, 0);
	 box-shadow: 
    0 0.45em 0 0 rgb(0, 0, 0),
    0 0.9em 0 0 rgb(0, 0, 0);
}

nav{
	position: fixed;
	z-index: 1000;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	
	pointer-events:none;
	overflow: hidden;
	
}

nav .overlay{
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	background: rgba(17, 19, 23, 0.5);

	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

nav.active{
	pointer-events:inherit;
	
}

nav.active .overlay{
	opacity: 1;
	left:0;
}

nav .content{
	position: absolute;
	background: #19A596;
	top:0;
	right:0;
	bottom:0;
	width: auto;
	text-align: left;
	padding: 4em 2em 0;

	transform:translate3d(100%, 0, 0);
	transition:transform 0.3s ease-in-out;

	-webkit-transform:translate3d(100%, 0, 0);
	transition:-webkit-transform 0.3s ease-in-out;
}

nav.active .content{
	-webkit-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0);
}

nav .content a{
	font-size:0.9em;
	letter-spacing: 2px;
	display: block;
	color:white;
	text-decoration: none;
	text-transform: uppercase;
	padding: 1.2em 1em;
	border-bottom:1px solid #2C7E72;

	min-width: 250px;

	transition:opacity 0.4s ease-in-out;
}

nav .content a:hover{
	opacity: 0.6;
}

nav .content a:last-child{
	border:0;
}

footer{
	padding: 1em 0;
}

footer a{
	font-size:0.9em;
	color:inherit;
	text-decoration: none;
	margin:0 0.6em; 
}


footer a:hover{
	opacity: 0.5;
}

footer .icos{
	padding: 1em 0;
}

footer .icos img{
	height: 28px;
	display: inline-block;	
	vertical-align: middle;
	-webkit-filter:invert(80%);
	filter:invert(80%);
}

footer .legal{
	display: block;
	font-family: sans-serif;
	letter-spacing: 2px;
	font-size:0.8em;
	padding: 1em 0;
	
	color:gray;
}


.hero{
	position: relative;
	height: 100%;
	min-height: 40px;
	margin: 0;
}

.hero .overlay{
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.ctn-header::after{
	content:'Découvrir';
	position: absolute;
	display: block;
	bottom: 2%;
	left: 50%;
	width: 200px;
	margin-left: -100px;
	height: 50px;
	text-align: center;
	text-transform: uppercase;
	font-size:0.8em;
	letter-spacing: 2px;
	background: url(/img/arrow-scroll.svg) no-repeat;
	background-position: 50% 100%;
	background-size: 20px;
	z-index:10;
}

#presentation, #contact{
	padding: 8em 0; 
}

#presentation i{
	font-size: 0.8em;
}

h3{
	text-transform: uppercase;
	font-weight: normal;
	font-size: 1.5em;
	line-height: 1.75em;
	letter-spacing: 2px;
	margin: 0 auto 0 auto;
	width: 60%;
}

h4{
	text-transform: uppercase;
	font-weight: normal;
	font-size: 1.25em;
	line-height: 1.75em;
	letter-spacing: 2px;
}

h3::after{
	content:'';
	display: block;
	width: 100%;
	height: 2px;
	background: #158C7F;
	margin:1em auto;
}

p{
	font-size:16px;
	line-height: 1.5em;
	width: 60%;
	margin:0 auto 1em auto;
	letter-spacing: 0.5px;
}

.minipack {
    height: 50vh;
    margin:0 50px;
}

.minipack.l{
	margin-left: 0;
}

.minipack.r{
	margin-right: 0;
}

#presentation{
	padding-bottom: 0;
}

#presentation p{
	font-size: 1.4em;
}

.text-stylised {
	font-family: 'Dancing Script', cursive;
}

.p-stylised{
	font-size: 1.6em !important;
}

#presentation section h4,
#presentation section p{
	margin: 0;
	text-align: left;
	width: 100%;
	max-width: none;
}

#presentation section h4{
	font-size: 1.8em;
	color:rgb(199, 155, 95);
	margin-bottom: 1em;
	text-decoration: underline;
	text-underline-offset: 8px;
}

#presentation section p{
	margin-bottom: 1em;
	font-size:1.1em;
}

#presentation section{
	width: 100%;
	min-height: 200px;
	position: relative;
	font-size:16px;
	background: #ececec;
}

#presentation section:nth-of-type(1){
	background: #ececec;
}

#presentation section:nth-of-type(2){
	background: #f3f3f3;
}

#presentation section:nth-of-type(3){
	background: #e6e6e6;
}

#presentation section:nth-of-type(4){
	background: #f3f3f3;
}

#presentation section:nth-of-type(5){
	background: #f3f3f3;
}

#presentation section:nth-of-type(6){
	background: #e6e6e6;
}

#presentation section:nth-of-type(7){
	background: #ececec;
}

#presentation section:nth-of-type(8){
	background: #f3f3f3;
}


#presentation section .thumb{
	background-size: cover;
	background-position: 50%;
	width:40%;
	height: 100%;
	position: absolute;
}

#presentation section .content{
	margin-left: 43%;
	padding: 8em 4em 7em 4em;
	max-width: 48em;
	width: 57%;
}

#presentation section .content.no-thumb{
	margin-left: 0%;
	padding: 8em 4em 7em 4em;
	max-width: unset;
	width: 100%;
}

#presentation section:nth-child(even) .thumb{
	right:0;
}

#presentation section:nth-child(even) .content{
	margin-left:0;
	margin-right: 40%;
}


#nos-vins{
	background-color: #3E3E80;
	padding: 4em 0;
}

#nos-vins h3::after{
	background: #313165;
}

#nos-vins .packshot-container{
	display: flex;
	flex-direction: row;
	justify-content: center;
}
@media screen and (max-width: 860px){
    .title-stylised {
		font-size: 1.6em;
	}
	.hero::after{
	    box-shadow: 6px 0px 6px #4a4a4a;
    	background-color: #ffffffb2;
		border-radius: 3rem;
		background-position:50% 70%;
		padding: .8rem;
		font-size: 0.65em;
	}

	#nos-vins .packshot-container{
		flex-direction: column;
	}
	#nos-vins .packshot img {
		max-height: 70%;
	}
	#presentation p{
		font-size: 1.1em;
	}
}

#nos-vins .packshot{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 600px;
}

#nos-vins .packshot img{
	max-height: 80%;
	display: block;
	margin: 0 5rem 0 5rem;
}

#vins .infos{
	text-align: left;
}

#vins .infos span{
	margin-right: 5px;
	color: #F7D0BC;
}

#vins .infos li{
	list-style-type: none;
	margin-bottom: 3px;
}

#vins .infos > *{
	margin-bottom: 1em;
}

section .title-recipe{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4em 0 3em;
	background-color: white;
	color: #333;
}

#vins .hld,
#presentation .hld,
#recipes .hld{
	display: flex;
	flex-direction: row;
	align-items: center;
}

#vins:nth-of-type(odd) .hld,
#recipes:nth-of-type(odd) .hld{
	flex-direction: row;
}

#vins:nth-of-type(even) .hld,
#recipes:nth-of-type(even) .hld{
	flex-direction: row-reverse;
}

#vins .minipack,
#recipes .minipack{
	height: 65vh;
}

#vins .sub,
#recipes .sub{
	text-align: left;
}

#vins:nth-of-type(odd) .minipack,
#recipes:nth-of-type(odd) .minipack{
	margin-right: 65px;
}

#vins:nth-of-type(even) .minipack,
#recipes:nth-of-type(even) .minipack{
	margin-left: 50px;
}

#recipes span{
	margin-right: 5px;
	color: #BB4164;
}

#recipes .intitule{
	padding-top:.8em;
	padding-bottom:.3em;
}

#recipes .spt{
	text-align: left;
}

#recipes .spt ul{
	list-style-type: none;
}

#recipes .spt li{
	margin-bottom: 3px;
}

#recipes .spt > *{
	margin-bottom: 1em;
}


/* SMARTPHONES */	
@media only screen and (max-width:568px) {

	.no-mob{
		display: none;
	}

	.hero{
		background-image: inherit;
		background-size: cover;
	}

	body{
		background-position: right;
	}

	.hero h2{
		font-size:0.9em;
	}

	.hero .opacity{
		height: 250px;
	}

	h3, h4{
		font-size:1em;
		letter-spacing: 0px;
	}

	h3, p{
		padding: 0 2em;
		width: 100%;
	}

	#presentation, #contact, #nos-vins{
		padding: 2em 0; 
	}

	#presentation{
		padding-bottom: 0;
	}

	#presentation section:nth-of-type(1){
		margin-top: 2em;
	}

	#presentation section .thumb{
		width: 100%;
		height: 200px;
		display: block;
		position: relative;
	}

	#presentation section .content{
		margin: 0 !important;
		padding: 2em;
		width: 100%;
		max-width: none;
	}

	#presentation section .content h4,
	#presentation section .content p{
		padding: 0;
		width: 100%;
	}

	#nos-vins .packshot{
		flex-wrap: wrap;
		height: unset;
	}

	#nos-vins .packshot img{
		margin: 2em 1em;
		width: calc(100% / 2);
	}

	section .content.content.thumb,
	section .content.content.no-thumb{
		padding: 2em 20px 2em !important;
	}

	section .hld .minipack{
		margin: 0 0 2em !important;
	}

	label, legend, select{
		font-size:12px;
	}

	form .cnil{
		font-size:0.6em;

	}

	footer .legal{
		font-size: 0.8em;
		line-height: 1.4em;
		letter-spacing: 0;
	}
}

/*
		VARIATIONS
*/

.variant1 nav .content a{
	color:#1F262E;
	border-bottom-color: gainsboro;
}

.variant1 h1{
	font-size: 2em;
	color:#333;
}

.variant1 h2{
	font-size: 1.8em;
	color:#333;
}

.variant1 h3{
	color:#333;
}

.variant1 p{
	color:#333;
}

.variant1 #presentation, 
.variant1 nav .content{
	background: white;
}

.variant1 #presentation section p{
	color:black;
}

.variant1 #nos-vins{
	background: white;
}

.variant1 #presentation h3::after,
.variant1 #nos-vins h3::after{
	background-color: whitesmoke;
}


.variant1 #contact form{
	max-width: 80vw;
	margin: 0 auto;
}

@media only screen and (max-width:800px) {
	.variant1 #contact form{
		max-width: 80vw;
		margin: 0 auto;
	}
}

@media only screen and (max-width:600px) {
	.variant1 #contact form{
		max-width: 90vw;
		margin: 0 auto;
	}
}


.btn.spec{
	display: inline-block;
    background: #c42c5a;
    color: white;
    border: 2px solid #712a38;
    padding: 1em;
    margin-top: 1em;
    text-decoration: none;
}

.btn.spec:hover{
	border-color: white;
}


/* Filtre */

#filtre{
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	display: table;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000000;
}

#filtre .ask{
	display: table-cell;
	vertical-align: middle;
}

#filtre .ask hr{
	margin: 0;
	border:0;
}

#filtre .ask h3, 
#filtre .ask p{
	color: white;
	margin: 0 auto;
}

#filtre .ask p{
	color:#A4A4A4;
}

#filtre .ask h3::after{
	display: none;
}

#filtre .ask a.btn{
	display: inline-block;
	color:#FFF;
	text-decoration: none;
	font-size:34px;
	padding: 8px 16px;
	margin: 12px 12px;
	background-color: #52757F;
	border-radius: 2px;
}

#filtre .ask a.btn:hover{
	color:#52757F;
	background-color: white;
}

#filtre .ask p.smaller{
	font-size:0.75em;
	max-width: 450px;
}

#filtre .ask p.smaller a{
	color:#793079;
	display: block;
	margin: 0.5em auto;
}

#filtre .ask p.smaller a:hover{
	color:white;
}

.rgpd p{
	max-width: none;
	width: 100%;
	color:white;
	font-size: 0.9em;
	line-height: 1.4em;
	margin:1em auto;
}

.rgpd p a{
	color:white;
	text-decoration: underline;
}

.mentions{
	background:white;
	color:#222;
}

.mentions h3{
	color:#222;
	line-height: 1.1;
	margin-top: 2rem;
}

.mentions h3::after{
	background:whitesmoke;
}


p.status{
	color:white;
	text-align: center;
}

#contact form.contact .rgpd a {
	color: #a6a9e3 !important
}
