/* BLOCKS */
/* Page Header */
.template-top-level.page-header { background-position: bottom; }
.template-top-level .page-header__body::after { display: none; }

/* Industries Box */
.top-level-box__content { background: var(--light); }
.top-level-box__grid { margin: 0; }
.top-level-box h4 { color: var(--secondary); margin-top: calc( var(--size-400) * 1rem ); }

/* Applications */
.category::before { content: ""; display: block; background: var(--grey-secondary); height: 5px; width: 100%;}
.category { display: block; }
.category:nth-of-type(1):before { background: var(--orange); }
.category:nth-of-type(2):before { background: var(--purple); }
.category:nth-of-type(3):before { background: var(--yellow); }

/* Media Queries */
/* Max Mobile */ 
@media screen and ( max-width: 479px ) {}
/* Min Tablet Portrait */
@media screen and ( min-width: 480px ) {
  /* BLOCKS */
  /* Industries Box */
  .top-level-box__grid > li + li { margin-top: calc( var(--size-600)  * 1.12rem ); }
  .top-level-box h4 { margin-top: calc( var(--size-500) * 1rem ); }

  /* Category Box */
  #top-level { margin-top: calc( var(--size-800) * 1.2rem ); padding-top: 0; }
}
/* Max Tablet Portrait */
@media screen and ( max-width: 767px ) {
  /* Page Header */
  .template-top-level.page-header { background: none; }
  .template-top-level .page-header__inner { max-width: 100%; }

  /* Industries Box */
  .top-level-box__grid > li { max-width: 480px; }
  .top-level-box__grid li + li { margin-top: calc( var(--size-600)  * 1.12rem ); }
}
/* Min Tablet Landscape */
@media screen and ( min-width: 768px ) {
  /* BLOCKS */
  /* Page Header */
  .template-top-level.page-header { min-height: 392px; }
  .template-top-level .page-header__inner { max-width: 600px; }

  /* Industries Box */
  .top-level-box__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc( var(--size-600) * 1.12rem ); } 
  .top-level-box__grid > li + li { margin-top: 0; }

  /* Category Box */
  #top-level { margin-top: -40px; }
}
/* Max Tablet Landscape */
@media screen and ( max-width: 1023px ) {}
/* Min Desktop */
@media screen and ( min-width: 1024px ) {
  /* BLOCKS */
  /* Page Header */
  .template-top-level.page-header { min-height: 382px; }
  .template-top-level .page-header__inner { max-width: 700px; }

  /* Industries Box */
  .top-level-box__grid { gap: calc( var(--size-700) * 1.1rem ); } 
  .top-level-box h4 { margin-top: calc( var(--size-500) * 1.2rem ); }

  /* Category Box */
  #top-level { margin-top: -50px; }
}
/* Min HD Desktop */
@media screen and ( min-width: 1435px ) {
  /* BLOCKS */
  /* Page Header */
  .template-top-level.page-header { min-height: 500px; }
  .template-top-level .page-header__inner { max-width: 800px; }

  /* Industries Box */
  .top-level-box__grid { gap: calc( var(--size-800) * 1rem ); }
  .top-level-box h4 { margin-top: calc( var(--size-600) * 1.12rem ); }

  /* Category Box */
  #top-level { margin-top: -80px; }
}