.about-art-house {
  margin-top: 124px;
}

/* HERO BANNER */
/* ============================================= */

.about-art-house .hero-banner {
  position: relative;
}

.about-art-house .hero-banner img.banner-about {
  width: 100%;
  aspect-ratio: 1.8;
  height: auto;
  display: block;
  min-height: 500px;
}

.about-art-house .hero-banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* ============================================= */

/* SOCIAL BAR SECTION */
/* ============================================= */
.about-art-house .social-bar {
  display: flex;
  width: 100%;
}

.about-art-house .social-bar .social-item {
  width: calc(100% / 3);
  text-decoration: underline;
  display: block;
  padding: 1.5rem;
  text-align: center;
  line-height: 150%;
}

@media (max-width: 768px) {
  .about-art-house .social-bar {
    flex-direction: column;
  }

  .about-art-house .social-bar .social-item {
    width: 100%;
    padding: 1.5rem 0;
  }
}

/* ============================================= */

/* ABOUT SECTION */
/* ============================================= */

.about-section {
  margin-top: 64px;
  padding: 0 0.75rem;
}

.about-section .about-section-info {
  margin-top: 75px;
  gap: 32px;
  align-items: end;
  display: flex;
}

.about-section .about-section-info .about-section-info-text {
  width: 50%;
}

.about-section .about-section-info img {
  width: 50%;
}

.about-section .about-section-info p {
  margin-top: 8px;
}

.about-section .about-section-info:nth-child(2n + 1) {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .about-art-house .about-section {
    margin: 3rem auto;
  }
}

@media (max-width: 768px) {
  .about-section .about-section-info {
    margin-top: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .about-section .about-section-info .about-section-info-text {
    width: 100%;
  }

  .about-section .about-section-info img {
    width: 100%;
    height: auto;
    display: block;
  }

  .about-section .about-section-info:nth-child(3) {
    flex-direction: column;
  }
}

/* ============================================= */

/* STORY & JOURNEY SECTION */
/* ============================================= */
.story-journey-section {
  margin-top: 64px;
  padding: 0 0.75rem;
}

.story-journey-section .story-heading-center {
  margin-top: 256px;
  margin-bottom: 363px;
  text-align: center;
}

.story-journey-section .story-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.story-journey-section .journey {
  margin-top: 192px;
}

.story-journey-section .journey .journey-heading {
  text-align: center;
}

.story-journey-section .journey .journey-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.story-journey-section .journey .banner-about {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  height: auto;
}

.journey-list .journey-item p {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  line-height: 125%;
  font-weight: 200;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--primary-red);
  margin-top: 16px;
}

@media (max-width: 992px) {
  .story-journey-section .journey {
    margin-top: 132px;
  }

  .story-journey-section .journey .journey-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-list .journey-item:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .story-journey-section .journey .journey-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .journey-list .journey-item:nth-child(3) {
    grid-column: span 1;
  }
}

/* ============================================= */

/* FAMILY SECTION */
/* ============================================= */
.family-section {
  margin-bottom: 64px;
  padding: 0 0.75rem;
}

.family-label {
  margin-top: 128px;
  width: 416px;
  padding: 21.5px 32px 21.5px 0;
  background-color: var(--primary-red);
  color: var(--grey-white);
  text-align: end;
}

.family-section .family-img-slider {
  margin-top: 32px;
  height: 256px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.family-section .family-img-slider .family-slider-track {
  white-space: nowrap;
  display: flex;
  width: max-content;
  height: 256px;
  position: absolute;
  overflow: hidden;
  animation: marquee-custom 1s linear infinite;
}

.family-img-slider .family-slider-track .family-slider-item {
  width: auto;
  display: inline-block;
}

.family-slider-track .family-slider-item img {
  width: 256px;
  height: 256px;
  margin-right: 32px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .family-label {
    width: 100%;
    padding: 21.5px 0;
    text-align: start;
  }

  .family-label p {
    margin-left: 32px;
  }
}

@keyframes marquee-custom {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}
