#header {
  position: fixed;
  width: 100%;
  z-index: 20;
  top: -150px;
  transition: top 0.65s cubic-bezier(0.64, 0, 0.78, 0);
  box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.25);
}
#header.open {
  top: 0;
  transition: top 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.eyebrow {
  width: 100%;
  height: 20px;
  background-color: #1D428A;
}
@media (min-width: 0) {
  .eyebrow {
    display: none;
  }
}
@media (min-width: 1024px) {
  .eyebrow {
    display: block;
  }
}
.eyebrow .eyebrowLinksContainer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: calc(100% - 75px);
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  .eyebrow .eyebrowLinksContainer {
    width: calc(100% - 35px);
  }
}
@media (min-width: 768px) {
  .eyebrow .eyebrowLinksContainer {
    width: calc(100% - 50px);
  }
}
@media (min-width: 1024px) {
  .eyebrow .eyebrowLinksContainer {
    width: calc(100% - 75px);
  }
}
@media (min-width: 1280px) {
  .eyebrow .eyebrowLinksContainer {
    width: calc(100% - 100px);
  }
}
@media (min-width: 1440px) {
  .eyebrow .eyebrowLinksContainer {
    width: calc(100% - 125px);
  }
}
.eyebrow .eyebrowLinksContainer .eyebrowLink {
  color: white;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  cursor: pointer;
}
@media (hover: hover) {
  .eyebrow .eyebrowLinksContainer .eyebrowLink:hover {
    color: #B1B3B3;
  }
}
.eyebrow .eyebrowLinksContainer .eyebrowLink:active {
  color: #B1B3B3;
}
.eyebrow .eyebrowLinksContainer .eyebrowDivider {
  height: 12px;
  width: 1.5px;
  background-color: white;
  margin-left: 12px;
  margin-right: 12px;
}

.mainHeaderDesktop {
  width: 100%;
  height: 100px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 0) {
  .mainHeaderDesktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mainHeaderDesktop {
    display: flex;
  }
}
.mainHeaderDesktop .mhd_contentContainer {
  height: 100%;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (min-width: 0) {
  .mainHeaderDesktop .mhd_contentContainer {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  .mainHeaderDesktop .mhd_contentContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  .mainHeaderDesktop .mhd_contentContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  .mainHeaderDesktop .mhd_contentContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  .mainHeaderDesktop .mhd_contentContainer {
    width: calc(100% - 125px * 2);
  }
}
.mainHeaderDesktop .mhd_contentContainer .mhd_LogoWrapper {
  display: flex;
  align-items: center;
}
.mainHeaderDesktop .mhd_contentContainer .mhd_LogoWrapper a {
  height: fit-content;
  display: block;
}
.mainHeaderDesktop .mhd_contentContainer .mhd_logo {
  width: 245px;
  cursor: pointer;
  display: block;
}
.mainHeaderDesktop .mhd_contentContainer .mhd_linkContainer {
  display: flex;
  align-items: center;
  height: 100%;
}
.mainHeaderDesktop .mhd_contentContainer .mhd_linkContainer .mdh_link {
  color: #1D428A;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  cursor: pointer;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.mainHeaderDesktop .mhd_contentContainer .mhd_linkContainer .mdh_link.active {
  color: #FFB81C;
  border-bottom: solid 8px #FFB81C;
  box-sizing: border-box;
  padding-top: 8px;
  pointer-events: none;
}
@media (hover: hover) {
  .mainHeaderDesktop .mhd_contentContainer .mhd_linkContainer .mdh_link:hover {
    color: #FFB81C;
  }
}
.mainHeaderDesktop .mhd_contentContainer .mhd_linkContainer .mdh_link:active {
  color: #FFB81C;
}
.mainHeaderDesktop .mhd_contentContainer .mhd_linkContainer .blueOutlineBtn {
  margin-left: 20px;
}

.mainHeaderMobile {
  width: 100%;
  height: 90px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
}
@media (min-width: 0) {
  .mainHeaderMobile {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mainHeaderMobile {
    display: none;
  }
}
.mainHeaderMobile .mhm_contentContainer {
  height: 100%;
  display: grid;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (min-width: 0) {
  .mainHeaderMobile .mhm_contentContainer {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  .mainHeaderMobile .mhm_contentContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  .mainHeaderMobile .mhm_contentContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  .mainHeaderMobile .mhm_contentContainer {
    width: calc(100% - 100px * 2);
  }
}
.mainHeaderMobile .mhm_contentContainer .mhm_logo {
  width: 48px;
  cursor: pointer;
}
.mainHeaderMobile .mhm_contentContainer .mhm_hamburger {
  cursor: pointer;
}
.mainHeaderMobile .mhm_contentContainer .mhm_hamburger .mhm_hamburgerLine {
  width: 40px;
  height: 3px;
  background-color: #1D428A;
  border-radius: 3px;
}
.mainHeaderMobile .mhm_contentContainer .mhm_hamburger .mhm_hamburgerSpacer {
  height: 10px;
}

.menuMobileContainer {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: white;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  padding-bottom: 140px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .menuMobileContainer {
    display: none;
  }
}
.menuMobileContainer .menuMobileLinksContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  height: fit-content;
  margin: auto;
  margin: 90px auto 0;
}
@media (min-width: 0) {
  .menuMobileContainer .menuMobileLinksContainer {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileLinksContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  .menuMobileContainer .menuMobileLinksContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  .menuMobileContainer .menuMobileLinksContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  .menuMobileContainer .menuMobileLinksContainer {
    width: calc(100% - 125px * 2);
  }
}
@media (min-height: 700px) {
  .menuMobileContainer .menuMobileLinksContainer {
    padding-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileLinksContainer {
    padding-bottom: 25px;
  }
}
.menuMobileContainer .menuMobileLinksContainer .menuMobileLink {
  font-family: "Termina", sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: #1D428A;
  margin-bottom: 10px;
  cursor: pointer;
  width: fit-content;
  position: relative;
  left: 100px;
  opacity: 0;
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileLinksContainer .menuMobileLink {
    font-size: 34px;
  }
}
@media (hover: hover) {
  .menuMobileContainer .menuMobileLinksContainer .menuMobileLink:hover {
    color: #FFB81C;
  }
}
.menuMobileContainer .menuMobileLinksContainer .mobileMenuStartProjectBtn {
  position: absolute;
  left: 0;
  bottom: -25px;
}
.menuMobileContainer .mobileMenuDivider {
  margin: auto;
  margin: 0 0 0 35px;
  transform-origin: left;
  border-bottom: solid 1px #1D428A;
}
@media (min-width: 0) {
  .menuMobileContainer .mobileMenuDivider {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  .menuMobileContainer .mobileMenuDivider {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  .menuMobileContainer .mobileMenuDivider {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  .menuMobileContainer .mobileMenuDivider {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  .menuMobileContainer .mobileMenuDivider {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 768px) {
  .menuMobileContainer .mobileMenuDivider {
    margin: 0 0 0 50px;
  }
}
.menuMobileContainer .menuMobileContactInfo {
  margin: auto;
}
@media (min-width: 0) {
  .menuMobileContainer .menuMobileContactInfo {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileContactInfo {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  .menuMobileContainer .menuMobileContactInfo {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  .menuMobileContainer .menuMobileContactInfo {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  .menuMobileContainer .menuMobileContactInfo {
    width: calc(100% - 125px * 2);
  }
}
.menuMobileContainer .menuMobileContactInfo .mm_Subhead {
  font-size: 14px;
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileContactInfo .mm_Subhead {
    font-size: 18px;
  }
}
.menuMobileContainer .menuMobileContactInfo .menuMobileLocations, .menuMobileContainer .menuMobileContactInfo .menuMobileContact {
  margin-top: 15px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 370px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations, .menuMobileContainer .menuMobileContactInfo .menuMobileContact {
    grid-template-columns: 100%;
  }
}
@media (min-height: 700px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations, .menuMobileContainer .menuMobileContactInfo .menuMobileContact {
    margin-top: 30px;
  }
}
@media (min-width: 550px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations, .menuMobileContainer .menuMobileContactInfo .menuMobileContact {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations, .menuMobileContainer .menuMobileContactInfo .menuMobileContact {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
  }
}
.menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mm_Subhead, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mm_Subhead {
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (max-width: 370px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mm_Subhead, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mm_Subhead {
    grid-column-end: 2;
  }
}
@media (min-width: 550px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mm_Subhead, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mm_Subhead {
    grid-column-end: 4;
  }
}
.menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mml_LocationName, .menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mmc_ContactName, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mml_LocationName, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mmc_ContactName {
  font-family: Termina, sans-serif;
  font-weight: 800;
  font-size: 10px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mml_LocationName, .menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mmc_ContactName, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mml_LocationName, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mmc_ContactName {
    font-size: 14px;
  }
}
.menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mmc_ContactEmail, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mmc_ContactEmail {
  font-size: 9px;
}
@media (max-width: 370px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mmc_ContactEmail, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mmc_ContactEmail {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations .mmc_ContactEmail, .menuMobileContainer .menuMobileContactInfo .menuMobileContact .mmc_ContactEmail {
    font-size: 12px;
  }
}
.menuMobileContainer .menuMobileContactInfo .menuMobileLocations p, .menuMobileContainer .menuMobileContactInfo .menuMobileContact p {
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileContactInfo .menuMobileLocations p, .menuMobileContainer .menuMobileContactInfo .menuMobileContact p {
    font-size: 14px;
  }
}
.menuMobileContainer .menuMobileSocialGrid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileSocialGrid {
    gap: 40px;
  }
}
.menuMobileContainer .menuMobileSocialGrid .mm_SocialIcon {
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .menuMobileContainer .menuMobileSocialGrid .mm_SocialIcon {
    height: 30px;
    width: 30px;
  }
}
.menuMobileContainer .menuMobileSocialGrid .mm_SocialIcon .mm_SocialIcon_01 {
  fill: #1D428A;
  max-width: 100%;
  max-height: 100%;
}
.menuMobileContainer .menuMobileSocialGrid .mm_SocialIcon .mm_SocialIcon_02 path {
  fill: #1D428A;
}
.menuMobileContainer .menuMobileSocialGrid .mm_SocialIcon .mm_SocialIcon_03 {
  fill: #1D428A;
  max-width: 100%;
  max-height: 100%;
}

.footerContainer {
  width: 100%;
  background-color: #1D428A;
  display: flex;
  justify-content: center;
  position: relative;
}
.footerContainer .footerContentContainer {
  padding-top: 75px;
  padding-bottom: 75px;
  height: 100%;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
  max-width: 1280px;
  margin: auto;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  .footerContainer .footerContentContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  .footerContainer .footerContentContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  .footerContainer .footerContentContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  .footerContainer .footerContentContainer {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 550px) {
  .footerContainer .footerContentContainer {
    max-width: 650px;
  }
}
@media (min-width: 1024px) {
  .footerContainer .footerContentContainer {
    max-width: 750px;
  }
}
@media (min-width: 1280px) {
  .footerContainer .footerContentContainer {
    max-width: 1280px;
    margin: auto;
  }
}
.footerContainer .footerContentContainer .footer_logoMobile {
  width: 48px;
  margin-bottom: 40px;
  display: none;
}
.footerContainer .footerContentContainer .footer_logoDesktop {
  width: 350px;
  max-width: 100%;
  margin-bottom: 40px;
  display: block;
}
.footerContainer .footerContentContainer .footerGrid {
  width: 100%;
  display: grid;
  grid-row-gap: 40px;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerGrid {
    grid-template-columns: fit-content(100%) fit-content(100%);
    grid-template-rows: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    justify-content: space-between;
  }
}
@media (max-width: 370px) {
  .footerContainer .footerContentContainer .footerGrid {
    grid-template-columns: 100%;
    grid-template-rows: fit-content(100%) fit-content(100%) fit-content(100%);
  }
}
@media (min-width: 550px) {
  .footerContainer .footerContentContainer .footerGrid {
    grid-template-rows: fit-content(100%) fit-content(100%);
  }
}
@media (min-width: 768px) {
  .footerContainer .footerContentContainer .footerGrid {
    grid-column-gap: 40px;
    grid-template-columns: 50% 50%;
    grid-template-rows: 41% 59%;
    grid-row-gap: 0;
    justify-content: initial;
  }
}
@media (min-width: 1280px) {
  .footerContainer .footerContentContainer .footerGrid {
    grid-template-columns: fit-content(100%) auto fit-content(100%);
    grid-template-rows: initial;
    grid-row-gap: 40px;
  }
}
.footerContainer .footerContentContainer .footerGrid h4 {
  margin-bottom: 15px;
}
.footerContainer .footerContentContainer .footerGrid h3 {
  color: white;
  margin-bottom: 10px;
  line-height: 100%;
}
.footerContainer .footerContentContainer .footerGrid p {
  font-size: 14px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.25px;
  line-height: 100%;
  margin-bottom: 5px;
}
.footerContainer .footerContentContainer .footerGrid p span {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerGrid .footerLocationWrapper {
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (max-width: 370px) {
  .footerContainer .footerContentContainer .footerGrid .footerLocationWrapper {
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.footerContainer .footerContentContainer .footerGrid .footerLocationWrapper .footerLocations {
  display: flex;
  gap: 35px;
}
.footerContainer .footerContentContainer .footerGrid .footerLocationWrapper .footerLocations .footerLocation .fl_addressContainer:hover .fl_link {
  color: #FFB81C;
}
.footerContainer .footerContentContainer .footerGrid .footerLocationWrapper .footerLocations .footerLocation .fl_link {
  cursor: pointer;
}
@media (hover: hover) {
  .footerContainer .footerContentContainer .footerGrid .footerLocationWrapper .footerLocations .footerLocation .fl_link:hover {
    color: #FFB81C;
  }
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerGrid .footerLocationWrapper .footerLocations {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .footerContainer .footerContentContainer .footerGrid .footerLocationWrapper .footerLocations {
    flex-wrap: wrap;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (min-width: 1280px) {
  .footerContainer .footerContentContainer .footerGrid .footerLocationWrapper .footerLocations {
    flex-direction: row;
  }
}
.footerContainer .footerContentContainer .footerGrid .footerLinkContainer h3 {
  color: white;
  margin-bottom: 8px;
  cursor: pointer;
}
@media (hover: hover) {
  .footerContainer .footerContentContainer .footerGrid .footerLinkContainer h3:hover {
    color: #FFB81C;
  }
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerGrid .footerMenuContainer {
    grid-row-start: initial;
    grid-row-end: initial;
  }
}
@media (max-width: 370px) {
  .footerContainer .footerContentContainer .footerGrid .footerMenuContainer {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (min-width: 1280px) {
  .footerContainer .footerContentContainer .footerGrid .footerMenuContainer {
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;
  }
}
.footerContainer .footerContentContainer .footerGrid .footerMenuContainer h3:hover {
  color: #FFB81C;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerGrid .footerContactContainer {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 370px) {
  .footerContainer .footerContentContainer .footerGrid .footerContactContainer {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-end: 2;
  }
}
@media (min-width: 550px) {
  .footerContainer .footerContentContainer .footerGrid .footerContactContainer {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (min-width: 1280px) {
  .footerContainer .footerContentContainer .footerGrid .footerContactContainer {
    display: block;
    grid-row-start: initial;
    grid-row-end: initial;
    grid-column-start: initial;
    grid-column-end: initial;
  }
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerGrid .footerContactContainer .footerContactItems {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
}
.footerContainer .footerContentContainer .footerGrid .footerContactContainer .footerContactItems .footerContactLink:hover p {
  color: #FFB81C;
}
.footerContainer .footerContentContainer .footerLineDivider {
  width: 100%;
  height: 1px;
  background-color: #B1B3B3;
  opacity: 0.5;
  margin-top: 40px;
  margin-bottom: 40px;
}
.footerContainer .footerContentContainer .footerCopyrightGrid {
  display: grid;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerCopyrightGrid {
    grid-template-columns: auto;
    justify-content: initial;
    grid-gap: initial;
  }
}
@media (min-width: 1024px) {
  .footerContainer .footerContentContainer .footerCopyrightGrid {
    grid-template-columns: fit-content(100%) auto;
    justify-content: initial;
  }
}
.footerContainer .footerContentContainer .footerCopyrightGrid p {
  font-size: 14px;
  font-weight: 400;
  color: white;
  line-height: 21px;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerCopyrightGrid p {
    text-align: center;
    order: 3;
  }
}
@media (min-width: 1024px) {
  .footerContainer .footerContentContainer .footerCopyrightGrid p {
    order: 1;
  }
}
.footerContainer .footerContentContainer .footerCopyrightGrid .termsLink {
  font-size: 14px;
  font-weight: 400;
  color: white;
  line-height: 21px;
  text-decoration: underline;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .termsLink {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
@media (max-width: 550px) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .termsLink {
    grid-row-start: initial;
    grid-column-start: initial;
    grid-column-end: initial;
    text-align: center;
    order: 2;
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .termsLink {
    grid-row-start: initial;
    grid-column-start: initial;
    grid-column-end: initial;
    text-align: left;
    order: 2;
    margin-bottom: 0;
  }
}
.footerContainer .footerContentContainer .footerCopyrightGrid .termsLink:hover {
  color: #FFB81C;
}
.footerContainer .footerContentContainer .footerCopyrightGrid .termsLink:hover p {
  color: #FFB81C;
}
.footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer {
    grid-row-start: initial;
    grid-column-start: initial;
    grid-column-end: initial;
    order: 1;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer {
    grid-row-start: initial;
    grid-column-start: initial;
    grid-column-end: initial;
    order: 2;
    margin-bottom: 0;
    justify-content: flex-end;
  }
}
.footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid {
    grid-column-gap: 35px;
  }
}
@media (min-width: 768px) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid {
    grid-column-gap: 25px;
  }
}
.footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid .footerSocialIcon {
  cursor: pointer;
}
.footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid .footerSocialIcon path {
  fill: #FFB81C;
}
@media (hover: hover) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid .footerSocialIcon:hover path {
    fill: #EFEFEF;
  }
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid .footerSocialIcon_01 {
    width: 14px;
  }
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid .footerSocialIcon_02 {
    width: 26px;
  }
}
@media (min-width: 0) {
  .footerContainer .footerContentContainer .footerCopyrightGrid .footerSocialContainer .footerSocialGrid .footerSocialIcon_03 {
    width: 26px;
  }
}

#home h1 {
  transition-property: width, font-size, line-height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home h1 {
    padding-top: 35px;
    padding-bottom: 25px;
    color: #1D428A;
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #home h1 {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home h1 {
    color: white;
    padding-top: 0;
    padding-bottom: 0;
    width: 460px;
  }
}
@media (min-width: 1280px) {
  #home h1 {
    width: 510px;
  }
}
#home .heroMobile {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 0) {
  #home .heroMobile {
    display: flex;
  }
}
@media (min-width: 1024px) {
  #home .heroMobile {
    display: none;
  }
}
#home .heroMobile .hm_imgContainer {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#home .heroMobile .hm_imgContainer .hm_img {
  width: 100%;
  margin: 0;
  padding: 0;
}
#home .heroMobile .hm_imgContainer .hm_corner {
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .heroMobile .hm_imgContainer .hm_corner {
    width: 35px;
  }
}
@media (min-width: 768px) {
  #home .heroMobile .hm_imgContainer .hm_corner {
    width: 50px;
  }
}
#home .heroMobile .hm_yellowBar {
  width: 100%;
  height: 16px;
  background-color: #FFB81C;
  margin-top: -1px;
}
#home .heroMobile .hm_intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: white;
}
@media (min-width: 0) {
  #home .heroMobile .hm_intro {
    padding-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  #home .heroMobile .hm_intro {
    padding-bottom: 10px;
  }
}
#home .heroMobile .hm_intro .hm_bodyContainer {
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .heroMobile .hm_intro .hm_bodyContainer {
    width: calc(100% - (70px));
  }
}
@media (min-width: 768px) {
  #home .heroMobile .hm_intro .hm_bodyContainer {
    width: calc(100% - (100px));
  }
}
#home .heroMobile .hm_intro .hm_bodyContainer .hm_body {
  padding-top: 30px;
  padding-bottom: 25px;
}
#home .heroDesktop {
  width: 100%;
  background-color: white;
  transition: height 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@media (min-width: 0) {
  #home .heroDesktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  #home .heroDesktop {
    display: block;
    height: 416px;
  }
}
@media (min-width: 1441px) {
  #home .heroDesktop {
    height: 516px;
  }
}
#home .heroDesktop .hd_bgImg {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: height 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1024px) {
  #home .heroDesktop .hd_bgImg {
    height: 400px;
  }
}
@media (min-width: 1441px) {
  #home .heroDesktop .hd_bgImg {
    height: 500px;
  }
}
#home .heroDesktop .hd_content {
  position: relative;
  width: 50%;
  background: rgb(1, 5, 15);
  background: linear-gradient(90deg, rgba(1, 5, 15, 0.75) 20%, rgba(1, 5, 15, 0) 100%);
  display: flex;
  align-items: center;
  transition-property: padding-left, height, margin-top;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1024px) {
  #home .heroDesktop .hd_content {
    height: 400px;
    margin-top: -400px;
  }
}
@media (min-width: 1441px) {
  #home .heroDesktop .hd_content {
    height: 500px;
    margin-top: -500px;
  }
}
#home .heroDesktop .hd_content .hd_contentContainer .hd_body {
  padding-top: 20px;
  padding-bottom: 28px;
  color: white;
}
@media (min-width: 1024px) {
  #home .heroDesktop .hd_content .hd_contentContainer .hd_body {
    width: 425px;
  }
}
@media (min-width: 1280px) {
  #home .heroDesktop .hd_content .hd_contentContainer .hd_body {
    width: 480px;
  }
}
#home .heroDesktop .hd_content .hd_contentContainer .hd_body span {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}
@media (min-width: 0) {
  #home .heroDesktop .hd_content .hd_contentContainer .hd_body span {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (min-width: 1280px) {
  #home .heroDesktop .hd_content .hd_contentContainer .hd_body span {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (min-width: 1024px) {
  #home .heroDesktop .hd_content {
    padding-left: 75px;
  }
}
@media (min-width: 1280px) {
  #home .heroDesktop .hd_content {
    padding-left: 100px;
  }
}
@media (min-width: 1440px) {
  #home .heroDesktop .hd_content {
    padding-left: 125px;
  }
}
#home .heroDesktop .hd_yellowBar {
  position: relative;
  width: 100%;
  height: 16px;
  background-color: #FFB81C;
}
#home .upcomingEvents {
  background-color: #1D428A;
}
@media (min-width: 0) {
  #home .upcomingEvents {
    padding: 60px 0;
  }
}
@media (min-width: 1024px) {
  #home .upcomingEvents {
    padding: 35px 0;
  }
}
#home .upcomingEvents p {
  color: white;
}
#home .upcomingEvents .ue_Grid {
  margin: auto;
  max-width: 1280px;
  margin: auto;
  display: grid;
}
@media (min-width: 0) {
  #home .upcomingEvents .ue_Grid {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #home .upcomingEvents .ue_Grid {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home .upcomingEvents .ue_Grid {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #home .upcomingEvents .ue_Grid {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #home .upcomingEvents .ue_Grid {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #home .upcomingEvents .ue_Grid {
    grid-template-rows: fit-content(100%) repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  #home .upcomingEvents .ue_Grid {
    max-width: 480px;
    margin: auto;
  }
}
@media (min-width: 768px) {
  #home .upcomingEvents .ue_Grid {
    max-width: 1280px;
    margin: auto;
    grid-template-columns: fit-content(100%) repeat(2, 1fr);
    justify-content: space-between;
  }
}
#home .upcomingEvents .ue_Grid .ue_GridChild {
  height: 100%;
  display: grid;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 0) {
  #home .upcomingEvents .ue_Grid .ue_GridChild {
    border-bottom: solid 0.5px white;
    justify-items: left;
  }
}
@media (min-width: 768px) {
  #home .upcomingEvents .ue_Grid .ue_GridChild {
    border-right: solid 0.5px white;
    border-bottom: none;
  }
}
#home .upcomingEvents .ue_Grid .ue_GridChild:nth-child(1) {
  justify-items: left;
}
@media (min-width: 0) {
  #home .upcomingEvents .ue_Grid .ue_GridChild:nth-child(1) {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) {
  #home .upcomingEvents .ue_Grid .ue_GridChild:nth-child(1) {
    padding-bottom: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  #home .upcomingEvents .ue_Grid .ue_GridChild:nth-child(1) {
    padding-right: 70px;
  }
}
#home .upcomingEvents .ue_Grid .ue_GridChild:nth-child(n+2) {
  width: 100%;
  position: relative;
}
@media (min-width: 0) {
  #home .upcomingEvents .ue_Grid .ue_GridChild:nth-child(n+2) {
    padding: 20px 0;
  }
}
@media (min-width: 768px) {
  #home .upcomingEvents .ue_Grid .ue_GridChild:nth-child(n+2) {
    padding: 20px 20px;
  }
}
@media (min-width: 1024px) {
  #home .upcomingEvents .ue_Grid .ue_GridChild:nth-child(n+2) {
    padding: 20px 70px;
  }
}
#home .upcomingEvents .ue_Grid .ue_Copy {
  text-transform: uppercase;
  font-family: Termina, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1px;
}
@media (min-width: 0) {
  #home .upcomingEvents .ue_Grid .ue_Copy {
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 768px) {
  #home .upcomingEvents .ue_Grid .ue_Copy {
    width: 140px;
    text-align: left;
  }
}
#home .upcomingEvents .ue_Grid .ue_EventName {
  margin-bottom: 10px;
  letter-spacing: 2px;
}
#home .upcomingEvents .ue_Grid .ue_EventDate {
  margin-top: 20px;
}
#home .upcomingEvents .ue_Grid .ue_EventLink {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: #FFB81C;
  bottom: 20px;
  border-radius: 100%;
}
@media (min-width: 0) {
  #home .upcomingEvents .ue_Grid .ue_EventLink {
    right: 0;
  }
}
@media (min-width: 768px) {
  #home .upcomingEvents .ue_Grid .ue_EventLink {
    right: 20px;
  }
}
@media (min-width: 1024px) {
  #home .upcomingEvents .ue_Grid .ue_EventLink {
    right: 70px;
  }
}
#home .upcomingEvents .ue_Grid .ue_EventLink svg {
  height: 15px;
  width: 8px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#home .upcomingEvents .ue_Grid .ue_EventLink:hover {
  background-color: white;
}
#home .upcomingEvents .ue_Grid .ue_EventLink:hover path {
  stroke: #FFB81C;
}
#home .homeWhoWeAreContainer {
  margin: auto;
  max-width: 1280px;
  margin: auto;
}
@media (min-width: 0) {
  #home .homeWhoWeAreContainer {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #home .homeWhoWeAreContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home .homeWhoWeAreContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #home .homeWhoWeAreContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #home .homeWhoWeAreContainer {
    width: calc(100% - 125px * 2);
  }
}
#home .homeWhoWeAreContainer .hwwa_IntroSubhead {
  margin-bottom: 10px;
}
@media (min-width: 0) {
  #home .homeWhoWeAreContainer .hwwa_IntroHead {
    max-width: 325px;
  }
}
@media (min-width: 768px) {
  #home .homeWhoWeAreContainer .hwwa_IntroHead {
    max-width: 100%;
  }
}
#home .homeWhoWeAreContainer .hwwa_Grid {
  display: grid;
  margin-top: 50px;
  column-gap: 60px;
}
#home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1024px) {
  #home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value {
    opacity: 0;
  }
}
#home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value .hwwa_ValueDivider {
  width: 40px;
  border-bottom: solid 1px #1D428A;
}
@media (min-width: 0) {
  #home .homeWhoWeAreContainer {
    margin: 50px auto;
  }
  #home .homeWhoWeAreContainer .hwwa_Grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  #home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value {
    text-align: left;
  }
}
@media (min-width: 768px) {
  #home .homeWhoWeAreContainer {
    margin: 75px auto;
  }
}
@media (min-width: 1024px) {
  #home .homeWhoWeAreContainer {
    margin: 115px auto;
  }
  #home .homeWhoWeAreContainer .hwwa_Grid {
    grid-template-columns: repeat(14, 1fr);
    column-gap: 0;
  }
  #home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value {
    align-items: flex-start;
    text-align: left;
    grid-column: span 4;
  }
  #home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 5;
  }
  #home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value:nth-child(2) {
    grid-column-start: 6;
    grid-column-end: 10;
  }
  #home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value:nth-child(3) {
    grid-column-start: 11;
    grid-column-end: 15;
  }
  #home .homeWhoWeAreContainer .hwwa_Grid .hwwa_Value .hwwa_ValueDivider {
    display: block;
  }
}
@media (min-width: 1440px) {
  #home .homeWhoWeAreContainer {
    margin: 135px auto;
  }
}
@media (min-width: 1920px) {
  #home .homeWhoWeAreContainer {
    margin: 150px auto;
  }
}
@media (min-width: 0) {
  #home .homeServicesContainer {
    margin: 50px auto 0;
  }
}
@media (min-width: 768px) {
  #home .homeServicesContainer {
    margin: 75px auto 0;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer {
    margin: 115px auto 50px;
  }
}
@media (min-width: 1440px) {
  #home .homeServicesContainer {
    margin: 135px auto 50px;
  }
}
@media (min-width: 1920px) {
  #home .homeServicesContainer {
    margin: 150px auto 50px;
  }
}
#home .homeServicesContainer .homeServicesTopGrid {
  display: grid;
  transition-property: margin-top, margin-bottom, margin-left, width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesTopGrid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesTopGrid {
    width: 100%;
    grid-template-columns: 70% 30%;
    justify-content: end;
    margin-left: 0;
  }
}
#home .homeServicesContainer .homeServicesTopGrid .servicesHeader {
  position: relative;
  display: flex;
  overflow: hidden;
  background-color: #EFEFEF;
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader {
    justify-content: flex-start;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding-right: 0;
    width: 100%;
  }
}
#home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderDesktop {
  box-sizing: border-box;
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderDesktop {
    padding: 65px 35px;
  }
}
@media (min-width: 768px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderDesktop {
    padding: 65px 50px;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderDesktop {
    padding: 65px 75px;
  }
}
@media (min-width: 1280px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderDesktop {
    padding: 65px 100px;
  }
}
@media (min-width: 1440px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderDesktop {
    padding: 65px 125px;
  }
}
@media (min-width: 1920px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderDesktop {
    font-size: 54px;
    line-height: 120%;
  }
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderMobile {
    display: block;
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
  }
}
@media (min-width: 768px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderMobile {
    font-size: 33px;
    line-height: 41px;
    font-weight: 300;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesHeader .serviceHeaderMobile {
    display: none;
  }
}
#home .homeServicesContainer .homeServicesTopGrid .servicePhotoContainer {
  overflow: hidden;
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesTopGrid .servicePhotoContainer {
    grid-row: 1;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicePhotoContainer {
    grid-row: initial;
  }
}
#home .homeServicesContainer .homeServicesTopGrid .servicesPhoto {
  width: 100%;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesPhoto {
    aspect-ratio: 16/9;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesPhoto {
    aspect-ratio: 4/3;
    height: 100%;
  }
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesPhotoDesktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesPhotoDesktop {
    display: block;
  }
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesPhotoMobile {
    display: block;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesTopGrid .servicesPhotoMobile {
    display: none;
  }
}
#home .homeServicesContainer .homeServicesBotGrid {
  display: grid;
  transition-property: margin-bottom;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesBotGrid {
    grid-template-columns: 1fr;
    background-color: #EFEFEF;
    box-sizing: border-box;
    padding: 0 35px 65px;
    row-gap: 40px;
  }
}
@media (min-width: 768px) {
  #home .homeServicesContainer .homeServicesBotGrid {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesBotGrid {
    max-width: 1280px;
    margin: auto;
    margin: auto;
    grid-template-columns: repeat(28, 1fr);
    padding: 125px 0 75px;
    background-color: transparent;
    column-gap: 0;
  }
}
@media (min-width: 1024px) and (min-width: 0) {
  #home .homeServicesContainer .homeServicesBotGrid {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  #home .homeServicesContainer .homeServicesBotGrid {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesBotGrid {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  #home .homeServicesContainer .homeServicesBotGrid {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  #home .homeServicesContainer .homeServicesBotGrid {
    width: calc(100% - 125px * 2);
  }
}
#home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid {
  display: grid;
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  #home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid {
    grid-template-columns: auto 1fr;
    max-width: 535px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid {
    grid-column: span 8;
  }
  #home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid:nth-child(1) {
    grid-column-start: 6;
    grid-column-end: 14;
  }
  #home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid:nth-child(2) {
    grid-column-start: 16;
    grid-column-end: 24;
  }
}
#home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid .hsbg_content {
  display: flex;
  flex-wrap: wrap;
}
#home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid .hsbg_content .hsbg_num {
  font-size: 40px;
  font-family: "Termina", sans-serif;
  font-weight: 300;
  color: #FFB81C;
  margin-right: 20px;
  width: fit-content;
}
#home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid .hsbg_content .hsbg_contentHead {
  margin-top: 13px;
  width: fit-content;
}
#home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid .hsbg_content .hsbg_contentBody {
  color: #1D428A;
}
@media (min-width: 0) {
  #home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid .hsbg_content .hsbg_contentBody {
    margin-top: 12px;
    height: fit-content;
  }
}
@media (min-width: 768px) {
  #home .homeServicesContainer .homeServicesBotGrid .hsbg_ContentGrid .hsbg_content .hsbg_contentBody {
    height: 100%;
    margin-top: 20px;
  }
}
#home .homeOurPassionContainer {
  width: 100%;
  display: grid;
  background-color: #EFEFEF;
}
@media (min-width: 0) {
  #home .homeOurPassionContainer {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer {
    grid-template-columns: 1fr 1fr;
    background-color: transparent;
  }
}
#home .homeOurPassionContainer .hop_Intro {
  position: relative;
  width: 100%;
  background-color: #1D428A;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Intro {
    clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% calc(0% + 50px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Intro {
    clip-path: polygon(0% 0%, calc(100% - 70px) 0%, 100% calc(0% + 70px), 100% 100%, 0% 100%);
  }
}
#home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer {
  transition-property: width, margin-top, margin-bottom;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer {
    width: calc(100% - 35px * 2);
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer {
    width: 75%;
    max-width: 750px;
    margin-top: 135px;
    margin-bottom: 135px;
  }
}
@media (min-width: 1280px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer {
    margin-top: 175px;
    margin-bottom: 175px;
  }
}
@media (min-width: 1536px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer {
    margin-top: 225px;
    margin-bottom: 225px;
  }
}
@media (min-width: 1920px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer {
    margin-top: 225px;
    margin-bottom: 225px;
  }
}
#home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer .hop_IntroSubHeader {
  margin-bottom: 20px;
}
#home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer .hop_IntroHeader {
  color: white;
  margin-bottom: 40px;
}
#home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer .hop_IntroHeader span {
  font-weight: 700;
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer .hop_IntroHeader {
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
  }
}
@media (min-width: 768px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer .hop_IntroHeader {
    font-size: 33px;
    line-height: 41px;
    font-weight: 300;
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer .hop_IntroHeader {
    font-size: 33px;
    line-height: 41px;
    font-weight: 300;
  }
}
@media (min-width: 1280px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer .hop_IntroHeader {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1920px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroContentContainer .hop_IntroHeader {
    font-size: 54px;
    line-height: 120%;
  }
}
#home .homeOurPassionContainer .hop_Intro .hop_IntroCorner {
  position: absolute;
  top: 0;
  right: -1px;
  transform: rotate(90deg);
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroCorner {
    width: 35px;
  }
}
@media (min-width: 768px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroCorner {
    width: 50px;
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Intro .hop_IntroCorner {
    width: 75px;
  }
}
#home .homeOurPassionContainer .hop_Quality {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #EFEFEF;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Quality {
    clip-path: polygon(0% calc(0% + 70px), calc(0% + 70px) 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
#home .homeOurPassionContainer .hop_Quality .hop_QualityPhoto {
  width: 100%;
  transition-property: height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityPhoto {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityPhoto {
    height: 50%;
  }
}
#home .homeOurPassionContainer .hop_Quality .hop_QualityPhoto .hop_QualityPhotoBGImg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition-property: height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
#home .homeOurPassionContainer .hop_Quality .hop_QualityCorner {
  position: absolute;
  top: 0;
  left: -1px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityCorner {
    display: none;
    width: 35px;
  }
}
@media (min-width: 768px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityCorner {
    width: 50px;
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityCorner {
    display: block;
    width: 75px;
  }
}
#home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer {
    height: auto;
    margin-top: 75px;
    margin-bottom: 75px;
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer {
    height: 50%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
#home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentHeader {
  margin-bottom: 10px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentHeader {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentHeader {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentHeader {
    width: 75%;
    max-width: 750px;
  }
}
#home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentBody {
  margin-bottom: 30px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentBody {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentBody {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentBody {
    width: 75%;
    max-width: 750px;
  }
}
#home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentCTA {
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentCTA {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentCTA {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home .homeOurPassionContainer .hop_Quality .hop_QualityContentContainer .hop_QualityContentCTA {
    width: 75%;
    max-width: 750px;
  }
}
#home .homeLatestNewsSect {
  margin: auto;
  max-width: 1280px;
  margin: auto;
  display: grid;
}
@media (min-width: 0) {
  #home .homeLatestNewsSect {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #home .homeLatestNewsSect {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home .homeLatestNewsSect {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #home .homeLatestNewsSect {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #home .homeLatestNewsSect {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #home .homeLatestNewsSect {
    margin: 50px auto;
    justify-items: center;
    grid-gap: 30px;
  }
}
@media (min-width: 1024px) {
  #home .homeLatestNewsSect {
    margin: 100px auto 100px;
    grid-template-columns: fit-content(100%) fit-content(100%);
    justify-content: space-between;
    align-items: center;
    justify-items: initial;
  }
}
#home .homeLatestNewsSect .hln_Headline {
  text-align: center;
}
@media (min-width: 0) {
  #home .homeLatestNewsSect .hln_Headline {
    margin-bottom: -10px;
  }
}
@media (min-width: 1024px) {
  #home .homeLatestNewsSect .hln_Headline {
    margin-bottom: initial;
    font-size: 33px;
    line-height: 41px;
    text-align: left;
    margin-left: 7px;
  }
}
@media (min-width: 1280px) {
  #home .homeLatestNewsSect .hln_Headline {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 1920px) {
  #home .homeLatestNewsSect .hln_Headline {
    font-size: 54px;
    line-height: 120%;
  }
}
#home .homeLatestNewsSect .hln_CTA {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0 23px;
  border-radius: 30px;
  border: solid 1px #1D428A;
}
@media (min-width: 0) {
  #home .homeLatestNewsSect .hln_CTA {
    height: 50px;
  }
}
@media (min-width: 1024px) {
  #home .homeLatestNewsSect .hln_CTA {
    height: 40px;
  }
}
#home .homeLatestNewsSect .hln_CTA p {
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 1.5px;
  margin-left: 5px;
  font-size: 12px;
}
@media (min-width: 0) {
  #home .homeLatestNewsSect .hln_CTA {
    grid-row-start: 3;
    grid-row-end: 4;
  }
}
@media (min-width: 1024px) {
  #home .homeLatestNewsSect .hln_CTA {
    grid-row-start: initial;
    grid-row-end: initial;
    margin-right: 10px;
  }
}
#home .homeLatestNewsSect .hln_CTA:hover {
  background-color: #1D428A;
}
#home .homeLatestNewsSect .hln_CTA:hover p {
  color: white;
}
#home .homeLatestNewsSect .hln_CTA:hover path {
  fill: white;
}
@media (min-width: 0) {
  #home .homeLatestNewsSect .hln_Feed {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (min-width: 1024px) {
  #home .homeLatestNewsSect .hln_Feed {
    grid-row-start: initial;
    grid-row-end: initial;
    grid-column: span 2;
  }
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_social_, #home .homeLatestNewsSect .hln_Feed .tb_hc_author_profile {
  display: none;
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_contant_wrapper {
  padding: 30px;
  background-color: #EFEFEF;
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_author_wrapper {
  margin-bottom: 0;
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_authorname {
  color: #1D428A;
  font-family: United, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
  white-space: initial;
  text-wrap: pretty;
  width: 75%;
  letter-spacing: 1px;
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_post_info {
  align-items: center;
  justify-content: start;
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_post_info .tb_hc_seprator {
  background-color: #B1B3B3;
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_post_info div {
  color: #B1B3B3;
  font-size: 9px;
  font-family: "Proxima Nova", sans-serif;
  text-align: left;
}
#home .homeLatestNewsSect .hln_Feed .tb_read_more_ {
  color: #B1B3B3;
  font-size: 11px;
  line-height: 14px;
  padding-top: 15px;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  text-decoration: none;
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_content {
  color: #1D428A;
  text-align: left !important;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  text-decoration: none;
  transition-property: width, font-size, line-height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_content span {
  font-family: "Termina", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.25px;
}
@media (min-width: 0) {
  #home .homeLatestNewsSect .hln_Feed .tb_hc_content {
    color: #1D428A;
    font-size: 11px;
    line-height: 14px;
  }
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_arrow {
  background-color: #1D428A;
  opacity: 1;
  border-radius: 100%;
  height: 38px;
  width: 38px;
  color: white;
  border: solid 1px white;
  top: 45%;
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
}
#home .homeLatestNewsSect .hln_Feed .tb_hc_arrow:hover {
  background-color: white;
  color: #1D428A;
}
@media (min-width: 1440px) {
  #home .homeLatestNewsSect .hln_Feed .tb_hc_arrow {
    height: 50px;
    width: 50px;
    font-size: 20px;
  }
}
#home .homeOurCommitmentContainer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 0) {
  #home .homeOurCommitmentContainer {
    background-attachment: scroll;
    background-position: top center;
    background-size: auto 600px;
  }
}
@media (min-width: 768px) {
  #home .homeOurCommitmentContainer {
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 1024px) {
  #home .homeOurCommitmentContainer {
    background-attachment: fixed;
  }
}
#home .homeOurCommitmentContainer .hocc_DarkOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001E60;
  opacity: 0.15;
}
@media (min-width: 0) {
  #home .homeOurCommitmentContainer .hocc_DarkOverlay {
    display: none;
  }
}
#home .homeOurCommitmentContainer .hocc_GradientOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(6, 16, 39);
  background: linear-gradient(0deg, rgb(6, 16, 39) 0%, rgba(6, 16, 39, 0) 40%);
}
@media (min-width: 0) {
  #home .homeOurCommitmentContainer .hocc_GradientOverlay {
    display: none;
  }
}
#home .homeOurCommitmentContainer .hocc_ContentContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer {
    width: calc(100% - 35px * 2);
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer {
    width: calc(100% - 50px * 2);
    margin-top: 100px;
    margin-bottom: 100px;
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer {
    width: calc(100% - 125px * 2);
  }
}
#home .homeOurCommitmentContainer .hocc_ContentContainer h4 {
  margin-bottom: 20px;
}
#home .homeOurCommitmentContainer .hocc_ContentContainer h2 {
  color: white;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer h2 {
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer h2 {
    max-width: 750px;
  }
}
#home .homeOurCommitmentContainer .hocc_ContentContainer p {
  color: white;
}
@media (min-width: 768px) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer p {
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  #home .homeOurCommitmentContainer .hocc_ContentContainer p {
    max-width: 750px;
  }
}
#home .homeStartCareerContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}
#home .homeStartCareerContainer .hsc_contentContainer {
  display: grid;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 1280px;
  margin: auto;
  margin: auto;
}
@media (min-width: 0) {
  #home .homeStartCareerContainer .hsc_contentContainer {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #home .homeStartCareerContainer .hsc_contentContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #home .homeStartCareerContainer .hsc_contentContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #home .homeStartCareerContainer .hsc_contentContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #home .homeStartCareerContainer .hsc_contentContainer {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #home .homeStartCareerContainer .hsc_contentContainer {
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  #home .homeStartCareerContainer .hsc_contentContainer {
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
  }
}
#home .homeStartCareerContainer .hsc_contentContainer .hsc_TextContainer {
  position: relative;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  box-sizing: border-box;
}
@media (min-width: 0) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_TextContainer {
    padding: 75px 0;
  }
}
@media (min-width: 768px) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_TextContainer {
    padding: 30px 70px 30px 50px;
  }
}
#home .homeStartCareerContainer .hsc_contentContainer .hsc_TextContainer .hsc_Headline {
  text-wrap: pretty;
}
@media (min-width: 0) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_TextContainer .hsc_Headline {
    text-align: center;
  }
}
@media (min-width: 768px) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_TextContainer .hsc_Headline {
    text-align: left;
  }
}
#home .homeStartCareerContainer .hsc_contentContainer .hsc_PhotoContainer {
  position: relative;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
@media (min-width: 0) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_PhotoContainer {
    clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% calc(0% + 50px), 100% 100%, 0% 100%);
    margin: auto;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_PhotoContainer {
    grid-row: initial;
  }
}
@media (min-width: 1024px) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_PhotoContainer {
    clip-path: polygon(0% 0%, calc(100% - 70px) 0%, 100% calc(0% + 70px), 100% 100%, 0% 100%);
  }
}
#home .homeStartCareerContainer .hsc_contentContainer .hsc_PhotoContainer .hsc_BG {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 0) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_PhotoContainer .hsc_BG {
    aspect-ratio: 16/9;
  }
}
@media (min-width: 768px) {
  #home .homeStartCareerContainer .hsc_contentContainer .hsc_PhotoContainer .hsc_BG {
    aspect-ratio: 4/3;
  }
}

#careers .careerBenefits {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #EFEFEF;
}
#careers .careerBenefits .cb_contentContainerGrid {
  position: relative;
  display: grid;
  grid-column-gap: 40px;
  max-width: 1280px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}
@media (min-width: 0) {
  #careers .careerBenefits .cb_contentContainerGrid {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #careers .careerBenefits .cb_contentContainerGrid {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #careers .careerBenefits .cb_contentContainerGrid {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #careers .careerBenefits .cb_contentContainerGrid {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #careers .careerBenefits .cb_contentContainerGrid {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #careers .careerBenefits .cb_contentContainerGrid {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  #careers .careerBenefits .cb_contentContainerGrid {
    grid-template-columns: 1fr 1fr;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#careers .careerBenefits .cb_contentContainerGrid .cb_header h2 {
  width: 100%;
}
@media (min-width: 0) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_header h2 {
    max-width: 100%;
    margin-bottom: 45px;
  }
}
@media (min-width: 1024px) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_header h2 {
    max-width: 450px;
    margin-bottom: 0;
  }
}
#careers .careerBenefits .cb_contentContainerGrid .cb_body {
  width: 100%;
}
#careers .careerBenefits .cb_contentContainerGrid .cb_body .cb_bodyGrid {
  display: grid;
  grid-column-gap: 50px;
}
@media (min-width: 0) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_body .cb_bodyGrid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_body .cb_bodyGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 0) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_body #cb_bodyGridTop {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_body #cb_bodyGridTop {
    margin-bottom: 40px;
  }
}
#careers .careerBenefits .cb_contentContainerGrid .cb_body .cb_bodyItem {
  display: flex;
}
@media (min-width: 0) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_body .cb_bodyItem .cb_bodyItemIcon {
    margin-bottom: 0;
    margin-right: 30px;
    width: 45px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_body .cb_bodyItem .cb_bodyItemIcon {
    margin-bottom: 15px;
    margin-right: 0;
    width: auto;
    height: 30px;
  }
}
@media (min-width: 0) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_body .cb_bodyItem {
    margin-bottom: 30px;
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  #careers .careerBenefits .cb_contentContainerGrid .cb_body .cb_bodyItem {
    margin-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
#careers .cb_blueStrip {
  width: 100%;
  background-color: #1D428A;
  display: flex;
  justify-content: center;
  padding-top: 17px;
  padding-bottom: 17px;
}
#careers .cb_blueStrip p {
  font-weight: 300;
  color: white;
  text-align: center;
  padding-left: 35px;
  padding-right: 35px;
}
#careers .cb_blueStrip p a {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  color: white;
}
@media (min-width: 0) {
  #careers .cb_blueStrip p a {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (min-width: 1280px) {
  #careers .cb_blueStrip p a {
    font-size: 18px;
    line-height: 23px;
  }
}
#careers .cb_blueStrip p a:link {
  color: white;
}
#careers .cb_blueStrip p a:visited {
  color: white;
}
#careers .cb_blueStrip p a:hover {
  color: #FFB81C;
}
#careers .cb_blueStrip p a:active {
  color: #FFB81C;
}
#careers .careerCurrentOpenings {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
#careers .careerCurrentOpenings .cco_contentContainer {
  max-width: 1280px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}
@media (min-width: 0) {
  #careers .careerCurrentOpenings .cco_contentContainer {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #careers .careerCurrentOpenings .cco_contentContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #careers .careerCurrentOpenings .cco_contentContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #careers .careerCurrentOpenings .cco_contentContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #careers .careerCurrentOpenings .cco_contentContainer {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #careers .careerCurrentOpenings .cco_contentContainer {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  #careers .careerCurrentOpenings .cco_contentContainer {
    grid-template-columns: 1fr 1fr;
  }
}
#careers .careerCurrentOpenings .cco_contentContainer .cco_dividerLine {
  width: 100%;
  height: 1px;
  background-color: #1D428A;
}
#careers .careerCurrentOpenings .cco_contentContainer h2 {
  margin-bottom: 20px;
  font-weight: 300;
}
@media (min-width: 0) {
  #careers .careerCurrentOpenings .cco_contentContainer h2 {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 768px) {
  #careers .careerCurrentOpenings .cco_contentContainer h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
#careers .careerCurrentOpenings .cco_contentContainer .cco_listItem {
  cursor: pointer;
}
#careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid {
  display: grid;
  grid-column-gap: 35px;
  padding-top: 25px;
  padding-bottom: 25px;
  align-items: center;
}
@media (min-width: 0) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid {
    width: calc(100% - 30px);
    grid-template-columns: 50% 50%;
  }
}
#careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid h3 {
  max-width: 500px;
}
@media (min-width: 0) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid h3 {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid h3 {
    margin-left: 25px;
  }
}
#careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid .cco_listItemLocationGrid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (min-width: 0) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid .cco_listItemLocationGrid {
    margin-top: 11px;
  }
}
@media (min-width: 1024px) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid .cco_listItemLocationGrid {
    margin-top: 0;
  }
}
#careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid .cco_listItemLocationGrid .cco_applyBtn {
  height: 30px;
  background-color: white;
  border: 1px solid #1D428A;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 25px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: "Proxima Nova", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-style: normal;
  color: #1D428A;
  text-decoration: none;
  text-transform: uppercase;
}
@media (min-width: 0) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid .cco_listItemLocationGrid .cco_applyBtn {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid .cco_listItemLocationGrid .cco_applyBtn {
    margin-right: 25px;
  }
}
@media (hover: hover) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem .cco_listItemContentGrid .cco_listItemLocationGrid .cco_applyBtn:hover {
    background-color: #1D428A;
    color: white;
  }
}
@media (hover: hover) {
  #careers .careerCurrentOpenings .cco_contentContainer .cco_listItem:hover {
    background-color: #EFEFEF;
  }
}
#careers .careerNoCurrentOpenings {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
#careers .careerNoCurrentOpenings .cnco_contentContainer {
  display: grid;
  grid-column-gap: 40px;
  max-width: 1280px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}
@media (min-width: 0) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer {
    grid-template-columns: 1fr 1fr;
  }
}
#careers .careerNoCurrentOpenings .cnco_contentContainer .cnco_bodyIntro {
  margin-bottom: 35px;
}
#careers .careerNoCurrentOpenings .cnco_contentContainer .cnco_Link {
  margin-top: 50px;
}
#careers .careerNoCurrentOpenings .cnco_contentContainer h2 {
  font-family: "Termina", sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}
@media (min-width: 0) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  #careers .careerNoCurrentOpenings .cnco_contentContainer h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 0;
  }
}
#careers .careerNoCurrentOpenings .cnco_contentContainer h3 {
  margin-bottom: 5px;
}
#careers .careerNoCurrentOpenings .cnco_contentContainer a:link {
  color: #1D428A;
}
#careers .careerNoCurrentOpenings .cnco_contentContainer a:visited {
  color: #1D428A;
}
#careers .careerNoCurrentOpenings .cnco_contentContainer a:hover {
  color: #FFB81C;
}
#careers .careerNoCurrentOpenings .cnco_contentContainer a:active {
  color: #FFB81C;
}
#careers .careersJobAlertsForms {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #1D428A;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid {
  position: relative;
  display: grid;
  grid-column-gap: 40px;
  width: 100%;
  max-width: 1280px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 100px;
  padding-bottom: 100px;
  margin: auto;
}
@media (min-width: 0) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid {
    grid-template-columns: 1fr 1fr;
  }
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .wpcf7 {
  min-height: 300px;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content {
  min-height: 300px;
}
@media (min-width: 768px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content {
    border-right: 1px solid white;
  }
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content h2 {
  font-family: "Termina", sans-serif;
  font-weight: 300;
  color: white;
  margin-bottom: 20px;
}
@media (min-width: 0) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content h2 {
    max-width: 100%;
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 768px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content h2 {
    max-width: 400px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.25;
    padding-right: 10%;
  }
}
@media (min-width: 1024px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content h2 {
    font-size: 40px;
  }
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content p {
  color: white;
  max-width: 400px;
}
@media (min-width: 0) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content p {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content p {
    margin-bottom: 0;
    padding-right: 40px;
  }
}
@media (min-width: 1024px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_content p {
    padding-right: 0;
  }
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer {
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
@media (min-width: 768px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer {
    display: flex;
    padding-left: 10%;
    flex-direction: column;
  }
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input[type=email],
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input[type=text] {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 1px solid white;
  background: none;
  color: white;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  transition-property: font-size, line-height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 25px;
}
@media (min-width: 0) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input[type=email],
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input[type=text] {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (min-width: 1280px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input[type=email],
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input[type=text] {
    font-size: 18px;
    line-height: 23px;
  }
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input:focus {
  border: none;
  border-bottom: 1px solid #FFB81C;
  outline: none;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input:-webkit-focus {
  border: none;
  border-bottom: 1px solid #FFB81C;
  outline: none;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input[aria-invalid=true] {
  border-bottom-color: #FFB81C;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input[aria-invalid=true]::placeholder {
  color: #FFB81C;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer select:focus {
  background-color: #FFB81C;
  border: none;
  border-bottom: 1px solid #FFB81C;
  outline: none;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input:autofill {
  border: none !important;
  border-bottom: 1px solid #FFB81C !important;
  outline: none !important;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer input:-webkit-autofill {
  border: none !important;
  border-bottom: 1px solid #FFB81C !important;
  outline: none !important;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer ::placeholder {
  color: white;
  opacity: 1;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer ::-ms-input-placeholder {
  color: white;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .customSelect {
  margin-bottom: 12px;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .customSelect select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  cursor: pointer;
  border-radius: 0;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='28' viewBox='0 0 24 24' width='28' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 2px;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  transition-property: font-size, line-height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .customSelect select {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (min-width: 1280px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .customSelect select {
    font-size: 18px;
    line-height: 23px;
  }
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .customSelect select:focus {
  border: none;
  border-bottom: 1px solid #FFB81C;
  outline: none;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item {
  margin-left: 0;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label {
  position: relative;
  padding-top: 1px;
  padding-left: 28px;
  color: white;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 13px;
  line-height: 18px;
  text-decoration: none;
  transition-property: font-size, line-height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label .wpcf7-list-item-label:before {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 15px;
  height: 15px;
  background: none;
  border: 1px solid white;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label .wpcf7-list-item-label:focus {
  border: 1px solid #FFB81C;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label .wpcf7-list-item-label:-webkit-focus {
  border: 1px solid #FFB81C;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label:hover .wpcf7-list-item-label:before {
  border: 1px solid #FFB81C;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before {
  border: 1px solid #FFB81C;
  background: #FFB81C;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: none;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:after {
  display: block;
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .wpcf7-list-item label .wpcf7-list-item-label:after {
  top: 1px;
  left: 4px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .cja_cta {
  margin-top: 50px;
}
@media (min-width: 0) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .cja_cta {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .cja_cta {
    width: fit-content;
  }
}
#careers .careersJobAlertsForms .cja_contentContainerGrid .cja_formContainer .cja_nameFormsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  width: 100%;
}
#careers .careersVeteranFriendly {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#careers .careersVeteranFriendly .cvf_contentGrid {
  display: grid;
  max-width: 1280px;
  transition-property: width, grid-column-gap;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}
@media (min-width: 0) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    grid-template-columns: 1fr;
    margin-top: 100px;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    grid-template-columns: fit-content(100%) 345px 225px;
    grid-column-gap: 0;
    margin-top: 100px;
    margin-bottom: 100px;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    grid-template-columns: fit-content(100%) 420px 300px;
  }
}
@media (min-width: 1280px) {
  #careers .careersVeteranFriendly .cvf_contentGrid {
    grid-template-columns: fit-content(100%) 445px 325px;
  }
}
#careers .careersVeteranFriendly .cvf_contentGrid .cvf_logo {
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #careers .careersVeteranFriendly .cvf_contentGrid .cvf_logo {
    width: 85px;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  #careers .careersVeteranFriendly .cvf_contentGrid .cvf_logo {
    width: 90px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #careers .careersVeteranFriendly .cvf_contentGrid .cvf_logo {
    width: 120px;
    margin-bottom: 0;
  }
}
#careers .careersVeteranFriendly .cvf_contentGrid .cvf_headerContainer {
  width: 100%;
}
#careers .careersVeteranFriendly .cvf_contentGrid .cvf_headerContainer h2 {
  margin-bottom: 10px;
}
@media (min-width: 0) {
  #careers .careersVeteranFriendly .cvf_contentGrid .cvf_headerContainer h2 {
    font-size: 34px;
    line-height: 42px;
    font-weight: 300;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  #careers .careersVeteranFriendly .cvf_contentGrid .cvf_headerContainer h2 {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  #careers .careersVeteranFriendly .cvf_contentGrid .cvf_headerContainer h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 0) {
  #careers .careersVeteranFriendly .cvf_contentGrid .cvf_headerContainer h3 {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  #careers .careersVeteranFriendly .cvf_contentGrid .cvf_headerContainer h3 {
    margin-bottom: 0;
  }
}
#careers .careersVeteranFriendly .cvf_contentGrid .cvf_bodycopy {
  width: 100%;
}
#careers .careersVeteranFriendly .cvf_photoGrid {
  display: grid;
  width: 100%;
}
@media (min-width: 0) {
  #careers .careersVeteranFriendly .cvf_photoGrid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  #careers .careersVeteranFriendly .cvf_photoGrid {
    grid-template-columns: 1fr 1fr;
  }
}
#careers .careersVeteranFriendly .cvf_photoGrid .cvf_photo {
  width: 100%;
  aspect-ratio: 16/9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#careers .wpcf7-response-output {
  display: none;
}
#careers .wpcf7-not-valid .wpcf7-list-item-label {
  color: #FFB81C;
}
#careers .wpcf7-not-valid-tip {
  color: #FFB81C;
  position: absolute;
  top: 40px;
  z-index: 10;
  font-size: 10px;
  font-family: "Proxima Nova", sans-serif;
}
@media (min-width: 1024px) {
  #careers .wpcf7-not-valid-tip {
    top: 36px;
  }
}
#careers .wpcf7-form-control-wrap[data-name=checkbox-230] .wpcf7-not-valid-tip {
  top: 24px;
}
#careers .wpcf7-form-control-wrap[data-name=email] .wpcf7-not-valid-tip {
  top: 36px;
}
#careers .cja_formSucess {
  display: none;
}
#careers .wpcf7 form.sent {
  position: relative;
}
#careers .wpcf7 form.sent .cja_formSucess {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  text-align: center;
  font-family: "Proxima Nova", sans-serif;
}
#careers .wpcf7 form.sent .cja_formSucessHeading {
  font-weight: 300;
  color: white;
}
#careers .wpcf7 form.sent .cja_formSucessContent {
  color: white;
}
#careers .wpcf7 form.sent .goldArrowBtn {
  margin-top: 18px;
}
#careers .wpcf7 form.sent .cja_formContainer {
  display: none;
}

.cja_formSubmit {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (min-width: 0) {
  #about h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 300;
  }
}
#about .ourTeamMembersSect {
  margin: auto;
  max-width: 1280px;
  margin: auto;
}
@media (min-width: 0) {
  #about .ourTeamMembersSect {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #about .ourTeamMembersSect {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #about .ourTeamMembersSect {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #about .ourTeamMembersSect {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #about .ourTeamMembersSect {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #about .ourTeamMembersSect {
    margin: 50px auto;
  }
}
@media (min-width: 1024px) {
  #about .ourTeamMembersSect {
    margin: 125px auto;
  }
}
#about .ourTeamMembersSect .otm_Flex {
  display: flex;
  gap: 30px;
}
#about .ourTeamMembersSect .otm_Flex .otm_FlexChild {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1024px) {
  #about .ourTeamMembersSect .otm_Flex .otm_FlexChild {
    width: calc(33.3333333333% - 15px);
    max-width: 400px;
  }
}
@media (min-width: 0) {
  #about .ourTeamMembersSect .otm_Flex .otm_Links {
    margin-top: 10px;
  }
}
@media (min-width: 1024px) {
  #about .ourTeamMembersSect .otm_Flex .otm_Links {
    align-items: center;
    margin-top: 0;
  }
}
@media (min-width: 0) {
  #about .ourTeamMembersSect .otm_Flex .otm_Links a {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 1024px) {
  #about .ourTeamMembersSect .otm_Flex .otm_Links a {
    box-sizing: initial;
    width: 200px;
  }
}
@media (min-width: 0) {
  #about .ourTeamMembersSect .otm_Flex {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  #about .ourTeamMembersSect .otm_Flex {
    flex-direction: row;
  }
}
#about .aboutPullQuoteSect {
  padding: 75px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#about .aboutPullQuoteSect .apq_InnerWrapper {
  margin: auto;
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
@media (min-width: 0) {
  #about .aboutPullQuoteSect .apq_InnerWrapper {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #about .aboutPullQuoteSect .apq_InnerWrapper {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #about .aboutPullQuoteSect .apq_InnerWrapper {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #about .aboutPullQuoteSect .apq_InnerWrapper {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #about .aboutPullQuoteSect .apq_InnerWrapper {
    width: calc(100% - 125px * 2);
  }
}
#about .aboutPullQuoteSect .apq_InnerWrapper .apq_QuoteMarks {
  transform-origin: center center;
}
@media (min-width: 0) {
  #about .aboutPullQuoteSect .apq_InnerWrapper .apq_QuoteMarks {
    transform: scale(0.75);
  }
}
@media (min-width: 1024px) {
  #about .aboutPullQuoteSect .apq_InnerWrapper .apq_QuoteMarks {
    transform: scale(1);
  }
}
#about .aboutPullQuoteSect .apq_InnerWrapper .apq_QuoteText {
  color: white;
  font-family: "Termina", sans-serif;
  font-weight: 200;
  line-height: 170%;
}
@media (min-width: 0) {
  #about .aboutPullQuoteSect .apq_InnerWrapper .apq_QuoteText {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  #about .aboutPullQuoteSect .apq_InnerWrapper .apq_QuoteText {
    font-size: 25px;
  }
}
#about .aboutPullQuoteSect .apq_InnerWrapper .apq_QuoteeName {
  color: white;
  font-size: 14px;
}
#about .aboutPullQuoteSect .apq_InnerWrapper .apq_QuoteeTitle {
  color: white;
  font-family: "Termina", sans-serif;
  font-weight: 200;
  margin-top: 5px;
  font-size: 16px;
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices {
    margin: 50px auto;
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices {
    margin: auto;
    max-width: 1280px;
    margin: auto;
    margin: 75px auto;
  }
}
@media (min-width: 1024px) and (min-width: 0) {
  #about .aboutCapabilitysAndServices {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  #about .aboutCapabilitysAndServices {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #about .aboutCapabilitysAndServices {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  #about .aboutCapabilitysAndServices {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  #about .aboutCapabilitysAndServices {
    width: calc(100% - 125px * 2);
  }
}
#about .aboutCapabilitysAndServices .acas_Flex {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex {
    flex-direction: column;
    gap: 50px;
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex {
    flex-direction: row;
    gap: 0px;
  }
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    margin: auto;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    margin: 0;
    max-width: 400px;
  }
}
@media (min-width: 1280px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    max-width: 530px;
  }
}
@media (min-width: 1440px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Intro {
    max-width: 700px;
  }
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion {
  border-top: solid 1px #1D428A;
  border-bottom: solid 1px #1D428A;
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion {
    width: 600px;
  }
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSect:nth-child(n+2) {
  border-top: solid 1px #1D428A;
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop {
  display: flex;
  justify-content: space-between;
  padding: 30px 15px;
  cursor: pointer;
  align-items: center;
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop {
    padding: 30px 35px;
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop {
    padding: 30px 15px;
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop:hover {
    background-color: #EFEFEF;
  }
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop .acas_AccordionSectTitle {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: calc(100% - 20px);
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop .acas_AccordionSectTitle {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop .acas_AccordionSectTitle {
    font-size: 14px;
  }
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop .acas_AccordionIcon {
    height: 20px;
    width: 20px;
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop .acas_AccordionIcon {
    height: 15px;
    width: 15px;
  }
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop .icon_2 {
  transform-origin: center center;
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectTop .icon_2.close {
  transform: rotateZ(90deg);
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot {
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.39, 0.77, 0.65, 0.99);
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot {
    padding: 0 35px;
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot {
    padding: 0 30px;
  }
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot .acas_AccordionColumnSpacerTop {
  height: 20px;
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot .acas_AccordionColumnSpacerBot {
  height: 50px;
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot .acas_AccordionColumn {
    width: 100%;
    -webkit-column-count: 1;
    -webkit-column-gap: 40px;
    -moz-column-count: 1;
    -moz-column-gap: 40px;
    column-count: 1;
    column-gap: 20px;
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot .acas_AccordionColumn {
    width: 100%;
    -webkit-column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-count: 2;
    -moz-column-gap: 40px;
    column-count: 2;
    column-gap: 30px;
  }
}
#about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot .acas_AccordionColumn p {
  display: list-item;
  page-break-inside: avoid;
  break-inside: avoid-column;
}
@media (min-width: 0) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot .acas_AccordionColumn p {
    margin-left: 15px;
  }
}
@media (min-width: 1024px) {
  #about .aboutCapabilitysAndServices .acas_Flex .acas_Accordion .acas_AccordionSectBot .acas_AccordionColumn p {
    margin-left: initial;
  }
}
#about .aboutQualityAssuranceSect {
  background-color: #EFEFEF;
}
@media (min-width: 0) {
  #about .aboutQualityAssuranceSect {
    padding: 50px 0;
  }
}
@media (min-width: 1024px) {
  #about .aboutQualityAssuranceSect {
    padding: 90px 0;
  }
}
@media (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper {
    margin: auto;
    max-width: 1280px;
    margin: auto;
  }
}
@media (min-width: 1024px) and (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subhead {
    margin: auto;
    max-width: 1280px;
    margin: auto;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subhead {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subhead {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subhead {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subhead {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subhead {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subhead {
    width: 100%;
    max-width: 100%;
  }
}
#about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Intro {
  margin-top: 20px;
  display: grid;
}
@media (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Intro {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin: auto;
    max-width: 1280px;
    margin: auto;
    margin-top: 20px;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Intro {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Intro {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Intro {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Intro {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Intro {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Intro {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    width: 100%;
    max-width: 100%;
  }
}
#about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs {
  display: grid;
}
@media (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs {
    margin: 40px auto;
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs {
    margin: 50px auto;
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}
#about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert {
  background-color: white;
  border-left: solid 5px #FFB81C;
  display: flex;
  box-sizing: border-box;
}
@media (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert {
    padding: 30px 35px;
    gap: 30px;
  }
}
@media (max-width: 370px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert {
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert {
    padding: 40px 35px;
    gap: 30px;
  }
}
#about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert .aqa_CertLogo {
  width: auto;
  align-self: center;
}
#about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert .aqa_CertText {
  font-family: Termina, "Proxima Nova", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert .aqa_CertText {
    padding-right: 30px;
    font-weight: 800;
  }
}
@media (max-width: 370px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert .aqa_CertText {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert .aqa_CertText {
    font-weight: 400;
  }
}
@media (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert .aqa_CertText {
    max-width: 350px;
  }
}
#about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Certs .aqa_Cert .aqa_CertText span {
  letter-spacing: 1px;
}
#about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subtext {
  text-align: center;
  color: #B1B3B3;
}
@media (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subtext {
    margin: auto;
    max-width: 1280px;
    margin: auto;
    font-size: 14px;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subtext {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subtext {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subtext {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subtext {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subtext {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 1024px) {
  #about .aboutQualityAssuranceSect .aqa_InnerWrapper .aqa_Subtext {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }
}
@media (min-width: 0) {
  #about .aboutProcessSect {
    margin: 75px auto 0;
  }
}
@media (min-width: 1024px) {
  #about .aboutProcessSect {
    margin: 90px auto;
  }
}
@media (min-width: 0) {
  #about .aboutProcessSect .ap_Headline {
    max-width: 1280px;
    margin: auto;
    margin: auto;
    margin: 40px auto;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #about .aboutProcessSect .ap_Headline {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #about .aboutProcessSect .ap_Headline {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #about .aboutProcessSect .ap_Headline {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #about .aboutProcessSect .ap_Headline {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #about .aboutProcessSect .ap_Headline {
    width: calc(100% - 125px * 2);
  }
}
#about .aboutProcessSect .ap_Accordion {
  border-top: solid 1px #1D428A;
  border-bottom: solid 1px #1D428A;
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion {
    max-width: 1280px;
    margin: auto;
    margin: auto;
  }
}
@media (min-width: 1024px) and (min-width: 0) {
  #about .aboutProcessSect .ap_Accordion {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  #about .aboutProcessSect .ap_Accordion {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  #about .aboutProcessSect .ap_Accordion {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  #about .aboutProcessSect .ap_Accordion {
    width: calc(100% - 125px * 2);
  }
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSect:nth-child(n+2) {
  border-top: solid 1px #1D428A;
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSect {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px 50px 30px 0;
  }
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop {
  padding: 30px 0;
}
@media (min-width: 0) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop {
    padding: 30px 35px;
    cursor: pointer;
  }
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop {
    padding: 0;
    pointer-events: none;
  }
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_AccordionSectTopInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_AccordionSectTopInner {
    gap: 20px;
    justify-content: left;
    max-width: 350px;
  }
}
@media (min-width: 0) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_SectName {
    max-width: calc(100% - 20px);
  }
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_SectName {
    max-width: initial;
  }
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_SectNum {
  color: #FFB81C;
}
@media (min-width: 0) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_SectNum {
    display: none;
  }
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_SectNum {
    display: block;
  }
}
@media (min-width: 0) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_AccordionIcon {
    height: 20px;
    width: 20px;
  }
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .ap_AccordionIcon {
    display: none;
  }
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .icon_2 {
  transform-origin: center center;
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectTop .icon_2.close {
  transform: rotateZ(90deg);
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot {
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.39, 0.77, 0.65, 0.99);
}
@media (min-width: 0) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot {
    max-width: 1280px;
    margin: auto;
    max-height: 0px;
    padding: 0 35px;
  }
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot {
    width: 100%;
    max-width: 100%;
    max-height: 100% !important;
  }
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot .ap_AccordionColumn {
    width: 100%;
    -webkit-column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-count: 2;
    -moz-column-gap: 40px;
    column-count: 2;
    column-gap: 30px;
  }
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot .ap_AccordionColumn p {
  display: list-item;
  page-break-inside: avoid;
  break-inside: avoid-column;
}
@media (min-width: 0) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot .ap_AccordionColumn p {
    margin-left: 15px;
  }
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot .ap_AccordionColumn p {
    margin-left: initial;
  }
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot .ap_AccordionSpacerTop {
  height: 10px;
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot .ap_AccordionSpacerTop {
    height: 0;
  }
}
#about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot .ap_AccordionSpacerBot {
  height: 40px;
}
@media (min-width: 1024px) {
  #about .aboutProcessSect .ap_Accordion .ap_AccordionSectBot .ap_AccordionSpacerBot {
    height: 0;
  }
}
#about .videoModal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(29, 66, 138, 0.8);
  z-index: 30;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
#about .videoModal.open {
  opacity: 1;
}
#about .videoModal .videoModalInner {
  aspect-ratio: 16/9;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 30px;
  left: 0;
  margin: auto;
  max-height: calc(100% - 175px);
}
@media (min-width: 0) {
  #about .videoModal .videoModalInner {
    max-width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #about .videoModal .videoModalInner {
    max-width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #about .videoModal .videoModalInner {
    max-width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #about .videoModal .videoModalInner {
    max-width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #about .videoModal .videoModalInner {
    max-width: calc(100% - 125px * 2);
  }
}
#about .videoModal .videoModalInner iframe {
  width: 100%;
  height: 100%;
}
#about .videoModal .close {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
#about .videoModal .close p {
  color: white;
}

@font-face {
  font-family: United;
  src: url("fonts/UnitedItalicSmCdBk.woff2") format("woff2"), url("fonts/UnitedItalicSmCdBk.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
.blueOutlineBtn {
  display: flex;
  align-items: center;
  gap: 35px;
  height: 50px;
  padding-left: 23px;
  padding-right: 23px;
  border: solid 1px #1D428A;
  border-radius: 30px;
  text-decoration: none;
  justify-content: space-between;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  .blueOutlineBtn {
    width: calc(100% - 46px);
  }
}
@media (min-width: 1024px) {
  .blueOutlineBtn {
    width: fit-content;
    height: 40px;
  }
}
.blueOutlineBtn p {
  text-transform: uppercase;
  margin: 0;
  color: #1D428A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  pointer-events: none;
}
.blueOutlineBtn .blueOutlineChevron {
  padding-top: 3px;
  pointer-events: none;
}
.blueOutlineBtn .blueOutlineChevron path {
  stroke: #1D428A;
}
@media (hover: hover) {
  .blueOutlineBtn:hover {
    background-color: #1D428A;
  }
  .blueOutlineBtn:hover p {
    color: #fff;
  }
  .blueOutlineBtn:hover .blueOutlineChevron path {
    stroke: #fff;
  }
}
@media (hover: hover) {
  .blueOutlineBtn.goldHover:hover {
    background-color: #FFB81C;
    border-color: #FFB81C;
  }
}

.whiteOutlineBtn {
  display: flex;
  align-items: center;
  gap: 35px;
  height: 50px;
  padding-left: 23px;
  padding-right: 23px;
  border: solid 1px white;
  border-radius: 30px;
  text-decoration: none;
  justify-content: space-between;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  .whiteOutlineBtn {
    width: calc(100% - 46px);
  }
}
@media (min-width: 1024px) {
  .whiteOutlineBtn {
    width: fit-content;
    height: 40px;
  }
}
.whiteOutlineBtn p {
  text-transform: uppercase;
  margin: 0;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  pointer-events: none;
}
.whiteOutlineBtn .whiteOutlineChevron {
  padding-top: 3px;
  pointer-events: none;
}
.whiteOutlineBtn .whiteOutlineChevron path {
  stroke: #fff;
}
@media (hover: hover) {
  .whiteOutlineBtn:hover {
    background-color: #1D428A;
    border: solid 1px #1D428A;
  }
}
@media (hover: hover) {
  .whiteOutlineBtn.goldHover:hover {
    background-color: #FFB81C;
    border-color: #FFB81C;
  }
}
@media (hover: hover) {
  .whiteOutlineBtn.whiteHover:hover {
    background-color: white;
    border-color: white;
  }
  .whiteOutlineBtn.whiteHover:hover .whiteOutlineChevron path {
    stroke: #1D428A;
  }
  .whiteOutlineBtn.whiteHover:hover p {
    color: #1D428A;
  }
}

.navyOutlineBtn {
  display: flex;
  align-items: center;
  gap: 35px;
  height: 50px;
  padding-left: 23px;
  padding-right: 23px;
  border: solid 1px #001E60;
  border-radius: 30px;
  text-decoration: none;
  justify-content: space-between;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  .navyOutlineBtn {
    width: calc(100% - 46px);
  }
}
@media (min-width: 1024px) {
  .navyOutlineBtn {
    width: fit-content;
    height: 40px;
  }
}
.navyOutlineBtn p {
  text-transform: uppercase;
  margin: 0;
  color: #001E60;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  pointer-events: none;
}
.navyOutlineBtn .blueOutlineChevron {
  padding-top: 3px;
  pointer-events: none;
}
.navyOutlineBtn .blueOutlineChevron path {
  stroke: #001E60;
}
@media (hover: hover) {
  .navyOutlineBtn:hover {
    background-color: #001E60;
  }
  .navyOutlineBtn:hover p {
    color: #fff;
  }
  .navyOutlineBtn:hover .blueOutlineChevron path {
    stroke: #fff;
  }
}
@media (hover: hover) {
  .navyOutlineBtn.goldHover:hover {
    background-color: #FFB81C;
    border-color: #FFB81C;
  }
}

.whiteSolidBtn {
  display: flex;
  align-items: center;
  gap: 35px;
  height: 50px;
  padding-left: 23px;
  padding-right: 23px;
  background-color: white;
  border-radius: 30px;
  text-decoration: none;
  justify-content: space-between;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease-out;
}
@media (min-width: 0) {
  .whiteSolidBtn {
    width: calc(100% - 46px);
  }
}
@media (min-width: 1024px) {
  .whiteSolidBtn {
    width: fit-content;
    height: 40px;
  }
}
.whiteSolidBtn p {
  text-transform: uppercase;
  margin: 0;
  color: #1D428A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  pointer-events: none;
  transition: color 0.2s ease-out;
}
.whiteSolidBtn .blueChevron {
  padding-top: 3px;
  pointer-events: none;
}
.whiteSolidBtn .blueChevron path {
  stroke: #1D428A;
  transition: color 0.2s ease-out;
}
@media (hover: hover) {
  .whiteSolidBtn:hover {
    background-color: #1D428A;
  }
  .whiteSolidBtn:hover p {
    color: white;
  }
  .whiteSolidBtn:hover .blueChevron path {
    stroke: white;
  }
}
@media (hover: hover) {
  .whiteSolidBtn.goldHover:hover {
    background-color: #FFB81C;
  }
}

.blueSolidBtn {
  display: flex;
  align-items: center;
  gap: 35px;
  height: 50px;
  padding-left: 23px;
  padding-right: 23px;
  background-color: #001E60;
  border-radius: 30px;
  text-decoration: none;
  justify-content: space-between;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease-out;
}
@media (min-width: 0) {
  .blueSolidBtn {
    width: calc(100% - 46px);
  }
}
@media (min-width: 1024px) {
  .blueSolidBtn {
    width: fit-content;
    height: 40px;
  }
}
.blueSolidBtn p {
  text-transform: uppercase;
  margin: 0;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  pointer-events: none;
  transition: color 0.2s ease-out;
}
.blueSolidBtn .whiteChevron {
  padding-top: 3px;
  pointer-events: none;
}
.blueSolidBtn .whiteChevron path {
  stroke: white;
  transition: color 0.2s ease-out;
}
@media (hover: hover) {
  .blueSolidBtn:hover {
    background-color: white;
  }
  .blueSolidBtn:hover p {
    color: #001E60;
  }
  .blueSolidBtn:hover .whiteChevron path {
    stroke: #001E60;
  }
}
@media (hover: hover) {
  .blueSolidBtn.goldHover:hover {
    background-color: #FFB81C;
  }
}

.blueArrowBtn {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
}
.blueArrowBtn p {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 16px;
  padding-right: 15px;
}
.blueArrowBtn .blueArrowBtnArrowLine {
  height: 2px;
  width: 2px;
  background-color: #1D428A;
  margin-right: -2px;
  transition-property: width;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .blueArrowBtn:hover p {
    color: #B1B3B3;
  }
  .blueArrowBtn:hover .blueArrowBtnArrowLine {
    width: 12px;
    background-color: #B1B3B3;
  }
  .blueArrowBtn:hover svg path {
    stroke: #B1B3B3;
  }
}

.goldArrowBtn {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
}
.goldArrowBtn p {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 16px;
  color: #FFB81C;
  padding-right: 15px;
}
.goldArrowBtn .goldArrowBtnArrowLine {
  height: 2px;
  width: 2px;
  background-color: #FFB81C;
  margin-right: -2px;
  transition-property: width;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.goldArrowBtn svg path {
  stroke: #FFB81C;
}
@media (hover: hover) {
  .goldArrowBtn:hover p {
    color: white;
  }
  .goldArrowBtn:hover .goldArrowBtnArrowLine {
    width: 12px;
    background-color: white;
  }
  .goldArrowBtn:hover svg path {
    stroke: white;
  }
}

#start-a-project {
  position: relative;
}
#start-a-project .sap_Subhead {
  margin: auto;
  max-width: 1280px;
  margin: auto;
  margin: 50px auto 20px;
}
@media (min-width: 0) {
  #start-a-project .sap_Subhead {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #start-a-project .sap_Subhead {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #start-a-project .sap_Subhead {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #start-a-project .sap_Subhead {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #start-a-project .sap_Subhead {
    width: calc(100% - 125px * 2);
  }
}
#start-a-project .sap_Contact a {
  width: fit-content;
  display: block;
}
#start-a-project .sap_EmailLink:hover {
  color: #FFB81C;
}
#start-a-project .startAProjectSect {
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 1280px;
  margin: auto;
  margin: auto;
}
@media (min-width: 0) {
  #start-a-project .startAProjectSect {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #start-a-project .startAProjectSect {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #start-a-project .startAProjectSect {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #start-a-project .startAProjectSect {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #start-a-project .startAProjectSect {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #start-a-project .startAProjectSect {
    gap: 50px;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  #start-a-project .startAProjectSect {
    flex-direction: row;
    gap: 50px;
  }
}
@media (min-width: 0) {
  #start-a-project .startAProjectSect .sap_Column {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  #start-a-project .startAProjectSect .sap_Column {
    width: calc(50% - 25px);
  }
}
#start-a-project .startAProjectSect .sap_ContentColumn {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  #start-a-project .startAProjectSect .sap_ContentColumn {
    gap: 35px;
  }
}
#start-a-project .startAProjectSect .sap_ContentColumn .sap_Headline {
  color: #1D428A;
  width: 100%;
  font-size: 40px;
  line-height: 46px;
  padding: 0;
}
@media (min-width: 0) {
  #start-a-project .startAProjectSect .sap_ContentColumn .sap_Headline {
    font-weight: 400;
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 768px) {
  #start-a-project .startAProjectSect .sap_ContentColumn .sap_Headline {
    font-weight: 300;
    font-size: 40px;
    line-height: 46px;
  }
}
@media (min-width: 1024px) {
  #start-a-project .startAProjectSect .sap_ContentColumn .sap_Headline {
    max-width: 80%;
  }
}
@media (min-width: 1024px) {
  #start-a-project .startAProjectSect .sap_ContentColumn .sap_BodyCopy {
    max-width: 80%;
  }
}
#start-a-project .sap_Form {
  display: flex;
  flex-direction: column;
}
#start-a-project .sap_Form .sap_FormHiddenLabel {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
#start-a-project .sap_Form .sap_FormInput, #start-a-project .sap_Form .sap_FormInputTextArea {
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #1D428A;
  color: #1D428A;
  font-family: "Proxima Nova", sans-serif;
  width: 100%;
  height: 42px;
  font-size: 16px;
  padding-left: 12px;
  resize: none;
}
@media (min-width: 0) {
  #start-a-project .sap_Form .sap_FormInput, #start-a-project .sap_Form .sap_FormInputTextArea {
    margin-bottom: 36px;
  }
}
@media (min-width: 1024px) {
  #start-a-project .sap_Form .sap_FormInput, #start-a-project .sap_Form .sap_FormInputTextArea {
    margin-bottom: 36px;
  }
}
#start-a-project .sap_Form .sap_FormInput::placeholder, #start-a-project .sap_Form .sap_FormInputTextArea::placeholder {
  font-size: 16px;
  color: #1D428A;
}
#start-a-project .sap_Form .sap_FormInput:focus-visible, #start-a-project .sap_Form .sap_FormInputTextArea:focus-visible {
  outline: none;
  border-bottom: solid 1px #FFB81C;
}
#start-a-project .sap_Form .sap_FormInputTextArea {
  padding-top: 12px;
  height: 150px;
  background-color: #f7f7f7;
}
#start-a-project .sap_Form .sap_FormTwoColumnLayout {
  display: flex;
  width: 100%;
}
@media (min-width: 0) {
  #start-a-project .sap_Form .sap_FormTwoColumnLayout {
    gap: 0;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  #start-a-project .sap_Form .sap_FormTwoColumnLayout {
    gap: 20px;
    flex-direction: row;
  }
}
@media (min-width: 0) {
  #start-a-project .sap_Form .sap_FormColumn {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  #start-a-project .sap_Form .sap_FormColumn {
    width: calc(50% - 10px);
  }
}
#start-a-project .sap_Form .sap_FormSubmit {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
#start-a-project .sap_Form .sap_FormSubmitLabel {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  border: solid 1px #1D428A;
  border-radius: 30px;
  text-decoration: none;
  background-color: #fff;
  color: #1D428A;
  font-family: "Proxima Nova", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 64px;
  margin-top: 35px;
}
#start-a-project .sap_Form .sap_FormSubmitLabel:hover {
  background-color: #FFB81C;
  border-color: #FFB81C;
  color: #fff;
}
#start-a-project .sap_Form .sap_FormSubmitLabel:hover path {
  stroke: #fff;
}
#start-a-project .sap_Form .sap_FormUploadLabel {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: "Proxima Nova", sans-serif;
  font-size: 16px;
  color: #1D428A;
  gap: 8px;
  margin-top: 12px;
}
#start-a-project .sap_Form .sap_FormUploadLabel svg {
  stroke: #1D428A;
}
#start-a-project .sap_Form .sap_FormUploadLabel:hover {
  color: #FFB81C;
}
#start-a-project .sap_Form .sap_FormUploadLabel:hover svg {
  stroke: #FFB81C;
}
#start-a-project .sap_Form .sap_FormUploadFileContainer {
  height: 40px;
  gap: 8px;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 24px;
  overflow-x: auto;
}
#start-a-project .sap_Form .sap_FormUploadFileContainerHidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
#start-a-project .sap_Form .sap_FormUploadFileIcon {
  font-family: "Proxima Nova", sans-serif;
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  gap: 12px;
  padding: 0 12px;
  color: #1D428A;
  background-color: #f7f7f7;
  align-items: center;
}
#start-a-project .sap_Form .sap_FormUploadFileIconButton {
  border: none;
  display: flex;
  background-color: inherit;
}
#start-a-project .sap_Form textarea[aria-invalid=true],
#start-a-project .sap_Form input[aria-invalid=true] {
  color: #FFB81C;
  border-bottom-color: #FFB81C;
}
#start-a-project .sap_Form textarea[aria-invalid=true]::placeholder,
#start-a-project .sap_Form input[aria-invalid=true]::placeholder {
  color: #FFB81C;
}
#start-a-project .sap_Form .wpcf7-not-valid-tip {
  color: #FFB81C;
  padding-left: 12px;
  position: absolute;
  z-index: 10;
  font-size: 10px;
  top: 36px;
  font-family: "Proxima Nova", sans-serif;
}
#start-a-project .sap_Form .wpcf7-form-control-wrap[data-name=phone-input] .wpcf7-not-valid-tip {
  top: 48px;
}
#start-a-project .sap_Form .wpcf7-form-control-wrap[data-name=company-input] .wpcf7-not-valid-tip {
  top: 48px;
}
#start-a-project .sap_Form .wpcf7-form-control-wrap[data-name=email] .wpcf7-not-valid-tip {
  top: 48px;
}
#start-a-project .sap_Form .wpcf7-form-control-wrap[data-name=message] .wpcf7-not-valid-tip {
  top: 158px;
}
#start-a-project .sap_Form .wpcf7-form-control-wrap[data-name=supporting-documents] .wpcf7-not-valid-tip {
  top: -50px;
}
#start-a-project .wpcf7-response-output {
  display: none;
}
#start-a-project .sap_FormSuccess {
  display: none;
}
#start-a-project .wpcf7 form.sent {
  min-height: 1075px;
  max-width: 80%;
}
@media (min-width: 1024px) {
  #start-a-project .wpcf7 form.sent {
    min-height: 747px;
  }
}
#start-a-project .wpcf7 form.sent .sap_Form {
  display: none;
}
#start-a-project .wpcf7 form.sent .sap_FormSuccess {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 10;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  color: #1D428A;
  text-align: center;
  font-family: "Proxima Nova", sans-serif;
}
@media (min-width: 1024px) {
  #start-a-project .wpcf7 form.sent .sap_FormSuccess {
    min-height: 747px;
    justify-content: unset;
  }
}
#start-a-project .wpcf7 form.sent .sap_FormSuccessHeading {
  width: calc(100% - 35px * 2);
  max-width: 80%;
  font-weight: 300;
  max-width: 600px;
  font-size: 40px;
  margin-top: 35px;
  line-height: 1.25;
}
#start-a-project .wpcf7 form.sent .sap_FormSuccessSubHeading {
  width: calc(100% - 35px * 2);
  max-width: 600px;
  margin-top: 16px;
  font-size: 18px;
}
#start-a-project .wpcf7 form.sent .sap_FormSuccessEmailHeading {
  width: calc(100% - 35px * 2);
  font-weight: 700;
  margin-top: 46px;
  font-size: 18px;
  font-family: "Termina", sans-serif;
}
#start-a-project .wpcf7 form.sent .sap_FormSuccessEmail {
  display: block;
  font-size: 18px;
}

#pageHeader {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#pageHeader .ph_contentContainer {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-column-gap: 40px;
  grid-row-gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #pageHeader .ph_contentContainer {
    grid-template-columns: 1fr;
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #pageHeader .ph_contentContainer {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #pageHeader .ph_contentContainer {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #pageHeader .ph_contentContainer {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #pageHeader .ph_contentContainer {
    width: calc(100% - 125px * 2);
  }
}
#pageHeader .ph_contentContainer h1 {
  color: #1D428A;
  width: 100%;
  font-size: 40px;
  line-height: 46px;
  padding: 0;
}
@media (min-width: 0) {
  #pageHeader .ph_contentContainer h1 {
    font-weight: 400;
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 768px) {
  #pageHeader .ph_contentContainer h1 {
    font-weight: 300;
    font-size: 40px;
    line-height: 46px;
  }
}
#pageHeader .ph_contentContainer p {
  margin-top: 10px;
  width: 100%;
  padding: 0;
}
#pageHeader .ph_headerPhotoMobile {
  position: relative;
  width: 100%;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition-property: height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #pageHeader .ph_headerPhotoMobile {
    clip-path: polygon(0% 0%, calc(100% - 35px) 0%, 100% calc(0% + 35px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 768px) {
  #pageHeader .ph_headerPhotoMobile {
    clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% calc(0% + 50px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 1024px) {
  #pageHeader .ph_headerPhotoMobile {
    clip-path: polygon(0% 0%, calc(100% - 75px) 0%, 100% calc(0% + 75px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 1280px) {
  #pageHeader .ph_headerPhotoMobile {
    clip-path: polygon(0% 0%, calc(100% - 100px) 0%, 100% calc(0% + 100px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 1440px) {
  #pageHeader .ph_headerPhotoMobile {
    clip-path: polygon(0% 0%, calc(100% - 125px) 0%, 100% calc(0% + 125px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 0) {
  #pageHeader .ph_headerPhotoMobile {
    display: block;
  }
}
@media (min-width: 1024px) {
  #pageHeader .ph_headerPhotoMobile {
    display: none;
  }
}
#pageHeader .ph_headerPhotoMobile .ph_headerPhotoMobileImg {
  display: block;
  width: 100%;
}
#pageHeader .ph_headerPhotoDesktop {
  position: relative;
  width: 100%;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition-property: height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #pageHeader .ph_headerPhotoDesktop {
    clip-path: polygon(0% 0%, calc(100% - 35px) 0%, 100% calc(0% + 35px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 768px) {
  #pageHeader .ph_headerPhotoDesktop {
    clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% calc(0% + 50px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 1024px) {
  #pageHeader .ph_headerPhotoDesktop {
    clip-path: polygon(0% 0%, calc(100% - 75px) 0%, 100% calc(0% + 75px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 1280px) {
  #pageHeader .ph_headerPhotoDesktop {
    clip-path: polygon(0% 0%, calc(100% - 100px) 0%, 100% calc(0% + 100px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 1440px) {
  #pageHeader .ph_headerPhotoDesktop {
    clip-path: polygon(0% 0%, calc(100% - 125px) 0%, 100% calc(0% + 125px), 100% 100%, 0% 100%);
  }
}
@media (min-width: 0) {
  #pageHeader .ph_headerPhotoDesktop {
    display: none;
    height: 300px;
  }
}
@media (min-width: 768px) {
  #pageHeader .ph_headerPhotoDesktop {
    height: 420px;
  }
}
@media (min-width: 1024px) {
  #pageHeader .ph_headerPhotoDesktop {
    display: block;
    height: 550px;
  }
}
@media (min-width: 1441px) {
  #pageHeader .ph_headerPhotoDesktop {
    height: 650px;
  }
}
#pageHeader .ph_corner {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition-property: width;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 0) {
  #pageHeader .ph_corner {
    width: 35px;
  }
}
@media (min-width: 768px) {
  #pageHeader .ph_corner {
    width: 50px;
  }
}
@media (min-width: 1024px) {
  #pageHeader .ph_corner {
    width: 75px;
  }
}
@media (min-width: 1280px) {
  #pageHeader .ph_corner {
    width: 100px;
  }
}
@media (min-width: 1440px) {
  #pageHeader .ph_corner {
    width: 125px;
  }
}
#pageHeader .ph_yellowBar {
  width: 100%;
  height: 16px;
  background-color: #FFB81C;
}

.bottomBanner {
  background-color: #FFB81C;
}
@media (min-width: 0) {
  .bottomBanner {
    padding: 20px 0;
  }
}
@media (min-width: 768px) {
  .bottomBanner {
    padding: 30px 0;
  }
}
.bottomBanner .defaultBottomBanner {
  max-width: 1280px;
  margin: auto;
  margin: auto;
}
@media (min-width: 0) {
  .bottomBanner .defaultBottomBanner {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  .bottomBanner .defaultBottomBanner {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  .bottomBanner .defaultBottomBanner {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  .bottomBanner .defaultBottomBanner {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  .bottomBanner .defaultBottomBanner {
    width: calc(100% - 125px * 2);
  }
}
.bottomBanner .defaultBottomBanner .dbb_Grid {
  display: grid;
  grid-template-columns: fit-content(100%) fit-content(100%);
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 550px) {
  .bottomBanner .defaultBottomBanner .dbb_Grid {
    grid-gap: 40px;
  }
}
.bottomBanner .defaultBottomBanner .dbb_Grid .mobile {
  font-size: 16px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .bottomBanner .defaultBottomBanner .dbb_Grid .mobile {
    display: none;
  }
}
.bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA {
  display: flex;
  gap: 15px;
  align-items: center;
}
.bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA p {
  font-size: 16px;
}
@media (min-width: 0) {
  .bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA p {
    display: none;
  }
}
@media (min-width: 768px) {
  .bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA p {
    display: initial;
  }
}
.bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA .dbb_Link {
  display: block;
  background-color: #1D428A;
  border-radius: 100%;
  position: relative;
}
@media (min-width: 0) {
  .bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA .dbb_Link {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 768px) {
  .bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA .dbb_Link {
    height: 40px;
    width: 40px;
  }
}
.bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA .dbb_Link svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (min-width: 0) {
  .bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA .dbb_Link svg {
    height: 20px;
    width: 10px;
  }
}
@media (min-width: 768px) {
  .bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA .dbb_Link svg {
    height: 14px;
    width: 7px;
  }
}
.bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA .dbb_Link:hover {
  background-color: white;
}
.bottomBanner .defaultBottomBanner .dbb_Grid .dbb_CTA .dbb_Link:hover path {
  stroke: #1D428A;
}
.bottomBanner .productsBottomBanner {
  margin: auto;
  max-width: 1280px;
  margin: auto;
  padding: 40px 0;
}
@media (min-width: 0) {
  .bottomBanner .productsBottomBanner {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  .bottomBanner .productsBottomBanner {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  .bottomBanner .productsBottomBanner {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  .bottomBanner .productsBottomBanner {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  .bottomBanner .productsBottomBanner {
    width: calc(100% - 125px * 2);
  }
}
.bottomBanner .productsBottomBanner .pbb_Grid {
  display: grid;
}
@media (min-width: 0) {
  .bottomBanner .productsBottomBanner .pbb_Grid {
    justify-items: center;
    gap: 25px;
    padding: 50px 0;
  }
}
@media (min-width: 768px) {
  .bottomBanner .productsBottomBanner .pbb_Grid {
    grid-template-columns: fit-content(100%) auto fit-content(100%);
    grid-gap: 30px;
    padding: initial;
  }
}
@media (min-width: 1024px) {
  .bottomBanner .productsBottomBanner .pbb_Grid {
    grid-gap: 50px;
  }
}
@media (min-width: 0) {
  .bottomBanner .productsBottomBanner .pbb_Grid h2 {
    width: 250px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .bottomBanner .productsBottomBanner .pbb_Grid h2 {
    grid-column: initial;
    text-align: left;
    width: 150px;
  }
}
@media (min-width: 1024px) {
  .bottomBanner .productsBottomBanner .pbb_Grid h2 {
    width: 190px;
  }
}
@media (min-width: 1280px) {
  .bottomBanner .productsBottomBanner .pbb_Grid h2 {
    width: 250px;
  }
}
@media (min-width: 0) {
  .bottomBanner .productsBottomBanner .pbb_Grid .pbb_Copy {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .bottomBanner .productsBottomBanner .pbb_Grid .pbb_Copy {
    text-align: left;
    width: 100%;
    height: 100%;
    max-width: 350px;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .bottomBanner .productsBottomBanner .pbb_Grid .pbb_Copy {
    max-width: 365px;
    margin: auto;
  }
}
.bottomBanner .productsBottomBanner .pbb_Grid .pbb_CTAs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 0) {
  .bottomBanner .productsBottomBanner .pbb_Grid .pbb_CTAs {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .bottomBanner .productsBottomBanner .pbb_Grid .pbb_CTAs {
    width: fit-content;
    height: 100%;
  }
}
.bottomBanner .productsBottomBanner .pbb_Grid .pbb_CTAs a {
  width: 100%;
  box-sizing: border-box;
}

#products .listGridItem {
  color: #1D428A;
  display: flex;
  width: fit-content;
  gap: 10px;
}
#products .greyDash {
  display: block;
  width: 4px;
  height: 10px;
  background-color: #B1B3B3;
  margin-top: 2px;
}
#products .listText {
  width: calc(100% - 14px);
}
#products .swiper {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  #products .swiper {
    aspect-ratio: 16/9;
  }
}
@media (min-width: 1024px) {
  #products .swiper {
    aspect-ratio: initial;
  }
}
#products .swiper .swiper-slide {
  height: auto;
}
#products .swiper .imgCaption {
  position: absolute;
  left: 25px;
  bottom: 25px;
  color: white;
}
#products .swiper .swiperImg {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#products .swiper .swiper-pagination {
  width: fit-content;
  right: 25px;
  left: initial;
  bottom: 25px;
  color: white;
  font-family: Termina, sans-serif;
  font-size: 14px;
}
#products .swiper .swiper-button-next, #products .swiper .swiper-button-prev {
  height: 40px;
  width: 40px;
}
#products .swiper .swiper-button-next:after, #products .swiper .swiper-button-prev:after {
  display: none;
}
#products .swiper .swiper-button-next:hover rect, #products .swiper .swiper-button-prev:hover rect {
  fill: white;
  stroke: #1D428A;
}
#products .swiper .swiper-button-next:hover path, #products .swiper .swiper-button-prev:hover path {
  stroke: #1D428A;
}
@media (min-width: 0) {
  #products .productsHeader {
    margin: 0 0 50px;
  }
}
@media (min-width: 550px) {
  #products .productsHeader {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  #products .productsHeader {
    padding-top: initial;
    margin: 50px 0;
  }
}
#products .productsHeader .ph_Grid {
  display: grid;
}
@media (min-width: 550px) {
  #products .productsHeader .ph_Grid {
    grid-template-columns: minmax(300px, 52%) auto;
  }
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid {
    padding-left: 50px;
    grid-template-columns: minmax(320px, 1fr) fit-content(100%);
    align-items: center;
  }
}
@media (min-width: 1024px) {
  #products .productsHeader .ph_Grid {
    margin: auto;
    max-width: 1280px;
    margin: auto;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}
@media (min-width: 1024px) and (min-width: 0) {
  #products .productsHeader .ph_Grid {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  #products .productsHeader .ph_Grid {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #products .productsHeader .ph_Grid {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  #products .productsHeader .ph_Grid {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  #products .productsHeader .ph_Grid {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #products .productsHeader .ph_Grid .ph_Content {
    margin: auto;
    max-width: 1280px;
    margin: auto;
    margin-top: 30px;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #products .productsHeader .ph_Grid .ph_Content {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_Content {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #products .productsHeader .ph_Grid .ph_Content {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #products .productsHeader .ph_Grid .ph_Content {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #products .productsHeader .ph_Grid .ph_Content {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 550px) {
  #products .productsHeader .ph_Grid .ph_Content {
    margin-top: initial;
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_Content {
    width: 100%;
    max-width: 100%;
    margin: initial;
  }
}
#products .productsHeader .ph_Grid .ph_Content .ph_Body {
  margin: 20px 0 0;
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_Content .ph_Body {
    max-width: 75%;
  }
}
#products .productsHeader .ph_Grid .ph_CTAs {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
@media (min-width: 0) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 0) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    margin: 60px auto 0;
    row-gap: 15px;
  }
}
@media (min-width: 550px) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    grid-column: span 2;
    grid-row-start: 2;
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    margin: 30px 0 0;
    max-width: initial;
    width: 100%;
    row-gap: 0;
    grid-column: span 1;
  }
}
@media (min-width: 1024px) {
  #products .productsHeader .ph_Grid .ph_CTAs {
    height: 100%;
    align-content: flex-start;
  }
}
#products .productsHeader .ph_Grid .ph_CTAs h3 {
  width: 100%;
}
@media (min-width: 0) {
  #products .productsHeader .ph_Grid .ph_CTAs h3 {
    text-align: center;
    margin-bottom: 15px;
  }
}
@media (min-width: 550px) {
  #products .productsHeader .ph_Grid .ph_CTAs h3 {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_CTAs h3 {
    text-align: left;
    margin-bottom: 15px;
  }
}
@media (min-width: 550px) {
  #products .productsHeader .ph_Grid .ph_CTAs a {
    width: calc(50% - 5px);
    box-sizing: border-box;
  }
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_CTAs a {
    width: 100%;
    margin-bottom: 15px;
    max-width: 225px;
  }
}
#products .productsHeader .ph_Grid .ph_ImageWrapper {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 0) {
  #products .productsHeader .ph_Grid .ph_ImageWrapper {
    grid-row-start: 1;
    width: 100%;
    height: 375px;
    overflow: hidden;
    align-items: flex-end;
  }
}
@media (min-width: 550px) {
  #products .productsHeader .ph_Grid .ph_ImageWrapper {
    grid-column-start: 2;
    grid-column-end: 3;
    align-items: center;
    height: initial;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_ImageWrapper {
    grid-row-start: 1;
    grid-row-end: 3;
    margin-top: 0;
    align-items: initial;
    overflow: hidden;
    display: flex;
  }
}
@media (min-width: 1024px) {
  #products .productsHeader .ph_Grid .ph_ImageWrapper {
    display: block;
  }
}
@media (min-width: 0) {
  #products .productsHeader .ph_Grid .ph_ImageWrapper .ph_Image {
    width: 100%;
    object-fit: cover;
  }
}
@media (min-width: 550px) {
  #products .productsHeader .ph_Grid .ph_ImageWrapper .ph_Image {
    width: 325px;
  }
}
@media (min-width: 768px) {
  #products .productsHeader .ph_Grid .ph_ImageWrapper .ph_Image {
    width: 425px;
    object-fit: initial;
  }
}
@media (min-width: 1024px) {
  #products .productsHeader .ph_Grid .ph_ImageWrapper .ph_Image {
    width: 100%;
    object-fit: cover;
    max-width: 550px;
    margin: auto;
    display: block;
  }
}
#products .since1989 {
  background-color: #1D428A;
  padding: 125px 0;
}
#products .since1989 .s1_Grid {
  max-width: 1280px;
  margin: auto;
  margin: auto;
  display: grid;
}
@media (min-width: 0) {
  #products .since1989 .s1_Grid {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 768px) {
  #products .since1989 .s1_Grid {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) {
  #products .since1989 .s1_Grid {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1280px) {
  #products .since1989 .s1_Grid {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1440px) {
  #products .since1989 .s1_Grid {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 768px) {
  #products .since1989 .s1_Grid {
    grid-template-columns: fit-content(100%) auto;
    align-items: center;
  }
}
#products .since1989 .s1_Grid .s1_Since {
  text-align: center;
}
@media (min-width: 0) {
  #products .since1989 .s1_Grid .s1_Since {
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  #products .since1989 .s1_Grid .s1_Since {
    padding-bottom: 0;
    padding-right: 50px;
  }
}
#products .since1989 .s1_Grid .s1_Since .s1_Year {
  font-size: 98px;
}
@media (min-width: 0) {
  #products .since1989 .s1_Grid h2 {
    text-align: center;
    font-weight: 300;
    text-wrap: pretty;
    padding-top: 40px;
    border-top: solid 1px white;
  }
}
@media (min-width: 768px) {
  #products .since1989 .s1_Grid h2 {
    padding-top: 0;
    border-top: none;
    padding-left: 50px;
    border-left: solid 1px white;
    text-align: left;
  }
}
#products .cuttingTools, #products .instruments {
  display: grid;
}
@media (min-width: 1024px) {
  #products .cuttingTools, #products .instruments {
    grid-template-columns: 50% 50%;
    align-items: center;
  }
}
#products .cuttingTools .ct_Content, #products .instruments .ct_Content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#products .cuttingTools .ct_Content img, #products .instruments .ct_Content img {
  width: 115px;
}
@media (min-width: 0) {
  #products .cuttingTools .ct_Content, #products .instruments .ct_Content {
    max-width: 1280px;
    margin: auto;
    margin: auto;
    padding: 50px 0;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #products .cuttingTools .ct_Content, #products .instruments .ct_Content {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #products .cuttingTools .ct_Content, #products .instruments .ct_Content {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #products .cuttingTools .ct_Content, #products .instruments .ct_Content {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #products .cuttingTools .ct_Content, #products .instruments .ct_Content {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #products .cuttingTools .ct_Content, #products .instruments .ct_Content {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 1024px) {
  #products .cuttingTools .ct_Content, #products .instruments .ct_Content {
    width: initial;
    max-width: initial;
    margin: initial;
    padding: 50px 100px;
    box-sizing: border-box;
  }
}
#products .cuttingTools .ct_Content p, #products .instruments .ct_Content p {
  margin: 0 0 20px;
}
#products .cuttingTools .ct_Content .ct_ListGrid, #products .instruments .ct_Content .ct_ListGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
@media (min-width: 0) {
  #products .instruments .ct_Swiper {
    grid-row-start: 2;
  }
}
@media (min-width: 1024px) {
  #products .instruments .ct_Swiper {
    grid-row-start: 1;
  }
}
#products .industryLeader {
  background-color: #EFEFEF;
}
#products .industryLeader .il_Grid {
  display: grid;
}
@media (min-width: 0) {
  #products .industryLeader .il_Grid {
    padding: 50px 0;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  #products .industryLeader .il_Grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 100px;
    padding: 100px 0;
    max-width: 1280px;
    margin: auto;
    margin: auto;
  }
}
@media (min-width: 1024px) and (min-width: 0) {
  #products .industryLeader .il_Grid {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  #products .industryLeader .il_Grid {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #products .industryLeader .il_Grid {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  #products .industryLeader .il_Grid {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  #products .industryLeader .il_Grid {
    width: calc(100% - 125px * 2);
  }
}
#products .industryLeader .il_Grid .il_Subhead {
  color: #1D428A;
}
@media (min-width: 0) {
  #products .industryLeader .il_Grid .il_Subhead {
    max-width: 1280px;
    margin: auto;
    margin: auto;
    margin-bottom: 20px;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #products .industryLeader .il_Grid .il_Subhead {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #products .industryLeader .il_Grid .il_Subhead {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #products .industryLeader .il_Grid .il_Subhead {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #products .industryLeader .il_Grid .il_Subhead {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #products .industryLeader .il_Grid .il_Subhead {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 1024px) {
  #products .industryLeader .il_Grid .il_Subhead {
    width: initial;
    max-width: initial;
    margin: 0 0 20px;
    grid-column: span 2;
  }
}
@media (min-width: 0) {
  #products .industryLeader .il_Grid .il_Content {
    grid-row-start: 2;
    grid-row-end: 3;
    max-width: 1280px;
    margin: auto;
    margin: auto;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #products .industryLeader .il_Grid .il_Content {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #products .industryLeader .il_Grid .il_Content {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #products .industryLeader .il_Grid .il_Content {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #products .industryLeader .il_Grid .il_Content {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #products .industryLeader .il_Grid .il_Content {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 1024px) {
  #products .industryLeader .il_Grid .il_Content {
    width: initial;
    max-width: initial;
    margin: initial;
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
@media (min-width: 0) {
  #products .industryLeader .il_Grid .il_Content p {
    margin: 15px 0 25px;
  }
}
@media (min-width: 1024px) {
  #products .industryLeader .il_Grid .il_Content p {
    margin: 15px 0 50px;
  }
}
@media (min-width: 0) {
  #products .industryLeader .il_Grid .il_List {
    grid-row-start: 4;
    grid-row-end: 5;
    max-width: 1280px;
    margin: auto;
    margin: auto;
    margin-top: 50px;
  }
}
@media (min-width: 0) and (min-width: 0) {
  #products .industryLeader .il_Grid .il_List {
    width: calc(100% - 35px * 2);
  }
}
@media (min-width: 0) and (min-width: 768px) {
  #products .industryLeader .il_Grid .il_List {
    width: calc(100% - 50px * 2);
  }
}
@media (min-width: 0) and (min-width: 1024px) {
  #products .industryLeader .il_Grid .il_List {
    width: calc(100% - 75px * 2);
  }
}
@media (min-width: 0) and (min-width: 1280px) {
  #products .industryLeader .il_Grid .il_List {
    width: calc(100% - 100px * 2);
  }
}
@media (min-width: 0) and (min-width: 1440px) {
  #products .industryLeader .il_Grid .il_List {
    width: calc(100% - 125px * 2);
  }
}
@media (min-width: 1024px) {
  #products .industryLeader .il_Grid .il_List {
    width: initial;
    max-width: initial;
    margin: initial;
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
#products .industryLeader .il_Grid .il_List h3 {
  color: #FFB81C;
}
#products .industryLeader .il_Grid .il_List .il_ListGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
}
@media (min-width: 550px) {
  #products .industryLeader .il_Grid .il_List .il_ListGrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#products .industryLeader .il_Grid .il_Media {
  width: 100%;
}
@media (min-width: 0) {
  #products .industryLeader .il_Grid .il_Media {
    grid-row-start: 3;
    grid-row-end: 4;
  }
}
@media (min-width: 1024px) {
  #products .industryLeader .il_Grid .il_Media {
    grid-row-start: 2;
    grid-row-end: 4;
    grid-column-start: 2;
    grid-column-end: 3;
  }
}
#products .industryLeader .il_Grid .il_Media video {
  width: 100%;
}

.termsLayout {
  max-width: 1280px;
  margin: auto;
}
.termsLayout h1 {
  margin-bottom: 60px;
}
.termsLayout h2,
.termsLayout ul,
.termsLayout p {
  padding-bottom: 16px;
}
.termsLayout ul p {
  display: inline;
}
.termsLayout li {
  color: #1D428A;
  margin-left: 24px;
  padding-bottom: 16px;
}
.termsLayout li::marker {
  color: #1D428A;
}

.pageNotFound {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 40vh;
}
@media (min-width: 0) {
  .pageNotFound {
    width: calc(100% - 35px * 2);
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .pageNotFound {
    width: calc(100% - 50px * 2);
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
.pageNotFound h1 {
  font-size: 35px;
  text-align: center;
}

.pageNotFound404 {
  color: #FFB81C;
  font-size: 120px;
  font-family: United;
}

.pageNotFoundCTA {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pageNotFoundCTA span {
  color: #1D428A;
  font-size: 14px;
  font-family: "Termina", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.pageNotFoundButtonContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 28px;
}
@media (min-width: 768px) {
  .pageNotFoundButtonContainer {
    flex-direction: row;
  }
}
.pageNotFoundButtonContainer .pageNotFoundButton {
  width: calc(100% - 46px);
}
@media (min-width: 768px) {
  .pageNotFoundButtonContainer .pageNotFoundButton {
    max-width: 196px;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
}

::selection {
  color: white;
  background: #FFB81C;
}

::-moz-selection {
  color: white;
  background: #1D428A;
}

@media (min-width: 0) {
  main {
    padding-top: 90px;
  }
}
@media (min-width: 1024px) {
  main {
    padding-top: 120px;
  }
}

h1 {
  font-family: "Termina", sans-serif;
  font-weight: 300;
  color: #1D428A;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 0) {
  h1 {
    font-size: 38px;
    line-height: 44px;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 42px;
    line-height: 49px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 45px;
    line-height: 52px;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 55px;
    line-height: 64px;
  }
}
h1 span {
  font-weight: 600;
}
h1.gold {
  color: #FFB81C;
}

h2 {
  font-family: "Termina", sans-serif;
  font-weight: 300;
  margin: 0;
  color: #1D428A;
  transition-property: font-size, line-height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 0) {
  h2 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 400;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 33px;
    line-height: 41px;
    font-weight: 300;
  }
}
@media (min-width: 1280px) {
  h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
h2 span {
  font-weight: 800;
}
h2.white {
  color: white;
}

h3 {
  margin: 0;
  font-family: "Termina", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1D428A;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 19px;
  -webkit-font-smoothing: antialiased;
}
h3.white {
  color: white;
}

h4 {
  margin: 0;
  color: #FFB81C;
  font-family: United, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  -webkit-font-smoothing: antialiased;
}
h4.white {
  color: white;
}

h5 {
  font-family: "Proxima Nova", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  color: #FFB81C;
  -webkit-font-smoothing: antialiased;
}

p {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  text-decoration: none;
  transition-property: width, font-size, line-height;
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-font-smoothing: antialiased;
}
p span {
  font-weight: 700;
}
p .bold {
  font-weight: 800;
}
@media (min-width: 0) {
  p {
    color: #1D428A;
    font-size: 16px;
    line-height: 21px;
  }
}
@media (min-width: 1280px) {
  p {
    font-size: 18px;
    line-height: 23px;
  }
}

a {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  margin: 0;
  color: #1D428A;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}

input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -webkit-font-smoothing: antialiased;
}

/*# sourceMappingURL=style.css.map */
