html {
  box-sizing: border-box
}

*,
::before,
::after {
  box-sizing: inherit
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: 'Noto Serif', Georgia, serif
}

.page_header {
  background: linear-gradient(160deg, #1B5862 0%, #0f3840 60%, #BC164C 140%);
  position: relative;
  overflow: hidden
}

.page_header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #1b5862d9 0%, #b3d0c914 100%);
  pointer-events: none
}

.header_top {
  max-width: 1170px;
  margin: 0 auto;
  padding: 20px 40px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1
}

.brand_block {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.brand_mark {
  display: flex;
  align-items: center;
  gap: 16px
}

.logo_ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 56px;
  border-radius: 4px;
  background: #fffffff7;
  box-shadow: 1px 1px 5px 1px #bc164c12 1px 7px 20px 1px #bc164c17 0 0 0 2px #b3d0c980 0 0 0 4px #1b586240;
  flex-shrink: 0
}

.logo_ring img {
  width: 36px;
  height: 48px;
  object-fit: contain;
  display: block
}

.brand_name {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: .04em;
  text-transform: lowercase
}

.brand_tagline {
  font-size: 15px;
  line-height: 1.75;
  color: #b3d0c9d9;
  font-style: italic;
  padding-left: 4px
}

.header_contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 4px
}

.contact_label {
  font-size: 15px;
  color: #b3d0c9b3;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400
}

.contact_phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.contact_phone:hover {
  color: #B3D0C9
}

.contact_phone .jam {
  font-size: 17px;
  color: #BC164C
}

.header_divider {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1
}

.header_divider_line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #b3d0c94d 20%, #b3d0c94d 80%, transparent)
}

.header_nav_row {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1
}

.primary_nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0
}

.primary_nav li {
  display: flex;
  align-items: stretch
}

.primary_nav li+li {
  border-left: 1px solid #b3d0c933
}

.primary_nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffffd1;
  text-decoration: none;
  letter-spacing: .05em;
  position: relative;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.primary_nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #BC164C;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.primary_nav a:hover {
  color: #fff
}

.primary_nav a:hover::after {
  transform: scaleX(1)
}

.primary_nav a:focus-visible {
  outline: 2px solid #B3D0C9;
  outline-offset: -2px
}

.primary_nav .jam {
  font-size: 15px;
  opacity: .7
}

.page_footer {
  background: #0f3840;
  position: relative;
  overflow: hidden
}

.page_footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #BC164C, #1B5862, #B3D0C9)
}

.footer_upper {
  max-width: 1170px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px
}

.footer_brand_col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

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

.footer_logo_ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 56px;
  border-radius: 4px;
  background: #fffffff2;
  box-shadow: 1px 1px 5px 1px #bc164c12 1px 7px 20px 1px #1b586224 0 0 0 2px #b3d0c94d
}

.footer_logo_ring img {
  width: 36px;
  height: 48px;
  object-fit: contain;
  display: block
}

.footer_about {
  font-size: 15px;
  line-height: 1.75;
  color: #b3d0c9b3;
  font-style: italic
}

.footer_col_heading {
  font-size: 15px;
  font-weight: 700;
  color: #B3D0C9;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.1
}

.footer_link_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer_link_list a {
  font-size: 15px;
  line-height: 1.75;
  color: #ffffffa6;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.footer_link_list a:hover {
  color: #B3D0C9
}

.footer_link_list a:focus-visible {
  outline: 2px solid #BC164C;
  outline-offset: 2px;
  border-radius: 4px
}

.footer_contact_col {
  display: flex;
  flex-direction: column
}

.footer_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px
}

.footer_contact_item .jam {
  font-size: 17px;
  color: #BC164C;
  margin-top: 4px;
  flex-shrink: 0
}

.footer_contact_text {
  font-size: 15px;
  line-height: 1.75;
  color: #ffffffa6
}

.footer_contact_text a {
  color: #ffffffa6;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.footer_contact_text a:hover {
  color: #B3D0C9
}

.footer_contact_text a:focus-visible {
  outline: 2px solid #BC164C;
  outline-offset: 2px;
  border-radius: 4px
}

.footer_lower_divider {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px
}

.footer_lower_divider_line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #b3d0c926 20%, #b3d0c926 80%, transparent)
}

.footer_bottom {
  max-width: 1170px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.footer_copyright {
  font-size: 15px;
  line-height: 1.75;
  color: #b3d0c980
}

.footer_bottom_links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0
}

.footer_bottom_links a {
  font-size: 15px;
  color: #b3d0c980;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.footer_bottom_links a:hover {
  color: #B3D0C9
}

.footer_bottom_links a:focus-visible {
  outline: 2px solid #BC164C;
  outline-offset: 2px;
  border-radius: 4px
}

@media (max-width: 960px) {
  .header_top {
    padding: 16px 20px;
    gap: 20px;
    flex-wrap: wrap
  }

  .header_divider {
    padding: 0 20px
  }

  .header_nav_row {
    padding: 0 20px
  }

  .primary_nav {
    flex-wrap: wrap
  }

  .footer_upper {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px;
    gap: 40px
  }

  .footer_lower_divider {
    padding: 0 20px
  }

  .footer_bottom {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }
}

@media (max-width: 480px) {
  .header_top {
    padding: 16px;
    flex-direction: column;
    gap: 16px
  }

  .header_contact {
    align-items: flex-start
  }

  .header_divider {
    padding: 0 16px
  }

  .header_nav_row {
    padding: 0 16px
  }

  .primary_nav a {
    padding: 16px
  }

  .footer_upper {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 40px
  }

  .footer_lower_divider {
    padding: 0 16px
  }

  .footer_bottom {
    padding: 20px 16px
  }

  .footer_bottom_links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }
}

@media (min-width: 961px) {
  .primary_nav a {
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .footer_link_list a {
    transition: color .5s cubic-bezier(0.16, 1, 0.3, 1)
  }
}

.cookie_settings_trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 44px;
  background: #1B5862;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 7px 20px 1px #1b586217;
  z-index: 1500;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.cookie_settings_trigger:hover {
  background: #BC164C
}

.cookie_settings_trigger:focus-visible {
  outline: 2px solid #B3D0C9;
  outline-offset: 2px
}

.cookie_settings_trigger .jam {
  font-size: 20px;
  color: #fff
}

.ck_bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #fff;
  box-shadow: 1px 7px 20px 1px #1b586217;
  border-bottom: 2px solid #B3D0C9
}

.ck_bar_inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap
}

.ck_text {
  flex: 1;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  line-height: 1.75;
  color: #1B5862
}

.ck_text a {
  color: #BC164C;
  text-decoration: underline
}

.ck_text a:focus-visible {
  outline: 2px solid #BC164C;
  outline-offset: 2px
}

.ck_headline {
  font-size: 17px;
  font-weight: 700;
  color: #0f3840;
  margin-bottom: 4px;
  font-family: 'Noto Serif', Georgia, serif
}

.ck_actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0
}

.ck_btn {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid #1B5862;
  background: transparent;
  color: #1B5862;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ck_btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #1B5862;
  transition: height .45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0
}

.ck_btn:hover::before {
  height: 100%
}

.ck_btn:hover {
  color: #fff
}

.ck_btn span {
  position: relative;
  z-index: 1
}

.ck_btn.accept {
  border-color: #BC164C;
  color: #BC164C
}

.ck_btn.accept::before {
  background: #BC164C
}

.ck_btn.accept:hover {
  color: #fff
}

.ck_btn:focus-visible {
  outline: 2px solid #0f3840;
  outline-offset: 2px
}

.legal-content-ypqi {
  max-width: 1170px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2c3e50
}

.legal-content-ypqi h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #1B5862;
  margin-bottom: 40px;
  margin-top: 0;
  letter-spacing: -.5px
}

.legal-content-ypqi h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #1B5862;
  margin-top: 80px;
  margin-bottom: 20px
}

.legal-content-ypqi h3 {
  font-size: 26px;
  line-height: 1.1;
  color: #BC164C;
  margin-top: 40px;
  margin-bottom: 16px
}

.legal-content-ypqi h4 {
  font-size: 20px;
  line-height: 1.75;
  color: #1B5862;
  margin-top: 40px;
  margin-bottom: 8px
}

.legal-content-ypqi h5 {
  font-size: 17px;
  line-height: 1.75;
  color: #1B5862;
  margin-top: 20px;
  margin-bottom: 8px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.legal-content-ypqi h6 {
  font-size: 15px;
  line-height: 1.75;
  color: #BC164C;
  margin-top: 20px;
  margin-bottom: 8px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.legal-content-ypqi p {
  font-size: 17px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 20px;
  color: #2c3e50
}

.legal-content-ypqi a {
  color: #BC164C;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.legal-content-ypqi a:hover {
  color: #1B5862;
  text-decoration-color: #B3D0C9
}

.legal-content-ypqi hr {
  border: none;
  border-top: 1px solid #B3D0C9;
  margin: 40px 0
}

.legal-content-ypqi table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
  box-shadow: 1px 7px 20px 1px #1b586217;
  border-radius: 4px;
  overflow: hidden
}

.legal-content-ypqi thead {
  background-color: #1B5862;
  color: #fff
}

.legal-content-ypqi thead th {
  padding: 16px 20px;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  color: #fff
}

.legal-content-ypqi tbody tr {
  border-bottom: 1px solid #B3D0C9;
  transition: background-color .45s ease-in-out
}

.legal-content-ypqi tbody tr:last-child {
  border-bottom: none
}

.legal-content-ypqi tbody tr:hover {
  background-color: #f0f7f6
}

.legal-content-ypqi td {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #2c3e50;
  vertical-align: top
}

.legal-content-ypqi div {
  font-size: 17px;
  line-height: 1.75
}

@media (max-width: 960px) {
  .legal-content-ypqi {
    padding: 40px 20px
  }

  .legal-content-ypqi h1 {
    font-size: 36px
  }

  .legal-content-ypqi h2 {
    font-size: 26px;
    margin-top: 40px
  }

  .legal-content-ypqi h3 {
    font-size: 20px
  }

  .legal-content-ypqi table {
    display: block;
    overflow-x: auto
  }
}

@media (max-width: 480px) {
  .legal-content-ypqi {
    padding: 40px 16px
  }

  .legal-content-ypqi h1 {
    font-size: 26px
  }

  .legal-content-ypqi h2 {
    font-size: 20px
  }

  .legal-content-ypqi h3 {
    font-size: 17px
  }

  .legal-content-ypqi p,
  .legal-content-ypqi div {
    font-size: 15px
  }
}

.contact-us {
  background: #fff;
  overflow-x: clip
}

.contact-us .flip-reveal {
  animation: flipIn .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: rotateX(18deg) translateY(20px)
  }

  to {
    opacity: 1;
    transform: rotateX(0deg) translateY(0)
  }
}

.contact-us .strip {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px
}

.contact-us .strip_image_col {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden
}

.contact-us .strip_image_col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7);
  transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), filter .45s ease-in-out
}

.contact-us .strip_image_col:hover img {
  transform: scale(1.05);
  filter: saturate(1)
}

.contact-us .strip_image_col .blur_layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: linear-gradient(to top, #1b58622e, transparent);
  pointer-events: none
}

.contact-us .strip_dots {
  position: absolute;
  top: 16px;
  right: -8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
  pointer-events: none
}

.contact-us .strip_dots span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 44px;
  background: #BC164C;
  opacity: .5
}

.contact-us .strip_dots span:nth-child(2) {
  opacity: .3
}

.contact-us .strip_dots span:nth-child(3) {
  opacity: .15
}

.contact-us .strip_text_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px
}

.contact-us .strip_label {
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #BC164C;
  font-weight: 600
}

.contact-us .strip_heading {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0
}

.contact-us .strip_heading .word_one {
  color: #1B5862
}

.contact-us .strip_heading .word_two {
  color: #BC164C
}

.contact-us .strip_sub {
  font-size: 17px;
  line-height: 1.75;
  color: #2d4a4f;
  max-width: 480px;
  margin: 0
}

.contact-us .strip_frame_line {
  height: 2px;
  background: linear-gradient(90deg, #BC164C, #B3D0C9);
  border-radius: 4px;
  max-width: 1170px;
  margin: 0 auto
}

.contact-us .form_area {
  background: linear-gradient(160deg, #f4f8f7 0%, #e8f2f0 60%, #f9edf2 100%);
  padding: 80px 20px
}

.contact-us .form_inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.contact-us .form_detail_col {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-us .detail_card {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 1px 7px 20px 1px #1b586217;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-us .detail_card_status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.contact-us .detail_card_status .status_dot {
  width: 8px;
  height: 8px;
  border-radius: 44px;
  background: #1B5862;
  box-shadow: 0 0 0 3px #1b586226
}

.contact-us .detail_card_status .status_label {
  font-size: 15px;
  color: #1B5862;
  font-weight: 600;
  letter-spacing: .06em
}

.contact-us .detail_row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid #B3D0C9;
  padding-bottom: 16px
}

.contact-us .detail_row:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.contact-us .detail_row_label {
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #BC164C;
  font-weight: 600
}

.contact-us .detail_row_value {
  font-size: 17px;
  line-height: 1.75;
  color: #1B5862;
  font-weight: 500
}

.contact-us .detail_row_value a {
  color: #1B5862;
  text-decoration: none;
  transition: color .45s ease-in-out
}

.contact-us .detail_row_value a:hover {
  color: #BC164C
}

.contact-us .form_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-us .form_col_heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 4px
}

.contact-us .form_col_heading .word_one {
  color: #1B5862
}

.contact-us .form_col_heading .word_two {
  color: #BC164C
}

.contact-us .form_col_desc {
  font-size: 17px;
  line-height: 1.75;
  color: #2d4a4f;
  margin: 0
}

.contact-us .field_group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative
}

.contact-us .field_group input,
.contact-us .field_group select,
.contact-us .field_group textarea {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  border: 1.5px solid #B3D0C9;
  border-radius: 4px;
  background: #fff;
  color: #1B5862;
  outline: none;
  box-sizing: border-box;
  transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
  appearance: none;
  -webkit-appearance: none
}

.contact-us .field_group input:focus,
.contact-us .field_group select:focus,
.contact-us .field_group textarea:focus {
  border-color: #1B5862;
  box-shadow: 1px 1px 5px 1px #1b586212
}

.contact-us .field_group input::placeholder,
.contact-us .field_group textarea::placeholder {
  color: transparent
}

.contact-us .floating_label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 17px;
  color: #6a8f96;
  pointer-events: none;
  transition: top .4s cubic-bezier(0.16, 1, 0.3, 1), font-size .4s cubic-bezier(0.16, 1, 0.3, 1), color .4s ease-in-out;
  background: #fff;
  padding: 0 4px
}

.contact-us .field_group input:focus~.floating_label,
.contact-us .field_group input:not(:placeholder-shown)~.floating_label,
.contact-us .field_group textarea:focus~.floating_label,
.contact-us .field_group textarea:not(:placeholder-shown)~.floating_label {
  top: -10px;
  font-size: 15px;
  color: #1B5862
}

.contact-us .select_wrapper {
  position: relative
}

.contact-us .select_wrapper select {
  cursor: pointer
}

.contact-us .select_arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 16px;
  height: 16px
}

.contact-us .select_label {
  font-size: 15px;
  letter-spacing: .06em;
  color: #1B5862;
  font-weight: 600;
  margin-bottom: 4px;
  display: block
}

.contact-us .method_options {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.contact-us .method_option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.contact-us .method_option label {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 44px;
  border: 1.5px solid #B3D0C9;
  font-size: 15px;
  color: #1B5862;
  cursor: pointer;
  transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s ease-in-out;
  background: #fff;
  font-weight: 500
}

.contact-us .method_option input[type="radio"]:checked+label {
  background: #1B5862;
  border-color: #1B5862;
  color: #fff
}

.contact-us .method_option label:hover {
  border-color: #1B5862
}

.contact-us .conditional_field {
  display: none;
  flex-direction: column;
  gap: 4px
}

.contact-us .method_option input[type="radio"]#method_phone:checked~.form_conditional .phone_field,
.contact-us .method_option input[type="radio"]#method_email:checked~.form_conditional .email_field {
  display: flex
}

.contact-us .form_method_block {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-us .form_conditional {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-us .privacy_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.contact-us .privacy_row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: #1B5862;
  margin-top: 2px;
  cursor: pointer
}

.contact-us .privacy_row .privacy_text {
  font-size: 15px;
  line-height: 1.75;
  color: #2d4a4f
}

.contact-us .privacy_row .privacy_text a {
  color: #BC164C;
  text-decoration: underline;
  transition: color .45s ease-in-out
}

.contact-us .privacy_row .privacy_text a:hover {
  color: #1B5862
}

.contact-us .submit_btn {
  position: relative;
  overflow: hidden;
  background: #BC164C;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 1px 7px 20px 1px #bc164c17;
  align-self: flex-start
}

.contact-us .submit_btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #1B5862;
  transition: bottom .45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0
}

.contact-us .submit_btn:hover::before {
  bottom: 0
}

.contact-us .submit_btn:hover {
  box-shadow: 1px 12px 40px 1px #bc164c24
}

.contact-us .submit_btn span {
  position: relative;
  z-index: 1
}

.contact-us .submit_btn:focus-visible {
  outline: 2px solid #BC164C;
  outline-offset: 3px
}

.contact-us .form_row_two {
  display: flex;
  flex-direction: row;
  gap: 16px
}

.contact-us .form_row_two .field_group {
  flex: 1
}

.contact-us .frame_line_top {
  height: 1px;
  background: linear-gradient(90deg, transparent, #B3D0C9, transparent);
  max-width: 1170px;
  margin: 0 auto
}

@media (max-width: 960px) {
  .contact-us .strip {
    flex-direction: column;
    gap: 20px
  }

  .contact-us .strip_image_col {
    width: 100%;
    height: 200px
  }

  .contact-us .strip_heading {
    font-size: 50px
  }

  .contact-us .form_inner {
    flex-direction: column;
    gap: 40px
  }

  .contact-us .form_detail_col {
    width: 100%
  }

  .contact-us .form_row_two {
    flex-direction: column
  }
}

@media (max-width: 480px) {
  .contact-us .strip_heading {
    font-size: 36px
  }

  .contact-us .form_area {
    padding: 40px 16px
  }

  .contact-us .strip {
    padding: 20px 16px
  }

  .contact-us .method_options {
    flex-direction: column
  }

  .contact-us .submit_btn {
    width: 100%;
    text-align: center
  }
}

@media (min-width: 1440px) {
  .contact-us .strip_heading {
    font-size: 68px
  }
}

.launch {
  max-width: 100%;
  overflow-x: hidden
}

.launch .bounded {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px
}

.launch .split_head {
  display: inline
}

.launch .split_head .word_one {
  color: #BC164C
}

.launch .split_head .word_rest {
  color: #1B5862
}

.launch .num_accent {
  font-size: 68px;
  line-height: 1.1;
  color: #BC164C;
  opacity: .13;
  position: absolute;
  top: -8px;
  left: -4px;
  font-weight: 700;
  pointer-events: none;
  z-index: 0
}

.launch .list_item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px
}

.launch .list_item .num_accent {
  font-size: 50px
}

@media (min-width: 960px) {
  .launch .list_item {
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .launch .list_item:hover {
    transform: translateX(4px)
  }
}

.launch .dashed_rule {
  border: none;
  border-top: 2px dashed #B3D0C9;
  margin: 0
}

.launch .quoted_phrase {
  position: relative;
  display: inline
}

.launch .quoted_phrase::before {
  content: "\201C";
  color: #BC164C;
  font-size: 26px;
  line-height: 1.1
}

.launch .quoted_phrase::after {
  content: "\201D";
  color: #BC164C;
  font-size: 26px;
  line-height: 1.1
}

.launch .arrow_link {
  color: #1B5862;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.launch .arrow_link::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(0 38%, 70% 38%, 70% 18%, 100% 50%, 70% 82%, 70% 62%, 0 62%);
  flex-shrink: 0
}

@media (min-width: 960px) {
  .launch .arrow_link {
    transition: gap .4s cubic-bezier(0.16, 1, 0.3, 1), color .4s ease-in-out
  }

  .launch .arrow_link:hover {
    gap: 16px;
    color: #BC164C
  }
}

.launch .btn_primary {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 16px 40px;
  background: #BC164C;
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 1px 7px 20px 1px #bc164c17;
  z-index: 1
}

.launch .btn_primary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #1B5862;
  z-index: -1
}

@media (min-width: 960px) {
  .launch .btn_primary::before {
    transition: bottom .45s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .launch .btn_primary:hover::before {
    bottom: 0
  }

  .launch .btn_primary:focus {
    outline: 3px solid #B3D0C9;
    outline-offset: 2px
  }
}

.launch .btn_ghost {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #1B5862;
  font-size: 17px;
  line-height: 1.1;
  border: 2px solid #1B5862;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .02em;
  z-index: 1
}

.launch .btn_ghost::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #B3D0C9;
  z-index: -1
}

@media (min-width: 960px) {
  .launch .btn_ghost::before {
    transition: bottom .5s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .launch .btn_ghost:hover::before {
    bottom: 0
  }
}

@keyframes cascade_in {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fade_up {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.launch .reveal {
  opacity: 0;
  animation: fade_up .55s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.launch .reveal.d1 {
  animation-delay: .1s
}

.launch .reveal.d2 {
  animation-delay: .25s
}

.launch .reveal.d3 {
  animation-delay: .4s
}

.launch .reveal.d4 {
  animation-delay: .55s
}

.launch .reveal.d5 {
  animation-delay: .7s
}

.launch .title_area {
  padding: 80px 20px 40px;
  text-align: center;
  position: relative
}

.launch .title_area .curve_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0
}

.launch .title_area .curve_bg svg {
  width: 100%;
  height: 100%
}

.launch .title_area .image_wrap {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 40px
}

.launch .title_area .image_wrap img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  opacity: .55;
  display: block;
  box-shadow: 1px 12px 40px 1px #1b586224
}

@media (min-width: 960px) {
  .launch .title_area .image_wrap img {
    transition: opacity .45s ease-in-out
  }

  .launch .title_area .image_wrap:hover img {
    opacity: .85
  }
}

.launch .title_area .num_big {
  font-size: 68px;
  line-height: 1.1;
  color: #BC164C;
  font-weight: 700;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 8px
}

.launch .title_area .heading_main {
  font-size: 50px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  margin-bottom: 20px
}

.launch .title_area .sub_text {
  font-size: 20px;
  line-height: 1.75;
  color: #2d4a50;
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1
}

@media (max-width: 480px) {
  .launch .title_area .image_wrap img {
    width: 260px;
    height: 160px
  }

  .launch .title_area .heading_main {
    font-size: 36px
  }

  .launch .title_area .num_big {
    font-size: 50px
  }
}

.launch .team_strip {
  background: #fff;
  padding: 80px 20px
}

.launch .team_strip .bounded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

@media (max-width: 960px) {
  .launch .team_strip .bounded {
    grid-template-columns: 1fr
  }
}

.launch .team_strip .person_card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 1px 7px 20px 1px #1b586217;
  background: #fff
}

@media (min-width: 960px) {
  .launch .team_strip .person_card {
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .launch .team_strip .person_card:hover {
    box-shadow: 1px 12px 40px 1px #1b586224
  }
}

.launch .team_strip .portrait_wrap {
  flex-shrink: 0;
  width: 100px;
  border-radius: 44px;
  overflow: hidden
}

.launch .team_strip .portrait_wrap img {
  width: 100px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 44px
}

.launch .team_strip .person_detail {
  flex: 1
}

.launch .team_strip .person_name {
  font-size: 20px;
  line-height: 1.1;
  color: #1B5862;
  margin-bottom: 4px
}

.launch .team_strip .person_role {
  font-size: 15px;
  line-height: 1.75;
  color: #BC164C;
  letter-spacing: .06em;
  margin-bottom: 8px
}

.launch .team_strip .person_bio {
  font-size: 15px;
  line-height: 1.75;
  color: #2d4a50
}

.launch .team_strip .team_intro {
  padding: 20px 0
}

.launch .team_strip .team_intro .label_small {
  font-size: 15px;
  letter-spacing: .08em;
  color: #BC164C;
  margin-bottom: 16px;
  display: block
}

.launch .team_strip .team_intro h2 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 20px
}

.launch .team_strip .team_intro p {
  font-size: 17px;
  line-height: 1.75;
  color: #2d4a50;
  margin-bottom: 16px
}

.launch .investment_band {
  background: linear-gradient(160deg, #1B5862 0%, #2d7a88 100%);
  padding: 80px 20px;
  position: relative
}

.launch .investment_band .bounded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

@media (max-width: 960px) {
  .launch .investment_band .bounded {
    grid-template-columns: 1fr
  }
}

.launch .investment_band .band_text .label_small {
  font-size: 15px;
  letter-spacing: .08em;
  color: #B3D0C9;
  margin-bottom: 16px;
  display: block
}

.launch .investment_band .band_text h2 {
  font-size: 36px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px
}

.launch .investment_band .band_text p {
  font-size: 17px;
  line-height: 1.75;
  color: #B3D0C9;
  margin-bottom: 20px
}

.launch .investment_band .img_overlay_wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 1px #1b586224
}

.launch .investment_band .img_overlay_wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block
}

.launch .investment_band .img_overlay_wrap .tint {
  position: absolute;
  inset: 0;
  background: #1b58628c
}

@media (min-width: 960px) {
  .launch .investment_band .img_overlay_wrap .tint {
    transition: background .5s ease-in-out
  }

  .launch .investment_band .img_overlay_wrap:hover .tint {
    background: #1b586226
  }
}

.launch .investment_band .plan_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px
}

.launch .investment_band .plan_item {
  background: #ffffff14;
  border-radius: 4px;
  padding: 16px;
  border: 1px solid #b3d0c940
}

.launch .investment_band .plan_item .plan_label {
  font-size: 15px;
  color: #B3D0C9;
  letter-spacing: .05em;
  margin-bottom: 8px;
  display: block
}

.launch .investment_band .plan_item .plan_value {
  font-size: 26px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700
}

@media (max-width: 480px) {
  .launch .investment_band .plan_grid {
    grid-template-columns: 1fr
  }
}

.launch .scale_band {
  background: #f4f8f7;
  padding: 80px 20px
}

.launch .scale_band .bounded {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.launch .scale_band .scale_top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center
}

@media (max-width: 960px) {
  .launch .scale_band .scale_top {
    grid-template-columns: 1fr
  }
}

.launch .scale_band h2 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 16px
}

.launch .scale_band .scale_intro {
  font-size: 17px;
  line-height: 1.75;
  color: #2d4a50
}

.launch .scale_band .metrics_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

@media (max-width: 960px) {
  .launch .scale_band .metrics_row {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 480px) {
  .launch .scale_band .metrics_row {
    grid-template-columns: 1fr 1fr
  }
}

.launch .scale_band .metric_box {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  box-shadow: 1px 1px 5px 1px #1b586212;
  position: relative
}

@media (min-width: 960px) {
  .launch .scale_band .metric_box {
    transition: box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1), transform .4s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .launch .scale_band .metric_box:hover {
    box-shadow: 1px 12px 40px 1px #1b586224;
    transform: translateY(-4px)
  }
}

.launch .scale_band .metric_box .metric_num {
  font-size: 50px;
  line-height: 1.1;
  color: #BC164C;
  font-weight: 700;
  display: block
}

.launch .scale_band .metric_box .metric_label {
  font-size: 15px;
  line-height: 1.75;
  color: #1B5862;
  letter-spacing: .04em
}

.launch .scale_band .donut_area {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 1px 7px 20px 1px #1b586217
}

@media (max-width: 960px) {
  .launch .scale_band .donut_area {
    flex-direction: column;
    padding: 20px
  }
}

.launch .scale_band .donut_wrap {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 160px
}

.launch .scale_band .donut_wrap svg {
  width: 160px;
  height: 160px
}

.launch .scale_band .donut_center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.launch .scale_band .donut_center .donut_num {
  font-size: 26px;
  line-height: 1.1;
  color: #1B5862;
  font-weight: 700
}

.launch .scale_band .donut_center .donut_sub {
  font-size: 15px;
  color: #BC164C
}

.launch .scale_band .donut_legend {
  flex: 1
}

.launch .scale_band .donut_legend .legend_title {
  font-size: 20px;
  line-height: 1.1;
  color: #1B5862;
  margin-bottom: 16px
}

.launch .scale_band .donut_legend p {
  font-size: 15px;
  line-height: 1.75;
  color: #2d4a50;
  margin-bottom: 16px
}

.launch .scale_band .legend_items {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.launch .scale_band .legend_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.75;
  color: #2d4a50
}

.launch .scale_band .legend_dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex-shrink: 0
}

.launch .longterm_band {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.launch .longterm_band .bounded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

@media (max-width: 960px) {
  .launch .longterm_band .bounded {
    grid-template-columns: 1fr
  }
}

.launch .longterm_band .img_col {
  position: relative
}

.launch .longterm_band .img_col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  display: block
}

.launch .longterm_band .img_col .tint {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: #bc164c59
}

@media (min-width: 960px) {
  .launch .longterm_band .img_col .tint {
    transition: background .5s ease-in-out
  }

  .launch .longterm_band .img_col:hover .tint {
    background: #bc164c0d
  }
}

.launch .longterm_band .text_col .label_small {
  font-size: 15px;
  letter-spacing: .08em;
  color: #BC164C;
  margin-bottom: 16px;
  display: block
}

.launch .longterm_band .text_col h2 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 20px
}

.launch .longterm_band .text_col p {
  font-size: 17px;
  line-height: 1.75;
  color: #2d4a50;
  margin-bottom: 20px
}

.launch .longterm_band .value_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px
}

.launch .longterm_band .value_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  padding-left: 8px
}

.launch .longterm_band .value_row .val_num {
  font-size: 50px;
  line-height: 1.1;
  color: #BC164C;
  opacity: .12;
  position: absolute;
  left: 0;
  top: -8px;
  font-weight: 700;
  pointer-events: none
}

.launch .longterm_band .value_row .val_text {
  padding-left: 36px;
  position: relative;
  z-index: 1
}

.launch .longterm_band .value_row .val_text strong {
  display: block;
  font-size: 17px;
  color: #1B5862;
  margin-bottom: 4px
}

.launch .longterm_band .value_row .val_text span {
  font-size: 15px;
  line-height: 1.75;
  color: #2d4a50
}

.launch .fit_band {
  background: linear-gradient(160deg, #f4f8f7 0%, #e8f2f0 100%);
  padding: 80px 20px
}

.launch .fit_band .bounded {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.launch .fit_band .fit_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

@media (max-width: 960px) {
  .launch .fit_band .fit_top {
    grid-template-columns: 1fr
  }
}

.launch .fit_band h2 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 16px
}

.launch .fit_band .fit_lead {
  font-size: 17px;
  line-height: 1.75;
  color: #2d4a50
}

.launch .fit_band .fit_img_wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 7px 20px 1px #1b586217
}

.launch .fit_band .fit_img_wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block
}

.launch .fit_band .fit_img_wrap .tint {
  position: absolute;
  inset: 0;
  background: #1b586266
}

@media (min-width: 960px) {
  .launch .fit_band .fit_img_wrap .tint {
    transition: background .5s ease-in-out
  }

  .launch .fit_band .fit_img_wrap:hover .tint {
    background: #1b58621a
  }
}

.launch .fit_band .two_col_fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

@media (max-width: 960px) {
  .launch .fit_band .two_col_fit {
    grid-template-columns: 1fr
  }
}

.launch .fit_band .fit_group {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 1px 1px 5px 1px #1b586212
}

.launch .fit_band .fit_group .group_label {
  font-size: 15px;
  letter-spacing: .07em;
  color: #BC164C;
  margin-bottom: 16px;
  display: block
}

.launch .fit_band .fit_group.yes_group .group_label {
  color: #1B5862
}

.launch .fit_band .fit_items {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.launch .fit_band .fit_item {
  position: relative;
  padding-left: 40px
}

.launch .fit_band .fit_item .item_num {
  font-size: 50px;
  line-height: 1.1;
  color: #BC164C;
  opacity: .1;
  position: absolute;
  left: 0;
  top: -8px;
  font-weight: 700;
  pointer-events: none
}

.launch .fit_band .fit_group.yes_group .fit_item .item_num {
  color: #1B5862
}

.launch .fit_band .fit_item .item_text {
  font-size: 15px;
  line-height: 1.75;
  color: #2d4a50;
  position: relative;
  z-index: 1
}

.launch .icon_anchor {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bc164c14;
  border-radius: 4px;
  margin-bottom: 20px
}

.launch .icon_anchor svg {
  width: 32px;
  height: 32px
}

@media (max-width: 480px) {

  .launch .team_strip,
  .launch .investment_band,
  .launch .scale_band,
  .launch .longterm_band,
  .launch .fit_band {
    padding: 40px 16px
  }

  .launch .title_area {
    padding: 40px 16px 20px
  }

  .launch .scale_band .donut_area {
    padding: 16px
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch .reveal {
    animation: none;
    opacity: 1
  }
}

.about-us {
  max-width: 100%;
  overflow-x: hidden
}

.about-us .page-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px
}

.about-us ::selection {
  background: linear-gradient(90deg, #BC164C, #1B5862);
  color: #fff
}

.about-us .split-reveal {
  display: inline-block;
  overflow: hidden
}

.about-us .split-reveal .word-left,
.about-us .split-reveal .word-right {
  display: inline-block;
  animation: splitSpread .55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0
}

.about-us .split-reveal .word-left {
  animation-name: slideFromLeft
}

.about-us .split-reveal .word-right {
  animation-name: slideFromRight
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-24px);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes slideFromRight {
  from {
    transform: translateX(24px);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

.about-us .split-reveal .word-left {
  animation-delay: .08s
}

.about-us .split-reveal .word-right {
  animation-delay: .22s
}

.about-us .grid_lines_bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.about-us .grid_lines_bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#1b58620f 1px, transparent 1px), linear-gradient(90deg, #1b58620f 1px, transparent 1px);
  background-size: 60px 60px
}

.about-us .title_area {
  position: relative;
  background: linear-gradient(160deg, #1B5862 0%, #2d7a87 60%, #B3D0C9 100%);
  padding: 80px 0
}

.about-us .title_area .page-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px
}

.about-us .title_text_col {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px
}

.about-us .title_badge {
  display: inline-block;
  background: #bc164c26;
  border: 1px solid #bc164c59;
  color: #f8d4e0;
  font-size: 15px;
  letter-spacing: .12em;
  padding: 4px 16px;
  border-radius: 4px;
  width: fit-content;
  text-transform: uppercase
}

.about-us .title_h1 {
  font-size: 50px;
  line-height: 1.1;
  color: #fff;
  margin: 0
}

.about-us .title_h1 .accent_word {
  color: #B3D0C9
}

.about-us .title_problem {
  font-size: 17px;
  line-height: 1.75;
  color: #ffffffd1;
  margin: 0;
  max-width: 480px
}

.about-us .title_solution_box {
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.about-us .title_solution_label {
  font-size: 15px;
  color: #B3D0C9;
  letter-spacing: .1em;
  text-transform: uppercase
}

.about-us .title_solution_text {
  font-size: 20px;
  line-height: 1.75;
  color: #fff;
  margin: 0
}

.about-us .title_image_col {
  flex: 1;
  position: relative;
  min-height: 360px
}

.about-us .title_img_frame {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 1px #1b586224;
  position: relative
}

.about-us .title_img_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(20%) saturate(1.2) brightness(0.9);
  transition: filter .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .title_img_frame:hover img {
  filter: sepia(0%) saturate(1) brightness(1)
}

.about-us .title_img_frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1b586273 0%, transparent 60%);
  pointer-events: none;
  transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .title_img_frame:hover::after {
  opacity: 0
}

.about-us .bracket_left,
.about-us .bracket_right {
  position: absolute;
  font-size: 120px;
  line-height: 1.1;
  color: #ffffff14;
  pointer-events: none;
  user-select: none;
  font-weight: 300
}

.about-us .bracket_left {
  left: -8px;
  top: 40px
}

.about-us .bracket_right {
  right: -8px;
  top: 40px
}

.about-us .about_story {
  padding: 80px 0;
  background: #fff
}

.about-us .about_story .page-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start
}

.about-us .story_main {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us .story_label {
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #BC164C
}

.about-us .story_h2 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
  color: #1B5862
}

.about-us .story_h2 .accent_word {
  color: #BC164C
}

.about-us .story_text {
  font-size: 17px;
  line-height: 1.75;
  color: #2a3a3c;
  margin: 0
}

.about-us .marker_phrase {
  font-size: 20px;
  line-height: 1.75;
  color: #1B5862;
  margin: 0;
  padding: 16px 20px;
  background: #b3d0c940;
  border-radius: 4px;
  position: relative
}

.about-us .marker_phrase .marked_text {
  background: linear-gradient(180deg, transparent 55%, #bc164c47 55%);
  display: inline
}

.about-us .marker_phrase .quote_mark {
  color: #BC164C;
  font-size: 26px;
  line-height: 1.1;
  font-style: normal
}

.about-us .indicators_row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap
}

.about-us .indicator_circle {
  width: 56px;
  height: 56px;
  border-radius: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 1px 7px 20px 1px #1b586217;
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default
}

.about-us .indicator_circle:nth-child(1) {
  background: #1B5862
}

.about-us .indicator_circle:nth-child(2) {
  background: #BC164C
}

.about-us .indicator_circle:nth-child(3) {
  background: #B3D0C9
}

.about-us .indicator_circle:nth-child(4) {
  background: #1B5862
}

.about-us .indicator_circle:hover {
  transform: scale(1.12);
  box-shadow: 1px 12px 40px 1px #1b586224
}

.about-us .indicator_circle .ind_num {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff
}

.about-us .indicator_circle:nth-child(3) .ind_num {
  color: #1B5862
}

.about-us .indicator_circle .ind_label {
  font-size: 11px;
  line-height: 1.1;
  color: #fffc;
  text-align: center;
  padding: 0 4px
}

.about-us .indicator_circle:nth-child(3) .ind_label {
  color: #1b5862bf
}

.about-us .story_aside {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us .aside_img_frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 12px 40px 1px #1b586224;
  position: relative
}

.about-us .aside_img_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85) brightness(0.95);
  transition: filter .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .aside_img_frame:hover img {
  filter: saturate(1) brightness(1)
}

.about-us .aside_img_frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, #1b586259 100%);
  pointer-events: none;
  transition: opacity .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .aside_img_frame:hover::after {
  opacity: 0
}

.about-us .aside_caption {
  font-size: 15px;
  line-height: 1.75;
  color: #4a6265;
  margin: 0;
  padding: 0 4px
}

.about-us .team_area {
  padding: 80px 0;
  position: relative;
  background: #f5f9f8
}

.about-us .wavy_texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .4
}

.about-us .wavy_texture svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto
}

.about-us .team_area .page-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.about-us .team_header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px
}

.about-us .team_h2 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
  color: #1B5862
}

.about-us .team_h2 .accent_word {
  color: #BC164C
}

.about-us .team_subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: #2a3a3c;
  margin: 0;
  max-width: 380px;
  text-align: right
}

.about-us .team_grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px
}

.about-us .team_card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 1px 7px 20px 1px #1b586217;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1), transform .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .team_card:hover {
  box-shadow: 1px 12px 40px 1px #1b586224;
  transform: translateY(-3px)
}

.about-us .team_card.secondary {
  flex-direction: column
}

.about-us .team_portrait {
  flex: 0 0 160px;
  position: relative;
  overflow: hidden
}

.about-us .team_portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.8);
  transition: filter .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .team_card:hover .team_portrait img {
  filter: saturate(1)
}

.about-us .team_portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, #bc164c1f 100%);
  pointer-events: none
}

.about-us .team_card.secondary .team_portrait {
  flex: 0 0 auto;
  height: 200px
}

.about-us .team_card.secondary .team_portrait::after {
  background: linear-gradient(180deg, transparent 60%, #1b586233 100%)
}

.about-us .team_info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center
}

.about-us .team_name {
  font-size: 20px;
  line-height: 1.1;
  color: #1B5862;
  margin: 0
}

.about-us .team_role {
  font-size: 15px;
  color: #BC164C;
  letter-spacing: .08em;
  text-transform: uppercase
}

.about-us .team_bio {
  font-size: 15px;
  line-height: 1.75;
  color: #4a6265;
  margin: 0
}

.about-us .team_numbered_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none
}

.about-us .team_numbered_list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 1px 1px 5px 1px #1b586212;
  transition: box-shadow .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.about-us .team_numbered_list li:hover {
  box-shadow: 1px 7px 20px 1px #1b586217
}

.about-us .list_num {
  font-size: 36px;
  line-height: 1.1;
  color: #1b58621f;
  font-weight: 700;
  flex-shrink: 0;
  width: 40px;
  text-align: right
}

.about-us .list_text_group {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.about-us .list_item_title {
  font-size: 17px;
  line-height: 1.1;
  color: #1B5862;
  margin: 0
}

.about-us .list_item_desc {
  font-size: 15px;
  line-height: 1.75;
  color: #4a6265;
  margin: 0
}

.about-us .divider_double_curve {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0
}

.about-us .divider_double_curve svg {
  display: block;
  width: 100%
}

@media (max-width: 960px) {
  .about-us .title_area .page-container {
    flex-direction: column
  }

  .about-us .title_text_col {
    flex: none
  }

  .about-us .title_image_col {
    min-height: 260px
  }

  .about-us .title_img_frame {
    min-height: 260px
  }

  .about-us .about_story .page-container {
    grid-template-columns: 1fr
  }

  .about-us .story_aside {
    order: -1
  }

  .about-us .aside_img_frame {
    aspect-ratio: 16/9
  }

  .about-us .team_grid {
    grid-template-columns: 1fr
  }

  .about-us .team_header {
    flex-direction: column;
    align-items: flex-start
  }

  .about-us .team_subtitle {
    text-align: left
  }

  .about-us .title_h1 {
    font-size: 36px
  }
}

@media (max-width: 480px) {
  .about-us .title_area {
    padding: 40px 0
  }

  .about-us .about_story {
    padding: 40px 0
  }

  .about-us .team_area {
    padding: 40px 0
  }

  .about-us .title_h1 {
    font-size: 26px
  }

  .about-us .story_h2 {
    font-size: 26px
  }

  .about-us .team_h2 {
    font-size: 26px
  }

  .about-us .team_card {
    flex-direction: column
  }

  .about-us .team_portrait {
    flex: 0 0 auto;
    height: 180px
  }

  .about-us .team_portrait::after {
    background: linear-gradient(180deg, transparent 60%, #bc164c1f 100%)
  }
}

@media (min-width: 961px) {

  .about-us .title_img_frame img,
  .about-us .aside_img_frame img,
  .about-us .team_portrait img {
    transition: filter .45s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .about-us .team_card {
    transition: box-shadow .42s cubic-bezier(0.16, 1, 0.3, 1), transform .42s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .about-us .indicator_circle {
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1)
  }

  .about-us .team_numbered_list li {
    transition: box-shadow .38s cubic-bezier(0.16, 1, 0.3, 1)
  }
}

.success_page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #fff
}

.success_page .success_card {
  max-width: 560px;
  width: 100%;
  background: #f4f9f8;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 1px 7px 20px 1px #1b586217;
  text-align: center
}

.success_page .success_icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center
}

.success_page .success_icon svg {
  width: 64px;
  height: 64px
}

.success_page .success_heading {
  font-size: 36px;
  line-height: 1.1;
  color: #1B5862;
  margin: 0 0 16px
}

.success_page .success_heading span {
  color: #BC164C
}

.success_page .success_text {
  font-size: 17px;
  line-height: 1.75;
  color: #2c4a4e;
  margin: 0 0 40px
}

.success_page .success_link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.1;
  color: #fff;
  background: #1B5862;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 5px 1px #1b586212;
  transition: color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.success_page .success_link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #BC164C;
  border-radius: 4px;
  transition: bottom .45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0
}

.success_page .success_link:hover::before {
  bottom: 0
}

.success_page .success_link_label {
  position: relative;
  z-index: 1
}

.success_page .success_divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #BC164C, #B3D0C9);
  border-radius: 4px;
  margin: 0 auto 20px
}

@media (max-width: 480px) {
  .success_page {
    padding: 40px 16px
  }

  .success_page .success_card {
    padding: 40px 20px
  }

  .success_page .success_heading {
    font-size: 26px
  }
}