@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueItalic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueThinItalic.otf') format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueBold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueUltraLightItalic.otf') format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueThin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueMediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueHeavy.otf') format("opentype"), url('../fonts/HelveticaNeueBlack.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueLightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueMedium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueHeavyItalic.otf') format("opentype"), url('../fonts/HelveticaNeueBlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueRoman.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueLight.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueUltraLight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueBoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --untitled-ui--off-white: #edede1;
  --untitled-ui--primary: #076633;
  --untitled-ui--primary600: #7f56d9;
  --untitled-ui--primary100: #f4ebff;
  --untitled-ui--gray800: #1d2939;
  --untitled-ui--gray100: #f2f4f7;
  --untitled-ui--gray700: #344054;
  --untitled-ui--gray600: #475467;
  --untitled-ui--gray400: #07663380;
  --untitled-ui--gray300: #d0d5dd;
  --untitled-ui--gray900: #101828;
  --untitled-ui--success50: #ecfdf3;
  --untitled-ui--success700: #027a48;
  --untitled-ui--gray50-2: #f9fafb;
  --untitled-ui--gray500: #667085;
  --untitled-ui--primary800: #53389e;
  --untitled-ui--primary300: #d6bbfb;
  --untitled-ui--gray200: #eaecf0;
  --untitled-ui--primary50: #f9f5ff;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.uui-max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.uui-max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.uui-container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-page-padding {
  flex: 1;
  margin-left: 72px;
  margin-right: 72px;
}

.uui-button {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--off-white);
  background-color: var(--untitled-ui--off-white);
  color: var(--untitled-ui--primary);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.uui-button:hover {
  border: 1px solid var(--untitled-ui--off-white);
  background-color: var(--untitled-ui--primary);
  color: var(--untitled-ui--off-white);
}

.uui-button:focus {
  background-color: var(--untitled-ui--primary600);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--primary100);
}

.uui-button.is-secondary {
  border: 1px solid var(--untitled-ui--primary);
  color: var(--untitled-ui--off-white);
  background-color: #076633;
  font-weight: 700;
}

.uui-button.is-secondary:hover {
  background-color: var(--untitled-ui--off-white);
  color: var(--untitled-ui--primary);
}

.uui-button.is-main {
  border-style: none;
  font-weight: 700;
}

.uui-button.is-main:hover {
  border-style: none;
}

.uui-heading-xlarge {
  color: var(--untitled-ui--off-white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Helvetica Neue, Arial, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
}

.uui-button-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-section_heroheader22 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.uui-text-size-xlarge {
  color: var(--untitled-ui--off-white);
  font-size: 1.5rem;
  line-height: 1.5;
}

.uui-button-secondary-gray {
  grid-column-gap: .5rem;
  background-color: var(--untitled-ui--off-white);
  color: #2a6438;
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .75rem 1.125rem;
  font-family: Helvetica Neue, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.uui-button-secondary-gray:hover {
  color: var(--untitled-ui--gray800);
}

.uui-button-secondary-gray:focus {
  background-color: var(--untitled-ui--off-white);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--gray100);
}

.uui-space-large {
  width: 100%;
  min-height: 3rem;
}

.uui-padding-vertical-xhuge {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.uui-text-size-large {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-size: 1.125rem;
  line-height: 1.5;
}

.uui-text-size-medium {
  color: var(--untitled-ui--off-white);
  letter-spacing: normal;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-text-size-medium.text-color-primary700 {
  color: var(--untitled-ui--primary);
}

.uui-text-align-center {
  text-align: center;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.uui-max-width-large {
  width: 100%;
  max-width: 48rem;
}

.uui-max-width-large.align-center {
  margin-left: auto;
  margin-right: auto;
}

.uui-heading-medium {
  color: var(--untitled-ui--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.uui-career11_department-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
  padding-top: 0;
}

.uui-career11_component {
  margin-top: 4rem;
}

.uui-career11_item {
  border: 1px solid #07663380;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.uui-career11_item._1, .uui-career11_item._2, .uui-career11_item._3, .uui-career11_item._4 {
  background-image: linear-gradient(166deg, #076633cc 28%, #07663366 64%);
}

.uui-career11_item.soon {
  justify-content: center;
  align-items: center;
  display: none;
}

.uui-career11_title-wrapper {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.uui-career11_job-details-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.uui-career11_detail-wrapper {
  color: var(--untitled-ui--off-white);
  align-items: center;
  margin-right: 1.5rem;
  font-weight: 500;
  display: flex;
}

.uui-career11_icon-wrapper {
  flex: none;
  margin-right: .5rem;
}

.uui-career11_icon {
  color: var(--untitled-ui--off-white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.uui-career11_location {
  color: var(--untitled-ui--primary);
  background-color: #edede1cc;
  border-radius: 1rem;
  align-items: center;
  padding: .125rem .625rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.uui-career11_flag-icon {
  object-fit: cover;
  border-radius: 1rem;
  width: 1rem;
  height: 1rem;
  margin-left: -.375rem;
  margin-right: .375rem;
}

.uui-space-xsmall {
  width: 100%;
  min-height: 1rem;
}

.uui-career11_heading {
  color: var(--untitled-ui--off-white);
  letter-spacing: normal;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.uui-career11_heading.soon {
  color: var(--untitled-ui--primary);
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.social-link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--untitled-ui--gray400);
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.social-link:hover {
  color: var(--untitled-ui--primary);
}

.uui-team04_item {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.uui-team04_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.uui-team04_image {
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.uui-team04_image._2 {
  object-position: 50% 80%;
}

.uui-team04_image-wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.uui-team04_component {
  margin-top: 4rem;
}

.uui-space-medium {
  width: 100%;
  min-height: 2rem;
}

.uui-heading-tiny {
  color: var(--untitled-ui--primary);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Helvetica Neue, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-section {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.background-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-image: linear-gradient(197deg, #2a643800, #2a6438);
  border-radius: 32px;
  width: 100%;
  height: 700px;
  margin: 40px;
}

.body {
  background-color: var(--untitled-ui--off-white);
  font-family: Helvetica Neue, Arial, sans-serif;
  font-weight: 400;
}

.uui-container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-page-padding-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-text-size-large-2 {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-size: 1.125rem;
  line-height: 1.5;
}

.uui-text-size-large-2.color-white {
  font-weight: 400;
}

.uui-heading-medium-2 {
  color: var(--untitled-ui--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.uui-button-row-2 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-button-row-2.button-row-center {
  justify-content: center;
}

.uui-icon-1x1-xsmall-2 {
  width: 1.5rem;
  height: 1.5rem;
}

.uui-layout27_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: .75rem;
}

.uui-layout27_item {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.uui-layout27_item-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2.5rem;
  display: grid;
}

.uui-layout27_content-right {
  padding-top: 3rem;
}

.uui-layout27_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.uui-button-secondary-gray-2 {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--gray300);
  background-color: var(--untitled-ui--off-white);
  color: #2b6639;
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: .625rem 1.125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.uui-button-secondary-gray-2:hover {
  border-color: var(--untitled-ui--primary);
  color: var(--untitled-ui--primary);
}

.uui-button-secondary-gray-2:focus {
  background-color: var(--untitled-ui--off-white);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--gray100);
}

.uui-layout27_lightbox {
  background-color: var(--untitled-ui--gray100);
  border-radius: 32px;
  justify-content: center;
  width: 100%;
  height: 40rem;
  margin-top: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.uui-space-xsmall-2 {
  width: 100%;
  min-height: 1rem;
}

.uui-padding-vertical-xhuge-2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.image {
  object-fit: cover;
  object-position: 50% 70%;
  width: 100%;
  height: 100%;
}

.uui-heading-large-2 {
  color: var(--untitled-ui--gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.uui-heading-large-2.color-white {
  font-weight: 700;
}

.uui-section_cta02 {
  background-color: var(--untitled-ui--primary);
  color: var(--untitled-ui--off-white);
  overflow: hidden;
}

.uui-cta02_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.uui-cta02_image-wrapper {
  height: 100%;
  min-height: 32rem;
  position: relative;
}

.color-white {
  color: var(--untitled-ui--off-white);
}

.image-2 {
  object-fit: cover;
  border-radius: 32px;
  width: 100%;
  height: 32rem;
}

.uui-footer04_top-wrapper {
  grid-column-gap: 4vw;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  justify-content: space-between;
  place-items: center end;
}

.uui-footer04_logo-link {
  width: 100%;
}

.uui-footer04_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: center;
  place-items: stretch end;
  display: grid;
}

.uui-footer04_social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.uui-padding-vertical-xlarge {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.div-block {
  justify-content: space-between;
  display: flex;
}

.logo-footer {
  height: 64px;
}

.uui-layout58_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.uui-icon-featured-outline-large {
  color: var(--untitled-ui--primary);
  background-color: #07663333;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.uui-space-small-2 {
  width: 100%;
  min-height: 1.5rem;
}

.uui-text-align-center-2 {
  text-align: center;
}

.uui-max-width-large-2 {
  width: 100%;
  max-width: 48rem;
}

.uui-heading-xxsmall {
  color: var(--untitled-ui--primary);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Helvetica Neue, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.uui-layout84_left, .uui-layout84_right {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
}

.uui-layout84_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.uui-layout84_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.uui-layout84_content-bottom {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 8rem;
  display: grid;
}

.uui-layout84_image-wrapper {
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
}

.uui-layout84_image {
  object-fit: cover;
  height: 100%;
  max-height: 40rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
  margin-left: 1rem;
}

.uui-layout84_image-blob {
  z-index: -1;
  color: var(--untitled-ui--primary);
  width: 34rem;
  height: auto;
  position: absolute;
  top: 12%;
}

.navbar-logo-center {
  z-index: 3;
  background-color: var(--untitled-ui--off-white);
  position: sticky;
  top: 0;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: var(--untitled-ui--primary);
  letter-spacing: .25px;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.logo {
  height: 64px;
}

.text-block {
  font-family: Helvetica Neue, Arial, sans-serif;
}

.bg-card {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 30%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.bg-card._3 {
  object-position: 50% 48%;
}

.bg-card._2 {
  object-position: 50% 45%;
}

@media screen and (max-width: 991px) {
  .uui-page-padding {
    margin-left: 56px;
    margin-right: 56px;
  }

  .uui-heading-xlarge {
    font-size: 3.25rem;
  }

  .uui-space-large {
    min-height: 2.5rem;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .uui-career11_department-wrapper {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .uui-career11_item.soon {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .uui-team04_list {
    grid-template-columns: 1fr 1fr;
  }

  .background-video {
    margin: 32px;
  }

  .uui-layout27_component {
    grid-column-gap: 3rem;
  }

  .uui-layout27_lightbox {
    height: 35rem;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .uui-heading-large-2 {
    font-size: 2.75rem;
  }

  .uui-cta02_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .uui-footer04_top-wrapper {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .uui-padding-vertical-xlarge {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .uui-layout58_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .uui-layout84_left, .uui-layout84_right {
    grid-template-columns: 1fr 1fr;
  }

  .uui-layout84_content-bottom {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 4rem;
  }

  .container {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: var(--untitled-ui--off-white);
    border-radius: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .menu-button-2 {
    background-image: url('../images/menu-04.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px 32px;
    align-self: center;
    width: 64px;
    height: 64px;
    padding: 0;
  }

  .menu-button-2.w--open {
    background-color: var(--untitled-ui--off-white);
    color: #fff;
    background-image: url('../images/x-close.svg');
  }
}

@media screen and (max-width: 767px) {
  .uui-page-padding {
    margin-left: 16px;
    margin-right: 16px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    border-color: var(--untitled-ui--primary600);
    background-color: var(--untitled-ui--primary600);
  }

  .uui-button.is-main:hover {
    background-color: var(--untitled-ui--primary);
    border-style: none;
  }

  .uui-heading-xlarge {
    text-align: center;
    font-size: 2.25rem;
  }

  .uui-button-row {
    align-self: stretch;
  }

  .uui-button-row.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-button-wrapper.max-width-full-mobile-landscape {
    width: 100%;
  }

  .uui-section_heroheader22 {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .uui-text-size-xlarge {
    text-align: center;
    font-size: 1.125rem;
  }

  .uui-button-secondary-gray {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray:hover {
    background-color: var(--untitled-ui--off-white);
    color: var(--untitled-ui--gray700);
  }

  .uui-space-large {
    min-height: 2rem;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .uui-text-size-large {
    font-size: 1rem;
  }

  .uui-heading-medium {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .uui-career11_department-wrapper {
    grid-row-gap: 1.25rem;
    border-top-style: none;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
    padding-top: 0;
  }

  .uui-career11_component {
    margin-top: 3rem;
  }

  .uui-career11_item {
    padding: 1.25rem;
  }

  .uui-career11_job-details-wrapper {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .uui-space-xsmall {
    min-height: .75rem;
  }

  .uui-career11_heading.soon {
    text-align: center;
  }

  .social-link:hover {
    color: var(--untitled-ui--gray400);
  }

  .uui-team04_list {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .uui-team04_image-wrapper {
    height: 100%;
  }

  .uui-team04_component {
    margin-top: 3rem;
  }

  .uui-space-medium {
    min-height: 1.5rem;
  }

  .background-video {
    height: 410px;
    margin: 16px;
  }

  .uui-page-padding-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .max-width-full-mobile-landscape-2 {
    width: 100%;
    max-width: none;
  }

  .uui-text-size-large-2 {
    font-size: 1rem;
  }

  .uui-heading-medium-2 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .uui-button-row-2 {
    align-self: stretch;
  }

  .uui-button-row-2.is-reverse-mobile-landscape, .uui-button-row-2.button-row-center.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-button-wrapper-2.max-width-full-mobile-landscape-2 {
    width: 100%;
  }

  .uui-layout27_item-list {
    margin-bottom: 2rem;
  }

  .uui-layout27_content-right {
    padding-top: 0;
  }

  .uui-layout27_component {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .uui-button-secondary-gray-2 {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray-2:hover {
    background-color: var(--untitled-ui--off-white);
    color: var(--untitled-ui--gray700);
  }

  .uui-layout27_lightbox {
    height: 24rem;
    margin-top: 3rem;
  }

  .uui-space-xsmall-2 {
    min-height: .75rem;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .uui-heading-large-2 {
    font-size: 2.25rem;
  }

  .uui-cta02_component {
    grid-row-gap: 3rem;
  }

  .uui-cta02_image-wrapper {
    justify-content: center;
    align-items: flex-start;
    height: 22rem;
    min-height: auto;
    display: flex;
  }

  .image-2 {
    height: 22rem;
  }

  .uui-footer04_link-list {
    grid-column-gap: 1rem;
    grid-row-gap: .5rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    justify-items: center;
  }

  .uui-padding-vertical-xlarge {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .uui-layout58_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .uui-space-small-2 {
    min-height: 1.25rem;
  }

  .uui-heading-xxsmall {
    font-size: 1.125rem;
  }

  .uui-layout84_left, .uui-layout84_right {
    grid-row-gap: 2.5rem;
  }

  .uui-layout84_component {
    align-items: stretch;
  }

  .uui-layout84_content-bottom {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .uui-layout84_image-wrapper {
    height: 22rem;
    overflow: hidden;
  }

  .uui-layout84_image {
    height: 23rem;
    margin-left: 1.5rem;
  }

  .uui-layout84_image-blob {
    width: 50%;
    min-width: 22rem;
    top: 0%;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .uui-button-row {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .uui-button-secondary-gray, .uui-career11_item._1, .uui-career11_item._4, .uui-career11_item._2, .uui-career11_item._3 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-career11_title-wrapper {
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .uui-team04_image {
    object-position: 50% 50%;
  }

  .uui-team04_image._1 {
    object-position: 50% 30%;
  }

  .uui-team04_image-wrapper {
    aspect-ratio: 1;
    padding-top: 66%;
  }

  .uui-layout27_lightbox {
    height: 17rem;
  }

  .uui-cta02_component {
    grid-template-columns: 1fr;
  }

  .uui-cta02_image-wrapper, .image-2 {
    height: 16rem;
  }

  .uui-footer04_top-wrapper {
    place-items: center start;
  }

  .uui-footer04_link-list {
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .uui-layout84_image-wrapper {
    justify-content: center;
    align-items: center;
  }

  .uui-layout84_image {
    height: 23rem;
    margin-left: 0;
  }

  .uui-layout84_image-blob {
    width: 70%;
    min-width: 17rem;
  }

  .container {
    max-width: none;
  }

  .navbar-wrapper-three {
    height: 48px;
    position: static;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  .nav-menu-block {
    flex-flow: row;
    margin-bottom: 12px;
  }

  .mobile-margin-top-10 {
    margin-top: 0;
  }

  .menu-button-2 {
    width: 48px;
    height: 48px;
  }

  .logo {
    height: 48px;
  }
}

#w-node-_8f9b695c-b627-422d-acb9-69423be6252e-5cb27674, #w-node-_8f9b695c-b627-422d-acb9-69423be62534-5cb27674, #w-node-_8f9b695c-b627-422d-acb9-69423be6253a-5cb27674, #w-node-_9562e494-0b82-d284-d5d5-afa46cae85b6-5cb27674, #w-node-_4a1a04af-41e0-ffae-e395-633ca434435b-5cb27674, #w-node-_060f26a8-9ae5-77b1-a094-9d7e00c6150a-5cb27674 {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-eadc274d-067d-bf34-2fe8-4cb45986f704-5cb27674 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-eadc274d-067d-bf34-2fe8-4cb45986f717-5cb27674 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-eadc274d-067d-bf34-2fe8-4cb45986f71a-5cb27674 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6083a0f6-2e62-9597-c13f-75122ab10165-5cb27674 {
    order: -9999;
  }

  #w-node-_59b0b89b-9f42-c18b-5ba5-ad4214ff4b5e-5cb27674 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_59b0b89b-9f42-c18b-5ba5-ad4214ff4b5e-5cb27674 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueUltraLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueThin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueMediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueHeavy.otf') format('opentype'), url('../fonts/HelveticaNeueBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueHeavyItalic.otf') format('opentype'), url('../fonts/HelveticaNeueBlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueRoman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueUltraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueBoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}