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

.galerie {
  width: 100%;
  max-width: 100%;
  margin: 5px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.item{
  width: 300px;
  height: 244px;
  margin: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.item img{
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0 0 ;
}

.item-content {
	width: 300px;
	height: 42px;
	background-color: #fff;
	padding:10px;
	z-index: 5;
    position: absolute;
	border-radius: 0 0 15px 15px;
  
}
.titlex{
	font-size:18px;
	padding:0;
	margin:0;
}


.modal {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 100px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.9);
    }
.modal-content {
      margin: auto;
      display: block;
      width: 80%;
      max-width: 1200px;
    }
.close {
      color: #f1f1f1;
      position: absolute;
      top: 15px;
      right: 35px;
      font-size: 40px;
      font-weight: bold;
      transition: 0.3s;
      cursor: pointer;
    }
 .close:hover,
    .close:focus {
      color: #bbb;
      text-decoration: none;
      cursor: pointer;
    }