/* .galeria-box {
  padding: 10px;
} */
.galeria-box .owl-carousel button.owl-prev span,
.galeria-box .owl-carousel button.owl-next span {
  display: none;
}
.galeria-box .owl-carousel button.owl-prev:before,
.galeria-box .owl-carousel button.owl-next:before {
  font-family: "Icofont";
  display: block;
  font-size: 30px;
}
.galeria-box .owl-carousel button.owl-prev:before {
  content: "\ea87";
}
.galeria-box .owl-carousel button.owl-next:before {
  content: "\ea88";
}
.galeria-box .owl-carousel .owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: #ffcb00;
}
.galeria-box .owl-carousel button.owl-prev:focus,
.galeria-box .owl-carousel button.owl-next:focus,
.galeria-box .owl-carousel .owl-theme .owl-dots .owl-dot:focus {
  outline: none;
}
.galeria-box .owl-carousel .owl-stage-outer {
  max-height: 450px;
}

.galeria-box .more {
  text-align: center;
}

.galeria-box .gallery-items {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    list-style-type:none;
    margin:0px;
    padding: 0px;
}
.galeria-box .gallery-items .item {
  flex: 1 1 auto;
  position: relative;
}
.galeria-box .gallery-items .item img:hover{
    border:solid 1px #9b1420;
}
.galeria-box .gallery-items .item img {
	border-radius:var(--border-radius);
	max-height:100%;
	max-width:100%;
	padding:2px;
	border:solid 1px var(--ramka);
}
.galeria-box .gallery-items .item .name h3{
    text-transform: capitalize;
    color: #fff;
    font-size:1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

@media (max-width: 760px) {
  .galeria-box {
    flex-direction: column;
  }
  .galeria-box .gallery-items .item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: unset;
  }
}

.album {
  position: relative;
  display: block;
  width: 23%;
  overflow: hidden;
  padding: 0px 0px 0px 0px;
  margin: 0px 1% 20px 1%;
  height: 304px;
  float: left;
}
.album img {
  opacity: 1;
  height: 100%;
  width: auto;
  max-width: none;
  position: relative;
  top: 0%;
}
.album:hover img {
  opacity: 0.8;
  height: 110%;
  position: relative;
  top: -5%;
}
.album:hover span,
.album:hover h3 {
  opacity: 1;
}
.album span,
.album h3 {
  top: 45%;
  left: 0px;
  opacity: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 20px;
  padding: 10px 0px 10px 0px;
  display: block;
  background: rgba(66, 66, 66, 0.5);
}
@media screen and (max-width:1200px){
  .galeria-box .gallery-items{
    grid-template-columns: repeat(3,1fr);
  }
}
@media screen and (max-width: 960px) {
  .album {
    width: 48%;
  }
  .galeria-box .gallery-items{
    grid-template-columns:repeat(2,1fr);
  }
}
@media screen and (max-width: 480px) {
  .galeria-box .gallery-items{
    grid-template-columns:repeat(1,1fr);
  }
  .galeria-box {
    box-shadow: none;
    /* padding: 0px; */
  }
  .galeria-box {
    padding-top: 0px;
  }
  .album {
    /* width: 100%; */
    margin: 0px 5px 0px 0px;
    height: auto;
    float: none;
  }

  .album span,
  .album h3 {
    opacity: 1;
    top: unset;
    bottom: 4px;
  }
}
