/* BANNER */
.page-about .banner {
  display: flex;
  width: 100%;
}
.page-about .banner .banner-picture {
  display: flex;
  width: 100%;
  height: 25rem;
}
.page-about .banner .banner-picture .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.page-about .content {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.page-about .content .cover {
  max-width: 40rem;
}
.page-about .content .text {
  text-align: center;
  line-height: 1.5;
}
.page-about .content .text b {
  font-family: "Gotham Rounded", sans-serif;
}
.page-about .content .text span {
  display: flex;
  width: 100%;
  height: 1rem;
}

/* RESPONSIVE */
@media (max-width: 100rem) {
  /* 1600px */
}

@media (max-width: 75rem) {
  /* 1200px */
}

@media (max-width: 62rem) {
  /* 992px */
}

@media (max-width: 48rem) {
  /* 768px */
  .page-about .banner .banner-picture {
    height: auto;
  }
  .page-about .content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 36rem) {
  /* 576px */
  .page-about .content .text {
    font-size: 0.85rem;
  }
}
