/* GENERAL*/

h1,h2,h3,h4,h5,h6 {
	font-family: 'Montserrat', sans-serif;
	margin: 15px 0;
}

p {
	font-family: 'Crimson Pro', serif;
}

h1 {
	font-size: 50px;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	margin: 25px 0;
}

@media screen and (max-width: 992px)
{
	#services div.col-services-cont {
		margin-top: -15px;
	}

	i.bi-arrow-right {
		display: none;
	}

	i.bi-arrow-down {
		display: block !important;
	}
}

@media screen and (max-width: 576px) 
{
	div.price img.img-price {
	width: 65px !important;
	}

	div.price img.img-icon {
		width: 35px !important;
		margin: 0 10px 0 0 !important;
	}

	div.price ul, div.price li {
		font-size: 16px !important;
	}

	.adress > iframe {
		width: 95% !important;
	}
}

/* GALLERY POPUP */

#grid {
	display: grid;
	grid-template-columns: 20% 20% 20% 20% 20%;
	grid-template-rows: 50%;
	gap: 5px;
	grid-auto-flow: dense;
	width: 95%;
	margin: 25px 3.5% 25px 1.5%;
}

.grid-item {
	overflow: hidden;
	cursor: pointer;
	transition: all 0.2s ease;
}

.grid-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.2s ease;
}

.grid-item:hover {
	transform: scale(1.05);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.grid-img:hover {
	transform: scale(1.2);
}

/*#mer-3 {
	grid-column: span 2;
	grid-row: span 2;
}*/

#popup-bg {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1021;
	align-items: center;
	justify-content: center;
}

#popup-bg.active {
	display: flex;
	position: sticky;
}

#popup-content {
	max-width: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

#popup-img {
	width: 100%;
	height: auto;
}

#popup-close {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%,-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 45px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

#popup-close:hover {
	color: red;
}

/* NAVBAR */

.navbar {
	background-color: white;
	border-bottom: 1px solid #0097B2;
}

.navbar a > img {
	width: 50px;
	margin: 5px;
}

/* HOME */

#home .container-fluid {
	background-color: #0097B2;
	padding: 25px 0 0;
}

#home h1 {
	color: #fff;
}

#home img {
	width: 100%;
}

/* SERVICES */

.col-services-cont {
	margin: 30px 0;
	background-color: white;
	border: 2px solid #0097B2;
	padding: 15px 0;
	height: 95%;
}

table.table-serv {
	margin: 30px auto 0;
	width: 90%;
}

table.table-serv tr {
	border-bottom: 40px solid white;
}

table.table-serv tr td {
	width: 33%;
	text-align: center;
}

table.table-serv tr td.tbl-head {
	background-color: #0097B2;
}

table.table-serv tr td h3 {
	line-height: 50px;
	margin: 0;
	color: white;
	text-transform: uppercase;
}

table.table-serv tr td h4 {
	margin: 0;
	font-size: 100%;
	display: inline-block;
}

table.table-serv tr td img {
	width: 50px;
	margin: 0 0 15px 0;
}

/* DESCRIPTION */

.col-descrp-cont {
	margin: 0 0 25px 0px;
	background-color: white;
	padding: 15px 15px 0 15px;
}

.col-descrp-cont h2 {
	text-align: center;
	margin: 35px 0 15px;
	color: #0097B2;
	font-weight: bold;
}

iframe.agenda {
	margin: 15px 0;
	width: 100%;
}

img.img-text {
	margin: 15px auto 25px;
	width: 100px;
}

div.details {
	margin-top: 25px;
}

i.bi-arrow-right {
	float: right;
	font-size: 35px;
	color: #0097B2;
}

i.bi-arrow-down {
	float: right;
	font-size: 35px;
	color: #0097B2;
	display: none;
}

/* PRIX */

div.price {
	background-color: #0097B2;
	padding: 25px 0;
	text-align: center;
	border-radius: 25px;
	margin: 0 0 35px;
}

div.price img.img-price {
	margin: 15px auto 25px;
	width: 75px;
}

div.price h4 {
	margin-bottom: 45px;
}

div.price h4, div.price h6, div.price p {
	color: white;
	font-family: 'Montserrat', sans-serif;
}

div.price ul, div.price li {
	color: white;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
}

div.price ul {
	list-style-type: none;
	padding-left: 0px;
}

div.price img.img-icon {
	width: 50px;
	margin: 10px 20px;
}

hr.sep-seas {
	border-top-color: white;
	opacity: 1;
	width: 50%;
	margin: 0 auto 25px;
}

/* CONTACT */

div.contact h4 {
	margin: 15px 0;
	color: #0097B2;
	font-weight: bold;
}

.contact-cont {
	margin: 25% 0 25%;
	height: 50%;
}

div.contact .btn:hover {
	background-color: grey;
}

div.contact button {
	margin: 15px auto;
	width: 100px;
	border-radius: 15px;
	text-align: center;
	background-color: #0097B2;
	border: 0px solid transparent;
}

div.contact button i {
	font-size: 35px;
	color: #fff;
}

li {
	font-family: 'Crimson Pro', serif;
}

/* ADRESS */

div.adress {
	width: 100%;
	background-color: #0097B2;
	border-radius: 25px;
	padding-bottom: 35px;
	margin: 0 auto;
}

div.adress h4 {
	margin: 25px 0;
	color: #fff;
	font-weight: bold;
}

p.adress-pt {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	margin: 0 0 40px;
	color: #fff;
}

.adress > iframe {
	width: 75%;
	margin: 0 auto;
}

/* FOOTER */

footer {
	padding: 35px 0 20px;
	background-color: #0097B2;
}

footer h6 {
	color: white;
}

footer i {
	color: white;
	font-size: 35px;
	line-height: 60px;
	transition: font-size 0.5s ease;
}

footer i:hover {
	color: rgba(255, 255, 255, 0.5);
	font-size: 55px;
}