:root {
  --font-family: "TASA Orbiter", sans-serif;
  --dark-blue: #03214f;
  --fs-h5: 18px;
  --fs-text: 20px;
  --fs-text-md: 16px;
  --fs-h1-md: 48px;
  --fs-h1: 70px;
  --fs-h1-sm: 40px;
  --fs-h2-md: 30px;
  --fs-h2: 40px;
  --fs-h4: 20px;
  --fs-h3: 24px;
  --blue: #04357e;
  --white: #fff;
  --light-blue: #4472ca;
  --lighter-blue: #ebf3fe;
  --red: #b1005b;
  --transparent: #fff0;
  --black: #000;
  --fs-text-sm: 14px;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  font-family: var(--font-family);
  color: var(--dark-blue);
  font-size: var(--fs-h5);
  min-width: 360px;
  line-height: 1.5;
}

h1 {
  font-size: var(--fs-h1-md);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  font-size: var(--fs-h2-md);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.1;
}

h3, h4 {
  font-size: var(--fs-h4);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.25;
}

h5 {
  font-size: var(--fs-h5);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.25;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--blue);
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: box-shadow .3s ease-in-out, color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out, opacity .3s ease-in-out;
}

a:hover {
  color: var(--dark-blue);
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.skip-link {
  clip: rect(0, 0, 0, 0);
  border-radius: 0;
  width: 1px;
  height: 1px;
  margin-top: -1px;
  display: block;
  position: absolute;
  overflow: hidden;
}

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin-top: 0;
  position: static;
  overflow: visible;
}

.header {
  z-index: 99;
  background-color: var(--white);
  padding-top: 17px;
  padding-bottom: 16px;
  position: sticky;
  top: 0;
}

.footer {
  background-color: var(--light-blue);
  color: var(--white);
  padding-top: 39px;
  padding-bottom: 40px;
}

.page-holder {
  flex: 1;
}

.page-holder.alt {
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
}

.wrapper {
  flex-flow: column;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: clip;
}

.container {
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
}

.container.lg {
  max-width: 1400px;
}

.header-holder {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.btn {
  background-color: var(--blue);
  color: var(--white);
  font-size: var(--fs-text);
  cursor: pointer;
  border-radius: 10px;
  padding: 15px 32px 15px 30px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color .3s ease-in-out, opacity .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out, box-shadow .3s ease-in-out;
  display: inline-flex;
}

.btn:hover {
  background-color: var(--dark-blue);
  color: var(--white);
}

.hero {
  background-color: var(--lighter-blue);
  background-image: url('../images/bg-lines.svg');
  background-position: 50%;
  background-size: cover;
  padding-top: 119px;
  padding-bottom: 132px;
  position: relative;
}

.hero_content {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero_text {
  font-size: var(--fs-h4);
  line-height: 1.4;
}

.hero_subtitle {
  font-size: var(--fs-h4);
  margin-bottom: 5px;
  font-weight: 500;
}

.hero_title {
  color: var(--blue);
  margin-bottom: 67px;
}

.hero_list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--white);
  border-radius: 12px;
  flex-flow: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 885px;
  margin-top: -28px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 54px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 6px -2px #10182808, 0 12px 16px -4px #10182814;
}

.hero_list_item {
  grid-column-gap: 8.5px;
  grid-row-gap: 8.5px;
  justify-content: flex-start;
  align-items: center;
  max-width: 190px;
  display: flex;
}

.hero_list_icon {
  width: 18px;
  height: 18px;
  line-height: 1;
}

.hero_list_text {
  font-size: var(--fs-h5);
}

.hero_list_icon_wrap {
  background-color: var(--red);
  color: var(--white);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.benefit {
  padding-top: 105px;
  padding-bottom: 105px;
}

.benefit_intro {
  text-align: center;
  max-width: 750px;
  margin-bottom: 57px;
  margin-left: auto;
  margin-right: auto;
}

.benefit_title {
  color: var(--blue);
  margin-bottom: 40px;
}

.ac {
  background-color: var(--light-blue);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.ac-header {
  color: var(--white);
  font-size: var(--fs-h3);
  margin-bottom: 0;
}

.ac-header.benefit-header {
  transition: all .3s ease-in-out;
  position: absolute;
  inset: 0;
}

.ac-trigger {
  background-color: var(--transparent);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 24px;
  display: flex;
}

.ac-trigger.benefit-trigger {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.benefit_ac {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.benefit_icon {
  width: 105px;
  height: auto;
  display: block;
}

.ac-panel {
  color: var(--white);
  overflow: hidden;
}

.ac-panel.benefit-panel {
  opacity: 0;
  visibility: hidden;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.ac-inner {
  padding: 12px 24px 48px;
}

.ac-inner.benefit-inner {
  background-color: var(--lighter-blue);
  color: var(--dark-blue);
  font-size: var(--fs-text);
  min-height: 256px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.benefit_ac_title {
  margin-bottom: 15px;
  line-height: 1.3;
  display: block;
}

.mb-0 {
  margin-bottom: 0;
}

.benefit_bottom_text {
  text-align: center;
  max-width: 852px;
  margin: 63px auto 0;
}

.benefit_item_text {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.3;
}

.gallery_slide {
  width: auto;
}

.hidden {
  display: none;
}

.gallery_card_img {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 10px;
  display: block;
}

.gallery_card_text {
  opacity: 0;
  color: var(--black);
  font-size: var(--fs-text-sm);
  text-align: center;
  line-height: 1.35;
  transition: opacity .3s ease-in-out;
  display: block;
}

.swiper.gallery-swiper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.swiper-wrapper.items-center {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: grid;
}

.swiper-slide {
  flex: none;
}

.swiper-btn {
  z-index: 2;
  background-color: var(--red);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .3s ease-in-out;
  display: flex;
  position: absolute;
  top: 47%;
  transform: translate(0, -50%);
}

.swiper-btn:hover {
  background-color: var(--blue);
}

.swiper-btn.swiper-next {
  right: 0;
}

.swiper-btn.swiper-prev {
  left: 0;
}

.gallery-slider-wrap {
  position: relative;
}

.current-color {
  fill: currentColor;
}

.gallery-arrow {
  width: 18px;
}

.career {
  padding-top: 120px;
  padding-bottom: 125px;
}

.career_header {
  text-align: center;
  max-width: 750px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.career_title {
  color: var(--blue);
}

.career_subtitle {
  margin-bottom: 0;
}

.career_holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.career_box {
  background-color: var(--lighter-blue);
  border-radius: 10px;
  padding: 48px 76px 42px 54px;
}

.career_box_title {
  color: var(--blue);
  margin-bottom: 36px;
  line-height: 1.41;
}

.career_list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.career_list_item {
  margin-bottom: 15px;
  padding-left: 43px;
  position: relative;
}

.cta_content {
  text-align: center;
  max-width: 846px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block {
  padding-bottom: 122px;
}

.cta_title {
  color: var(--blue);
  font-size: var(--fs-h3);
  margin-bottom: 16px;
  font-weight: 700;
}

.cta_text {
  margin-bottom: 52px;
}

.apply {
  background-color: var(--lighter-blue);
  padding-top: 107px;
  padding-bottom: 107px;
}

.apply_holder {
  grid-column-gap: 84px;
  grid-row-gap: 84px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.apply_left {
  padding-right: 15px;
}

.apply_card {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.apply_card_img {
  width: 40%;
}

.apply_card_image {
  aspect-ratio: 1;
  border-radius: 50%;
}

.apply_card_content {
  width: 60%;
  padding-left: 35px;
}

.apply_card_list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.apply_card_item {
  color: var(--blue);
}

.apply_title {
  color: var(--blue);
  margin-bottom: 42px;
}

.apply_text {
  color: #02214f;
  margin-bottom: 70px;
}

.apply_list {
  margin-top: 8px;
}

.apply_list_item {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  padding-bottom: 41px;
  display: flex;
  position: relative;
}

.apply_list_count {
  background-color: var(--white);
  color: var(--blue);
  font-size: var(--fs-h3);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.apply_list_content {
  flex: 1;
  margin-top: 15px;
}

.apply_list_title {
  color: var(--blue);
  font-size: var(--fs-h3);
  margin-bottom: 7px;
  line-height: 1.25;
  display: block;
}

.footer_holder {
  grid-row-gap: 20px;
  flex-flow: wrap;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.footer_col {
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}

.footer_col.two {
  margin-top: 5px;
}

.footer_col.three {
  width: 23%;
  margin-top: 5px;
}

.footer_col.four {
  width: 27%;
  margin-top: 5px;
}

.footer_logo_img {
  filter: brightness(0%) invert();
}

.footer_list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.footer_list_item {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  display: flex;
}

.footer_list_icon {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

.footer_link {
  color: var(--white);
  text-decoration: none;
}

.footer_link:hover {
  opacity: .7;
  color: var(--lighter-blue);
}

.ac-header-text {
  -webkit-hyphens: auto;
  hyphens: auto;
}

.body {
  min-width: 360px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 20px;
  display: flex;
}

.utility-page-image {
  max-width: 200px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.form-input {
  border-radius: 10px;
  height: 50px;
  padding-left: 15px;
  padding-right: 15px;
}

.text-primary {
  color: var(--blue);
}

.hero_list_svg {
  width: 18px;
  height: 18px;
}

.underline-none {
  text-decoration: none;
}

.underline-none:hover {
  color: var(--light-blue);
}

.underline-none.alt {
  color: var(--white);
}

.underline-none.alt:hover {
  opacity: .7;
  color: var(--lighter-blue);
}

.max-w-50 {
  max-width: 50%;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: var(--fs-text);
  }

  h1 {
    font-size: var(--fs-h1);
  }

  h2 {
    font-size: var(--fs-h2);
  }

  h3 {
    font-size: var(--fs-h3);
  }

  .hero_content {
    max-width: 885px;
  }

  .hero_text, .hero_subtitle {
    font-size: var(--fs-h3);
  }

  .benefit_intro {
    max-width: 846px;
  }

  .swiper.gallery-swiper {
    max-width: 970px;
  }

  .swiper-slide {
    width: auto !important;
  }

  .swiper-btn {
    width: 60px;
    height: 60px;
  }

  .gallery-arrow {
    width: 26px;
  }

  .career_header {
    max-width: 846px;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: var(--fs-text-md);
  }

  h1 {
    font-size: var(--fs-h1-sm);
  }

  .btn {
    font-size: var(--fs-text-md);
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .hero_title {
    margin-bottom: 30px;
  }

  .hero_list {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero_list_text {
    font-size: 16px;
  }

  .benefit {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .benefit_title {
    margin-bottom: 20px;
  }

  .benefit_ac {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .benefit_bottom_text {
    margin-top: 40px;
  }

  .career {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .career_box {
    padding: 30px;
  }

  .career_box_title {
    margin-bottom: 30px;
  }

  .career_list_item {
    padding-left: 35px;
  }

  .cta_content {
    max-width: 600px;
  }

  .cta-block {
    padding-bottom: 80px;
  }

  .apply {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .apply_holder {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .apply_card_content {
    padding-left: 20px;
  }

  .apply_title {
    margin-bottom: 30px;
  }

  .apply_text {
    margin-bottom: 50px;
  }

  .apply_list_item {
    padding-bottom: 30px;
  }

  .apply_list_count {
    font-size: var(--fs-h5);
    width: 50px;
    height: 50px;
  }

  .apply_list_content {
    margin-top: 10px;
  }

  .apply_list_title {
    font-size: var(--fs-text);
  }

  .apply_list_text.mb-0 {
    font-size: var(--fs-text-md);
  }

  .footer_col.one {
    width: 100%;
  }

  .footer_col.two, .footer_col.three, .footer_col.four {
    width: 33.33%;
    margin-top: 0;
  }

  .footer_logo_img {
    max-width: 180px;
  }

  .footer_list_icon {
    width: 18px;
  }

  .header_logo_img {
    max-width: 180px;
  }

  .text-block {
    font-size: var(--fs-h5);
  }
}

@media screen and (max-width: 767px) {
  .btn {
    padding: 14px 25px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .hero_text {
    font-size: var(--fs-h5);
  }

  .hero_list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .benefit {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .benefit_intro {
    margin-bottom: 40px;
  }

  .benefit_title {
    margin-bottom: 10px;
  }

  .ac-header.benefit-header {
    position: static;
  }

  .ac-trigger.benefit-trigger {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    padding-right: 70px;
    position: relative;
  }

  .benefit_ac {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }

  .benefit_icon {
    text-align: left;
    flex: none;
    width: 100px;
    padding-right: 10px;
  }

  .ac-panel.benefit-panel {
    opacity: 1;
    visibility: visible;
  }

  .ac-inner {
    padding-right: 111px;
  }

  .ac-inner.benefit-inner {
    background-color: var(--light-blue);
    color: var(--white);
    min-height: 1px;
    padding-top: 15px;
    padding-bottom: 50px;
  }

  .benefit_ac_title {
    display: none;
  }

  .benefit_ac_img {
    height: 63px;
  }

  .gallery_card_text {
    opacity: 1;
  }

  .swiper.gallery-swiper {
    max-width: 75%;
  }

  .career {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .career_header {
    margin-bottom: 40px;
  }

  .career_holder {
    grid-template-columns: 1fr;
  }

  .cta_text {
    margin-bottom: 40px;
  }

  .apply {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .apply_holder {
    grid-template-columns: 1fr;
  }

  .apply_title {
    margin-bottom: 20px;
  }

  .apply_text {
    margin-bottom: 40px;
  }

  .footer_col.two, .footer_col.three, .footer_col.four {
    width: 100%;
  }

  .header_logo_img {
    max-width: 150px;
  }

  .ac-header-text {
    text-align: left;
    flex: 1;
  }
}

@media screen and (max-width: 479px) {
  .btn {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero_list {
    grid-template-columns: 1fr;
  }

  .ac-trigger.benefit-trigger {
    font-size: var(--fs-h5);
    padding-right: 50px;
  }

  .benefit_icon {
    width: 70px;
  }

  .ac-inner.benefit-inner {
    padding-right: 50px;
  }

  .benefit_ac_img {
    height: 50px;
  }

  .benefit_item_text {
    font-size: var(--fs-h5);
  }

  .apply_left {
    text-align: center;
  }

  .apply_card {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .apply_card_img {
    width: 200px;
  }

  .apply_card_content {
    width: 100%;
    padding-left: 0;
  }

  .apply_text {
    margin-bottom: 30px;
  }

  .header_logo_img {
    max-width: 140px;
  }
}


