/* hero */
.container-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  background: #f3eef2;
  height: 100%;
  width: 100%;
}
.container-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-hero-desktop.avif) center right / cover no-repeat;
}
.decor-hero {
  max-width: 600px;
}
/* announcement  */
.announcement-text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--color-secondary-2);
  color: white;
  min-height: 400px;
  z-index: 4;
}
.announcement-text::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  background: transparent;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}
.announcement-decor-column {
  width: 100%;
}
.announcement-decor {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* offer */
.container-offer {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-secondary);
}
.container-offer::before {
  content: url(../images/decor-offer.avif);
  position: absolute;
  top: -1rem;
  left: 0;
  width: 500px;
  height: auto;
  user-select: none;
  transform: scaleY(-1);
}
.container-offer::after {
  content: url(../images/decor-offer.avif);
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 500px;
  height: auto;
  user-select: none;
  z-index: -1;
}
.btn-service-item {
  display: block;
}
.offer-icon {
  transform: scale(0.9);
  transition: all 0.3s ease;
}
.offer-icon:hover {
  transform: scale(1);
}
/* gallery */
.index-gallery-item-big {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center left;
}
.index-gallery-item {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767.98px) {
  .gallery-text {
    padding-block: 10rem;
  }
}
