.grid-bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

header.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  perspective: 120px;
  transition: all 0.2s ease-in-out;
}
header.mainHeader.darken:before {
  visibility: visible;
  opacity: 1;
}
header.mainHeader.scrolledDown {
  transform: translateY(-100%);
}
header.mainHeader.scrolledDown .navbarFace.face_front {
  box-shadow: none;
}
header.mainHeader:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
header.mainHeader .headerWrapper {
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 1680px;
  height: 60px;
  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
  transform: translateZ(-30px);
}
header.mainHeader .headerWrapper.rotateSearch {
  transform: translateZ(-30px) rotateX(90deg);
}
header.mainHeader .navbarFace {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 24px;
  padding: 0 24px;
}
header.mainHeader .navbarFace.face_front {
  transform: rotateY(0deg) translateZ(30px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
header.mainHeader .navbarFace.face_bottom {
  transform: rotateX(-90deg) translateZ(-30px);
  background-color: #f2f4f8;
}
header.mainHeader nav {
  display: flex;
}
header.mainHeader nav a {
  font-size: 15px;
  display: flex;
  font-weight: 500;
  text-decoration: none;
  color: black;
  white-space: nowrap;
  padding: 0 16px;
  transition: all 0.1s ease-in-out;
  border-radius: 4px;
  user-select: none;
}

nav.logoWrapper a.headerLogoLink {
  display: flex;
  padding: 0;
}
nav.logoWrapper a.headerLogoLink img {
  height: 30px;
  width: auto;
}

nav.primaryNavWrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  align-items: stretch;
  padding: 4px 0;
}
nav.primaryNavWrapper .pageWrapper {
  display: flex;
  align-items: stretch;
}
nav.primaryNavWrapper .pageWrapper.active .pageDropdown {
  visibility: visible;
  opacity: 1;
}
nav.primaryNavWrapper .pageWrapper.active .mainLink {
  background-color: #f2f4f8;
}
nav.primaryNavWrapper .pageWrapper.active .mainLink i {
  transform: rotateZ(180deg);
}
nav.primaryNavWrapper .pageDropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-top: 8px;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
nav.primaryNavWrapper .mainLink {
  display: flex;
  align-items: center;
}
nav.primaryNavWrapper .mainLink:hover {
  background-color: #f2f4f8;
}
nav.primaryNavWrapper .mainLink i {
  margin-left: 8px;
  font-size: 12px;
  line-height: 0;
}
nav.primaryNavWrapper .pageLink {
  padding-top: 12px;
  padding-bottom: 12px;
}
nav.primaryNavWrapper .pageLink:hover {
  background-color: rgba(245, 130, 32, 0.25);
}

nav.secondaryNavWrapper .searchButton {
  font-size: 18px;
}
nav.secondaryNavWrapper .loginButton {
  color: white;
}

button.hamMenu {
  display: none;
  flex-direction: column;
  grid-gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
button.hamMenu hr {
  border: none;
  margin: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: black;
  transition: inherit;
}

.searchbarForm {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 8px 0;
  grid-gap: 8px;
}
.searchbarForm input {
  flex: 1;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: 18px;
  padding: 0 16px;
}

@media all and (max-width: 1279px) {
  header.mainHeader {
    padding: 24px 24px 0;
  }
  header.mainHeader.mobileMenu button.hamMenu {
    background-color: #F58220;
  }
  header.mainHeader.mobileMenu button.hamMenu hr {
    background-color: white;
  }
  header.mainHeader.mobileMenu nav.primaryNavWrapper {
    display: flex;
  }
  header.mainHeader .navbarFace {
    padding: 0 8px;
  }
  header.mainHeader .logoWrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  header.mainHeader nav a {
    justify-content: center;
  }
  header.mainHeader nav.primaryNavWrapper {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    top: 100%;
    background-color: white;
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 4px;
    padding: 4px;
  }
  header.mainHeader nav.primaryNavWrapper .pageWrapper {
    width: 100%;
    flex-direction: column;
    border-radius: 8px;
  }
  header.mainHeader nav.primaryNavWrapper .pageWrapper:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid lightgrey;
  }
  header.mainHeader nav.primaryNavWrapper .pageWrapper.active {
    background-color: #f2f4f8;
    border: 2px solid #f2f4f8;
  }
  header.mainHeader nav.primaryNavWrapper .pageWrapper.active .pageDropdown {
    max-height: 400px;
  }
  header.mainHeader nav.primaryNavWrapper .pageWrapper .pageDropdown {
    position: relative;
    margin: 0;
    box-shadow: none;
    max-height: 0;
    transition: all 0.2s ease-in-out;
    padding: 0;
  }
  header.mainHeader nav.primaryNavWrapper .pageWrapper .mainLink {
    font-weight: bold;
    width: 100%;
    padding: 16px;
  }
  header.mainHeader nav.secondaryNavWrapper {
    order: -1;
  }
  header.mainHeader nav.secondaryNavWrapper .loginButton {
    display: none;
  }
  header.mainHeader button.hamMenu {
    display: flex;
  }
}
@media all and (max-width: 639px) {
  nav.logoWrapper a.headerLogoLink img {
    height: 24px;
  }
}
.grid-bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

footer.mainFooter {
  width: 100%;
  background-color: #0b162e;
  overflow: hidden;
}
footer.mainFooter:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
footer.mainFooter .footerWrapper {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  padding: 64px;
  padding-bottom: 0;
}
footer.mainFooter .footerWrapper > *:first-child {
  padding-left: 0;
}
footer.mainFooter .footerWrapper > *:last-child {
  padding-right: 0;
}
footer.mainFooter .signCol figure {
  position: absolute;
  width: 60%;
  top: -30px;
}
footer.mainFooter .linksCol .navGrid {
  width: 100%;
}
footer.mainFooter .linksCol .footerNav {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
}
footer.mainFooter .linksCol .footerNav .navColTitle {
  color: #81A8E5;
  margin: 0;
}
footer.mainFooter .linksCol .footerNav a {
  color: white;
  padding: 0;
}
footer.mainFooter .linksCol .navFooter {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid white;
  display: flex;
  width: 100%;
  justify-content: space-between;
  grid-gap: 64px;
}
footer.mainFooter .linksCol .navFooter p {
  color: lightgrey;
  margin: 0;
}
footer.mainFooter .linksCol .navFooter p.legalLinks a:not(:last-child):after {
  content: "|";
  margin-left: 12px;
  padding-right: 12px;
}
footer.mainFooter .linksCol .navFooter p a {
  color: inherit;
}

@media all and (max-width: 1023px) {
  footer.mainFooter .footerWrapper {
    max-width: 640px;
    padding-left: 32px;
    padding-right: 32px;
  }
  footer.mainFooter .signCol {
    display: none;
  }
  footer.mainFooter .linksCol .navGrid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 64px;
  }
  footer.mainFooter .linksCol .navGrid:before {
    content: "";
    position: absolute;
    right: 0;
    top: 64px;
    height: 100%;
    width: 50%;
    background-image: url(/assets//images/footer/citgo-eurosign-mirror.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
  }
  footer.mainFooter .linksCol .navFooter {
    flex-direction: column;
    grid-gap: 8px;
    text-align: center;
    padding-bottom: 24px;
  }
  footer.mainFooter .linksCol .navFooter p {
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  footer.mainFooter .footerWrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media all and (max-width: 400px) {
  footer.mainFooter .linksCol .navGrid:before {
    display: none;
  }
}
.grid-bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero {
  height: 80vh;
  width: 100%;
  background-color: black;
  border-radius: 24px;
  border: 16px solid white;
  overflow: hidden;
}
.hero .carousel {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.hero .carousel:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(-180deg, transparent, rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.hero .carousel .slideContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.hero .carousel .slide {
  width: 100%;
  min-width: 100%;
  height: 100%;
}
.hero .carousel .slide video,
.hero .carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .carousel .controller {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: flex-end;
  grid-gap: 8px;
  z-index: 2;
}
.hero .carousel .controller .control {
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.hero .carousel .controller .control:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.hero .carousel .controller .control.active.autoplay .progressBar hr {
  animation: progressFill 6s linear forwards;
}
.hero .carousel .controller .control.active .progressBar hr {
  width: 100%;
}
.hero .carousel .controller .control.active .controlTitle {
  margin-bottom: 16px;
}
.hero .carousel .controller .control.active .description {
  max-height: 200px;
}
.hero .carousel .controller .control * {
  transition: inherit;
}
.hero .carousel .controller .control .progressBar {
  top: -16px;
  flex: 1;
}
.hero .carousel .controller .control .progressBar hr {
  border: none;
  height: 2px;
  width: 0%;
  background-color: #F58220;
  border-radius: 2px;
  margin-left: 0;
  margin-bottom: 0px;
  transition: none;
}
@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.hero .carousel .controller .control .controlTitle {
  margin-bottom: 0;
}
.hero .carousel .controller .control .description {
  max-height: 0;
  overflow: hidden;
}
.hero .carousel .controller .control sup {
  font-size: 12px;
}
.hero .carousel .mobileController {
  display: none;
  position: absolute;
  grid-gap: 8px;
}
.hero .carousel .mobileController .arrow,
.hero .carousel .mobileController .dot {
  cursor: pointer;
}
.hero .carousel .mobileController .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: 16px;
  height: 24px;
  width: 24px;
  border: 1px solid white;
  border-radius: 50%;
  background-color: transparent;
  color: white;
}
.hero .carousel .mobileController .arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.hero .carousel .mobileController .arrow i {
  font-size: 12px;
  line-height: 0;
}
.hero .carousel .mobileController .dots {
  display: flex;
  grid-gap: 8px;
  align-items: center;
}
.hero .carousel .mobileController .dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  padding: 0;
  background-color: transparent;
  border: 1px solid white;
  transition: all 0.2s ease-in-out;
}
.hero .carousel .mobileController .dots .dot:hover {
  background-color: white;
}
.hero .carousel .mobileController .dots .dot.activeDot {
  width: 32px;
  background-color: #F58220;
  border-color: transparent;
}

.quickLinks {
  overflow: hidden;
}
.quickLinks .quickLinksCol:before {
  content: "";
  position: absolute;
  top: -100px;
  right: 100%;
  width: 100px;
  height: 250px;
  background-color: transparent;
  background-image: radial-gradient(#D8E4FB 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  z-index: -1;
}
.quickLinks .clubCITGOCol:before {
  content: "";
  position: absolute;
  top: -10%;
  left: 10%;
  width: 95%;
  height: 100%;
  background-color: transparent;
  background-image: radial-gradient(#D8E4FB 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  z-index: -1;
}
.quickLinks .quickLinksContainer {
  display: flex;
  flex-direction: column;
  max-width: 480px;
}
.quickLinks article.quickLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 16px;
  padding: 16px 0;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.quickLinks article.quickLink:hover {
  padding: 16px;
  background-color: #f2f4f8;
}
.quickLinks article.quickLink:hover .arrow {
  color: white;
  background-color: #F58220;
}
.quickLinks article.quickLink * {
  transition: inherit;
}
.quickLinks article.quickLink:not(:last-child) {
  border-bottom: 1px solid lightgrey;
}
.quickLinks article.quickLink > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.quickLinks article.quickLink .textbox {
  margin-bottom: 0;
}
.quickLinks article.quickLink .qlTitle {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 8px;
}
.quickLinks article.quickLink .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 48px;
  border-radius: 4px;
  background-color: #f2f4f8;
  color: black;
}
.quickLinks .clubCITGOCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  border-radius: 8px;
  background-image: url("/assets/images/backgrounds/blue-rays.jpg");
  background-color: #022358;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.quickLinks .clubCITGOCard.reveal .clubCITGOApp {
  opacity: 1;
  transform: none;
  transition: all 0.5s ease-in-out;
}
.quickLinks .clubCITGOCard .clubCITGOText {
  max-width: 400px;
  margin-bottom: 32px;
}
.quickLinks .clubCITGOCard .clubCITGOApp {
  margin-bottom: -64px;
  opacity: 0;
  transform: translateY(50px);
}

.trisections:before {
  content: "";
  position: absolute;
  top: 128px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f4f8;
}
.trisections .sectionWrapper {
  padding-right: 0;
}
.trisections .trimarkCol {
  margin-top: -64px;
}
.trisections .trimarkCol:before {
  content: "";
  position: absolute;
  top: 60px;
  right: -32px;
  width: 200%;
  height: 100px;
  background-color: transparent;
  background-image: radial-gradient(#D8E4FB 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  z-index: -1;
}
.trisections .triCleanCol:hover .crosshairAccentsContainer {
  transform: scale(0.95);
}
.trisections .triCleanCard {
  overflow: hidden;
  height: 100%;
  background: black;
  padding: 64px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trisections .triCleanCard .videoBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.trisections .triCleanCard .videoBg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.65);
}
.trisections .triCleanCard .videoBg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trisections .triCleanCard .crosshairAccentsContainer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}
.trisections .triCleanCard .crosshairAccentsContainer hr {
  position: absolute;
  border: none;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: unset;
}
.trisections .triCleanCard .crosshairAccentsContainer hr:nth-child(1) {
  top: 32px;
  left: 32px;
}
.trisections .triCleanCard .crosshairAccentsContainer hr:nth-child(2) {
  top: 32px;
  right: 32px;
  transform: rotateZ(90deg);
}
.trisections .triCleanCard .crosshairAccentsContainer hr:nth-child(3) {
  bottom: 32px;
  right: 32px;
  transform: rotateZ(180deg);
}
.trisections .triCleanCard .crosshairAccentsContainer hr:nth-child(4) {
  bottom: 32px;
  left: 32px;
  transform: rotateZ(270deg);
}
.trisections .triCleanCard .crosshairAccentsContainer hr:before, .trisections .triCleanCard .crosshairAccentsContainer hr:after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 48px;
  background-image: linear-gradient(45deg, transparent, #F58220);
}
.trisections .triCleanCard .crosshairAccentsContainer hr:before {
  transform: rotateZ(90deg);
}
.trisections .triCleanCard > * {
  z-index: 3;
}
.trisections .triCleanCard .triCLEANLogo {
  max-width: 300px;
  margin-inline: auto;
}

.illuminate.reveal .illuminateWrapper .stationGlow {
  opacity: 1;
  transition: all 1s ease-in-out;
}
.illuminate:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: transparent;
  background-image: radial-gradient(#D8E4FB 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  z-index: -1;
}
.illuminate .illuminateCard {
  display: flex;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  background-image: url(/assets/images/backgrounds/radar-right.jpg);
  background-blend-mode: multiply;
  background-size: cover;
  padding: 96px;
  overflow: hidden;
}
.illuminate .illuminateWrapper {
  max-width: none;
  width: 100%;
  transform: scale(1.8);
  top: -10%;
  left: 15%;
  align-items: center;
}
.illuminate .illuminateWrapper img {
  width: 100%;
}
.illuminate .illuminateWrapper img.stationGlow {
  opacity: 0;
}
.illuminate .illuminateWrapper img.stationBase {
  position: absolute;
}

.socials.reveal .socialLink {
  animation: slideUp 0.7s ease forwards;
}
.socials.reveal .socialLink:nth-child(1) {
  animation-delay: 0s;
}
.socials.reveal .socialLink:nth-child(2) {
  animation-delay: 0.05s;
}
.socials.reveal .socialLink:nth-child(3) {
  animation-delay: 0.1s;
}
.socials.reveal .socialLink:nth-child(4) {
  animation-delay: 0.15s;
}
.socials.reveal .socialLink:nth-child(5) {
  animation-delay: 0.2s;
}
.socials.reveal .socialLink:nth-child(6) {
  animation-delay: 0.25s;
}
.socials.reveal .socialLink:nth-child(7) {
  animation-delay: 0.3s;
}
.socials.reveal .socialLink:nth-child(8) {
  animation-delay: 0.35s;
}
.socials.reveal .socialLink:nth-child(9) {
  animation-delay: 0.4s;
}
.socials.reveal .socialLink:nth-child(10) {
  animation-delay: 0.45s;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.socials .socialsContainer {
  display: flex;
  grid-gap: 8px;
}
.socials .socialLink {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: black;
  color: white;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
}
.socials .socialLink.instagram {
  background-color: #833ab4;
}
.socials .socialLink.tiktok {
  background-color: #ff0050;
}
.socials .socialLink.linkedin {
  background-color: #0A66C2;
}
.socials .socialLink.facebook {
  background-color: #1877F2;
}
.socials .socialLink.youtube {
  background-color: #FF0000;
}
.socials .socialLink i {
  top: 1px;
}

@media all and (min-width: 1023px) {
  .hero .carousel .controller {
    transform: none !important;
  }
}
@media all and (max-width: 1023px) {
  .hero {
    height: 80vw;
    min-height: 650px;
  }
  .hero .carousel .controller {
    z-index: 2;
    margin-bottom: 42px;
    grid-gap: 0;
    transition: all 0.5s ease-in-out;
  }
  .hero .carousel .controller .controlWrapper {
    min-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero .carousel .controller .control {
    max-width: 640px;
    pointer-events: none;
    opacity: 0;
  }
  .hero .carousel .controller .control.active {
    opacity: 1;
  }
  .hero .carousel .controller .control .description {
    max-height: 200px;
  }
  .hero .carousel .controller .control a {
    pointer-events: auto;
  }
  .hero .carousel .mobileController {
    z-index: 2;
    display: flex;
  }
  .quickLinks .quickLinksContainer {
    max-width: 640px;
  }
  .illuminate .sectionWrapper {
    padding-left: 0 !important;
  }
  .illuminate .illuminateCard {
    padding-top: 64px;
    padding-left: 32px;
    padding-right: 32px;
    flex-direction: column;
  }
  .illuminate .illuminateCard .textbox {
    max-width: 640px;
    margin-inline: auto;
  }
  .illuminate .illuminateCard .illuminateWrapper {
    top: 5%;
    left: 5%;
  }
  .socials .sectionWrapper {
    max-width: 640px !important;
    margin-inline: auto;
  }
  .socials .sectionHeader {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .trisections {
    overflow: hidden;
  }
}
.grid-bg {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

* {
  position: relative;
  box-sizing: border-box;
  font-family: "Univers", "Helvetica", arial, sans-serif;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}
h1:not(:last-child), h2:not(:last-child), h3:not(:last-child), h4:not(:last-child), h5:not(:last-child), h6:not(:last-child) {
  margin-bottom: 24px;
}

h1, .h1 {
  font-size: 44px;
}

h2, .h2 {
  font-size: 36px;
}

h3, .h3 {
  font-size: 28px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 20px;
}

h6, .h6 {
  font-size: 16px;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}
p:not(:last-child) {
  margin-bottom: 24px;
}
p.subheading {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #F58220;
}
p.sm {
  font-size: 14px;
}

a {
  text-decoration: none;
}
a.ext-link:after {
  content: "\f1c5";
  font-family: "bootstrap-icons";
  margin-left: 8px;
}

.textbox {
  width: 100%;
  max-width: 480px;
}
.textbox:not(:last-child) {
  margin-bottom: 32px;
}
.textbox.lg {
  max-width: 640px;
}
.textbox.sm {
  max-width: 400px;
}
.textbox.xsm {
  max-width: 320px;
}
.textbox.center-align {
  margin-inline: auto;
}
.textbox.center {
  text-align: center;
}
.textbox.light *:not(.button) {
  color: white;
}

.grid-container {
  width: 100%;
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(12, 1fr);
  align-items: flex-start;
}
.grid-container.sm-gap {
  grid-gap: 16px;
}
.grid-container.lg-gap {
  grid-gap: 32px;
}
.grid-container.xlg-gap {
  grid-gap: 48px;
}
.grid-container.center-align {
  align-items: center;
}
.grid-container.bottom-align {
  align-items: flex-end;
}
.grid-container.stretch {
  align-items: stretch;
}
.grid-container.split-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-container.split-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-container.split-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-container.split-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-container.split-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-container.split-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid-container.split-7 {
  grid-template-columns: repeat(7, 1fr);
}
.grid-container.split-8 {
  grid-template-columns: repeat(8, 1fr);
}
.grid-container.split-9 {
  grid-template-columns: repeat(9, 1fr);
}
.grid-container.split-10 {
  grid-template-columns: repeat(10, 1fr);
}
.grid-container.split-11 {
  grid-template-columns: repeat(11, 1fr);
}
.grid-container.split-12 {
  grid-template-columns: repeat(12, 1fr);
}
.grid-container .span-1 {
  grid-column: span 1;
}
.grid-container .span-row-1 {
  grid-row: span 1;
}
.grid-container .span-2 {
  grid-column: span 2;
}
.grid-container .span-row-2 {
  grid-row: span 2;
}
.grid-container .span-3 {
  grid-column: span 3;
}
.grid-container .span-row-3 {
  grid-row: span 3;
}
.grid-container .span-4 {
  grid-column: span 4;
}
.grid-container .span-row-4 {
  grid-row: span 4;
}
.grid-container .span-5 {
  grid-column: span 5;
}
.grid-container .span-row-5 {
  grid-row: span 5;
}
.grid-container .span-6 {
  grid-column: span 6;
}
.grid-container .span-row-6 {
  grid-row: span 6;
}
.grid-container .span-7 {
  grid-column: span 7;
}
.grid-container .span-row-7 {
  grid-row: span 7;
}
.grid-container .span-8 {
  grid-column: span 8;
}
.grid-container .span-row-8 {
  grid-row: span 8;
}
.grid-container .span-9 {
  grid-column: span 9;
}
.grid-container .span-row-9 {
  grid-row: span 9;
}
.grid-container .span-10 {
  grid-column: span 10;
}
.grid-container .span-row-10 {
  grid-row: span 10;
}
.grid-container .span-11 {
  grid-column: span 11;
}
.grid-container .span-row-11 {
  grid-row: span 11;
}
.grid-container .span-12 {
  grid-column: span 12;
}
.grid-container .span-row-12 {
  grid-row: span 12;
}
.grid-container .span-full {
  grid-column: 1/-1;
}
.grid-container .img-wrapper {
  margin: 0;
}

.img-wrapper {
  margin: 0;
  display: flex;
}
.img-wrapper:not(:last-child) {
  margin-bottom: 32px;
}
.img-wrapper img {
  width: 100%;
  height: auto;
}

.beam {
  border: none;
  height: 1px;
  width: 120px;
  margin: 0;
  background-image: linear-gradient(45deg, transparent, #F58220);
  margin-bottom: 24px;
}
.beam.blue {
  background-image: linear-gradient(45deg, transparent, #4992F0);
}

body {
  margin: 0;
}

section.section-container {
  width: 100%;
}
section.section-container .section-wrapper {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding: 64px;
  display: flex;
  flex-wrap: wrap;
}
section.section-container .section-wrapper.no-pad-r {
  padding-right: 0;
}
section.section-container .section-wrapper.no-pad-l {
  padding-left: 0;
}
section.section-container .section-wrapper.no-pad-lr {
  padding-left: 0;
  padding-right: 0;
}
section.section-container .section-wrapper.no-pad-t {
  padding-top: 0;
}
section.section-container .section-wrapper.no-pad-b {
  padding-bottom: 0;
}
section.section-container .section-wrapper.no-pad-tb {
  padding-top: 0;
  padding-bottom: 0;
}
section.section-container .section-wrapper.no-pad {
  padding: 0;
}
section.section-container .section-wrapper.full {
  max-width: none;
}
section.section-container .section-header {
  width: 100%;
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  grid-gap: 24px;
}
section.section-container .section-header .textbox {
  margin: 0;
}
section.section-container .section-header.sep:after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid lightgrey;
}
section.section-container .col {
  padding-left: 32px;
  padding-right: 32px;
}
section.section-container .col.col-1 {
  width: 8.3333333333%;
}
section.section-container .col.col-2 {
  width: 16.6666666667%;
}
section.section-container .col.col-3 {
  width: 25%;
}
section.section-container .col.col-4 {
  width: 33.3333333333%;
}
section.section-container .col.col-5 {
  width: 41.6666666667%;
}
section.section-container .col.col-6 {
  width: 50%;
}
section.section-container .col.col-7 {
  width: 58.3333333333%;
}
section.section-container .col.col-8 {
  width: 66.6666666667%;
}
section.section-container .col.col-9 {
  width: 75%;
}
section.section-container .col.col-10 {
  width: 83.3333333333%;
}
section.section-container .col.col-11 {
  width: 91.6666666667%;
}
section.section-container .col.col-12 {
  width: 100%;
}

.button-container {
  display: flex;
  grid-gap: 16px;
}

button {
  border: none;
  font-size: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  color: white;
  background-color: #F58220;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
}
.button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: inherit;
  z-index: -1;
}
.button:hover:before {
  opacity: 1;
}
.button.dark {
  background-color: black;
  color: white;
}
.button.naked {
  color: black;
  background-color: transparent;
}
.button.light {
  color: black;
  background-color: white;
  border: 1px solid black;
}
.button.sm-pad {
  padding: 0 16px;
}
.button i {
  line-height: 0;
}

hr {
  opacity: 1;
}

.naked-link {
  display: flex;
  align-items: center;
}
.naked-link:hover:after {
  margin-left: 16px;
}
.naked-link:after {
  content: "\f138";
  font-family: "bootstrap-icons";
  margin-left: 8px;
  transition: all 0.2s ease-in-out;
}

@media all and (max-width: 1023px) {
  section.section-container .section-wrapper {
    flex-direction: column;
    align-items: center;
    grid-gap: 64px;
    padding-left: 32px;
    padding-right: 32px;
  }
  section.section-container .section-header {
    margin-bottom: 0;
  }
  section.section-container .col {
    padding: 0;
    width: 100% !important;
    max-width: 640px;
  }
}
@media all and (max-width: 639px) {
  section.section-container .section-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
