* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 100%;
	line-height: 1.5;
}
body {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	min-height: 100vh;
	margin-top: 1rem;
	font-family: "Open Sans", Verdana, sans-serif;
	background-color: #a9d1c6;
	color: #01231a;
}
.container {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	max-width: 60rem;
	padding-bottom: 3em;
	padding-top: 10em;
}
header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5rem 0.5rem;
	position: fixed;
	top: 0;
	width: 60em;
	background-color: #a9d1c6;
	z-index: 9999;
	border-top: 2px solid #056b50;
	border-bottom: 2px solid #056b50;
}
.header-left {
	flex: 1 0 15%;
	text-align: left;
	padding-top: 0.75rem;
}
.header-right {
	flex: 2 0 85%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
	background-color:#a9d1c6;
}
.btn {
	background-color: #01231a;
	padding: 0.25rem 0.75rem;
	border-radius: 0.75rem;
	font-size: 0.75rem;
	color: #a9d1c6;
	text-transform: uppercase;
}
h1 {
	font-size: 2.50rem;
	font-weight: bold;
	padding-top: 1rem;	
}
h2 {
	font-size: 2rem;
	font-weight: bold;
}
h3 {
	font-size: 1.25rem;
	font-weight: bold;
	font-style: italic;
}
h1, h2, h3 {
	font-family: "Playfair Display", Georgia, serif;
}
nav ul {
	display: flex;
	list-style-type: none;
}
nav li {
	padding-left: 1rem;
}
a {
	text-decoration: none;
}
a:hover {
	color: #01231a;
	background-color: #a9d1c6;
}
.banniere-mediums img {
	width: 60rem;	
	height: 12rem;
}
.contact-container {
	display: flex;
	flex-direction: column;
    align-items: flex-start;
	padding: 1.0rem;
	border: 3px solid #056b50;
	padding-bottom: 1em;
	padding-top: 0.5em;
}
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	gap: 8px;
}
.contact-info p {
    font-size: 14px;
	margin: 0.5rem;
}
.contact-left input {
	width: 30rem;	
	height: 2rem;
	border: none;
    outline: none;
    padding-left: 0.5rem;
    font-weight: 500;
    color: black;
	font-size: 14px;
    border-radius: 50px;
	margin-bottom: 0.5rem;
}
.contact-left textarea {
	width: 30rem;	
    height: 10rem;
	border: none;
    outline: none;
    padding-left: 0.5rem;
    font-weight: 500;
    color: black;
	font-size: 14px;
	padding-top: 1rem;
    border-radius: 20px;
}
.contact-inputs:focus {
    border: 2px solid #01231a;
}
.contact-left input::placeholder {
    color: #a9a9a9;
    font-size: 14px;
    font-style: italic;
}
.contact-left textarea::placeholder {
    color: #a9a9a9;
    font-size: 14px;
    font-style: italic;
}
.contact-left button {
    display: flex;
    align-items: center;
	text-transform: uppercase;
    padding: 0.50rem 1rem;
    font-size: 14px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: #056b50;
    cursor: pointer;
}
.contact-left button img {
    height: 24px;
}
.gallery {
	margin-bottom: 1rem;
	margin-left: 1rem;
}
.gallery-text p {
	font-size: 0.85rem;
} 
.gallery-images {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-left: 4rem;
}
.gallery-image {
	position: relative;
	cursor: pointer;
	margin-left: 1em;
	margin-bottom: 1rem;
	width: 250px;
	height: 250px;
}
.gallery-image-caption {
	display: flex;
  	flex-direction: column;
  	justify-content: flex-end;
 	position: absolute;
	left: 0;
 	top: 0;
 	width: 250px;
 	height: 250px;
 	opacity: 0;
 	background-color: rgba(32, 32, 32, 0.75);
 	color: #a9d1c6;
	-webkit-transition: opacity 1s ease;
 	transition: opacity 1s ease;	
}
.gallery-image-caption:hover {
	opacity: 1;
}
.caption-title {
	padding-bottom: .5em;
	font-size: 0.75em;
	text-align: center;
	text-transform: uppercase;	
}
.caption-detail {
	font-size: 0.75em;
	text-align: center;
	font-weight: 500;
}
footer {
	display: flex;
	justify-content: center;
	position: fixed;
	bottom: 0;
	width: 60em;
	padding: 1em 0;
	border-top: 2px solid #056b50;
	background-color: #a9d1c6;
	z-index: 9999;
}
.footer-copyright {
	flex: 1 0 30%;
	margin-left: 2em;
	font-style: italic;
	font-size: 1rem;
}
.footer-links {
	flex: 1 0 70%;
	text-align: right;
	padding-right: 1.5rem;
	font-size: 1rem;
	text-transform: uppercase;	
}
.footer-links a {
	margin-left: 1em;
}
.btn-links {
	background-color: #01231a;
	padding: 0.25rem 0.75rem;
	border-radius: 0.75rem;
	font-size: 0.85rem;
	color: #a9d1c6;
	text-transform: uppercase;
}