.project-hero .project-hero-customer {
  font: var(--h3-font);
}
.project-hero .project-hero-image img, .project-hero .project-hero-image video, .project-hero .project-hero-image iframe {
  aspect-ratio: 1872/940;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-height: calc(100vh - 99px) !important;
}
@container main (min-width: 48rem) and (max-width: 79.9375rem) {
  .project-hero .project-hero-image img {
    aspect-ratio: 720/600;
  }
}
@container main (max-width: 47.9375rem) {
  .project-hero .project-hero-image img {
    aspect-ratio: 366/490;
  }
}
.project-hero .project-hero-categories .category-group:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@container main (max-width: 47.9375rem) {
  .project-hero .project-hero-categories {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.project-hero .project-hero-content {
  -ms-grid-rows: -webkit-max-content;
  -ms-grid-rows: max-content;
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
}
.project-hero .category-group:last-child {
  margin-bottom: 0;
}
.project-hero .category-group .category-wrapper .category-title {
  font: var(--eyebrow-font);
  color: var(--form);
  margin-bottom: 0.625rem;
}
.project-hero .category-group .category-wrapper .category-item {
  font: var(--caption-font);
}
@container main (max-width: 47.9375rem) {
  .project-hero .category-group:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .project-hero .category-group:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  .project-hero .category-group:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
.project-hero .project-hero-text p {
  font: var(--h4-font);
}
.project-hero .project-hero-text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.project-hero .project-hero-text .project-hero-read-more {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  padding: 0.5rem 0.625rem;
  font: inherit;
  border: 1px solid var(--color-text);
  border-radius: 0.1875rem;
  margin-top: 1.875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.project-hero .project-hero-text .project-hero-read-more:hover {
  border: 1px solid var(--purple);
}
.project-hero .project-hero-text .project-hero-read-more:hover .icon:after {
  background-color: var(--purple);
}
.project-hero .project-hero-text .icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-hero .project-hero-text .icon:after {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.project-hero .project-hero-text .project-hero-read-more-content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-hero .project-hero-text .project-hero-text.active .project-hero-read-more-content {
  -webkit-transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-hero .project-hero-text.active .project-hero-read-more-content {
  height: var(--content-height, auto);
  -webkit-transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-hero .project-hero-text.active .icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}