@charset "utf-8";
/* CSS Document */

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gallery {
    margin: auto auto;
	max-width: 2000px;
    width: 80%;
	height: auto;
	text-align: center;
	display: grid;
}


.gallery img {
	text-align: center;
	align-content: center;
	transition: 0.5s;
    padding: 15px;
    width: 340px;
}

.gallery img:hover {
    transform: scale(105%);
}


.gallery-accueil {
    margin: auto auto;
	max-width: 2000px;
    width: 80%;
	height: auto;
	text-align: center;
	display: grid;
}


.gallery-accueil img {
	text-align: center;
	align-content: center;
	transition: 0.5s;
    padding: 15px;
    width: 340px;
}

.gallery-accueil img:hover {
    transform: scale(105%);
}


@media (max-width: 767px) {
    .gallery-accueil, .gallery {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/*
.gallery-zoom img {
	transition: 0.5s;
}
.gallery-zoom img:hover {
    transform: scale(105%);
}
*/

.background_grey{
	background-color: #e9ecef;
	margin-bottom: 20px;
}

facebook, instagram  {
    float: right;
}

/*
btn_group {
	display: inline-block;
	display: block!important;
	display: none!important;
}
*/


.container-spot {
	text-align: center;
  }
  
.btn-group-spot {
	display: flex;
	justify-content: center;
	align-items: center;
}
  
.btn-ncy {
	margin-left: 15%;
}

.btn-sdz {
	margin-right: 15%;
}
.btn-spot {
	color: #fff;
  	background-color: #007bff;
  	border-color: #007bff;
  	padding: 0.5rem 1rem;
   	line-height: 1.5;
  	border-radius: 0.3rem;
  	border: 0;
	text-decoration: none;
	box-shadow: none;
 }

 .btn-spot:hover {
	transition: 0.3s;
  	background-color: #0056b3;
	color: #fff;
	text-decoration: none;

  }
