* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

footer, header, nav {
	display: block;
}
body {
	line-height: 1;
}

/* *****************************************************************
GENERAL
***************************************************************** */

body * {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;  
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Merienda', sans-serif;
    line-height: 1.5;
    font-size: 1.8rem; 
	background-color: #d7d7d7;
}

h1, h4 {
	font-family: 'Merienda', cursive;
	font-weight: bold;
} 

h1 {
	font-size: 3rem;
	margin: 3rem 0;
	text-align: center;
}

p {
	margin-bottom: 1.5rem;
}



/* *****************************************************************
HEADER
***************************************************************** */

header {
	padding: 3rem 0 2rem 0;
	background: linear-gradient(180deg, rgba(107,6,221,1) 0%, rgba(80,9,121,1) 35%, rgba(188,0,255,1) 100%);
}

.logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: white;
}

.logo strong, 
h1 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo img {
	width: 50%;
	margin: 1rem 0;
}

.logo strong {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 3rem;
}


/* *****************************************************************
NAV
***************************************************************** */

nav ul {
	list-style: none;
	text-align: center;
	margin-top: 3rem;
}

nav a {
	display: block;
	color: white;
	font-weight: bold;
	text-decoration: none;
	margin-left: 10rem;
	margin-right: 10rem;
	border-radius: 1em;
	box-shadow: 3px 3px 5px 0;
	padding: 1rem 2rem;
	background-color: rgba(188,0,255,1) 100%;
	border-bottom: 1px solid #8100ff;
	transition: all .7s linear;
}

nav a:hover, 
nav a:focus {
	background-color: #e3b8e9;
	color: black;
	border-radius: 1em;
}

nav a.active {
	background-color: #8100ff;
	color: black;
	border-radius: 2em;
}


/* *****************************************************************
MAIN
***************************************************************** */

main.container {
	padding: 2rem;
}

.img-left {
  float: left;
  margin-right: 1%;
  border-radius: 1em;
}

.img-right {
  float: right;
  margin-left: 2%;
  border-radius: 1em;
}

.construct{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.clear {
  clear: both;
}

/* *****************************************************************
SLIDER
***************************************************************** */

.slick-dotted.slick-slider {
	margin-bottom: 10rem;
}

.slick-next::before, 
.slick-prev::before {
	font-size: 4rem;
	color: #e3b8e9;
}

.slick-next {
	right: 3rem;
}

.slick-prev {
	left: 1rem;
	z-index:1;
}

.slick-dots {
	bottom: -3rem;
}

.slick-dots li button::before {
	font-size: 1.5rem;
	color: #4c4343;
	opacity: .5;
}

.slick-dots li.slick-active button::before {
	color: #5e0095;
}


/* *****************************************************************
PAGE BOUTIQUE
***************************************************************** */

.album {
		display: flex;
		flex-wrap:wrap;
		justify-content:space-around
	}

.album article {
	display: flex;
	justify-content: center;
	padding: 2rem 0;
}

.album figure{
	position: relative;
}

.album img{
	display: flex;
	flex-direction: row;
}

.album figcaption{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	background-color: rgba(76,67,67,.9);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	transition: .7s all;
}

.album figcaption span {
	font-size: 5rem;
	font-style: bold;
}

.album figcaption p {
	font-size: 1.5rem;
	font-style: italic;
}

.album figcaption::after{
	content:"";
	position: absolute;
	right: 3rem;
	left: 3rem;
	top: 3rem;
	bottom: 3rem;
	border: 4px solid white;
}

.album figure:hover figcaption{
	opacity: 1;
}

.paypal {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #4c4343;
	box-shadow: 2px 2px 2px silver;
	padding: 1rem 0;
	text-align: center;
	font-weight: bold;
	color: white;
	text-decoration: none;
	margin: 2rem;
	transition: .7s background-color;
}

.details:hover {
	background-color: #950000;
}

.details img {
	margin-right: 1rem;
	width: 3rem;
}

/* *****************************************************************
PAGE CONTACT
***************************************************************** */

form {
	background-color: #e3b8e9;
	padding: 2rem 5rem;
	margin: auto;
	margin-bottom: 2em;
}

form div {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

fieldset {
	flex-basis: 48%;
}

input, 
textarea {
	border: 1px solid #4c4343;
	border-radius: 5px;
	padding: 1rem;
	margin-bottom: 2rem;
}

label, 
input {
	display: block;
	position: relative;
}

input {
	width: 100%;
}

textarea {
	width: 100%;
	height: 130px;
}

form p {
	text-align: center;
}

input[type="submit"] {
	width: 80%;
	margin: 3rem auto 0 auto;
	border: none;
	background-color: #4c4343;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.6rem;
	letter-spacing: .3rem;
	padding: 1rem 3rem;
}

input[type="submit"]:hover {
	background-color: #5e0095;
}

.center{
	text-align: center;
}

.mandatory {
	text-align: center;
	font-size: 1.6rem;
	font-style: italic;
}

.mandatory abbr, 
label abbr {
  	color: #5e0095;
	font-size: 1.8rem;
	font-weight: bold;
}

label abbr {
	position: absolute;
	left: -1.5rem;
}

.mandatory abbr {
	margin: 0;
	vertical-align: middle;
}

.request {
	font-family: 'Merienda', cursive;
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	margin-top: 2rem;
}

/* *****************************************************************
FOOTER
***************************************************************** */

footer {
	background: linear-gradient(0deg, rgba(107,6,221,1) 0%, rgba(80,9,121,1) 35%, rgba(188,0,255,1) 100%);
	background-size: cover;
	color: white;
	font-size: 1.6rem;
}

footer .flex {
	padding: 2rem 0;
}

h4 {
	font-size: 1.8rem;
	padding-left: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px dashed #e3b8e9;
	margin-bottom: 1rem;
}

.reseaux {
	padding: 2rem;
	text-align: center;
}

.reseaux a {
	color: #e3b8e9;
	font-size: 2.5rem;
	text-decoration: none;
	margin: 1rem;
	transition: .7s color;
}

.reseaux a:hover {
	color: #5e0095;
}
	
.footer {
	padding: 2em;
	text-align: center;
	color: #fff;
	background-color: linear-gradient(180deg, rgba(107,6,221,1) 0%, rgba(80,9,121,1) 35%, rgba(188,0,255,1) 100%);
}

.footer img {
	width: 5%;
}

.footer a {
	color: white;
}

/* *****************************************************************
VERSION TABLET
***************************************************************** */
@media screen and (min-width: 760px){
	
	.logo img {
	width: 30%;
	margin: 1rem 0;
}
	
	nav ul{
		display: flex;
		align-items: center;
		justify-content: space-around;
		border: none;
		background-color: rgba(188,0,255,1) 100%;
	}
	
	nav a {
		margin: 0;
	}
	
	nav ul li a {
		border-bottom:none;
	}

	.flex {
		display:flex;
		justify-content:space-between;
		padding:2rem;
	}
	
	.galery {	
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	input[type="submit"] {
	width: 60%;
	}
	
	/*
	video {
		width: 80%;
	}
	*/
	
	.album {
		display: flex;
		flex-wrap:wrap;
		justify-content:space-around
	}

}


/* *****************************************************************
VERSION DESKTOP
***************************************************************** */
@media screen and (min-width: 1100px){
	
	.container {
		max-width:1200px;
		margin:0 auto;
	}
	
	header .container,
	main.container,
	footer .flex { 
		padding: 2rem 5rem;
	}

	header .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo {
		flex-direction: row;
		margin-left: 2rem;
	}
	
	.logo img {
		width: 100%;
		margin-right: 1rem;
	}
	
	nav ul {
		background-color: transparent;
		margin-top: 0;
	}
	
	nav a {
		margin: 0;
	}
	
	nav li {
		margin: 0 2rem;
	}
	
	.intro-img {
		width: 40%;
		float: right;	
		margin: 0 0 1rem 2rem;
	}
	
	input[type="submit"] {
	width: 40%;
	}
	
	form, /*video*/ {
		width: 70%;
	}
	
	.album {
		display: flex;
		flex-wrap:wrap;
		justify-content:space-around
	}
	
}