/*
Version: 1.1
Date: 10/4/2022
*/
/*--------------------------------------------------*/
/*fonts*/
@font-face {
  font-family: "Avenir LT Std Black";
  src: url("../fonts/Avenir-LT-95-Black.ttf");
}
/*--------------------------------------------------*/
/*color palette*/
/*--------------------------------------------------*/
/*sizing*/
/*
Version: 1.0
Date: 5/25/2022
*/
html {
  font-size: 100%; /*Default 16px*/
}

body, button, footer, h1, h2, h3, header, li, nav, ol, p, ul {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
}

input[type=button],
input[type=submit] {
  border: none;
}

/*
Version: 1.1
Date: 10/4/2022
*/
body {
  background-color: #191c26;
  overflow-y: scroll;
  padding-bottom: 70px;
}

h1, h2, h3 {
  font-family: "Avenir LT Std Black", Helvetica, sans-serif;
  margin-bottom: 2rem;
}

h1 {
  color: #ffffff;
  font-size: 3.25rem;
  line-height: 1.5;
}
h1.huge {
  font-size: 6.5rem;
  line-height: 1.25;
  text-transform: uppercase;
}

h2 {
  color: #fac664;
  font-size: 2rem;
  line-height: 1.5;
  padding-top: 4rem;
}

h3 {
  color: #fac664;
  font-size: 1.5rem;
  line-height: 1.25;
  padding-top: 4rem;
}

img {
  display: block;
}

input[type=email],
input[type=password],
input[type=text],
textarea {
  background-color: #fff;
  border: 0;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  height: 2rem;
  padding: 0 0.5rem;
  width: 12rem;
}
input[type=email].wider,
input[type=password].wider,
input[type=text].wider,
textarea.wider {
  width: 16rem;
}

textarea {
  border-radius: 20px;
  height: 6rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 20rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

input[type=checkbox] {
  margin: 0 0.25rem;
}

label {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12rem;
}
label.half-width {
  width: 6rem;
}
label.no-width {
  width: auto;
}

li, p {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

ol, ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

p {
  margin-bottom: 2rem;
}

select {
  background-color: #fff;
  border: 0;
  border-radius: 50px;
  height: 2rem;
  padding: 0 0.5rem;
  width: auto;
}

a:link, a:visited {
  color: #fbad18;
}
a:hover {
  color: #ffffff;
}

a.btn,
input.btn {
  background-color: #fbad18;
  border-radius: 8rem;
  color: #191c26;
  display: inline-block;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
}
a.btn:hover,
input.btn:hover {
  background-color: #ffffff;
  color: #191c26;
  cursor: pointer;
}
a.btn--alternate,
input.btn--alternate {
  background-color: #ffffff;
}
a.btn--alternate:hover,
input.btn--alternate:hover {
  background-color: #fbad18;
}

/*
Version: 1.1
Date: 4/1/2023

Description: Layout used in the display of the marketing website
*/
.l-inner-stage {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  width: 100%;
}
.l-inner-stage--half {
  max-width: 480px;
}
.l-inner-stage--narrow {
  max-width: 720px;
}
.l-inner-stage--narrower {
  max-width: 600px;
}
.l-inner-stage--wide {
  max-width: 1600px;
}

.l-site-body {
  background-color: #191c26;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.l-site-footer {
  border-top: 1px solid #333333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem;
  text-align: center;
  width: 100%;
}
.l-site-footer__text {
  color: #999999;
}

.l-site-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #333333;
  background-color: #191c26;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}
.l-site-header > * {
  height: 60px;
  position: absolute;
  top: 0;
}
.l-site-header__callouts {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 2rem;
}
.l-site-header__logo-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.l-site-header__logo-container img {
  max-height: 35px;
  width: auto;
}
.l-site-header__menu-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 2em;
}
.l-site-header__text {
  color: #ffffff;
  margin-bottom: 0;
}

.l-three-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
.l-three-column__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 1rem;
  width: 33%;
}

.l-two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-two-column__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
.l-two-column__item:nth-child(even) {
  padding-left: 2rem;
}
.l-two-column__item:nth-child(odd) {
  padding-right: 2rem;
}

.section-band {
  padding: 4rem 2rem;
  text-align: center;
}
.section-band .section-band {
  padding-left: 0;
  padding-right: 0;
}
.section-band--align-left {
  text-align: left;
}
.section-band--alternate-1 {
  background-color: #ffffff;
  /*need to rework this so that there are no color conflicts*/
}
.section-band--alternate-1 * {
  color: #191c26;
}
.section-band--alternate-1 .btn {
  background-color: #fbad18;
  color: #191c26;
}
.section-band--alternate-1 .btn:hover {
  background-color: #191c26;
  color: #ffffff;
}
.section-band--alternate-2 {
  background-color: #fbad18;
}
.section-band--alternate-2 * {
  color: #191c26;
}
.section-band--alternate-2 .btn {
  background-color: #191c26;
  color: #ffffff;
}
.section-band--alternate-3 {
  background-color: #191c26;
}
.section-band--centered-vertically {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-band--full-height {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 60px);
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
}
.section-band--images-across {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding-bottom: 0 !important; /*rework so !important not needed*/
  padding-top: 0 !important;
}

#l-menu-container {
  display: block;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
}
#l-menu-container input[type=checkbox] {
  cursor: pointer;
  display: block;
  height: 22px;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 30px;
  z-index: 2;
}
#l-menu-container input[type=checkbox]:checked ~ span.hamburger-line {
  background: #232323;
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(-2px, -1px);
          transform: rotate(45deg) translate(-2px, -1px);
}
#l-menu-container input[type=checkbox]:checked ~ span.hamburger-line:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(0, -1px);
          transform: rotate(-45deg) translate(0, -1px);
}
#l-menu-container input[type=checkbox]:checked ~ span.hamburger-line:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}
#l-menu-container input[type=checkbox]:checked ~ ul {
  -webkit-transform: none;
          transform: none;
}
#l-menu-container span.hamburger-line:first-child {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}
#l-menu-container span.hamburger-line:nth-last-child(2) {
  margin-bottom: 0;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}
#l-menu-container .hamburger-line {
  background: #fbad18;
  display: block;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  -webkit-transform-origin: 2px 0px;
          transform-origin: 2px 0px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  width: 30px;
  z-index: 1;
}

#l-main-menu {
  background: #fbad18;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100vh;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 75px 4rem;
  position: fixed;
  top: 0;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  width: 500px;
}
#l-main-menu a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #232323;
  display: block;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#l-main-menu a.selected {
  border: 1px solid #191c26;
}
#l-main-menu a:hover {
  background-color: #191c26;
  color: #ffffff;
}
#l-main-menu li {
  font-size: 1.5rem;
  line-height: 2;
}
#l-main-menu .subnav {
  list-style: none;
  margin-bottom: 0;
  padding-left: 1rem;
}
#l-main-menu .subnav li {
  font-size: 1.25rem;
}
#l-main-menu .subnav li a {
  padding-left: 1rem;
  padding-right: 1rem;
}

/*
Version: 1.0
Date: 10/5/2022

Description: Modules used in the display of the marketing website
*/
.badge-5-year {
  background: no-repeat 0.5rem center/1.5rem url("../_images/material-icons/military_tech_white_24dp.svg"), #963;
  border-radius: 4rem;
  color: #ffffff;
  cursor: default;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0 1rem 0 2rem;
}

.badge-10-year {
  background: no-repeat 0.5rem center/1.5rem url("../_images/material-icons/military_tech_white_24dp.svg"), #808080;
  border-radius: 4rem;
  color: #ffffff;
  cursor: default;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0 1rem 0 2rem;
}

.badge-15-year {
  background: no-repeat 0.5rem center/1.5rem url("../_images/material-icons/military_tech_white_24dp.svg"), #c93;
  border-radius: 4rem;
  color: #ffffff;
  cursor: default;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0 1rem 0 2rem;
}

.badge-20-year {
  background: no-repeat 0.5rem center/1.5rem url("../_images/material-icons/military_tech_white_24dp.svg"), #4da1b3;
  border-radius: 4rem;
  color: #ffffff;
  cursor: default;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0 1rem 0 2rem;
}

.cellhawk-expert {
  background: no-repeat 0.5rem center/1.5rem url("../_images/material-icons/phone_iphone_white_24dp.svg"), #264f97;
  border-radius: 4rem;
  color: #ffffff;
  cursor: default;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0 1rem 0 2rem;
}

.btns-across {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}
.btns-across__bullet-divider {
  background-color: #4b5573;
  border-radius: 50rem;
  display: inline-block;
  height: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  width: 0.5rem;
}

.checkmark-list {
  list-style: none;
  padding-left: 0;
}
.checkmark-list li {
  background-image: url("../_images/material-icons/check_circle_outline_white_24dp.svg");
  background-position: left top 3px;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  line-height: 2;
  padding-left: 2rem;
}
.checkmark-list li.boots {
  background-image: url("../_images/material-icons/boot_white_24dp.svg");
}
.checkmark-list li.covered-parking {
  background-image: url("../_images/material-icons/time_to_leave_white_24dp.svg");
}
.checkmark-list li.fitness {
  background-image: url("../_images/material-icons/fitness_center_white_24dp.svg");
}
.checkmark-list li.flex {
  background-image: url("../_images/material-icons/home_white_24dp.svg");
}
.checkmark-list li.identity-guard {
  background-image: url("../_images/material-icons/fingerprint_white_24dp.svg");
}
.checkmark-list li.insurance {
  background-image: url("../_images/material-icons/health_and_safety_white_24dp.svg");
}
.checkmark-list li.matching-401k {
  background-image: url("../_images/material-icons/paid_white_24dp.svg");
}
.checkmark-list li.pto {
  background-image: url("../_images/material-icons/event_available_white_24dp.svg");
}

.department-badge {
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.divider {
  border-top: 1px dashed #4d4d4d;
  height: 1px;
  margin-bottom: 1.3333333333rem;
  margin-top: 1.3333333333rem;
  width: 100%;
}

.faq-card {
  border: 1px solid #4b5573;
  margin-bottom: 2rem;
  padding: 2rem;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
}
.footer-links a:link,
.footer-links a:visited {
  color: #cccccc;
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: #fbad18;
}

.footer-seals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}

.form-enhanced {
  border: 1px solid #fbad18;
  padding: 1rem 2rem;
}
.form-enhanced img {
  border: 1px solid #999999;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery__item {
  width: 25%;
}
.gallery__item img {
  height: auto;
  width: 100%;
}

.hamburger-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 10px;
}

.hamburger-icon {
  -ms-flex-line-pack: justify;
      align-content: space-between;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 20px;
  width: 40px;
}
.hamburger-icon__bar {
  background-color: #fbad18;
  display: block;
  height: 2px;
  width: 100%;
}

.hero-photo-caption {
  background-color: #333333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  bottom: 2rem;
  left: 50%;
  padding: 1rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 50%;
}

.jobs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.jobs-list__job-posting {
  padding: 2rem;
  width: calc(50% - 4rem);
}
.jobs-list__job-title {
  margin-bottom: 1rem;
}
.jobs-list__job-title a:link,
.jobs-list__job-title a:visited {
  text-decoration: none;
}

.jobs-module {
  border: 1px solid #4b5573;
  padding: 2rem 2rem 0 2rem;
}

.jobs-teams {
  border-bottom: 1px dashed #4b5573;
  border-top: 1px dashed #4b5573;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.jobs-teams li {
  line-height: inherit;
}
.jobs-teams__btn {
  background-color: #fac664;
  border-radius: 8rem;
  color: #191c26;
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding: 0.5rem 1.25rem;
}
.jobs-teams__btn--active {
  background-color: #666666;
  color: #fff;
}

.logos-collection {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logos-collection__item {
  border: 1px solid #d9d9d9;
  border-radius: 1rem;
  padding: 1rem;
}
.logos-collection__item img {
  height: 4rem;
  width: auto;
}

.map-and-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.map-and-text__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1;
  background-color: #f00;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-height: 400px;
  opacity: 0.9;
  padding: 0 2rem;
  position: absolute;
  text-align: center;
  z-index: 2;
}

.mini-logo-header {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
}
.mini-logo-header__ft-wordmark {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.mini-logo-header__logo-divider {
  background-color: #6fa9d3;
  display: block;
  height: 35px;
  width: 1px;
  margin-left: 20px;
  margin-right: 20px;
}

.news-announcement-dialog {
  background-color: #1e7bbe;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 0px 100px #191c26;
          box-shadow: 0px 0px 100px #191c26;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  z-index: 99;
}
.news-announcement-dialog .ui-dialog-content {
  padding: 0 2rem 2rem 2rem;
}
.news-announcement-dialog .ui-dialog-titlebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2rem;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
}
.news-announcement-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  color: #fff;
  text-decoration: underline;
}
.news-announcement-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close:hover {
  color: #000;
  cursor: pointer;
}

.panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
  row-gap: 2rem;
}
.panels__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
  padding-right: 2rem;
}
.panels--2-across .panels__item {
  width: 50%;
}
.panels--3-across .panels__item {
  width: 33%;
}
.panels--4-across .panels__item {
  width: 25%;
}
.panels--5-across .panels__item {
  width: 20%;
}

.page-subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-subnav__item {
  float: none;
}
.page-subnav__item a {
  border: 1px solid #191c26;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 0.5rem 1rem;
}
.page-subnav__item--selected a {
  background-color: #191c26;
  border: 1px solid #4b5573;
  color: #ffffff;
  text-decoration: none;
}

.page-subtitle {
  color: #fac664;
  font-size: 2rem;
}

.person-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.person-card img {
  border-radius: 1rem;
}
.person-card__details {
  padding-left: 2rem;
  padding-right: 4rem;
  text-align: left;
}
.person-card__flair {
  margin-bottom: 1rem;
}
.person-card__name {
  color: #fac664;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.person-card__nick {
  border: 1px solid #4d4d4d;
  border-radius: 4rem;
  color: #fac664;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.person-card__title {
  color: #99a1bd;
  margin-bottom: 0.5rem;
}

.person-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}
.person-grid__item {
  width: calc(50% - 2rem);
}

.photo-collage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.photo-collage img {
  height: auto;
  width: 100%;
}
.photo-collage__col {
  width: 50%;
}
.photo-collage__col--four {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.photo-collage__col--four img {
  width: 50%;
}
.photo-collage__col--full-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.photo-collage__col--full-width img {
  width: 25%;
}

.registration-personas {
  height: 500px;
}
.registration-personas__item {
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  width: calc(50% - 10px);
}
.registration-personas__item--persona-1 {
  background-color: #3893d9;
  float: left;
  height: 100%;
  margin-right: 10px;
}
.registration-personas__item--persona-2 {
  background-color: #69b237;
  float: right;
  height: calc(70% - 10px);
  margin-bottom: 10px;
  margin-left: 10px;
}
.registration-personas__item--persona-3 {
  background-color: #b25d2e;
  float: right;
  height: calc(30% - 10px);
  margin-left: 10px;
  margin-top: 10px;
}
.registration-personas__item:hover {
  background-color: #fbad18;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.registration-personas__item:hover p {
  color: #191c26;
}

.registration-personas-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.registration-personas-new__item {
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0.5rem 1rem 0.5rem;
  padding: 2rem;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  width: calc(50% - 1rem);
}
.registration-personas-new__item--full-width {
  width: calc(100% - 1rem);
}
.registration-personas-new__item p {
  color: #191c26;
}
.registration-personas-new__item--persona-1 {
  background-color: #5cadeb;
}
.registration-personas-new__item--persona-1 .registration-personas-new__services-list li {
  background-color: #89c4f0;
}
.registration-personas-new__item--persona-2 {
  background-color: #57b950;
}
.registration-personas-new__item--persona-2 .registration-personas-new__services-list li {
  background-color: #9dd699;
}
.registration-personas-new__item--persona-3 {
  background-color: #e3c52b;
}
.registration-personas-new__item--persona-3 p {
  color: #191c26;
}
.registration-personas-new__item--persona-3 .registration-personas-new__services-list li {
  background-color: #efdd85;
}
.registration-personas-new__item--persona-4 {
  background-color: #cf6944;
}
.registration-personas-new__item--persona-4 p {
  color: #191c26;
}
.registration-personas-new__item--persona-4 .registration-personas-new__services-list li {
  background-color: #e4aa96;
}
.registration-personas-new__item:hover {
  background-color: #fff;
  -webkit-transition: background-color 0.5s, -webkit-transform 0.25s;
  transition: background-color 0.5s, -webkit-transform 0.25s;
  transition: background-color 0.5s, transform 0.25s;
  transition: background-color 0.5s, transform 0.25s, -webkit-transform 0.25s;
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
}
.registration-personas-new__item:hover p {
  color: #191c26;
}
.registration-personas-new__item img {
  height: auto;
  margin-left: auto;
  margin-right: auto;
  width: 240px;
}
.registration-personas-new__services-list {
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
.registration-personas-new__services-list li {
  background-color: #fff;
  border-radius: 50px;
  color: #191c26;
  list-style: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.reveal {
  opacity: 0;
  position: relative;
  -webkit-transition: 1.5s all ease;
  transition: 1.5s all ease;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.reveal.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.side-by-side-panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32rem;
}
.side-by-side-panels__panel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 50%;
}
.side-by-side-panels__panel img {
  height: auto;
  width: 150%;
}
.side-by-side-panels__panel:nth-child(1) {
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
}
.side-by-side-panels__panel:nth-child(2) {
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
}
.side-by-side-panels__panel--alternate-bg {
  background-color: #fbad18;
}
.side-by-side-panels__panel--text {
  padding: 4rem;
}
.side-by-side-panels__panel--text p {
  color: #191c26;
}
.side-by-side-panels__panel--photo {
  background-position: center;
}

.side-photo-for-text {
  float: left;
  margin: 0.5rem 2rem 0.5rem 0;
}

.testimonial-card {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 1rem;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4rem;
  padding: 2rem 4rem;
}
.testimonial-card__photo {
  border: 1px solid #99a1bd;
  -webkit-box-shadow: 0 20px 20px #cccccc;
          box-shadow: 0 20px 20px #cccccc;
  margin: 2rem;
}

/*these were prev labeled as deco styles*/
.bg-cellhawk {
  background-image: url("../_images/bg_map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid #99a1bd;
  border-bottom: 1px solid #99a1bd;
  height: 600px;
  position: relative;
}
.bg-cellhawk .bg-cellhawk-overlay {
  background-image: url("../_images/bg_map_overlay.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: calc(100% - 8rem);
}

.bg-rtc {
  background-image: url("../_images/bg_map-2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid #fac664;
  border-bottom: 1px solid #fac664;
  height: 600px;
  position: relative;
}

/*these could have better names, describing their orientation*/
.bg-geosphere-1 {
  background-image: url("../_images/bg_graphic-1.svg");
  background-position: center bottom -900px;
  background-repeat: no-repeat;
  background-size: 1080px;
}

.bg-geosphere-2 {
  background-image: url("../_images/bg_graphic-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1440px;
}

.bg-geosphere-3 {
  background-image: url("../_images/bg_graphic-1.svg");
  background-position: right -270px bottom -540px;
  background-repeat: no-repeat;
  background-size: 1080px;
}

.bg-geosphere-4 {
  background-image: url("../_images/bg_graphic-3.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1440px;
}

.bg-geosphere-5 {
  background-image: url("../_images/bg_graphic-3.svg");
  background-position: right -270px bottom -540px;
  background-repeat: no-repeat;
  background-size: 1080px;
}

.bg-geosphere-6 {
  background-image: url("../_images/bg_graphic-3.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1440px;
}

.bg-geosphere-7 {
  background-image: url("../_images/bg_graphic-4.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1440px;
}

.bg-lines {
  background-image: url("../_images/bg_lines.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-staff {
  background-image: url("../_images/bg_staff.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-ft {
  background-image: url("../_images/bg_ft.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.accent-box {
  border: 1px solid #333333;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 2rem;
}

.advisor-logo {
  height: 4rem;
  width: auto;
}

.alert-text {
  color: #f07074;
}

.bullet {
  margin-left: 1rem;
  margin-right: 1rem;
}

.dots-and-line {
  margin: 1rem auto;
  width: 1rem;
}
.dots-and-line .dot {
  background-color: #fff;
  border-radius: 50px;
  display: block;
  height: 1rem;
  width: 1rem;
}
.dots-and-line .line {
  background-color: #fbad18;
  display: block;
  height: 10rem;
  margin-left: auto;
  margin-right: auto;
  width: 1px;
}

.img-link { /*for <img>*/
  border: 1px solid #fbad18;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.img-link:hover {
  border-color: #ffffff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.screen-grab {
  border: 1px solid #fff;
  height: auto;
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 100%;
}

.text-badge {
  border-radius: 3px;
  display: inline-block;
  font-size: 0.875rem;
  margin-left: 5px;
  padding-left: 5px;
  padding-right: 5px;
}
.text-badge--recommended {
  background-color: #a0e076;
  color: #191c26;
}
.text-badge--not-recommended {
  background-color: #e8262c;
  color: #ffffff;
}

.text-highlight {
  background-color: #fee2af;
}

/*used only on home page*/
.ui-widget-overlay {
  background-color: #191c26;
  height: 100%;
  opacity: 0.75;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}

/*--------------------------------------------------*/
/*text*/
.subtitle,
.subtitle-large,
.subtitle-larger,
.subtitle-largest,
.subtitle-massive {
  font-family: "Avenir LT Std Black", Helvetica, sans-serif;
  line-height: 1.5;
}
.subtitle--alternate-color-1,
.subtitle-large--alternate-color-1,
.subtitle-larger--alternate-color-1,
.subtitle-largest--alternate-color-1,
.subtitle-massive--alternate-color-1 {
  color: #fac664;
}
.subtitle--alternate-color-2,
.subtitle-large--alternate-color-2,
.subtitle-larger--alternate-color-2,
.subtitle-largest--alternate-color-2,
.subtitle-massive--alternate-color-2 {
  color: #e9242a;
}
.subtitle--alternate-color-3,
.subtitle-large--alternate-color-3,
.subtitle-larger--alternate-color-3,
.subtitle-largest--alternate-color-3,
.subtitle-massive--alternate-color-3 {
  color: #191c26;
}

.subtitle {
  font-size: 1.5rem;
}

.subtitle-large {
  font-size: 2rem; /*this multiplier should be a var so it can be used w/ consistency in media queries*/
}

.subtitle-larger {
  font-size: 3rem;
}

.subtitle-largest {
  font-size: 6rem;
  line-height: 1.25;
}

.subtitle-massive {
  font-size: 14rem;
  line-height: 1.25;
}

.text-large {
  font-size: 1.4rem;
}

.text-larger {
  font-size: 2rem;
  line-height: 1.625;
}

.text-large--alternate-color-1,
.text-larger--alternate-color-1 {
  color: #fac664;
}
.text-large--alternate-color-2,
.text-larger--alternate-color-2 {
  color: #e9242a;
}

.text-small {
  font-size: 0.875rem;
}

/*
Version: 1.0
Date: 5/25/2022
*/
/*--------------------------------------------------*/
/*margins and padding*/
.u-margin-bottom {
  margin-bottom: 2rem;
}

.u-margin-bottom-2x {
  margin-bottom: 4rem;
}

.u-margin-bottom-4x {
  margin-bottom: 8rem;
}

.u-margin-bottom-none {
  margin-bottom: 0;
}

.u-margin-bottom-sm {
  margin-bottom: 0.5rem;
}

.u-margin-right {
  margin-right: 2rem;
}

.u-margin-top {
  margin-top: 2rem;
}

.u-margin-top-2x {
  margin-top: 4rem;
}

.u-margin-top-4x {
  margin-top: 8rem;
}

.u-margin-top-none {
  margin-top: 0;
}

.u-margin-top-sm {
  margin-top: 1rem;
}

.u-padding-bottom-none {
  padding-bottom: 0;
}

.u-padding-top-none {
  padding-top: 0;
}

/*--------------------------------------------------*/
/*text*/
.u-text-no-underline {
  text-decoration: none;
}

.u-text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.u-text-justify {
  text-align: justify;
}

.u-text-right {
  margin-left: auto;
  text-align: right;
}

.u-text-dim {
  color: #b2b2b2;
}

/*--------------------------------------------------*/
/*other*/
.u-border-bottom {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.u-display-inline-block {
  display: inline-block;
}

.u-display-block {
  display: block;
}

.u-image-full-width {
  height: auto;
  width: 100%;
}

/*
Version: 1.0
Date: 10/6/2022
*/
@media print {
  h1, h2, h3, li, p {
    color: #000;
  }
  h1 {
    font-size: 2.4375rem;
    line-height: 1.5;
  }
  h2 {
    font-size: 1.5rem;
    padding-top: 2rem;
  }
  h3 {
    font-size: 1.125rem;
    padding-top: 2rem;
  }
  li, p {
    font-size: 0.875rem;
  }
  .back-to-top-container,
  .l-site-footer,
  .l-site-header {
    display: none;
  }
}
input[type=text].custom-search-field {
  width: 8rem;
}

.btn-search {
  cursor: pointer;
  font-size: 1rem;
}

.l-two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*maybe separate wp theme styles to another doc*/
}
.l-two-column__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
.l-two-column__item:nth-child(even) {
  padding-left: 2rem;
}
.l-two-column__item:nth-child(odd) {
  padding-right: 2rem;
}
.l-two-column__wp-theme-sidebar {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 2rem;
  width: 30%;
}
.l-two-column__wp-theme-sidebar li {
  list-style: none;
}
.l-two-column__wp-theme-sidebar ul {
  padding-left: 0;
}

.widget_search {
  margin-bottom: 2rem;
}

.wp-breadcrumb {
  color: #b2b2b2;
}

.wp-post {
  margin-bottom: 8rem;
}

.icon-feature-mail-unread {
  aspect-ratio: 1/1;
  background-color: transparent;
  background-image: url("../images/business-registration/mark_email_unread_other_24dp.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  border-radius: 10rem;
  display: block;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: 100px;
}

/*--------------------------------------------------*/
/*legacy classes still in use*/
/*some have updated styling to match new theme*/
/*most of these are used in the biz registration*/
.btnStyle1,
.btnStyle3 {
  background-color: #fbad18;
  border-radius: 8rem;
  color: #191c26;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  line-height: 2;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
}

.caps {
  color: #f07074;
  display: none;
  text-align: center;
}

.checkBtn label {
  display: inline;
  float: none;
}

.checkGroup {
  overflow: auto;
}
.checkGroup .checkBtn {
  clear: none !important;
  float: left;
  height: auto;
  margin: 0 15px 0 0 !important;
  padding: 0 !important;
  width: auto;
}

.inputs,
.selection,
.textarea {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}
.inputs.align-center,
.selection.align-center,
.textarea.align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.label {
  float: left;
  text-align: left;
  width: 12rem;
}

.marginBottom5px {
  margin-bottom: 0.5rem;
}

.mimicAnchor {
  color: #fbad18;
  cursor: pointer;
  text-decoration: underline;
}
.mimicAnchor:hover {
  text-decoration: none;
}

.noMarginBottom {
  margin-bottom: 0;
}

.note {
  color: #cccccc;
  font-style: italic;
  font-size: 0.875rem;
  padding-left: 0.5rem;
}

.red,
.req {
  color: #f07074;
}

span.spacer {
  display: block;
  height: 20px;
}

.spacerDivider {
  border-bottom: 1px solid #4d4d4d;
  display: block;
  height: 5px;
  margin-bottom: 10px;
  padding-top: 5px;
}

.spacerSm {
  display: block;
  height: 1rem;
}

#errorMsg {
  border: 1px solid #f07074;
  color: #f07074;
  display: none;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .inputs,
  .selection,
  .textarea {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/*UNIFORM theme*/
/*extras*/
/*these are not part of the original UNIFORM theme files*/
/*--------------------------------------------------*/
/*global components*/
.back-to-top-container {
  bottom: 0;
  left: 0;
  opacity: 0.85;
  padding-bottom: 10px;
  padding-top: 10px;
  position: fixed;
  width: 100%;
  z-index: 99;
}

.btn-circle {
  background: #fbad18;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
  width: 50px;
}
.btn-circle:hover {
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
  -webkit-transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, -webkit-transform 0.5s;
  transition: background 0.5s, transform 0.5s;
  transition: background 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
.btn-circle__arrow {
  display: inline-block;
  position: absolute;
}
.btn-circle__arrow--up {
  border-bottom: 10px solid #191c26;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  left: calc(50% - 10px);
  top: calc(50% - 5px);
}

/*--------------------------------------------------*/
/*responsive styling*/
/*by max-height:*/
@media screen and (max-height: 700px) {
  #l-main-menu {
    overflow-y: scroll;
  }
}
@media screen and (max-height: 700px), screen and (max-width: 800px) {
  .section-band--full-height {
    height: auto;
    padding: 4rem 2rem 12rem 2rem;
  }
}
@media screen and (max-height: 600px) {
  h1 {
    font-size: 1.75rem;
  }
  label {
    width: 100%;
  }
  .jobs-module {
    border: none;
    padding: 0;
  }
  .l-site-header {
    height: 150px;
  }
  .l-site-header__callouts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 80px;
  }
  .l-site-header__phone {
    margin-bottom: 0.5rem;
  }
  .person-card__nick {
    margin-bottom: 1rem;
  }
  #l-main-menu {
    width: 100%;
  }
}
/*by max-width:*/
@media screen and (max-width: 1600px) {
  .subtitle {
    font-size: 1.3125rem;
  }
  .subtitle-large {
    font-size: 1.75rem;
  }
  .subtitle-larger {
    font-size: 2.625rem;
  }
  .subtitle-largest {
    font-size: 5.25rem;
    line-height: 1.25;
  }
  .subtitle-massive {
    font-size: 12.25rem;
  }
  .text-large {
    font-size: 1.3125rem;
  }
  .text-larger {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 1440px) {
  .l-site-header__logo-container {
    border-left: 1px solid #333333;
    padding-left: 2rem;
    left: 6rem;
    -webkit-transform: none;
            transform: none;
  }
  .testimonial-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1280px) {
  .person-grid__item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .hero-photo-caption {
    bottom: 0;
    max-width: none;
    width: 100%;
  }
  .l-site-header {
    height: 120px;
  }
  .l-site-header__callouts {
    border-top: 1px solid #333333;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    right: auto;
    top: 60px;
    width: 100%;
  }
  .l-site-header__logo-container {
    border-left: none;
    left: calc(50% - 76px);
    padding-left: 0;
  }
  .l-two-column {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-two-column__item {
    width: 100%;
  }
  .l-two-column__item:nth-child(even) {
    padding-left: 0;
  }
  .l-two-column__item:nth-child(odd) {
    padding-right: 0;
  }
  .l-two-column__wp-theme-sidebar {
    width: 100%;
  }
  .l-two-column__wp-theme-sidebar input[type=text].custom-search-field {
    width: 12rem;
  }
  .l-two-column__wp-theme-sidebar #menu-success-stories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 4rem;
  }
  .l-three-column {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-three-column__item {
    width: 100%;
  }
  .panels {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 2rem;
  }
  .panels--3-across .panels__item, .panels--4-across .panels__item {
    width: 50%;
  }
  .panels--5-across .panels__item {
    width: 33%;
  }
  .photo-collage__col {
    width: 100%;
  }
  .photo-collage__col--full-width img {
    width: 50%;
  }
  .subtitle {
    font-size: 1.125rem;
  }
  .subtitle-large {
    font-size: 1.5rem;
  }
  .subtitle-larger {
    font-size: 2.25rem;
  }
  .subtitle-largest {
    font-size: 4.5rem;
    line-height: 1.25;
  }
  .subtitle-massive {
    font-size: 10.5rem;
  }
  .text-large {
    font-size: 1.125rem;
  }
  .text-larger {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 960px) {
  .side-by-side-panels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .side-by-side-panels__panel {
    width: 100%;
  }
  .side-by-side-panels__panel:nth-child(1) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .side-by-side-panels__panel:nth-child(2) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
  .side-by-side-panels__panel--photo {
    height: 20rem;
  }
  .side-by-side-panels__panel--text {
    padding: 2rem;
  }
}
@media screen and (max-width: 800px) {
  h1 {
    font-size: 2rem;
  }
  h1.huge {
    font-size: 4rem;
  }
  a.btn--larger,
  input.btn--larger {
    font-size: 1.25rem;
  }
  .checkmark-list {
    margin-bottom: 0;
  }
  .gallery__item {
    width: 50%;
  }
  .hide-on-low-res-800 {
    display: none;
  }
  .jobs-list__job-posting {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .jobs-list__job-posting:nth-child(even) {
    margin-left: 0;
  }
  .jobs-list__job-posting:nth-child(odd) {
    margin-right: 0;
  }
  .logos-collection {
    gap: 1rem;
  }
  .logos-collection__item img {
    height: 2rem;
  }
  .mini-logo-header__ft-wordmark {
    font-size: 1.2rem;
  }
  .page-subnav__item a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .panels .panels__item {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .person-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .person-card img {
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .person-card__details {
    padding-left: 0;
    padding-right: 0;
  }
  .person-card__flair, .person-card__name, .person-card__title {
    text-align: center;
  }
  .registration-personas__item,
  .registration-personas-new__item {
    height: auto;
    margin-bottom: 10px;
    margin-top: 0;
    width: 100%;
  }
  .registration-personas__services-list,
  .registration-personas-new__services-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-band--full-height {
    height: auto;
    padding: 4rem 2rem 12rem 2rem;
  }
  .testimonial-card {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #l-main-menu {
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
  }
  #l-main-menu li {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  img.responsive-img {
    height: auto;
    width: 80%;
  }
  .gallery__item {
    width: 100%;
  }
  .hide-on-low-res-600 {
    display: none;
  }
  .new-line-on-low-res {
    display: block;
  }
  .news-announcement-dialog {
    width: 95% !important;
  }
  .news-announcement-dialog .ui-dialog-content {
    padding: 0 1rem 1rem 1rem;
  }
}