/* ----hero---- */
.container-hero::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  height: 0.8rem;
  background-image: var(--color-gradient);
  z-index: 3;
}
.hero-promo::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.3rem;
  background: var(--color-gradient);
}
.hero-promo::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.3rem;
  background: var(--color-gradient);
}
.hero-content {
  position: relative;
  background-color: var(--color-body-bg-2);
  z-index: 1;
  margin: 7rem 0;
}
.hero-text {
  background-color: rgba(255, 255, 255, 0.93);
}
.home-slogan {
  font-family: var(--typography-accent-font-family);
}
.home-subtitle {
  font-family: var(--typography-accent-font-family);
}
.hero-img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 80% center;
  border-radius: 0 0.25rem 0.25rem 0;
}
.hero-action-button {
  background-color: var(--color-accent-1);
  box-shadow: none;
  border: none;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: bolder;
  min-width: 13rem;
}
.hero-action-button:hover,
.hero-action-button:focus {
  color: var(--color-text-light);
  background-color: black;
}
/* ----announcement---- */
.announcement-title {
  font-family: var(--typography-accent-font-family);
}
/* ---contact---- */
.container-contact {
  color: var(--color-text-light);
  background: var(--color-body-bg-1);
}
.contact-title {
  position: relative;
  font-family: var(--typography-accent-font-family);
}
.hour-row {
  padding: 0;
}
.hour-row:last-child::before {
  height: 0px;
}
.hour-label {
  background-color: transparent;
  padding: 5px;
  font-weight: bold;
}
.contact-decor-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: auto;
  text-align: center;
  padding: 1rem 3rem;
  border-radius: 0.3rem;
  background-color: var(--color-body-bg-1);
  color: #ffffff;
}
.contact-decor-brand-name {
  font-size: 1.4rem;
  font-family: var(--typography-accent-font-family);
}
/* --intro---- */
.container-intro h2 {
  font-family: var(--typography-accent-font-family);
}

.intro-row-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
/* ----highlight----- */
.container-highlight {
  background: var(--color-body-bg-3);
}
.container-highlight h2 {
  font-family: var(--typography-accent-font-family);
}
.highlight-column {
  z-index: 3;
  padding: 15rem 15px 15px 15px;
  padding-top: 330px;
}
.row > div:nth-child(1) .highlight-column {
  background: url(../images/highlight-colum1.avif) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.row > div:nth-child(2) .highlight-column {
  background: url(../images/highlight-colum2.avif) no-repeat center top;
  background-size: cover;
  width: 100%;
}
.row > div:nth-child(3) .highlight-column {
  background: url(../images/highlight-colum3.avif) no-repeat left bottom;
  background-size: cover;
  width: 100%;
}
.row > div:nth-child(4) .highlight-column {
  background: url(../images/highlight-colum4.avif) no-repeat center 30%;
  background-size: cover;
  width: 100%;
}
.row > div:nth-child(5) .highlight-column {
  background: url(../images/highlight-colum5.avif) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.row > div:nth-child(6) .highlight-column {
  background: url(../images/highlight-colum6.avif) no-repeat center center;
  background-size: cover;
  width: 100%;
}
.highlight-content h2 {
  font-family: var(--typography-accent-font-family);
}
.highlight-content {
  background-color: #fff;
  margin-top: 30px;
  padding: 10px;
  color: var(--color-highlight-text);
}
.highlight-border {
  border: 2px solid var(--color-accent-1);
}
.highlight-border h3 {
  font-family: var(--typography-accent-font-family);
}
.highlight-btn {
  background-color: var(--color-accent-1);
  color: var(--color-text-light);
  width: 100%;
  font-weight: bolder;
}
.highlight-btn:hover,
.highlight-btn:focus {
  background-color: var(--color-text-dark);
  color: var(--color-text-light);
}
@media (max-width: 575.98px) {
  .hero-text {
    padding: 35px 0px;
  }
}
@media (max-width: 767.98px) {
  .hero-content {
    margin: 3rem 0;
  }
  .container-hero {
    background: url(../images/bg-hero-mobile.avif) center center / cover no-repeat;
  }
}
@media (max-width: 991.98px) {
  .hero-img {
    border-radius: 0 0 0.25rem 0.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container-hero {
    background: url(../images/bg-hero-tablet.avif) center center / cover no-repeat;
  }
}
@media (min-width: 992px) {
  .container-hero {
    background: url(../images/bg-hero.avif) center 30% / cover no-repeat;
    min-height: 45rem;
  }
}
