@charset "utf-8";

.container {
width: 1200px;
margin: auto;
}

section#main {
width: 1200px;
}

#galerie {
width: calc(100% - 2em);
padding: 0 1em 0 1em;
}

#galerie #first {
float: left;
width: calc(50% - 0.5em);
margin-right: 1em;
}

#galerie #autres {
/*float: left;
width: calc(50% - 0.5em);*/
width: 100%;
}

#galerie #first a {
display: inline-block;
width: 100%;
}

#galerie #autres ul {
margin: 0;
padding: 0;
list-style-type: none;
display: grid;

grid-template-columns: repeat(4, 1fr);
grid-auto-rows: auto;
gap: 0.875em;
}

#galerie #autres ul li:first-child {
grid-column: span 2;
grid-row: span 2;
}

#infosgen {
display: none;
}

#galerie a img {
width: 100%;
vertical-align: top;
border-radius: 0.3em;
}

#caracs {
display: grid;
list-style-type: none;
margin: 2em 0;
padding: 0;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: auto;
gap: 2em;
}

#caracs li {
position: relative;
}

#caracs li::before {
display: block;
position: absolute;
left: 0;
top: 0;
width: 2em;
height: 2em;
line-height: 2em;
text-align: center;
font-size: 1.5em;
font-family: Fontello;
color: var(--clr3);
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .1);
border-radius: 0.3em;
}

#caracs li:first-child::before { content: '\e806'; }
#caracs li:nth-child(2)::before { content: '\f236'; }
#caracs li:last-child::before { content: '\f2cc'; }

#caracs li p {
text-transform: uppercase;
margin: 0 0 0 4rem;
padding: 0;
}

#caracs li p:first-child {
font-size: 1rem;
}

#caracs li p:last-child {
font-size: 0.92rem;
font-weight: 700;
}


table#infos {
width: 100%;
border-collapse: collapse;
font-size: .875em;
font-weight: 400;
line-height: 1.5;
}

table#infos tr td:nth-child(2n+1) {
width: 20%;
font-weight: 500;
color: #333;
}

table#infos tr td:nth-child(2n) {
width: 30%;
color: #777;
}

ul#services  {
width: 100%;
margin: auto;
padding: 1em 0;
list-style-type: none;
display: grid;

grid-template-columns: repeat(3, 1fr);
grid-auto-rows: auto;
gap: 1em;
}

ul#services li {
position: relative;
display: inline-block;
grid-column: auto;
grid-row: auto;
width: 100%;
margin: 0;
font-size: .875em;
font-weight: 400;
line-height: 1.5;
color: #777;
}

ul#services li::before {
content: '\e802';
font-family: Fontello;
margin-right: 1em;
color: var(--clr1);
}

#contcal {
width: 90%;
max-width: 30em;
margin: auto;
}

#infosreserv {
width: 90%;
max-width: 30em;
margin: auto;
}

#reserver {
display: inline-block;
width: 20em;
padding: 2em 1.5em;
border: none;
font-weight: 600;
font-size: 1em;
color: #fff;
cursor: pointer;
background-color: var(--clr3);
border-radius: 0.3em;
transition: all .15s ease-in-out;
text-transform: uppercase;
text-decoration: none;
text-align: center;
}



@media only screen and (min-width: 1200px) and (max-width: 1599px) {
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.container {
	width: calc(100% - 2em);
	margin: auto;
	padding: 0 1em;
	}

	section#main {
	width: 100%;
	}

}

@media only screen /*and (min-width: 768px)*/ and (max-width: 991px) {
	.container {
	width: calc(100% - 2em);
	margin: auto;
	padding: 0 1em;
	}

	section#main {
	width: 100%;
	}

	#galerie #autres ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: auto;
	gap: 0.875em;
	}

	#galerie #autres ul li:first-child {
	grid-column: span 2;
	grid-row: span 2;
	}

}

@media only screen and (min-width: 576px) and (max-width: 767px) {
}

@media only screen and (max-width: 575px) {
}


