@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600&display=swap');

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

:root {
	--vertC: #b2d33c; /* rgba(180, 211, 54, 1); */
	--vertF: #255a4c; /* rgba(37, 90, 76, 1); */
	--gris: #757575;
	--lato: 'Lato', sans-serif;
	--play: 'Playfair Display', serif;
}

/*
 * GLOBAL
 */
body {
	margin: auto;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 12pt;
	line-height: 20pt;
	color: var(--gris);
	font-family: var(--lato);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	margin-bottom: 40px;
	font-family: var(--play);
	font-weight: 600;
	color: var(--vertF);
}

h1, h2.h1 {
	font-size: 28pt;
	line-height: 34pt;
}

.content {
	position: relative;
	width: 1200px;
	margin: auto;
	padding-top: 40px;
	padding-bottom: 40px;
}

p {
	margin: 0;
	padding: 0;
	font-weight: 300;
}

p, p strong {
	color: #000;
	line-height: 22pt;
}

p a, ul.classic a {
	color: var(--vertF);
}

p a:hover, p a:focus, ul.classic a:hover, ul.classic a:focus {
	color: var(--vertC);
}

.classic li {
	color: #000;
	font-weight: 300;
	list-style: none;
}

.classic li::before {
	content: 'arrow_right';
	color: var(--vertF);
	font-family: 'Material Icons';
	font-size: 24px;
	vertical-align: middle;
	margin-right: 5px;
}

.wrapper {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: center;
}

.center {
	text-align: center;
}

/*
 * TOP BAR
 */
#topBar {
	width: 100%;
	height: 107px;
	box-shadow: 0 10px 15px -5px rgba(0, 0, 0, .2);
	position: relative;
	z-index: 1000;
}

#topBar .content {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	gap: 50px;
}

#logoName {
	width: 250px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	color: inherit;
	text-decoration: none;
	border: 0;
	order: 1;
}

.logo {
	width: 100px;
	height: 107px;
	background: url("images/logo_header.jpg") center no-repeat;
	background-size: 100%;
}

#logoName .name {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-family: var(--play);
	font-weight: 600;
	color: var(--vertF);
	font-size: 20pt;
	line-height: 22pt;
}

/*
 * MENU
 */
#close, #boutonMenu {
	display: none;
}

nav {
	display: flex;
	gap: 40px;
	align-items: center;
	order: 2;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	height: 100%;
	width: auto;
	gap: 20px;
	align-items: center;
}

nav ul li a {
	display: flex;
	align-items: center;
	height: 40px;
	padding-left: 15px;
	padding-right: 15px;
	text-decoration: none;
	color: var(--vertF);
	border: 0;
	letter-spacing: 1px;
	font-size: 10pt;
	transition: all .4s ease;
}

/*nav ul li a:hover, nav ul li a:focus, */nav ul li a.actif {
	font-weight: 900;
}

#shortcuts {
	display: flex;
	align-items: center;
	gap: 20px;
	right: 0;
	position: absolute;
	order: 3;
}

#shortcuts a {
	
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 0;
	transition: all .4s ease;
}

#shortcuts a:first-of-type {
	width: 40px;
	height: 40px;
	background: var(--vertC);
	color: #FFF;
}

#shortcuts a:first-of-type:hover, #shortcuts a:first-of-type:focus {
	background: var(--vertF);
	color: var(--vertC);
}

#shortcuts a:last-of-type {
	width: 35px;
	height: 35px;
	border: 5px solid #FFF;
}

#shortcuts a:last-of-type img {
	width: 25px;
	height: 25px;
	border-radius: 50%;
}

#shortcuts a:last-of-type:hover, #shortcuts a:last-of-type:focus {
	transform: rotateZ(360deg);
	/*border-color: rgba(37, 90, 76, .4);*/
}

#cursorBar {
	width: 100%;
	height: 7px;
	background: rgba(255, 255, 255, .5); /*rgba(37, 90, 76, .3);*/
	backdrop-filter: blur(5px);
	position: relative;
}

#floatingBar {
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	background: var(--vertC);
}
/*
 * BACKGROUND
 */
#background {
	width: 100%;
	height: calc(80vh - 100px);
	position: relative;
	overflow-x: hidden;
}

.legal {
	background: url("images/divers.jpg") center no-repeat;
	background-size: cover;
}

.erreur {
	background: url("images/erreur.jpg") center no-repeat;
	background-size: cover;
}

#background .content {
	display: flex;
	height: 100%;
	align-items: center;
	padding: 0;
}

#background .content h1 {
	display: flex;
	width: 100%;
	max-width: 450px;
	height: 100%;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .2);
	backdrop-filter: blur(3px);
}

#slider {
	display: flex;
	gap: 0;
	flex-wrap: nowrap;
	margin: 0;
	list-style: none;
	padding: 0;
	height: 100%;
	position: relative;
	left: 0;
}

#slider li {
	min-width: 100%;
	height: 100%;
	position: relative;
}

#slider li .content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	/*box-shadow: 0 15px 25px -10px rgba(0, 0, 0, .2);*/
}

#slider .text {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: rgba(255, 255, 255, .2);
	backdrop-filter: blur(3px);
	width: 100%;
	max-width: 450px;
	padding: 40px;
	height: 100%;
}

#slider li a {
	width: 200px;
	height: 50px;
	background: var(--vertC);
	color: #FFF;
	text-decoration: none;
	/*border: 0;*/
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 15px -5px rgba(0, 0, 0, .15);
	transition: all .4s ease;
}

#slider li a:hover, #slider li a:focus {
	background: var(--vertF);
}

#slider li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .15);
	z-index: 0;
	width: 100%;
	height: 100%;
}

#slider h2, #background h1 {
	font-size: 38pt !important;
	line-height: 48pt !important;
	text-align: center;
	color: #FFF;
	text-shadow: 0 5px 5px rgba(0, 0, 0, .35);
	margin-bottom: 40px;
}

#background h1 {
	margin-bottom: 0;
}

.entretien {
	background: url("images/home.jpg") center no-repeat;
	background-size: cover;
}

.amenagement {
	background: url("images/amenagement.jpg") center no-repeat;
	background-size: cover;
}

.piscine {
	background: url("images/piscine.jpg") center no-repeat;
	background-size: cover;
}

.elagage {
	background: url("images/elagage_eucalyptus.jpg") center no-repeat;
	background-size: cover;
}

.services {
	background: url("images/embellissement.jpg") center no-repeat;
	background-size: cover;
} 

.galerie {
	background: var(--vertF);
	height: auto !important;
}

#background.galerie .content {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

#background.galerie .text {
	width: 100%;
	max-width: 450px;
}

#background.galerie h1 {
	margin-bottom: 40px;
	text-shadow: none;
	background: none;
	display: flex;
	justify-content: flex-start;
}

.galerie p {
	color: #FFF;
}

/*#background .content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
}

#background .text {
	width: 45%;
	padding: 40px;
	background: rgba(255, 255, 255, .7);
	/*top: 0;
	right: 0;
	position: absolute;*/
	
	/*backdrop-filter: blur(3px);
	border-radius: 10px;
	box-shadow: 0 25px 15px -10px rgba(0, 0, 0, .2);
}

#background .content p, #background .content h2 {

}

#background .content h2 {
	font-size: 28pt;
	line-height: 34pt;
}*/

#presentation {
	background: var(--vertF);
	width: 100%;
}

#presentation .content {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: -60px;
}

.atout {
	width: 360px;
	color: #FFF;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.atout h3, .atout h4, .atout p, .atout strong {
	color: #FFF;
}

.atout p {
	display: none;
	margin-top: 10px;
}

.atout h3, .atout h4 {
	font-size: 16pt;
	margin-bottom: 10px;
	text-align: center;
}

.atout span {
	margin: auto;
	background: var(--vertC);
	color: #FFF;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 25px 0px rgba(0, 0, 0, .4);
}

.atout > span {
	margin-bottom: 5px;
}

.atout h4 + span {
	/*margin-left: auto;
	margin-right: 0;*/
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, .075);
	color: #FFF;
	cursor: pointer;
	box-shadow: none;
	transition: all .4s ease;
}

.atout h4 + span:hover, .atout h4 + span:focus {
	background: #FFF;
	color: var(--vertF);
}

.atout h4 + span.off {
	transform: rotateZ(180deg);
}

/*
 * MAIN
 */
p + h2.h1, p + h2, p + h3 {
	margin-top: 40px;
}

main .cta {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	height: 50px;
	margin: auto;
	max-width: 250px;
	padding-left: 15px;
	padding-right: 15px;
	border: 1px solid var(--vertF);
	color: var(--vertF);
	transition: all .4s ease;
}

main .cta:hover, main .cta:focus {
	background: var(--vertF);
	color: #FFF;
}

.wrapper img {
	opacity: 0;
}

.wrapper:nth-of-type(odd) img {
	order: 1;
}

.wrapper:nth-of-type(odd) .text {
	order: 2;
}

.wrapper + .wrapper {
	margin-top: 40px;
}

.wrapper:nth-of-type(even) img {
	order: 2;
}

.wrapper:nth-of-type(even) .text {
	order: 1;
}

/*
 * À PROPOS
 */
#apropos {
	background: #EDEDED;
	margin-top: 60px;
}

#apropos .wrapper {
	margin-top: -100px;
	align-items: stretch;
}

#apropos .stat {
	width: 100%;
	max-width: 360px;
	padding: 40px;
	background: var(--vertC);
	color: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	padding-top: 60px;
}

.stat p {
	color: #FFF;
	font-weight: 400;
}

.stat p strong {
	color: var(--vertF);
}

.stat p span {
	vertical-align: middle;
}

#apropos .number {
	font-size: 54pt;
}

#apropos .number::before {
	content: '+';
}

#apropos .text {
	width: calc(100% - 420px);
	position: relative;
	z-index: 100 !important;
	background: var(--vertF);
}

.title {
	display: flex;
	align-items: center;
	font-size: 18pt;
	height: 50px;
	font-weight: 400;
	color: #FFF;
	background: var(--vertC);
	position: absolute;
	top: 20px;
	left: -20px;
	padding-left: 20px;
	padding-right: 20px;
	letter-spacing: 1px;
}

.title::before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	background: rgba(130, 171, 4, 1);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1 !important;
	transform-origin: bottom left;
	transform: rotateZ(30deg);
}

.toKnow {
	width: 100%;
	background: var(--vertF);
	display: flex;
	align-items: center;
	padding: 40px;
	padding-top: 100px;
	gap: 20px;
}

.toKnow h4 {
	font-size: 16pt;
	color: #FFF;
	margin-bottom: 40px;
}

.toKnow p, .toKnow p strong {
	color: #FFF;
}

.toKnow span:first-child {
	font-family: 'Material Icons';
	content: 'compost';
	color: var(--vertC);
	font-size: 100px;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
}

.devis {
	background: rgba(37, 90, 76, .15);
}

/*
 * PRESTATIONS ET SERVICES
 */
.wrapper.prestations {
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
}
.presta {
	position: relative;
	width: 100%;
	max-width: 360px;
}

/*.presta:first-of-type, .presta:nth-of-type(2) {
	width: calc((100% - 60px) / 2);
	max-width: calc((100% - 60px) / 2);
}*/

.presta .toKnow {
	flex-direction: column;
	gap: 20px;
}

/*.presta .toKnow span {
	font-size: 48px;
	width: auto;
	height: auto;
}*/

.presta .toKnow {
	background: #EDEDED;
	padding-top: 30px;
}

.presta .title {
	background: var(--vertF);
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	min-height: 50px;
	height: auto;
	max-width: 95%;
}

.presta .title span {
	color: var(--vertC);
	font-size: 24px;
	margin-right: 7px;
	vertical-align: middle;
}

.presta .toKnow p, .presta .toKnow p strong {
	color: #000;
}

.presta .title::before {
	background: rgba(7, 60, 46, 1);
}

.presta .thumb {
	max-width: 100%;
}

.presta .thumb img {
	width: 100%;
	max-width: 600px;
	height: auto;
	opacity: 1;
}

.presta:hover .thumb img, .presta:focus .thumb img {
	transform: scale(1.1);
}

/*
 * AVIS
 */
.reviews {
	width: 100%;
	overflow: hidden;
}

.carouselContent {
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: nowrap !important;
	justify-content: flex-start;
	margin-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;
	gap: 40px;
}

.navigation {
	position: absolute;
	top: 50%;
	margin-top: -15px;
	width: 30px;
	height: 30px;
	color: var(--vertF);
	background: #FFF;
	display: flex;
	align-items: center;
	cursor: pointer;
	z-index: 1000;
	transition: all .4s ease;
}

.navigation:hover, .navigation:focus {
	color: var(--vertC);
}

.goPrev {
	left: 0;
	right: auto;
	justify-content: flex-start;
}

.goNext {
	right: 0;
	left: auto;
	justify-content: flex-end;
}

.review.carouselElement {
	width: 100%;
	max-width: 360px;
	min-width: 360px;
	text-align: center;
}

.review img {
	opacity: 1;
	width: 50px !important;
	height: 50px !important;
}

.auteur strong {
	color: var(--vertF);
	font-size: 12pt;
	display: block;
}

.auteur .date {
	font-size: 10pt;
	text-align: center;
	width: 100%;
	color: #BBB;
}

.review .stars {
	width: 100%;
	color: #F3AC47;
}

/*
 * BLOG / ARTICLES
 */
.wrapper.articles {
	margin-top: 40px;
	justify-content: center;
}

.article {
	width: 100%;
	max-width: 360px;
	background: #EDEDED;
	padding-bottom: 30px;
}

.article:hover img, .article:focus img {
	transform: scale(1.1);
}

.article .thumb {
	width: 100%;
	min-width: 100%;
	height: 200px;
	margin-bottom: 20px;
	border: 0;
	text-decoration: none;
}

.article .thumb img {
	width: 100%;
	min-width: 360px;
	height: auto;
	opacity: 1;
}

.article h3 {
	width: 100%;
	text-align: center;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 20px;
}

.article p {
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	margin-bottom: 20px;
}
/*
 * GALERIE
 */
.wrapper.photos {
	justify-content: center;
	flex-wrap: wrap;
}

.thumb {
	width: 100%;
	max-width: 300px;
	/*--ratio: calc(300px / 200px);*/
	height: 200px;
	/*max-height: calc(100% * var(--ratio) );*/
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thumb img {
	width: 500px;
	height: auto;
	min-height: 200px;
	transition: transform .4s ease;
}

.thumb:hover img, .thumb:focus img {
	transform: scale(1.1);
}

/*
 * CONTACT
 */
#contactPage {
	width: 100%;
	display: flex;
	align-items: stretch;
	gap: 0;
	justify-content: space-between;
	height: auto;
}

#left {
	background: url("images/marines-contact.jpg") center no-repeat;
	background-size: cover;
}

#left, #right {
	width: 50%;
	min-height: calc(100vh - 107px);
}

#right {
	background: var(--vertF);
	padding: 40px;
}

#right h1, #right p, #right p strong {
	color: #FFF;
}

form {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 20px;
}

form * {
	outline: 0;
}

input[type="text"] {
	width: calc((100% - 40px) / 2);
	height: 50px;
	border: 0;
	background: transparent;
	border-bottom: 2px solid rgba(255, 255, 255, .2);
	padding-left: 15px;
	padding-right: 15px;
	font-family: var(--lato);
	font-size: 12pt;
	font-weight: 300;
	color: #FFF;
	transition: all .4s ease;
}

textarea {
	width: 100%;
	height: 120px;
	padding: 15px;
	background: transparent;
	font-family: var(--lato);
	font-size: 12pt;
	font-weight: 300;
	color: #FFF;
	border: 0;
	border-bottom: 2px solid rgba(255, 255, 255, .2);
	transition: all .4s ease;
}

input[type="text"]:hover, input[type="text"]:focus, textarea:hover, textarea:focus {
	border-color: var(--vertC);
}

input[type="text"]::placeholder, textarea::placeholder {
	color: rgba(255, 255, 255, .4);
	font-family: var(--lato);
	font-weight: 300;
}

label {
	color: #FFF;
	font-weight: 300;
}

label a {
	color: #FFF;
	font-weight: 300;
}

label a:hover, label a:focus {
	color: var(--vertC);
}

#boutonForm {
	width: 100%;
	text-align: center;
}

#boutonForm strong {
	color: var(--vertC);
}

input[type="submit"] {
	width: 160px;
	height: 50px;
	border: 1px solid #FFF;
	color: #FFF;
	font-family: var(--lato);
	font-size: 12pt;
	font-weight: 300;
	background: transparent;
	cursor: pointer;
	transition: all .4s ease;
}

input[type="submit"]:hover, input[type="submit"]:focus {
	background: var(--vertC);
	color: #FFF;
	border-color: var(--vertC);
}

/*
 * FOOTER
 */
footer {
	background: #FFF;
	text-align: center;
}

footer .logo {
	margin: auto;
}

footer h6 {
	font-size: 20pt;
	margin-bottom: 10px;
}

footer h6 + p {
	color: var(--vertF);
	font-size: 10pt;
	font-weight: 400;
	letter-spacing: 1px;
}

footer .wrapper {
	align-items: flex-start;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(37, 90, 76, .2);
	margin-bottom: 40px;
}

footer .bloc {
	width: 100%;
	max-width: 360px;
	text-align: left;
}

footer .bloc:first-of-type {
	text-align: center;
}

footer h3 {
	font-size: 16pt;
}

footer a {
	font-size: 12pt;
	color: #000;
	text-decoration: none;
	font-weight: 300;
}

footer a:hover, footer a:focus {
	text-decoration: underline;
	color: var(--vertC);
}

footer .content > p:last-child, footer .content > p:last-child a {
	font-size: 10pt;
}

@media only screen and (max-width: 1200px) {
	.content {
		width: 100%;
		padding-left: 25px;
		padding-right: 25px;
	}
	
	#topBar .content {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#background {
		min-height: calc(100vh - 100px);
	}
	
	/*#background .content {
		justify-content: center;
	}*/
	/*#background .text {
		width: 75%;
	}*/
	
	#topBar .content {
		gap: 0;
	}
	
	#logoName {
		max-width: 180px;
		gap: 5px;
		order: 1;
	}
	
	nav, #cursorBar, #floatingBar {
		display: none;
	}
	
	#shortcuts {
		/*right: 20px;*/
		gap: 15px;
		order: 2;
		position: absolute;
		right: 80px;
	}
	
	#boutonMenu {
		color: var(--vertF);
		width: 50px;
		height: 50px;
		font-size: 24pt;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		order: 3;
		position: absolute;
		right: 20px;
	}
	
	nav {
		position: fixed;
		width: 80%;
		max-width: 400px;
		top: 0;
		right: 0;
		z-index: 5000;
		background: var(--vertF);
		box-shadow: -15px 0 15px -10px rgba(0, 0, 0, .3);
		height: 100vh;
	}
	
	nav ul {
		flex-direction: column;
		margin-top: 100px;
	}
	
	nav ul li a {
		color: #FFF;
		height: 44px;
		border-bottom: 4px solid transparent;
	}
	
	nav ul li a.actif, nav ul li a:hover, nav ul li a:focus {
		border-bottom: 4px solid var(--vertC);
	}
	
	#close {
		position: absolute;
		top: 20px;
		right: 20px;
		color: #FFF;
		font-size: 28pt;
		cursor: pointer;
		display: block;
		transition: all .4s ease;
	}
	
	#close:hover, #close:focus {
		color: var(--vertC);
	}
	
	/*#background .content h2 {
		font-size: 24pt;
		line-height: 30pt;
	}
	
	#background .text {
		padding: 25px;
	}*/
	
	#background .content {
		width: 100%;
	}
	
	#background h1 {
		width: 100%;
		max-width: 100% !important;
		height: auto !important;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	#slider .text {
		height: auto;
		width: 100%;
		max-width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	#slider h2, #background h1 {
		font-size: 26pt !important;
		line-height: 36pt !important;
	}
	
	#background.galerie {
		height: auto;
		min-height: auto;
	}
	
	#background.galerie .content {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	#background.galerie h1 {
		padding: 0;
	}
	
	#presentation .content {
		justify-content: center;
	}
	
	.atout {
		width: 100%;
		max-width: 400px;
	}
	
	main h1, main h2.h1 {
		font-size: 22pt;
		line-height: 30pt;
	}
	
	.wrapper {
		flex-wrap: wrap;
	}
	
	.wrapper img {
		width: 100%;
		max-width: 450px;
		height: auto;
		margin: auto;
	}
	
	.wrapper:nth-of-type(even) img {
		order: 1;
		background: red;
	}

	.wrapper:nth-of-type(even) .text {
		order: 2;
	}
	#apropos .wrapper {
		justify-content: center;
		flex-direction: column;
		gap: 60px;
		margin-top: 0px;
	}
	#apropos .stat {
		margin: auto;
		margin-top: -100px;
	}
	#apropos .text {
		width: 100%;
	}
	.toKnow {
		flex-direction: column;
		padding-top: 90px;
	}
	.title {
		left: -10px;
		top: 15px;
		font-size: 16pt;
	}
	
	.wrapper.prestations {
		gap: 40px;
	}
	.presta:first-of-type, .presta:nth-of-type(2) {
		width: 100%;
		max-width: 360px;
	}
	
	.carouselContent {
		overflow-x: auto;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.review.carouselElement {
		width: 100%;
		max-width: 360px;
		min-width: 100%;
		text-align: center;
	}
	
	#contactPage {
		flex-direction: column;
		justify-content: flex-start;
		height: auto;
	}
	#left, #right {
		width: 100%;
	}
	
	#left {
		/*display: none;*/
		min-height: calc(70vh - 107px);
		height: calc(70vh - 107px);
	}
	
	/*#left {
		overflow: hidden;
	}*/
	
	input[type="text"], textarea {
		width: 100%;
	}
	
	footer .wrapper {
		width: 100%;
		justify-content: center;
	}
	
	footer .bloc:first-of-type {
		width: 100%;
		max-width: 100%;
		border-bottom: 1px solid rgba(37, 90, 76, .2);
		padding-bottom: 40px;
	}
	
	footer .content > p:last-child, footer .content > p:last-child a {
		font-size: 12pt;
	}
}

@media only screen and (min-width: 360px) and (max-width: 376px) {
	
	.content {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	#topBar .content {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	#shortcuts {
		right: 57px;
		gap: 15px;
	}
	
	#boutonMenu {
		right: 5px;
	}
	
	/*#background .content h2 {
		font-size: 20pt;
		line-height: 28pt;
	}
	
	#background .text {
		padding: 20px;
	}*/
}

@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
	.logo {
		background-image: url("images/logo_header_2x.jpg");

	}
}