@-webkit-keyframes block-gallery-item-enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes block-gallery-item-enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.block-gallery.bg-gray {
  border-top: solid 1px rgba(var(--color-black), 0.08);
  border-bottom: solid 1px rgba(var(--color-black), 0.08);
  background-color: rgba(var(--color-black), 0.03);
}
.block-gallery .inner {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 64px;
}
@media (width >= 1100px) {
  .block-gallery .inner {
    padding: 80px 0;
    gap: 80px;
  }
}
.block-gallery .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 0 28px;
  text-align: center;
}
.block-gallery .heading .tagline {
  margin-bottom: 0;
}
.block-gallery .gallery {
  padding: 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 16px;
}
@media (width >= 1100px) {
  .block-gallery .gallery {
    padding: 0 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}
.block-gallery .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 16px;
}
@media (width >= 1100px) {
  .block-gallery .column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  .block-gallery .column:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.block-gallery .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 16px;
}
.block-gallery .item.invisible {
  opacity: 0;
}
.block-gallery .item.in-view {
  -webkit-animation-name: block-gallery-item-enter;
          animation-name: block-gallery-item-enter;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.block-gallery .item picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-gallery .item picture img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-gallery .item picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(30, 30, 30, 0.5019607843)));
  background-image: linear-gradient(180deg, transparent 50%, rgba(30, 30, 30, 0.5019607843));
}
.block-gallery .item .info {
  position: relative;
  color: #FFFFFF;
}
.block-gallery .item .info span {
  display: block;
}
.block-gallery .item .info .title {
  font-size: 0.875rem;
}
.block-gallery .item.type-normal {
  aspect-ratio: 4/3;
}
.block-gallery .item.type-landscape {
  aspect-ratio: 16/9;
}
.block-gallery .item.type-portrait {
  aspect-ratio: 9/16;
}
.block-gallery .item.type-squared {
  aspect-ratio: 1/1;
}