/* IMPORTING */

	/* Fonts */
@font-face {
    font-family: 'Milkshake';
    src: url('/Content/Fonts/Milkshake/Milkshake/Milkshake.ttf');
}
@font-face {
	font-family: 'Pompiere';
	src: url('/Content/Fonts/Pompiere/Pompiere-Regular.otf');
}

	/* Form */
@import url(/bootstrap/3.3.0/css/bootstrap.min.css);
											
											/* VARIABLES */

body {
  --camel: #A79660;
  --white: white;
  --black: #1E1B10;
  --box_shadow: #CCCCCC;
}
											
											/* HEADER */

										
.logo {
	height: 50px;
	width: 50px;
}

#navbar {
	width: 100vw;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: var(--black);
	font-family: 'Milkshake', arial, sans-serif;
}

.navbar_item {
	flex-grow: 1;
	color: var(--white);
	text-decoration: none;
	text-align: center;
	font-size: 20px;
	padding: 20px;
}

.navbar_item:hover {
    background-color: var(--white);
    color: var(--black);
}

.navbar_logo {
	flex-grow: 2;
	text-align: center;
	padding: 5px;
}
											
											/* HOME */

	/* BANNER SLOGAN */

#banner_homepage {
	width: 100vw;
	height: 85vh;
	background: url(/Content/Pictures/Header_HomePage.jpg);
	background-size: cover;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	text-align: center;
	letter-spacing: 1.5px;
}
	
.banner_homepage_title {
	width: 60vw;
	font-size: 45px;
	font-family: 'Milkshake', arial, sans-serif;
	color: var(--black);
	text-shadow: 2px 2px 3px var(--white);
}


.banner_homepage_subtitle {
	width: 75vw;
	font-size: 30px;
	font-family: 'Pompiere', arial, sans-serif;
	color: var(--black);
	margin-top: 30px;
	text-shadow: 1px 1px 2px var(--white);
}


	/* BOUNCING ARROW */
#arrow {
	display: flex;
	justify-content: center;
	flex-direction:row;
	padding-bottom: 20px;
	}

.bounce {
	-webkit-animation-name: bounce;
	-moz-animation-name: bounce;
	-o-animation-name: bounce;
	animation-name: bounce;
}
.animated{
	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-fill-mode:both;
	-webkit-animation-duration:2s;
	-moz-animation-duration:2s;
	-ms-animation-duration:2s;
	-o-animation-duration:2s;
	animation-duration:2s;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	40% {-webkit-transform: translateY(-30px);}
	60% {-webkit-transform: translateY(-15px);}
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-30px);}
	60% {-moz-transform: translateY(-15px);}
}

@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-30px);}
	60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

	/* SOCIAL */

.social-media-title {
	font-family: 'Pompiere', arial, sans-serif;
	font-weight: bold;
    color: var(--black);
	font-size: 16px;
}

#socialmedia {
	width: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	text-decoration: none;
	top: 200px;
	position:fixed;
	margin-left: 5px;
	z-index:5;
}

.fa-facebook {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;	
}

.fa-facebook:hover {
    background-color: #3d5b99;
	color: white;
}

.fa-youtube {
    padding:10px 12px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
}
.fa-youtube:hover {
    background-color: #e64a41;
	color: white;
}

.fa-instagram{
    padding:10px 12px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
}
.fa-instagram:hover {
    background-color: #125688;
	color: white;
}



											/* DESCRIPTION */
 
#mainlogo{
	display: flex;
	justify-content: center;
	flex-direction:column;
	align-items: center;
}
	
#line{
	margin: 40px;
	width: 12%;
	border-top: 2px var(--camel) solid;
}
	
#slogan {
	display: flex;
	justify-content: center;
	flex-direction:column;
	align-items: center;
}

.text  h2{
	font-family:'Pompiere', arial, sans-serif;
	font-size: 24px;
	color: var(--black);
	font-weight: bold;
}

.text h2 em {
	color: var(--camel);
}

#tastes{
	display: flex;
	justify-content: center;
	flex-direction:row;
	align-items: center;
}

.taste img{
	border-radius: 3px;
	width: 350px;
	height:350px;
	margin-right: 20px;
	margin-left: 20px;
}

.icontaste {
	display: flex;
	justify-content: center;
	flex-direction:row;
	align-items: center;
}

.leftslide img{
	height: 30px;
	width: 30px;
	cursor: pointer;
}

.rightslide img{
	height: 30px;
	width: 30px;
	cursor: pointer;
}

#titletaste{
	color: var(--camel);
	font-family: 'Milkshake', arial, sans-serif;
	font-size:32px;
}
	
#commenttaste{
	color: var(--black);
	font-family:'Pompiere', arial, sans-serif;
	font-size:16px;
	text-transform:uppercase;}

#buttontastes {
	display: flex;
	justify-content: center;
	align-items: center;}
	
.form-btn {
  display: inline-block;
  border-radius: 3px;
  background-color: var(--black);
  border: none;
  color: var(--white);
  font-family: 'Pompiere', arial, sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  padding:5px;
  width: 210px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin:auto;
    box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
    -webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
}


.form-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.form-btn span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.form-btn:hover span {
  padding-right: 25px;
}

.form-btn:hover span:after {
  opacity: 1;
  right: 0;
}

.form-btn:active{
    opacity: 0.9;
}
  
								/* DESCRIPTION_ASSOCIATIONS */
								
#associations {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.association img {
	border-radius: 3px;
	width: 290px;
	height: 377.21px;
}

.association {
	width: 300px;
	padding: 5px;
	box-shadow: 3px 3px 10px var(--box_shadow);
}

#centerassociation {
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	align-items:center;
	border-radius: 3px;
	width: 250px;
	height: 250px;
	background-color: var(--camel);
	margin-left: 50px;
	margin-right: 50px;
	margin-bottom: 20px;
	margin-top: 20px;
}

#titleassociation{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--camel);
	font-family: 'Milkshake', arial, sans-serif;
	font-size:24px;
}
	
#commentassociation {
	color: var(--black);
	font-family:'Pompiere', arial, sans-serif;
	font-size:16px;
	text-transform:uppercase;
}

#titlecenterassociation{
	color: var(--white);
	font-family:'Pompiere', arial, sans-serif;
	font-size: 22px;
	font-style: bold;
	text-transform:uppercase;
}

#buttonassociations {
	display: flex;
	justify-content: center;
	align-items: center;}

#buttonassociation {
	background-color: var(--white);
	color: var(--black);
}

#Xlove {
	font-size: 12px;
	font-family:'Pompiere', arial, sans-serif;
}

										/* NEWSLETTER */

.contact-form {
	width: 100vw;
	height: 70vh;
	position: absolute;
	background-color: var(--camel);
	/*background: url(/Content/Pictures/popcorncover2.jpg);*/
	background-size: cover;
	-webkit-clip-path: polygon(0 0, 100% 19%, 100% 100%, 0% 100%);
	margin-top: 60px;
}
										
										
#contact{
    padding:100px 0 10px;
  }

.contact-text{
	margin:45px auto;
}

.mail-message-area{
	width:100%;
	padding:0 15px;
}

.mail-message{
	width: 100%;
	background:rgba(255,255,255, 0.8) !important;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s;
	margin:0 auto;
	border-radius: 0;
}

.not-visible-message{
	height:0px;
	opacity: 0;
}

.visible-message{
	height:auto;
	opacity: 1;
	margin:25px auto 0;
}

#firstname {
	margin-top: 100px;}

#inner {
	display: flex;
	flex-direction:row;
	z-index:10}
	
#Gardonstitle{
	float: right;
	margin-top: 40px;
	margin-right:5px;
	z-index:5;
	color: var(--camel);
	font: 24px "Pompiere", sans-serif;
	text-transform:uppercase;
	margin-bottom: 450px;
}


#submit {
	margin-left: 40px;
}

/* Input Styles */

.form{
    width: 50%;
	margin-left: 40px;
    padding: 5px;
    background:#f8f8f8;
    border:1px solid rgba(0, 0, 0, 0.075);
    color:#727272 !important;
    font-size:18px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
	font-family: 'Pompiere', arial, sans-serif;
	margin-bottom: 10px;
	margin-top: 10px;
}

.form:hover{
   border:1px solid; 
	border-color:var(--camel);
}

.form:focus{
   color: white;
   outline: none;
   border:1px solid;
	border-color: var(--camel);
}

.textarea{
   height: 200px;
   max-height: 200px;
   max-width: 100vw;
}
  
center{
  margin-top:330px;
}

input {
    position: relative;

}	

										/* GO BACK BUTTON */


#go_back {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  border: none;
  outline: none;
  padding: 15px;
  z-index: 75;
}

.go_back_button img{
	width: 30px;
	height: 30px;
}

										/* PRODUCTS */

#banner_products {
	width: 100vw;
	height: 85vh;
	background: url(/Content/Pictures/Header_Products1.jpg);
	background-size: cover;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	text-align: center;
	letter-spacing: 1.5px;
}

.banner_products_title {
	width: 60vw;
	font-size: 45px;
	font-family: 'Milkshake', arial, sans-serif;
	color: var(--black);
	text-shadow: 2px 2px 3px var(--white);
}


.banner_products_subtitle {
	width: 74vw;
	font-size: 30px;
	font-family: 'Pompiere', arial, sans-serif;
	color: var(--black);
	margin-top: 30px;
	text-shadow: 1px 1px 2px var(--white);
}

#popcorn_sweet {
	background-color: var(--white);
	box-shadow: 3px 3px 10px var(--box_shadow); 
	width: 48%;
	margin-top: 10px;
	margin-bottom: 30px;
}

#popcorn_salty {
	background-color: var(--white);
	box-shadow: 3px 3px 10px var(--box_shadow); 
	width: 48%;
	margin-top: 10px;
	margin-bottom: 30px;
}

.product_main_title_salty {
	color: var(--camel);
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 36px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	width: 60%;
	padding: 5px;
}

.product_main_title_sweet {
	color: var(--camel);
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 36px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	width: 60%;
	padding: 5px;
}

.product_container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
}

.product_gallery {
 	display: flex;
 	flex-wrap: wrap;
  	justify-content: center;
}

.product_gallery-item {
	width: 175px;
  	height: 140px;
  	margin-right: 10px;
  	margin-right: 10px;
  	color: var(--white);
  	font-weight: bold;
  	margin-bottom: 50px;
}

.product_gallery-item img {
  	position: absolute;
  	width: 175px;
  	height: 140px;
}

.text-wrapper {
  	position: relative;
  	width: 175px;
  	height: 140px;
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	text-align: center;
  	color: var(--white);
  	opacity: 0;
}

.text-wrapper:hover {
	transition: all 0.8s ease;
  	background: var(--camel);
  	opacity: 1;
}

.product_item_name {
  	font-size: 16px;
  	font-family: 'Pompiere', arial, sans-serif;
  	font-weight: bold;
  	text-align: center;
  	color: var(--black);
  	margin-bottom: 5px;
}

.product_item_title {
	color: var(--black);
	font-family: 'Pompiere', arial, sans-serif;
	font-size: 14px;
	text-align: left;
	margin-bottom: auto;
	margin-top: auto;
}

										/* ASSOCIATIONS */

#banner_associations {
	width: 100vw;
	height: 85vh;
	background: url(/Content/Pictures/Header_Associations.jpg);
	background-size: cover;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	text-align: center;
	letter-spacing: 1.5px;
}

.banner_associations_title {
	width: 60vw;
	font-size: 45px;
	font-family: 'Milkshake', arial, sans-serif;
	color: var(--black);
	text-shadow: 2px 2px 3px var(--white);
}


.banner_associations_subtitle {
	width: 74vw;
	font-size: 30px;
	font-family: 'Pompiere', arial, sans-serif;
	color: var(--white);
	margin-top: 30px;
	text-shadow: 1px 1px 2px var(--white);
}

.button {
    background-color: var(--camel);
    border: none;
    color: var(--white);
    font-family: 'Milkshake';
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    margin: 20px;
}

.button1 {
    background-color: var(--white); 
    color: var(--black); 
    border: 2px solid var(--camel);
}

.button1:hover {
    background-color: var(--camel);
    color: var(--white);
}

.button_choice {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#drinks {
	margin-left: auto;
	margin-right: auto; 
	margin-top: 20px;
	width: 85%;
	box-shadow: 3px 3px 10px var(--box_shadow);
}

#receipts { 
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 30px;
	width: 85%;
	box-shadow: 3px 3px 10px var(--box_shadow);
}

.associations_main_title_receipts {
	color: var(--camel);
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 36px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	width: 60%;
	padding: 5px;
}

.associations_main_title_drinks {
	color: var(--camel);
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 36px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	width: 60%;
	padding: 5px;
}

.associations_gallery {
 	display: flex;
 	flex-wrap: wrap;
  	flex-direction: row;
	justify-content: center;
}

.associations_gallery-item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 300px;
  	height: 450px;
  	margin: 20px;
  	box-shadow: 3px 3px 10px var(--box_shadow);
}

.associations_gallery-item img {
  	width: 300px;
}

.associations_description {
  	width: 300px;
  	padding: 5px;
  	font-size: 20px;
  	font-family: 'Milkshake', arial, sans-serif;
  	text-align: center;
  	color: var(--white);
  	background-color: var(--camel);
}

.associations_details {
  	width: 250px;
  	height: 30px;
  	margin-top: 20px;
  	font-size: 16px;
  	font-family: 'Pompiere', arial, sans-serif;
  	color: var(--black);
}


													/*CONTACTS*/

	/* BANNER SLOGAN */

#banner_contact {
	width: 100vw;
	height: 85vh;
	background: url(/Content/Pictures/Header_Contact.jpg);
	background-size: cover;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	text-align: center;
	letter-spacing: 1.5px;
}

.banner_contact_title {
	width: 60vw;
	font-size: 45px;
	font-family: 'Milkshake', arial, sans-serif;
	color: var(--black);
	text-shadow: 2px 2px 3px var(--white);
}


.banner_contact_subtitle {
	width: 75vw;
	font-size: 30px;
	font-family: 'Pompiere', arial, sans-serif;
	color: var(--black);
	margin-top: 30px;
	text-shadow: 1px 1px 2px var(--white);
}

								/* MAP */

.map{
	margin-top:5px;
	padding-right:50 px;
	min-width: 100%;
	right: 100px;
}

.map h2{
	text-align: center;
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 25px;
	color: var(--camel);
	line-height:20px;
	max-height:100px;
	min-height:20px;
	vertical-align:middle;
}

.adresse {
	text-align: center;
	font-family: 'Pompiere', arial, sans-serif;
	font-size: 20px;
	color: var(--black);
}
  
.overlay {
   background:transparent; 
   position:absolute; 
   width:1080px;
   height:600px; 
   top:-150px;
   margin-top:600px;
}
 
								/* HEURES D'OUVERTURE */

.opening{
	margin-top:5px;
	padding-right:50 px;
	min-width: 100%;
	right: 100px;
}

.opening h2{
	text-align: center;
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 25px;
	color: var(--camel);
	line-height:20px;
	max-height:180px;
	min-height:20px;
	vertical-align:middle;
}

.ouverture {
	text-align: center;
	font-family: 'Pompiere', arial, sans-serif;
	font-size: 20px;
	color: var(--black);
}													


								/* NEWSLETTER */

.News2{
	margin-top:30px;
	padding-right:50 px;
	min-width: 100%;
	right: 100px;
}

.News2 h2{
	text-align: center;
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 25px;
	color: var(--white);
	line-height:20px;
	max-height:160px;
	min-height:20px;
	vertical-align:middle;
}

.newscontent2{
	text-align: center;
	font-family: 'Pompiere', arial, sans-serif;
	color: var(--black);
	font-size: 20px;
}
	
.contact-form2 {
	width: 100%;
	height: 600px;
	position: absolute;
	background: var(--camel);
	background-size: cover;
	/*-webkit-clip-path: polygon(0 19%, 100% 0%, 100% 81%, 0% 100%);*/
	z-index:10;
	margin-top: 0px;
}

#contact2{
    padding:100px 0 10px;
  }

.contact-text2{
    margin:45px auto;
  }

.mail-message-area2{
    width:100%;
    padding:0 15px;
  }

.mail-message2{
    width: 100%;
    background:rgba(255,255,255, 0.8) !important;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
    margin:0 auto;
    border-radius: 0;
  }

.not-visible-message2{
    height:0px;
    opacity: 0;
  }

.visible-message2{
    height:auto;
    opacity: 1;
    margin:25px auto 0;
  }

#firstname2 {
	margin-top: 20px;
}

#inner2 {
	margin: 0 auto;
	text-align: center;
	z-index:10;
}


										/* RESEAUX SOCIAUX */

.reseauxsociaux2{
	margin-top:620px;
	padding-right:50 px;
	min-width: 100%;
	right: 100px;
	margin-bottom: 30px;
}

.reseauxsociaux2 h2{
	text-align: center;
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 25px;
	color: var(--camel);
	line-height:20px;
	max-height:180px;
	min-height:20px;
	vertical-align:middle;
}

.social2 {
	text-align: center;
	font-family: 'Pompiere', arial, sans-serif;
	font-size: 20px;
	color: var(--black);
}
	
.social-icons2 p > a:hover{
    color: #d9d9d9;
    text-decoration:  underline;
}

.social-icons2 ul {
    padding:0;
    list-style: none;
	text-decoration: none;
}

.social-icons2{
	z-index : 0;
}

#socialmedia2 {
    width: 60px;
    display: flex;
	justify-content: center;
	flex-direction:row;
    margin: 0 auto;
	text-decoration: none;
	z-index:0;
}

.social-icons2 li {
    vertical-align: top;
    margin-right: 50px;
}

.social-icons2 a {
    color: black;
    text-decoration: none;
}
	
										/* HISTORY */

#banner_history {
	width: 100vw;
	height: 85vh;
	background: url(/Content/Pictures/Header_History.jpg);
	background-size: cover;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	text-align: center;
	letter-spacing: 1.5px;
}

.banner_history_title {
	width: 60vw;
	font-size: 45px;
	font-family: 'Milkshake', arial, sans-serif;
	color: var(--black);
	text-shadow: 2px 2px 3px var(--white);
}


.banner_history_subtitle {
	width: 75vw;
	font-size: 30px;
	font-family: 'Pompiere', arial, sans-serif;
	color: var(--black);
	margin-top: 30px;
	text-shadow: 1px 1px 2px var(--white);
}


#story {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 25px;
}

.founder_description {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 400px;
	padding: 20px;
	margin: 30px;
	text-align: center;
	font-size: 18px;
	font-family: 'Pompiere', arial, sans-serif;
	font-weight: bold;
}

.founder_description img {
	width: 150px;
	height: 167.385px;
	margin-bottom: 50px
}

.founder {
	padding: 5px;
	box-shadow: 3px 3px 10px var(--box_shadow);
}

.founder img {
	width: 160px;
	height: 240px;
}

#process {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.process img{
	max-width: 100%;
    height: auto;
    width: auto\9;
}

.process_title {
	color: var(--camel);
	font-size: 36px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	width: 60%;
	padding: 20px;
	font-family: 'Milkshake', arial, sans-serif;
}

#team {
	margin-bottom: 50px;
	margin-top: 50px;
}

.team_gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
}

.team_member {
	padding: 5px;
	box-shadow: 3px 3px 10px var(--box_shadow);
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 10px;
}

.team_member img {
	width: 160px;
	height: 240px;
}

#team_member_3 img {
	filter: blur(5px);
}

#team_member_4 img {
	filter: blur(5px);
}

										/* CONFIRMATION */

#confirmation_container {
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

.confirmation_text{
	font-size: 24px;
	font-family: 'Pompiere', arial, sans-serif;
	font-weight: bold;
	text-align: center;
}

.confirmation_title{
	font-size: 36px;
	font-family: 'Milkshake', arial, sans-serif;
	letter-spacing: 1.5px;
	text-align: center;
}

#confirmation_container img {
	width: 150px;
	height: 167.385px;
	margin-top: 30px;
	margin-bottom: 30px;
}

										/* EVENTS */

#banner_event {
	width: 100vw;
	height: 85vh;
	background: url(/Content/Pictures/Header_Event.jpg);
	background-size: cover;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	text-align: center;
	letter-spacing: 1.5px;
}

.banner_event_title {
	width: 60vw;
	font-size: 45px;
	font-family: 'Milkshake', arial, sans-serif;
	color: var(--black);
	text-shadow: 2px 2px 3px var(--white);
}


.banner_event_subtitle {
	width: 75vw;
	font-size: 30px;
	font-family: 'Pompiere', arial, sans-serif;
	color: var(--black);
	margin-top: 30px;
	text-shadow: 1px 1px 2px var(--white);
}

#evenements_wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction:column;}

#evenements_box{
	width: 90vw;
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	border-radius: 2px;
	border-color: var(--blak);
	height: 300px;}

#evenements_comment{
	display: flex;
	flex-direction: column;
	justify-content: center;}
	
#evenements_boutevent{
	display: flex;
	flex-direction: row;
	padding-top: 10px;
	padding-left: 15px;}


#evenements_box h2{
	margin-left: 10px;
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 24px;
	color: var(--camel);}

#evenements_box h3{
	margin-left: 10px;
	font-family: "Pompiere", sans-serif;
	font-size: 16px;
	color: var(--black);
}

#evenements_imgeventdroite{
	height: 300px;
	width: 50vw;
	-webkit-clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 20% 100%);}
	
#evenements_imgeventgauche{
	height: 300px;
	width: 50vw;
	-webkit-clip-path: polygon(0% 0%, 60% 0%, 80% 100%, 0% 100%);}

#evenements_confiance{
	width: 100vw;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items :center;
	background-color: var(--camel);}

#evenements_confiance h2{
	font-family: 'Milkshake', arial, sans-serif;
	font-size: 28px;
	color: var(--white);
	text-align:center;}

#logoconfiance{
	width: 80vw;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;}

#logoconfiance img{
	max-height: 100px;
	max-width: 200px;
	margin: 20px;}
	
#evenements_boutconfiance {
	margin-bottom : 15px;
	margin-top : 15px;}

#evenements_boutconfiance .form-btn{
	width: 300px;}

#borderfoot {
	height: 10px;}

	
	
										/* FOOTER */

a {
  text-decoration: none;
}

.flex-rw {
	position:relative;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

footer {
  background: var(--white);
  margin-top: auto;
  width: 100%;
}

#footer-list-top {
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 25px;
}

.footer-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 30vw;
	margin-bottom: 30px;
}

.footer-list-title {
  padding: 10px 0 5px 0;
  color: var(--camel);
  font: 16px "Pompiere", sans-serif;
  font-weight: bold;
}
.footer-list-item {
  font: 12px "Pompiere", sans-serif;
}

.footer-social-section {
  width: 100%;
  align-items: center;
  justify-content: space-around;
  position: relative;
  margin-top: 5px;
}
.footer-social-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 10px;
  width: calc(100% - 20px);
}
.footer-social-overlap {
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
.footer-social-connect {
  display: flex;
  align-items: center;
  font-family: 'Pompiere', sans-serif;
  font-size:16px;
  color: var(--black);
  z-index: 10;
}
.footer-social-small {
  font-size: 0.6em;
  padding: 0px 20px;
}
.footer-social-overlap > a {
  font-size: 3em;
}
.footer-social-overlap > a:not(:first-child) {
  margin-left: 0.38em;
}
.footer-bottom-section {
  width: 100%;
  padding: 10px;
  border-top: 1px solid var(--camel);
  margin-top: 10px;
}
.footer-bottom-section > div:first-child {
  margin-right: auto;
}
.footer-bottom-wrapper {
 font-family: 'Pompiere', sans-serif;
 font-size:10px;
 color: var(--black);
}
.footer-address {
  display: inline;
  font-style: normal;
}

										/* ADJUSTMENTS */



@media screen and (max-width: 50em) {
	#navbar {
		flex-direction: column;
	}
	.navbar_item {
		border: 1px white solid;
		width: 100%;
		padding: 10px;
	}
	.logo {
		height: 150px;
		width: 150px;
	}
	#banner {
		height: 400px;
	}
	.banner_homepage_title{
		font-size: 30px;
	}
	.banner_homepage_subtitle {
		font-size: 20px;
	}
	.banner_history_title{
		font-size: 30px;
	}
	.banner_history_subtitle {
		font-size: 20px;
	}
	.banner_event_title{
		font-size: 30px;
	}
	.banner_event_subtitle {
		font-size: 20px;
	}
	.banner_products_title{
		font-size: 30px;
	}
	.banner_products_subtitle {
		font-size: 20px;
	}
	.banner_associations_title{
		font-size: 30px;
	}
	.banner_associations_subtitle {
		font-size: 20px;
	}
	.banner_contact_title{
		font-size: 30px;
	}
	.banner_contact_subtitle {
		font-size: 20px;
	}
	.social-media {
		display: none;
	}
	.social-media-title {
		display: none;
	}
	.social-icon {
		display: none;
	}
	.taste img{
		width: 250px;
		height: 250px;
		margin-left: 10px;
		margin-right: 10px;
	}
	.leftslide img{
		height: 15px;
		width: 15px;
	}
	.rightslide img{
		height: 15px;
		width: 15px;
	}
	#titletaste {
		font-size:24px;
	}
	#commenttaste {
		font-size:12px;
	}
	.association img {
		width: 200px;
		height: 260px;
	}
	.association {
		width: 210px;
	}
	#titleassociation {
		font-size:20px;
	}
	#commentassociation {
		font-size:14px;
	}
	#Xlove {
		font-size: 10px;
	}
	#Gardonstitle{
		font-size: 18px;
	}
	.form{
    	width: 80%;
    }
    .product_main_title_salty {
		font-size: 28px;
		width: 60%;
	}

	.product_main_title_sweet {
		font-size: 28px;
		width: 60%;
	}
	.product_gallery-item {
		width: 150px;
  		height: 120px;
  		margin: 20px;
	}
	.product_gallery-item img {
  		width: 150px;
  		height: 120px;
  	}
  	.text-wrapper {
  		width: 150px;
  		height: 120px;
	}
	.product_item_name {
  		font-size: 14px;
	}
	.product_item_title {
		font-size: 12px;
	}
	.img_event {
		display: none;
	}
	#evenements_box h2{
		font-size: 18px;
	}
	#evenements_box h3{
		font-size: 12px;
	}
}

@media only screen and (max-width: 768px) {
  .footer-social-connect {
    font-size: 2.5em
  }
  .footer-social-overlap > a {
    font-size: 2.24em
  }
}
@media only screen and (max-width: 568px) {
  .footer-social-section {
    justify-content: center
  }
  .footer-social-section::after {
    top: 25%
  }
  .footer-social-connect {
    margin-bottom: 10px;
    padding: 0 10px
  }
  .footer-social-overlap {
    display: flex;
    justify-content: center;
  }
  .footer-social-icons-wrapper {
    width: 100%;
    padding: 0
  }
  .footer-social-overlap > a:not(:first-child) {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .footer-social-overlap > a {
    margin: auto
  }
  .footer-social-overlap > a:not(:first-child) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 320px) {
  .footer-social-connect {
    font-size: 2.4em
  }
  .footer-social-overlap > a {
    font-size: 2.24em
  }
}