/* hero */
.container-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.welcome-banner {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1.6rem;
}
.welcome-banner > h1{
  color:var(--accent-color-2);
}
.hero-btns {
  gap: 0.7rem;
}

/* announcement */
.container-announcement {
  background-color: var(--accent-color-2);
}

/* intro */
.container-intro {
  position: relative;
  overflow: hidden;
}
.container-intro::before {
  position: absolute;
  content: "";
  background-image: url(../images/decor-abstract-building-01-copyright.svg);
  width: 60rem;
  height: 30rem;
  bottom: 0;
  left: 0;
  display: block;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1.4rem;
}
.intro-img:nth-child(2) {
  grid-row: span 2;
}
.intro-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0px;
  border-radius: 1rem;
}
.container-intro ul > li::marker {
  color: var(--accent-color);
  font-size: 1.6rem;
}
/* highlight */
.container-highlight {
  position: relative;
  z-index: 2;
  background: url(../images/bg-offer.avif) center top / cover no-repeat;
}
.highlight-column-inner {
  background-color: var(--accent-color-2);
  border-radius: 1rem;
  overflow: hidden;
}
.highlight-title {
  font-size: 1.3rem;
}
/* ---contact---- */
.contact-detail {
  font-size: 1.2rem;
}
@media (max-width: 575.98px) {
  .container-hero-text {
    background: url(../images/bg-home-mobile.avif) center center / cover no-repeat;
    height: 100vh;
  }
  .intro-grid {
    gap: 0.9rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .container-hero-text {
    background: url(../images/bg-home-mobile.avif) center center / cover no-repeat;
  }
}

@media (max-width: 767.98px) {
  .container-hero-text {
    background: url(../images/bg-home-tablet.avif) center center / cover no-repeat;
  }
  .announcement-decor::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .announcement-text {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
  .container-intro::before {
    width: 40rem;
    height: 20rem;
  }
  .container-hero-text {
    background: url(../images/bg-home.avif) right center / cover no-repeat;
    min-height: 50rem;
  }
}
@media (max-width: 991.98px) {
  .welcome-banner {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .welcome-banner {
    width: 50%;
  }
}
