/*FOTOGALLERY FANCYBOX BEGIN */
.alboms {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  max-width:1170px;
  margin: 0 auto;
}
.alboms__item {  
  position: relative;
  overflow: hidden;
  transition: 0.5s Ease;
  width: 350px;
  
  margin: 5px 1px;
}
.alboms__item img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.alboms__itemCaption {
  border: 1px solid #0262a5;
  transition: 0.5s Ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin-top: -350px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
}
.alboms__itemCaption h5{ margin-top: 30px}
.alboms__item:hover > .alboms__itemCaption {
  margin-top: 0;
}
.alboms__button {
  border: 1px solid #ddd;
  color:#0262a5;
  padding: 5px 15px;
}

/*FOTOGALLERY FANCYBOX END */