@charset "UTF-8";/* CSS Document *//* ----------------------------- GALLERY ------------------------------------------*/.gallery{	background-color: #dbddf1;	padding: 80px 0;}.gallery img{	background-color: #ffffff;	padding: 15px;	width: 100%;	box-shadow: 0 0 15px rgba(0,0,0,0.3);	cursor: pointer;}#gallery-modal .modal-img{	width: 100%;}.gallery_item {  margin-bottom: 30px;}.gallery_item img {  max-width: 100%;}.gallery_item .gallery_img {  position: relative;}.gallery_item .gallery_img .hover {  position: absolute;  left: 0px;  top: 0px;  background: rgba(0, 0, 0, 0.5);  width: 100%;  text-align: center;  font-size: 24px;  height: 100%;  color: #fff;  -webkit-transition: all 300ms ease;  -o-transition: all 300ms ease;  transition: all 300ms ease;  opacity: 0;}.gallery_item .gallery_img .hover i {  position: absolute;  left: 0px;  top: 50%;  width: 100%;  text-align: center;  -webkit-transform: translateY(-50%);  -ms-transform: translateY(-50%);  transform: translateY(-50%);  color: #fff;}.gallery_item .gallery_img:hover .hover {  opacity: 1;}.gallery p {	font-size: 16px;	line-height: normal;	color: #0033FF;}/*----------------------------------------------------  MODALE ----------------------------------------------------*/.modal {  visibility: hidden;  opacity: 0;  position: absolute;  top: 0; right: 0;  bottom: 0; left: 0;  display: flex;  align-items: center;  justify-content: center;  background: rgba(77, 77, 77, .7);  transition: all .4s;}.modal:target {  visibility: visible;  opacity: 1;}.modal_content {  border-radius: 4px;  position: relative;  width: 500px;  max-width: 90%;  background: white;  padding: 1.5em 2em;}.modal_close {  position: absolute;  top: 10px;  right: 10px;  color: grey;  text-decoration: none;}