.gallery__header {
  background: url(../img/bg-gallery.jpg) center/cover no-repeat;
  width: 100%;
  aspect-ratio: 144/25;
  position: relative;
}

.gallery__header::after {
  content: '';
  background-color: rgba(112, 70, 120, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.gallery-heading {
  max-width: 1296px;
  width: 100%;
  font-size: 53px;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
}

.gallery-content {
  width: 65%;
}

.gallery-content .gallery-content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-content .gallery-content-item {
  max-width: 350px;
  width: 100%;
  aspect-ratio: 1/1;
}

.gallery-content .gallery-content-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-content .gallery-content-list-shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 100px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 100px;
}

.gallery-content .gallery-content-item-shop {
  max-width: 750px;
  width: 100%;
  aspect-ratio: 4/3;
}

.gallery-content .gallery-content-img-shop {
  width: 100%;
}

@media (max-width: 768px) {
  .main .main__inner {
    margin-top: 50px;
  }
  .gallery__header {
    background-position: 100 0;
    aspect-ratio: 5/2;
  }
  .gallery-heading {
    font-size: calc(1.5625rem + ((1vw - 3.2px) * 6.25));
    text-align: center;
  }
  .gallery-content {
    width: 100%;
  }
  .gallery-content .gallery-content-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
