.other-page .hero {
  height: 140px;
}

.other-page .parallax-background {
  background: linear-gradient(
      to bottom left,
      hsla(0, 0%, 36%, 0.7),
      hsla(0, 0%, 36%, 0.7)
    ),
    url(../images/DSC_1598.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  /* background-attachment: fixed; */
}
.other-page .hero-content-about {
  display: none;
}
.breadcrumbs {
  gap: 0.2rem;
  color: var(--text-clr);
  position: absolute;
  width: 80%;
  left: 50%;
  top: 170px;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: var(--fw-700);
  border-radius: 5px;
  z-index: 100;
}
.breadcrumbs a:hover {
  color: var(--primary-clr);
  transition: var(--transition);
}
.other-page .main-content {
  background-color: var(--white);
}

/* Section About */
.other-page .main-section {
  width: 80%;
  max-width: 1152px;
  margin-inline: auto;
  margin-block: 4rem 6rem;
}
.other-page .main-section .accent-bar {
  margin-left: 0;
  margin-bottom: 2rem;
}
.article-grid-col {
  line-height: 30px;
  display: grid;
  gap: 2rem;
}
.img-container {
  max-width: 350px;
}
/*==================
 Contact Page 
 ===================*/

@media (min-width: 680px) {
}
@media (min-width: 1024px) {
  .other-page .hero {
    height: 270px;
  }
  .breadcrumbs {
    width: 60%;
    top: 220px;
  }
  .article-grid-col {
    grid-template-columns: 60% 40%;
    grid-template-rows: 1fr;
  }
  .img-container {
    order: 2;
    max-width: 100%;
  }
}
