html {
  box-sizing: border-box;
  font-size: 100%
}

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

html,
body {
  margin: 0
}

body {
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word
}

.pg_head {
  padding: 32px 32px 0
}

.pg_head_shell {
  max-width: 1320px;
  margin: 0 auto;
  background: #023F49;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  box-shadow: -1px 12px 36px 0 #023f491f;
  overflow: hidden
}

.brand_side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  gap: 16px;
  background: linear-gradient(135deg, #023F49 60%, #034f5c 100%)
}

.brand_divider {
  background: #fdd00040;
  width: 1px;
  align-self: stretch
}

.nav_side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: #EDECEC;
  gap: 8px
}

.brand_frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 72px;
  border: 2px solid #FDD000;
  border-radius: 6px;
  background: #fff;
  padding: 8px 16px;
  box-shadow: -1px 7px 25px 0 #023f491a
}

.brand_frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.brand_name {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #FDD000;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0
}

.brand_tag {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #edececbf;
  line-height: 1.65;
  margin: 0
}

.nav_label {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #023F49;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 8px
}

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

.nav_list li {
  display: block
}

.nav_list a {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #023F49;
  text-decoration: none;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background-color .25s ease-out, border-color .2s ease-out, color .2s ease-out;
  min-height: 44px;
  position: relative;
  overflow: hidden
}

.nav_list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #FDD000;
  transition: width .35s ease-out;
  z-index: 0;
  border-radius: 6px
}

.nav_list a:hover::before,
.nav_list a:focus::before {
  width: 100%
}

.nav_list a:hover,
.nav_list a:focus {
  color: #023F49;
  border-color: #FDD000;
  outline: none;
  background: transparent
}

.nav_list a span,
.nav_list a .lnr {
  position: relative;
  z-index: 1
}

.nav_list a:focus {
  border-color: #023F49;
  background: #023f490f
}

.nav_list a:focus::before {
  width: 0
}

.nav_icon {
  font-size: 14px;
  color: #FDD000;
  flex-shrink: 0;
  transition: color .2s ease-out
}

.nav_list a:hover .nav_icon,
.nav_list a:focus .nav_icon {
  color: #023F49
}

@media (max-width: 768px) {
  .pg_head {
    padding: 16px 16px 0
  }

  .pg_head_shell {
    grid-template-columns: 1fr;
    border-radius: 24px
  }

  .brand_divider {
    display: none
  }

  .brand_side {
    padding: 32px 32px 16px;
    border-radius: 24px 24px 0 0
  }

  .nav_side {
    padding: 16px 32px 32px;
    border-radius: 0 0 24px 24px
  }
}

@media (max-width: 390px) {
  .pg_head {
    padding: 8px 8px 0
  }

  .brand_side {
    padding: 32px 16px 16px
  }

  .nav_side {
    padding: 16px 16px 32px
  }

  .nav_list a {
    padding: 8px
  }
}

.pg_foot {
  background: #023F49;
  margin-top: 64px;
  padding: 64px 32px 32px;
  position: relative
}

.pg_foot::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FDD000 0%, #fdd0004d 60%, transparent 100%)
}

.foot_shell {
  max-width: 1320px;
  margin: 0 auto
}

.foot_upper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid #fdd00033
}

.foot_brand_col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.foot_name {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #FDD000;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0
}

.foot_addr {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #edececb3;
  line-height: 1.65;
  margin: 0
}

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

.foot_contact_list a {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: #EDECEC;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
  transition: color .25s ease-out
}

.foot_contact_list a:hover,
.foot_contact_list a:focus {
  color: #FDD000;
  outline: none
}

.foot_contact_list .lnr {
  font-size: 14px;
  color: #FDD000;
  flex-shrink: 0
}

.foot_links_col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.foot_links_label {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #FDD000;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0
}

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

.foot_link_list a {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: #edececcc;
  text-decoration: none;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease-out;
  padding: 4px 0
}

.foot_link_list a:hover,
.foot_link_list a:focus {
  color: #FDD000;
  outline: none
}

.foot_link_list .lnr {
  font-size: 14px;
  color: #fdd00099;
  flex-shrink: 0;
  transition: color .2s ease-out
}

.foot_link_list a:hover .lnr,
.foot_link_list a:focus .lnr {
  color: #FDD000
}

.foot_lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 16px;
  flex-wrap: wrap
}

.foot_copy {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: #edecec80;
  line-height: 1.4;
  margin: 0
}

.foot_logo_hold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 56px;
  border: 2px solid #fdd00080;
  border-radius: 6px;
  background: #fff;
  padding: 8px 16px;
  box-shadow: -1px 3px 3px 0 #023f4912
}

.foot_logo_hold img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

@media (max-width: 768px) {
  .foot_upper {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .pg_foot {
    padding: 64px 16px 32px
  }
}

@media (max-width: 390px) {
  .foot_lower {
    flex-direction: column;
    align-items: flex-start
  }
}

.doc-box {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 32px
}

.doc-box h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #023F49;
  margin-bottom: 32px;
  margin-top: 0
}

.doc-box h2 {
  font-size: 36px;
  line-height: 1.4;
  color: #023F49;
  margin-bottom: 16px;
  margin-top: 64px
}

.doc-box h3 {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  margin-top: 32px
}

.doc-box h4,
.doc-box h5,
.doc-box h6 {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin-bottom: 8px;
  margin-top: 32px
}

.doc-box p {
  font-size: 14px;
  line-height: 1.85;
  color: #2a3a3c;
  margin-bottom: 16px;
  margin-top: 0
}

.doc-box ul,
.doc-box ol {
  font-size: 14px;
  line-height: 1.85;
  color: #2a3a3c;
  margin-bottom: 16px;
  margin-top: 0;
  padding-left: 32px
}

.doc-box li {
  margin-bottom: 8px
}

.doc-box ul li::marker {
  color: #FDD000
}

.doc-box ol li::marker {
  color: #023F49;
  font-weight: 600
}

.doc-box em,
.doc-box i {
  color: #023F49;
  font-style: italic
}

.doc-box a {
  color: #023F49;
  text-decoration: underline;
  text-decoration-color: #FDD000;
  text-underline-offset: 3px;
  transition: color .25s ease-out, text-decoration-color .15s ease-out
}

.doc-box a:hover {
  color: #FDD000;
  text-decoration-color: #023F49
}

.doc-box table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 32px;
  margin-top: 16px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: -1px 7px 25px 0 #023f491a
}

.doc-box thead {
  background-color: #023F49
}

.doc-box thead th {
  color: #FDD000;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 16px;
  text-align: left
}

.doc-box tbody tr {
  background-color: #fff;
  transition: background-color .2s ease-out
}

.doc-box tbody tr:nth-child(even) {
  background-color: #EDECEC
}

.doc-box tbody tr:hover {
  background-color: #fdd0001f
}

.doc-box td {
  padding: 16px;
  color: #2a3a3c;
  line-height: 1.65;
  border-bottom: 1px solid #EDECEC
}

.doc-box div {
  font-size: 14px;
  line-height: 1.85
}

@media (max-width: 768px) {
  .doc-box {
    padding: 32px 16px
  }

  .doc-box h1 {
    font-size: 36px
  }

  .doc-box h2 {
    font-size: 36px;
    margin-top: 32px
  }

  .doc-box table {
    display: block;
    overflow-x: auto
  }
}

@media (max-width: 390px) {
  .doc-box {
    padding: 32px 8px
  }

  .doc-box h1 {
    font-size: 36px;
    line-height: 1.15
  }
}

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

.qt_pg .db_line {
  width: 64px;
  height: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px
}

.qt_pg .db_line span {
  display: block;
  height: 1px;
  background: #FDD000;
  width: 100%
}

.qt_pg .db_line span:last-child {
  width: 70%
}

.qt_pg .overline_lbl {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #023F49;
  display: block;
  margin-bottom: 8px
}

.qt_pg .arr_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px
}

.qt_pg .arr_item .arr_ico {
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
  height: 14px
}

.qt_pg .arr_item .arr_ico svg {
  width: 14px;
  height: 14px
}

.qt_pg .arr_item p {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin: 0
}

.qt_pg .ttl_blk {
  position: relative;
  background: linear-gradient(180deg, #023F49 0%, #023F49 55%, #023f4900 100%);
  padding: 96px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 100%;
  overflow: hidden
}

.qt_pg .ttl_blk .deco_band {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.qt_pg .ttl_blk .deco_band::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 30%;
  width: 2px;
  height: 200%;
  background: #fdd0001f;
  transform: rotate(67deg);
  transform-origin: top center
}

.qt_pg .ttl_blk .deco_band::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 32%;
  width: 1px;
  height: 200%;
  background: #fdd00012;
  transform: rotate(67deg);
  transform-origin: top center
}

.qt_pg .ttl_txt {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp .45s ease-out both
}

.qt_pg .ttl_txt .overline_lbl {
  color: #fdd000bf;
  animation: fadeUp .25s ease-out both
}

.qt_pg .ttl_txt .db_line span {
  background: #fdd00080
}

.qt_pg .ttl_txt .db_line span:last-child {
  background: #fdd0004d
}

.qt_pg .ttl_h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
  animation: fadeUp .35s ease-out .1s both
}

.qt_pg .ttl_h1 em {
  font-style: normal;
  color: #FDD000;
  display: block;
  font-size: 70px;
  line-height: 1.15
}

.qt_pg .ttl_sub {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffb8;
  max-width: 420px;
  margin: 0;
  animation: fadeUp .4s ease-out .2s both
}

.qt_pg .ttl_img_col {
  display: flex;
  align-items: flex-end;
  padding: 0 0 0 32px;
  animation: fadeUp .45s ease-out .15s both
}

.qt_pg .ttl_img_wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: 6px 24px 6px 24px;
  overflow: hidden;
  filter: grayscale(1);
  box-shadow: -1px 12px 36px 0 #023f491f;
  transition: filter .35s ease-out
}

.qt_pg .ttl_img_wrap:hover {
  filter: grayscale(0)
}

.qt_pg .ttl_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

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

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

.qt_pg .offer_blk {
  background: #EDECEC;
  padding: 96px 32px;
  position: relative
}

.qt_pg .offer_blk .bg_anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0
}

.qt_pg .offer_blk .bg_anim::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 40px;
  background: radial-gradient(circle at 80% 20%, #fdd00021 0%, transparent 70%);
  animation: bgShift 6s ease-in-out infinite alternate
}

.qt_pg .offer_blk .bg_anim::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 40px;
  background: radial-gradient(circle at 20% 80%, #023f4914 0%, transparent 70%);
  animation: bgShift2 7s ease-in-out infinite alternate
}

@keyframes bgShift {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(-30px, 30px) scale(1.1)
  }
}

@keyframes bgShift2 {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(20px, -20px) scale(1.08)
  }
}

.qt_pg .offer_inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  position: relative
}

.qt_pg .offer_side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px
}

.qt_pg .offer_side .drop_cap::first-letter {
  font-size: 52px;
  line-height: 1;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px;
  font-weight: 700
}

.qt_pg .offer_side p {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin: 0 0 16px
}

.qt_pg .offer_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0 0 16px
}

.qt_pg .offer_main {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.qt_pg .offer_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.qt_pg .off_card {
  background: #fff;
  border-radius: 6px;
  padding: 32px 16px;
  box-shadow: -1px 7px 25px 0 #023f491a;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .25s ease-out, transform .2s ease-out;
  position: relative;
  overflow: hidden
}

.qt_pg .off_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #FDD000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease-out
}

.qt_pg .off_card:hover::before {
  transform: scaleX(1)
}

.qt_pg .off_card:hover {
  box-shadow: -1px 12px 36px 0 #023f491f;
  transform: translateY(-4px)
}

.qt_pg .off_card .card_ico {
  width: 36px;
  height: 36px;
  background: #fdd00026;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px
}

.qt_pg .off_card .card_ico svg {
  width: 20px;
  height: 20px
}

.qt_pg .off_card h4 {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  margin: 0;
  font-weight: 700
}

.qt_pg .off_card p {
  font-size: 14px;
  line-height: 1.65;
  color: #5a6a6d;
  margin: 0
}

.qt_pg .offer_rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #023F49;
  border-radius: 6px;
  padding: 16px 32px
}

.qt_pg .rating_num {
  font-size: 52px;
  line-height: 1.15;
  color: #FDD000;
  font-weight: 700
}

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

.qt_pg .rating_stars {
  display: flex;
  flex-direction: row;
  gap: 4px
}

.qt_pg .rating_stars svg {
  width: 16px;
  height: 16px;
  fill: #FDD000
}

.qt_pg .rating_txt {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffffb8;
  margin: 0
}

.qt_pg .prog_blk {
  padding: 96px 32px;
  background: #fff;
  position: relative
}

.qt_pg .prog_blk .diag_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.qt_pg .prog_blk .diag_line::before {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 5%;
  width: 180px;
  height: 1px;
  background: #fdd00059;
  transform: rotate(67deg);
  transform-origin: right center
}

.qt_pg .prog_inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start
}

.qt_pg .prog_left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.qt_pg .prog_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0 0 16px
}

.qt_pg .prog_img_wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: -1px 7px 25px 0 #023f491a;
  transition: filter .4s ease-out;
  filter: blur(2px)
}

.qt_pg .prog_img_wrap:hover {
  filter: blur(0)
}

.qt_pg .prog_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.qt_pg .prog_txt p {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin: 0 0 16px
}

.qt_pg .prog_txt p:last-child {
  margin-bottom: 0
}

.qt_pg .prog_txt .drop_cap::first-letter {
  font-size: 52px;
  line-height: 1;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px;
  font-weight: 700
}

.qt_pg .prog_sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px
}

.qt_pg .prog_sidebar h5 {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

.qt_pg .prog_metric {
  background: #EDECEC;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .2s ease-out
}

.qt_pg .prog_metric:hover {
  background: #e4e3e3
}

.qt_pg .prog_metric .met_val {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  font-weight: 700
}

.qt_pg .prog_metric .met_val span {
  color: #FDD000
}

.qt_pg .prog_metric .met_lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #5a6a6d
}

.qt_pg .prog_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0
}

.qt_pg .team_blk {
  background: #023F49;
  padding: 96px 32px;
  position: relative;
  overflow: hidden
}

.qt_pg .team_blk .petal_bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.qt_pg .team_blk .petal_bg svg {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  opacity: .06
}

.qt_pg .team_inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative
}

.qt_pg .team_top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 64px
}

.qt_pg .team_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px
}

.qt_pg .team_intro p {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffb8;
  margin: 0 0 16px
}

.qt_pg .team_intro p:last-child {
  margin-bottom: 0
}

.qt_pg .team_intro .drop_cap::first-letter {
  font-size: 52px;
  line-height: 1;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px;
  font-weight: 700
}

.qt_pg .team_profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.qt_pg .prof_card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  background: #ffffff0f;
  border-radius: 6px;
  padding: 32px;
  box-shadow: -1px 3px 3px 0 #023f4912;
  transition: background .3s ease-out
}

.qt_pg .prof_card:hover {
  background: #ffffff1a
}

.qt_pg .prof_img_wrap {
  width: 80px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  filter: blur(2px);
  transition: filter .35s ease-out
}

.qt_pg .prof_card:hover .prof_img_wrap {
  filter: blur(0)
}

.qt_pg .prof_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

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

.qt_pg .prof_info h5 {
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  margin: 0;
  font-weight: 700
}

.qt_pg .prof_info .prof_role {
  font-size: 14px;
  line-height: 1.4;
  color: #FDD000;
  display: block
}

.qt_pg .prof_info p {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffa6;
  margin: 0
}

.qt_pg .team_cta_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap
}

.qt_pg .btn_primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #FDD000;
  color: #023F49;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .25s ease-out, box-shadow .25s ease-out;
  box-shadow: -1px 7px 25px 0 #fdd00033
}

.qt_pg .btn_primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #023F49;
  transform: translateX(-100%);
  transition: transform .3s ease-out;
  border-radius: 6px
}

.qt_pg .btn_primary:hover::before {
  transform: translateX(0)
}

.qt_pg .btn_primary:hover {
  color: #FDD000;
  box-shadow: -1px 12px 36px 0 #fdd00040
}

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

.qt_pg .btn_secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid #ffffff4d;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s ease-out, background .2s ease-out;
  text-decoration: none
}

.qt_pg .btn_secondary:hover {
  border-color: #FDD000;
  background: #fdd0001a
}

.qt_pg .btn_secondary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fffc;
  stroke-width: 2;
  transition: stroke .2s ease-out
}

.qt_pg .btn_secondary:hover svg {
  stroke: #FDD000
}

@media (max-width: 1280px) {
  .qt_pg .offer_cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .qt_pg .ttl_blk {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 16px 32px
  }

  .qt_pg .ttl_txt {
    padding: 0
  }

  .qt_pg .ttl_h1 {
    font-size: 36px
  }

  .qt_pg .ttl_h1 em {
    font-size: 52px
  }

  .qt_pg .ttl_img_col {
    padding: 0;
    justify-content: center
  }

  .qt_pg .ttl_img_wrap {
    max-width: 280px
  }

  .qt_pg .offer_blk {
    padding: 64px 16px
  }

  .qt_pg .offer_inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .qt_pg .offer_cards {
    grid-template-columns: 1fr
  }

  .qt_pg .prog_blk {
    padding: 64px 16px
  }

  .qt_pg .prog_inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .qt_pg .team_blk {
    padding: 64px 16px
  }

  .qt_pg .team_top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .qt_pg .team_profiles {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

@media (max-width: 390px) {
  .qt_pg .ttl_h1 {
    font-size: 36px
  }

  .qt_pg .ttl_h1 em {
    font-size: 36px
  }

  .qt_pg .offer_h2,
  .qt_pg .prog_h2,
  .qt_pg .team_h2 {
    font-size: 36px
  }

  .qt_pg .rating_num {
    font-size: 36px
  }

  .qt_pg .prof_card {
    flex-direction: column;
    padding: 16px
  }
}

.spt {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden
}

.spt .row-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rowUp .45s ease-out forwards
}

.spt .row-reveal:nth-child(1) {
  animation-delay: .05s
}

.spt .row-reveal:nth-child(2) {
  animation-delay: .18s
}

.spt .row-reveal:nth-child(3) {
  animation-delay: .31s
}

.spt .row-reveal:nth-child(4) {
  animation-delay: .44s
}

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

.spt .pg_head {
  background: #023F49;
  padding: 96px 32px 64px;
  position: relative;
  overflow: hidden
}

.spt .pg_head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(67deg, #FDD000 60%, transparent 100%)
}

.spt .pg_head_inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 64px
}

.spt .pg_head_text {
  flex: 1 1 0
}

.spt .pg_head_img {
  flex: 0 0 340px;
  width: 340px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: -1px 12px 36px 0 #023f491f
}

.spt .pg_head_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.spt .overline {
  display: inline-block;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FDD000;
  margin-bottom: 16px;
  position: relative;
  padding-top: 16px
}

.spt .overline::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #FDD000;
  margin-bottom: 8px
}

.spt .pg_head_h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 32px;
  max-width: 580px
}

.spt .pg_head_sub {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffb8;
  max-width: 480px
}

.spt .wave_div {
  display: block;
  width: 100%;
  line-height: 0;
  background: #023F49
}

.spt .wave_div svg {
  display: block;
  width: 100%;
  height: 56px
}

.spt .team_sec {
  background: #fff;
  padding: 96px 32px
}

.spt .team_inner {
  max-width: 1320px;
  margin: 0 auto
}

.spt .team_top {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 64px
}

.spt .team_top_label {
  flex: 0 0 220px
}

.spt .team_top_desc {
  flex: 1 1 0
}

.spt .team_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0 0 16px
}

.spt .team_desc_p {
  font-size: 14px;
  line-height: 1.65;
  color: #2d4a4f;
  margin: 0
}

.spt .team_desc_p::first-letter {
  font-size: 36px;
  line-height: 1;
  color: #FDD000;
  float: left;
  margin-right: 6px;
  margin-top: 2px
}

.spt .team_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.spt .team_card {
  background: #EDECEC;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -1px 7px 25px 0 #023f491a;
  transition: box-shadow .25s ease-out, transform .25s ease-out
}

.spt .team_card:hover {
  box-shadow: -1px 12px 36px 0 #023f491f;
  transform: translateY(-4px)
}

.spt .team_portrait {
  width: 100%;
  aspect-ratio: 7/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: -1px 3px 3px 0 #023f4912
}

.spt .team_portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.spt .team_name {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em
}

.spt .team_role {
  font-size: 14px;
  line-height: 1.4;
  color: #FDD000;
  background: #023F49;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  margin: 0
}

.spt .team_bio {
  font-size: 14px;
  line-height: 1.65;
  color: #3a5055;
  margin: 0
}

.spt .team_no_img {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.spt .asym_div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0 32px;
  max-width: 1320px;
  margin: 0 auto
}

.spt .asym_line_long {
  flex: 3 1 0;
  height: 2px;
  background: #023F49
}

.spt .asym_line_short {
  flex: 1 1 0;
  height: 2px;
  background: #FDD000
}

.spt .faq_sec {
  background: #EDECEC;
  padding: 96px 32px;
  position: relative
}

.spt .faq_sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(67deg, #fdd00012 0%, transparent 55%);
  pointer-events: none
}

.spt .faq_inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start
}

.spt .faq_aside {
  flex: 0 0 280px;
  position: sticky;
  top: 32px
}

.spt .faq_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0 0 16px
}

.spt .faq_aside_p {
  font-size: 14px;
  line-height: 1.65;
  color: #3a5055;
  margin: 0 0 32px
}

.spt .faq_contact_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #023F49;
  color: #FDD000;
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .2s ease-out
}

.spt .faq_contact_btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FDD000;
  transform: translateX(-100%);
  transition: transform .35s ease-out;
  z-index: 0
}

.spt .faq_contact_btn:hover::before {
  transform: translateX(0)
}

.spt .faq_contact_btn:hover {
  color: #023F49
}

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

.spt .faq_list {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.spt .faq_item {
  background: #fff;
  border-radius: 6px;
  box-shadow: -1px 3px 3px 0 #023f4912;
  overflow: hidden
}

.spt .faq_q {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  font-weight: 600;
  transition: background .2s ease-out
}

.spt .faq_q:hover {
  background: #fdd00014
}

.spt .faq_q::-webkit-details-marker {
  display: none
}

.spt .faq_icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #EDECEC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease-out, transform .3s ease-out
}

.spt .faq_item[open] .faq_icon {
  background: #FDD000;
  transform: rotate(45deg)
}

.spt .faq_icon svg {
  display: block
}

.spt .faq_ans {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: #3a5055
}

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

.spt .faq_ans_list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.65;
  color: #3a5055
}

.spt .faq_ans_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #FDD000;
  border-bottom: 2px solid #FDD000;
  transform: rotate(-45deg)
}

.spt .dashed_box {
  border: 2px dashed #023f4938;
  border-radius: 24px;
  padding: 32px;
  margin-top: 32px;
  background: #fdd0000a
}

.spt .dashed_box_label {
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #023F49;
  font-weight: 700;
  margin: 0 0 8px
}

.spt .dashed_box_val {
  font-size: 14px;
  line-height: 1.65;
  color: #3a5055;
  margin: 0
}

.spt .dashed_box_val a {
  color: #023F49;
  text-decoration: underline;
  text-underline-offset: 3px
}

@media (max-width: 1280px) {
  .spt .pg_head_h1 {
    font-size: 36px
  }

  .spt .pg_head_img {
    flex: 0 0 260px;
    width: 260px;
    height: 320px
  }

  .spt .team_grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .spt .faq_inner {
    gap: 32px
  }

  .spt .faq_aside {
    flex: 0 0 220px
  }
}

@media (max-width: 768px) {
  .spt .pg_head {
    padding: 64px 16px 48px
  }

  .spt .pg_head_inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start
  }

  .spt .pg_head_img {
    width: 100%;
    flex: none;
    height: 260px
  }

  .spt .pg_head_h1 {
    font-size: 36px
  }

  .spt .team_sec {
    padding: 64px 16px
  }

  .spt .team_top {
    flex-direction: column;
    gap: 16px
  }

  .spt .team_top_label {
    flex: none
  }

  .spt .team_grid {
    grid-template-columns: 1fr
  }

  .spt .faq_sec {
    padding: 64px 16px
  }

  .spt .faq_inner {
    flex-direction: column;
    gap: 32px
  }

  .spt .faq_aside {
    position: static;
    flex: none;
    width: 100%
  }

  .spt .asym_div {
    padding: 0 16px
  }
}

@media (max-width: 390px) {
  .spt .pg_head_h1 {
    font-size: 36px
  }

  .spt .team_sec {
    padding: 64px 16px
  }

  .spt .faq_sec {
    padding: 64px 16px
  }
}

.cnt-us {
  overflow-x: hidden
}

.cnt-us .pg-fade {
  opacity: 0;
  animation: fadeReveal .45s ease-out forwards
}

@keyframes fadeReveal {
  to {
    opacity: 1
  }
}

.cnt-us .pg-fade.delay-1 {
  animation-delay: .15s
}

.cnt-us .pg-fade.delay-2 {
  animation-delay: .25s
}

.cnt-us .pg-fade.delay-3 {
  animation-delay: .35s
}

.cnt-us .top-band {
  position: relative;
  background: #023F49;
  padding: 64px 32px 96px;
  overflow: hidden
}

.cnt-us .top-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #FDD000;
  opacity: .06;
  filter: blur(48px);
  pointer-events: none
}

.cnt-us .top-band::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #FDD000;
  opacity: .05;
  filter: blur(36px);
  pointer-events: none
}

.cnt-us .top-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-end
}

.cnt-us .top-band-text {
  flex: 1 1 0
}

.cnt-us .top-overline {
  display: block;
  width: 32px;
  height: 2px;
  background: #FDD000;
  margin-bottom: 16px
}

.cnt-us .top-label {
  font-size: 14px;
  line-height: 1.4;
  color: #FDD000;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.cnt-us .top-h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 700
}

.cnt-us .top-sub {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffb8;
  max-width: 420px;
  margin: 0
}

.cnt-us .top-band-meta {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cnt-us .meta-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  background: #ffffff0d;
  border: 1px solid #fdd00026;
  transition: background .25s ease-out, border-color .25s ease-out
}

.cnt-us .meta-item:hover {
  background: #fdd00014;
  border-color: #fdd00059
}

.cnt-us .meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #fdd0001f;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cnt-us .meta-icon svg {
  width: 18px;
  height: 18px
}

.cnt-us .meta-detail {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cnt-us .meta-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff80;
  text-transform: uppercase;
  letter-spacing: .08em
}

.cnt-us .meta-val {
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: color .2s ease-out
}

.cnt-us .meta-val:hover {
  color: #FDD000
}

.cnt-us .divider-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #EDECEC
}

.cnt-us .arr-shape {
  width: 10px;
  height: 10px;
  border-right: 2px solid #023F49;
  border-bottom: 2px solid #023F49;
  transform: rotate(-45deg);
  opacity: .35
}

.cnt-us .arr-shape.active {
  opacity: 1;
  border-color: #FDD000
}

.cnt-us .form-band {
  background: #fff;
  padding: 96px 32px
}

.cnt-us .form-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start
}

.cnt-us .form-side-col {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.cnt-us .side-overline {
  display: block;
  width: 32px;
  height: 2px;
  background: #FDD000;
  margin-bottom: 16px
}

.cnt-us .side-h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  font-weight: 700;
  margin: 0 0 16px
}

.cnt-us .side-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin: 0
}

.cnt-us .side-numbered {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px
}

.cnt-us .num-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.cnt-us .num-big {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: #FDD000;
  flex-shrink: 0;
  width: 40px
}

.cnt-us .num-text {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  padding-top: 8px
}

.cnt-us .form-col {
  flex: 1 1 0
}

.cnt-us .contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.cnt-us .form-row {
  display: flex;
  flex-direction: row;
  gap: 16px
}

.cnt-us .field-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0
}

.cnt-us .field-grp.full {
  flex: 1 1 100%
}

.cnt-us .f-label {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  font-weight: 600
}

.cnt-us .f-input {
  padding: 16px;
  border: 1px solid #EDECEC;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  background: #fff;
  outline: none;
  transition: border-color .2s ease-out, box-shadow .2s ease-out;
  width: 100%;
  box-sizing: border-box
}

.cnt-us .f-input::placeholder {
  color: #023f494d
}

.cnt-us .f-input:focus {
  border-color: #FDD000;
  box-shadow: -1px 3px 3px 0 #fdd00012
}

.cnt-us .radio-grp-label {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  font-weight: 600;
  margin-bottom: 8px;
  display: block
}

.cnt-us .radio-set {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.cnt-us .radio-opt {
  position: relative
}

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

.cnt-us .radio-opt label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid #EDECEC;
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  cursor: pointer;
  transition: background .2s ease-out, border-color .2s ease-out, color .2s ease-out;
  user-select: none
}

.cnt-us .radio-opt label::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #EDECEC;
  background: #fff;
  flex-shrink: 0;
  transition: border-color .2s ease-out, background .2s ease-out
}

.cnt-us .radio-opt input[type="radio"]:checked+label {
  background: #fdd0001f;
  border-color: #FDD000;
  color: #023F49
}

.cnt-us .radio-opt input[type="radio"]:checked+label::before {
  border-color: #023F49;
  background: #023F49
}

.cnt-us .radio-opt input[type="radio"]:focus-visible+label {
  outline: 2px solid #023F49;
  outline-offset: 2px
}

.cnt-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.cnt-us .privacy-row input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #023F49;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer
}

.cnt-us .privacy-text {
  font-size: 14px;
  line-height: 1.65;
  color: #555
}

.cnt-us .privacy-text a {
  color: #023F49;
  text-decoration: underline;
  transition: color .2s ease-out
}

.cnt-us .privacy-text a:hover {
  color: #FDD000
}

.cnt-us .submit-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 6px;
  border: 2px solid #023F49;
  background: #023F49;
  color: #FDD000;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: color .3s ease-out, border-color .3s ease-out;
  box-shadow: -1px 7px 25px 0 #023f491a
}

.cnt-us .submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FDD000;
  transform: translateX(-100%);
  transition: transform .35s ease-out;
  z-index: 0
}

.cnt-us .submit-btn:hover::before {
  transform: translateX(0)
}

.cnt-us .submit-btn:hover {
  color: #023F49;
  border-color: #FDD000
}

.cnt-us .submit-btn span {
  position: relative;
  z-index: 1
}

.cnt-us .submit-btn:focus-visible {
  outline: 2px solid #FDD000;
  outline-offset: 3px
}

.cnt-us .drop-cap-p::first-letter {
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px
}

@media (max-width: 1280px) {
  .cnt-us .top-band-inner {
    gap: 32px
  }

  .cnt-us .top-h1 {
    font-size: 52px
  }

  .cnt-us .form-band-inner {
    gap: 32px
  }
}

@media (max-width: 768px) {
  .cnt-us .top-band {
    padding: 64px 16px
  }

  .cnt-us .top-band-inner {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start
  }

  .cnt-us .top-h1 {
    font-size: 36px
  }

  .cnt-us .top-band-meta {
    flex: unset;
    width: 100%
  }

  .cnt-us .form-band {
    padding: 64px 16px
  }

  .cnt-us .form-band-inner {
    flex-direction: column;
    gap: 32px
  }

  .cnt-us .form-side-col {
    flex: unset;
    width: 100%
  }

  .cnt-us .form-row {
    flex-direction: column;
    gap: 16px
  }

  .cnt-us .side-h2 {
    font-size: 36px
  }
}

@media (max-width: 390px) {
  .cnt-us .top-h1 {
    font-size: 36px
  }

  .cnt-us .radio-set {
    flex-direction: column
  }

  .cnt-us .submit-btn {
    width: 100%;
    text-align: center
  }
}

.abt-pg {
  overflow-x: hidden;
  position: relative
}

.abt-pg .pg-schema {
  display: none
}

.abt-pg .title-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 580px;
  background-color: #023F49;
  position: relative;
  overflow: hidden
}

.abt-pg .title-row::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: #fdd00021;
  border-radius: 40px;
  top: -64px;
  left: 180px;
  filter: blur(48px);
  pointer-events: none
}

.abt-pg .title-row::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: #fdd00017;
  border-radius: 40px;
  bottom: 32px;
  right: 96px;
  filter: blur(36px);
  pointer-events: none
}

.abt-pg .img_col {
  position: relative;
  overflow: hidden
}

.abt-pg .img_col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.abt-pg .img_col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #023F49 100%);
  pointer-events: none
}

.abt-pg .txt_col {
  padding: 64px 96px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1
}

.abt-pg .txt_col .overline {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FDD000;
  margin-bottom: 16px
}

.abt-pg .txt_col .overline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #FDD000;
  vertical-align: middle;
  margin-right: 8px
}

.abt-pg .pg-h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 32px
}

.abt-pg .pg-h1 em {
  font-style: normal;
  color: #FDD000
}

.abt-pg .intro_para {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffd1;
  max-width: 520px;
  margin: 0 0 32px
}

.abt-pg .intro_para::first-letter {
  font-size: 36px;
  line-height: 1.15;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px
}

.abt-pg .stat_row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 8px
}

.abt-pg .stat_item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-pg .stat_num {
  font-size: 36px;
  line-height: 1.15;
  color: #FDD000;
  font-weight: 700
}

.abt-pg .stat_lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffffa6;
  text-transform: uppercase;
  letter-spacing: .08em
}

.abt-pg .divider-curve-1 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #023F49
}

.abt-pg .divider-curve-1 svg {
  display: block;
  width: 100%
}

.abt-pg .team_band {
  background: #EDECEC;
  padding: 96px 0 64px;
  position: relative
}

.abt-pg .team_band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0px, transparent 6px, #023f490a 6px, #023f490a 7px, transparent 7px, transparent 16px, #023f4906 16px, #023f4906 18px, transparent 18px, transparent 32px);
  pointer-events: none
}

.abt-pg .band_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.abt-pg .band_top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 2px solid #FDD000;
  margin-bottom: 64px
}

.abt-pg .band_top_item {
  padding: 32px 32px 0 0;
  border-right: 1px dashed #023f4933
}

.abt-pg .band_top_item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px
}

.abt-pg .band_top_item:nth-child(2) {
  padding-left: 32px
}

.abt-pg .band_top_lbl {
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #023F49;
  opacity: .6;
  margin-bottom: 8px
}

.abt-pg .band_top_val {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  font-weight: 700
}

.abt-pg .team_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.abt-pg .team_card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: -1px 7px 25px 0 #023f491a;
  transition: box-shadow .25s ease-out, transform .2s ease-out
}

.abt-pg .team_card:hover {
  box-shadow: -1px 12px 36px 0 #023f491f;
  transform: translateY(-2px)
}

.abt-pg .team_portrait {
  width: 140px;
  flex-shrink: 0;
  aspect-ratio: 7/9;
  overflow: hidden
}

.abt-pg .team_portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.abt-pg .team_bio {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px
}

.abt-pg .team_name {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0
}

.abt-pg .team_role {
  font-size: 14px;
  line-height: 1.4;
  color: #FDD000;
  text-transform: uppercase;
  letter-spacing: .09em
}

.abt-pg .team_desc {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin: 8px 0 0
}

.abt-pg .team_no_portrait {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  box-shadow: -1px 7px 25px 0 #023f491a;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-pg .team_no_portrait .team_name {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0
}

.abt-pg .team_no_portrait .team_role {
  font-size: 14px;
  line-height: 1.4;
  color: #FDD000;
  text-transform: uppercase;
  letter-spacing: .09em
}

.abt-pg .team_no_portrait .team_desc {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin: 8px 0 0
}

.abt-pg .divider-curve-2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #EDECEC
}

.abt-pg .divider-curve-2 svg {
  display: block;
  width: 100%
}

.abt-pg .method_band {
  background: #fff;
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden
}

.abt-pg .method_band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(67deg, transparent 40%, #fdd0000f 40%, #fdd0000f 55%, transparent 55%);
  pointer-events: none
}

.abt-pg .method_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.abt-pg .method_layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start
}

.abt-pg .method_aside {
  position: sticky;
  top: 32px
}

.abt-pg .method_aside .overline {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #023F49;
  opacity: .6;
  margin-bottom: 16px
}

.abt-pg .method_aside .overline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #FDD000;
  vertical-align: middle;
  margin-right: 8px
}

.abt-pg .method_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0 0 16px
}

.abt-pg .method_aside_para {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 32px
}

.abt-pg .cta_link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #FDD000;
  color: #023F49;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 3px 3px 0 #fdd00012;
  transition: box-shadow .3s ease-out, color .2s ease-out
}

.abt-pg .cta_link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #023F49;
  transition: left .35s ease-out;
  z-index: 0
}

.abt-pg .cta_link:hover::before {
  left: 0
}

.abt-pg .cta_link:hover {
  color: #FDD000;
  box-shadow: -1px 7px 25px 0 #fdd0001a
}

.abt-pg .cta_link span {
  position: relative;
  z-index: 1
}

.abt-pg .cta_link .lnr {
  position: relative;
  z-index: 1
}

.abt-pg .method_list {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.abt-pg .method_item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 32px;
  border-radius: 6px;
  background: #EDECEC;
  box-shadow: -1px 3px 3px 0 #023f4912;
  transition: box-shadow .25s ease-out, background .2s ease-out;
  position: relative;
  overflow: hidden
}

.abt-pg .method_item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: #FDD000;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  transition: opacity .2s ease-out
}

.abt-pg .method_item:hover {
  box-shadow: -1px 12px 36px 0 #023f491f;
  background: #fff
}

.abt-pg .method_item:hover::after {
  opacity: 1
}

.abt-pg .method_icon {
  width: 48px;
  height: 48px;
  background: #023F49;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: shadow-pulse 3s ease-out infinite
}

@keyframes shadow-pulse {
  0% {
    box-shadow: -1px 3px 3px 0 #023f4912
  }

  50% {
    box-shadow: -1px 12px 36px 0 #023f492e
  }

  100% {
    box-shadow: -1px 3px 3px 0 #023f4912
  }
}

.abt-pg .method_icon .lnr {
  color: #FDD000;
  font-size: 22px
}

.abt-pg .method_text {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-pg .method_h4 {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .07em
}

.abt-pg .method_para {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0
}

.abt-pg .method_img_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px
}

.abt-pg .method_img_wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3
}

.abt-pg .method_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease-out
}

.abt-pg .method_img_wrap:hover img {
  transform: scale(1.03)
}

.abt-pg .method_img_single {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-top: 16px
}

.abt-pg .method_img_single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.abt-pg .dashed_connector {
  width: 1px;
  height: 32px;
  border-left: 2px dashed #023f4940;
  margin: 0 auto
}

@media (max-width: 1280px) {
  .abt-pg .title-row {
    grid-template-columns: 220px 1fr
  }

  .abt-pg .txt_col {
    padding: 64px 64px 64px 32px
  }

  .abt-pg .pg-h1 {
    font-size: 52px
  }
}

@media (max-width: 768px) {
  .abt-pg .title-row {
    grid-template-columns: 1fr
  }

  .abt-pg .img_col {
    height: 260px
  }

  .abt-pg .txt_col {
    padding: 32px
  }

  .abt-pg .pg-h1 {
    font-size: 36px
  }

  .abt-pg .stat_row {
    flex-direction: column;
    gap: 16px
  }

  .abt-pg .band_top {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .abt-pg .band_top_item {
    border-right: none;
    padding: 16px 0 0
  }

  .abt-pg .band_top_item:last-child {
    padding-left: 0
  }

  .abt-pg .band_top_item:nth-child(2) {
    padding-left: 0
  }

  .abt-pg .team_grid {
    grid-template-columns: 1fr
  }

  .abt-pg .method_layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .abt-pg .method_aside {
    position: static
  }

  .abt-pg .method_img_row {
    grid-template-columns: 1fr
  }
}

@media (max-width: 390px) {
  .abt-pg .txt_col {
    padding: 32px 16px
  }

  .abt-pg .band_inner {
    padding: 0 16px
  }

  .abt-pg .method_inner {
    padding: 0 16px
  }

  .abt-pg .pg-h1 {
    font-size: 36px
  }

  .abt-pg .team_card {
    flex-direction: column
  }

  .abt-pg .team_portrait {
    width: 100%;
    aspect-ratio: 7/4
  }

  .abt-pg .method_item {
    grid-template-columns: 1fr
  }
}

.dbt {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden
}

.dbt .pg_wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box
}

.dbt ::selection {
  background: #FDD000;
  color: #023F49
}

.dbt .overline {
  display: block;
  width: 40px;
  height: 2px;
  background: #FDD000;
  margin-bottom: 16px
}

.dbt .overline.thick {
  width: 64px;
  height: 3px
}

.dbt .t_block {
  background: #023F49;
  padding: 96px 0 0;
  position: relative
}

.dbt .t_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(67deg, #023f4900 60%, #fdd00014 100%);
  pointer-events: none
}

.dbt .t_block .pg_wrap {
  position: relative
}

.dbt .t_cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.dbt .t_text {
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.dbt .t_label {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FDD000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.dbt .t_label::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #FDD000;
  flex-shrink: 0
}

.dbt .t_h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin: 0
}

.dbt .t_h1 span {
  color: #FDD000
}

.dbt .t_sub {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffb8;
  margin: 0;
  max-width: 420px
}

.dbt .t_sub::first-letter {
  font-size: 36px;
  line-height: 1.15;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px
}

.dbt .t_cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FDD000;
  color: #023F49;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: color .25s ease-out, box-shadow .35s ease-out;
  align-self: flex-start;
  box-shadow: -1px 7px 25px 0 #fdd0002e
}

.dbt .t_cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #023F49;
  transform: translateX(-100%);
  transition: transform .3s ease-out;
  z-index: 0
}

.dbt .t_cta:hover::before {
  transform: translateX(0)
}

.dbt .t_cta:hover {
  color: #FDD000
}

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

.dbt .t_img_col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end
}

.dbt .t_img_frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 0
}

.dbt .t_img_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) contrast(1.1) brightness(0.88);
  mix-blend-mode: normal;
  transition: filter .45s ease-out
}

.dbt .t_img_frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #fdd0002e 0%, #023f498c 100%);
  mix-blend-mode: multiply;
  pointer-events: none
}

.dbt .t_img_frame::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 2px solid #fdd00040;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none
}

.dbt .t_geo {
  position: absolute;
  bottom: 32px;
  left: -32px;
  width: 64px;
  height: 64px;
  border: 1px solid #fdd0002e;
  border-radius: 2px;
  transform: rotate(-12deg);
  pointer-events: none
}

.dbt .t_geo2 {
  position: absolute;
  top: 64px;
  left: -48px;
  width: 32px;
  height: 32px;
  background: #fdd0001a;
  border-radius: 2px;
  transform: rotate(8deg);
  pointer-events: none
}

.dbt .t_stats {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 8px
}

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

.dbt .t_stat_num {
  font-size: 36px;
  line-height: 1.15;
  color: #FDD000;
  font-weight: 700
}

.dbt .t_stat_lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff8c
}

.dbt .fit_sec {
  background: #EDECEC;
  padding: 96px 0;
  position: relative
}

.dbt .fit_sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FDD000 0%, #023F49 100%)
}

.dbt .fit_grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start
}

.dbt .fit_aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px
}

.dbt .fit_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0
}

.dbt .fit_note {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin: 0;
  opacity: .72
}

.dbt .fit_img_wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: -1px 12px 36px 0 #023f491f
}

.dbt .fit_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease-out
}

.dbt .fit_img_wrap:hover img {
  transform: scale(1.03)
}

.dbt .fit_body {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.dbt .fit_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt .fit_list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  padding: 16px;
  background: #fff;
  border-radius: 6px;
  box-shadow: -1px 3px 3px 0 #023f4912;
  transition: box-shadow .25s ease-out
}

.dbt .fit_list li:hover {
  box-shadow: -1px 7px 25px 0 #023f491a
}

.dbt .fit_arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px
}

.dbt .fit_p {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin: 0
}

.dbt .fit_p::first-letter {
  font-size: 36px;
  line-height: 1.15;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px
}

.dbt .obj_sec {
  background: #fff;
  padding: 96px 0;
  position: relative
}

.dbt .obj_sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #023F49 40%, #FDD000 100%)
}

.dbt .obj_inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start
}

.dbt .obj_main {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.dbt .obj_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0
}

.dbt .obj_p {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin: 0;
  opacity: .85
}

.dbt .obj_p::first-letter {
  font-size: 36px;
  line-height: 1.15;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px
}

.dbt .obj_chart_col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center
}

.dbt .obj_chart_lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  text-align: center;
  opacity: .65
}

.dbt .spider_wrap {
  width: 240px;
  height: 240px;
  flex-shrink: 0
}

.dbt .spider_wrap svg {
  width: 100%;
  height: 100%
}

.dbt .obj_qa {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt .obj_q {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #023F49;
  margin: 0;
  padding: 16px;
  background: #EDECEC;
  border-radius: 6px
}

.dbt .obj_a {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin: 0;
  padding: 0 16px 16px;
  opacity: .8
}

.dbt .obj_img_wrap {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: -1px 7px 25px 0 #023f491a;
  margin-top: 16px
}

.dbt .obj_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.dbt .rel_sec {
  background: #023F49;
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.dbt .rel_sec .bg_band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(67deg, #fdd0000a 0%, transparent 55%);
  pointer-events: none
}

.dbt .rel_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start
}

.dbt .rel_h2 {
  font-size: 36px;
  line-height: 1.15;
  color: #fff;
  margin: 0
}

.dbt .rel_intro {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffb8;
  margin: 0
}

.dbt .rel_intro::first-letter {
  font-size: 36px;
  line-height: 1.15;
  color: #FDD000;
  float: left;
  margin-right: 8px;
  margin-top: 4px
}

.dbt .rel_steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.dbt .rel_step {
  background: #ffffff0f;
  border-radius: 6px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 2px solid transparent;
  transition: border-color .25s ease-out, background .35s ease-out
}

.dbt .rel_step:hover {
  border-color: #FDD000;
  background: #ffffff1a
}

.dbt .rel_step_num {
  font-size: 36px;
  line-height: 1.15;
  color: #fdd00059;
  font-weight: 700
}

.dbt .rel_step_h {
  font-size: 14px;
  line-height: 1.4;
  color: #FDD000;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em
}

.dbt .rel_step_p {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffa6;
  margin: 0
}

.dbt .rel_bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #ffffff1f
}

.dbt .rel_portrait_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt .rel_portrait_frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0;
  box-shadow: -1px 12px 36px 0 #023f4933;
  position: relative
}

.dbt .rel_portrait_frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #fdd0004d;
  pointer-events: none
}

.dbt .rel_portrait_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.dbt .rel_name {
  font-size: 14px;
  line-height: 1.4;
  color: #FDD000;
  font-weight: 700
}

.dbt .rel_role {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff8c
}

.dbt .rel_quote_col {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.dbt .rel_quote {
  font-size: 14px;
  line-height: 1.85;
  color: #fffc;
  margin: 0;
  padding: 32px;
  background: #ffffff0d;
  border-radius: 6px;
  position: relative
}

.dbt .rel_img_wrap {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: -1px 7px 25px 0 #023f492e
}

.dbt .rel_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.80) saturate(0.75)
}

@keyframes hl_cycle {

  0%,
  18% {
    color: #FDD000
  }

  20%,
  100% {
    color: #fffc
  }
}

.dbt .rel_quote .hl_w1 {
  animation: hl_cycle 9s ease-out infinite 0s
}

.dbt .rel_quote .hl_w2 {
  animation: hl_cycle 9s ease-out infinite 3s
}

.dbt .rel_quote .hl_w3 {
  animation: hl_cycle 9s ease-out infinite 6s
}

@keyframes rot_settle {
  0% {
    transform: rotate(-6deg) translateY(24px);
    opacity: 0
  }

  70% {
    transform: rotate(1.5deg) translateY(-4px);
    opacity: 1
  }

  100% {
    transform: rotate(0deg) translateY(0);
    opacity: 1
  }
}

.dbt .t_img_frame {
  animation: rot_settle .55s ease-out both
}

.dbt .rel_step:nth-child(1) {
  animation: rot_settle .35s ease-out both .05s
}

.dbt .rel_step:nth-child(2) {
  animation: rot_settle .4s ease-out both .15s
}

.dbt .rel_step:nth-child(3) {
  animation: rot_settle .4s ease-out both .25s
}

.dbt .rel_step:nth-child(4) {
  animation: rot_settle .45s ease-out both .35s
}

@media (max-width: 1280px) {
  .dbt .t_h1 {
    font-size: 52px
  }

  .dbt .rel_steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .dbt .t_cols {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt .t_img_col {
    align-items: flex-start
  }

  .dbt .t_img_frame {
    max-width: 100%
  }

  .dbt .t_h1 {
    font-size: 36px
  }

  .dbt .t_text {
    padding-bottom: 32px
  }

  .dbt .t_stats {
    flex-direction: column;
    gap: 16px
  }

  .dbt .fit_grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt .obj_inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt .obj_chart_col {
    align-items: flex-start
  }

  .dbt .rel_top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt .rel_steps {
    grid-template-columns: 1fr 1fr
  }

  .dbt .rel_bottom {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .dbt .rel_portrait_frame {
    max-width: 200px
  }
}

@media (max-width: 390px) {
  .dbt .pg_wrap {
    padding: 0 16px
  }

  .dbt .t_h1 {
    font-size: 36px
  }

  .dbt .rel_steps {
    grid-template-columns: 1fr
  }

  .dbt .fit_grid {
    gap: 32px
  }
}

.srv {
  position: relative;
  overflow-x: clip
}

.srv .prog_wrap {
  background: #fff;
  padding: 96px 0 0
}

.srv .prog_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px
}

.srv .prog_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 64px
}

.srv .overline_bar {
  display: block;
  width: 48px;
  height: 2px;
  background: #FDD000;
  margin-bottom: 16px
}

.srv .prog_label {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #023F49;
  margin-bottom: 16px
}

.srv .prog_h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #023F49;
  max-width: 720px;
  margin: 0 auto 32px;
  font-weight: 700
}

.srv .prog_lead {
  font-size: 14px;
  line-height: 1.65;
  color: #3a3a3a;
  max-width: 560px;
  margin: 0 auto
}

.srv .prog_img_row {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-end;
  padding-bottom: 0
}

.srv .prog_img_main {
  flex: 1 1 auto;
  position: relative
}

.srv .prog_img_main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px 24px 0 0;
  display: block;
  filter: saturate(0.55) brightness(0.95)
}

.srv .prog_img_badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: #FDD000;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -1px 7px 25px 0 #023f491a
}

.srv .prog_img_badge .badge_num {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: #023F49
}

.srv .prog_img_badge .badge_txt {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  font-weight: 600
}

.srv .prog_side_col {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 32px
}

.srv .prog_stat {
  background: #EDECEC;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.srv .prog_stat .stat_val {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: #023F49
}

.srv .prog_stat .stat_desc {
  font-size: 14px;
  line-height: 1.4;
  color: #3a3a3a
}

.srv .wave_div {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -1px
}

.srv .wave_div svg {
  display: block;
  width: 100%
}

.srv .svc_grid_wrap {
  background: #023F49;
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.srv .edge_glow {
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px 0 #fdd0000f;
  animation: edgepulse 4s ease-out infinite alternate
}

@keyframes edgepulse {
  0% {
    box-shadow: inset 0 0 40px 0 #fdd0000a
  }

  100% {
    box-shadow: inset 0 0 90px 8px #fdd00021
  }
}

.srv .concentric_dec {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: .07
}

.srv .concentric_dec circle {
  fill: none;
  stroke: #FDD000;
  stroke-width: 1.5
}

.srv .svc_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px
}

.srv .svc_head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px
}

.srv .svc_head_left {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.srv .svc_overline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.srv .svc_overline .ov_bar {
  width: 32px;
  height: 2px;
  background: #FDD000;
  flex-shrink: 0
}

.srv .svc_overline .ov_txt {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FDD000
}

.srv .svc_h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  max-width: 480px
}

.srv .svc_head_desc {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffb3;
  max-width: 320px
}

.srv .svc_dense_grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px
}

.srv .svc_anchor {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  background: #FDD000;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  position: relative;
  overflow: hidden
}

.srv .svc_anchor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(67deg, transparent 60%, #023f4914 100%);
  pointer-events: none;
  border-radius: 24px
}

.srv .anchor_icon {
  width: 48px;
  height: 48px;
  background: #023F49;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.srv .anchor_icon svg {
  width: 24px;
  height: 24px
}

.srv .anchor_body {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.srv .anchor_h3 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: #023F49
}

.srv .anchor_txt {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49
}

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

.srv .anchor_list li {
  font-size: 14px;
  line-height: 1.4;
  color: #023F49;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.srv .arrow_mark {
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-block;
  width: 14px;
  height: 14px
}

.srv .arrow_mark svg {
  width: 14px;
  height: 14px
}

.srv .svc_card {
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background .25s ease-out, border-color .25s ease-out
}

.srv .svc_card:hover {
  background: #fdd00014;
  border-color: #fdd0004d
}

.srv .svc_card .card_overlay {
  position: absolute;
  inset: 0;
  background: #fdd0001f;
  opacity: 0;
  transition: opacity .35s ease-out;
  pointer-events: none;
  border-radius: 6px
}

.srv .svc_card:hover .card_overlay {
  opacity: 1
}

.srv .card_icon_wrap {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #fdd00026;
  display: flex;
  align-items: center;
  justify-content: center
}

.srv .card_icon_wrap svg {
  width: 20px;
  height: 20px
}

.srv .card_h4 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em
}

.srv .card_txt {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffa6
}

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

.srv .card_chk_list li {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffffbf;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.srv .chk_mark {
  flex-shrink: 0;
  margin-top: 1px
}

.srv .chk_mark svg {
  width: 14px;
  height: 14px
}

.srv .svc_chart_row {
  margin-top: 64px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center
}

.srv .chart_col {
  flex: 1 1 auto
}

.srv .chart_h4 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #FDD000;
  margin-bottom: 16px
}

.srv .chart_svg_wrap {
  background: #ffffff0a;
  border-radius: 6px;
  padding: 32px;
  border: 1px solid #ffffff14
}

.srv .chart_svg_wrap svg {
  width: 100%;
  height: auto;
  display: block
}

.srv .chart_desc_col {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.srv .chart_desc_h3 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff
}

.srv .chart_desc_p {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffa6
}

.srv .chart_milestones {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.srv .milestone {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.srv .milestone_dot {
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #FDD000;
  flex-shrink: 0;
  margin-top: 6px
}

.srv .milestone_label {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffffb3
}

.srv .milestone_label strong {
  color: #fff;
  font-weight: 600
}

.srv .team_row {
  margin-top: 64px;
  display: flex;
  flex-direction: row;
  gap: 16px
}

.srv .team_card {
  flex: 1 1 auto;
  background: #ffffff0a;
  border-radius: 6px;
  border: 1px solid #ffffff14;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 16px;
  align-items: flex-start;
  transition: background .2s ease-out
}

.srv .team_card:hover {
  background: #ffffff14
}

.srv .team_portrait {
  width: 72px;
  height: 92px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0
}

.srv .team_portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

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

.srv .team_name {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff
}

.srv .team_role {
  font-size: 14px;
  line-height: 1.4;
  color: #FDD000
}

.srv .team_quote {
  font-size: 14px;
  line-height: 1.65;
  color: #fff9
}

.srv .zigzag_div {
  display: block;
  width: 100%;
  line-height: 0;
  background: #023F49
}

.srv .zigzag_div svg {
  display: block;
  width: 100%
}

@media (max-width: 1280px) {
  .srv .prog_h1 {
    font-size: 52px
  }

  .srv .svc_dense_grid {
    grid-template-columns: 1.4fr 1fr 1fr
  }

  .srv .svc_chart_row {
    flex-direction: column;
    gap: 32px
  }

  .srv .chart_desc_col {
    width: 100%
  }
}

@media (max-width: 768px) {
  .srv .prog_h1 {
    font-size: 36px
  }

  .srv .prog_img_row {
    flex-direction: column
  }

  .srv .prog_side_col {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap
  }

  .srv .prog_stat {
    flex: 1 1 140px
  }

  .srv .svc_head {
    flex-direction: column;
    align-items: flex-start
  }

  .srv .svc_dense_grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .srv .svc_anchor {
    grid-row: auto;
    grid-column: auto;
    min-height: 280px
  }

  .srv .team_row {
    flex-direction: column
  }

  .srv .svc_chart_row {
    flex-direction: column;
    gap: 32px
  }

  .srv .chart_desc_col {
    width: 100%
  }
}

@media (max-width: 390px) {

  .srv .prog_inner,
  .srv .svc_inner {
    padding: 0 16px
  }

  .srv .prog_h1 {
    font-size: 36px
  }

  .srv .prog_img_main img {
    height: 280px
  }

  .srv .svc_h2 {
    font-size: 36px
  }
}

.success_page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background-color: #EDECEC
}

.success_page .result_wrap {
  max-width: 600px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 64px;
  box-shadow: -1px 7px 25px 0 #023f491a;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px
}

.success_page .icon_wrap {
  width: 72px;
  height: 72px;
  border-radius: 40px;
  background-color: #FDD000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: -1px 3px 3px 0 #fdd00012
}

.success_page .icon_wrap svg {
  display: block
}

.success_page .result_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center
}

.success_page .result_title {
  font-size: 36px;
  line-height: 1.15;
  color: #023F49;
  margin: 0;
  font-weight: 700
}

.success_page .result_text {
  font-size: 14px;
  line-height: 1.65;
  color: #023F49;
  margin: 0;
  max-width: 420px;
  opacity: .82
}

.success_page .divider_line {
  width: 48px;
  height: 2px;
  background-color: #FDD000;
  border-radius: 2px
}

.success_page .back_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: #023F49;
  color: #FDD000;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .25s ease-out, box-shadow .35s ease-out;
  box-shadow: -1px 3px 3px 0 #023f4912
}

.success_page .back_btn::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  background-color: #FDD000;
  transition: left .3s ease-out;
  z-index: 0;
  border-radius: 6px
}

.success_page .back_btn:hover::before {
  left: 0
}

.success_page .back_btn:hover {
  color: #023F49;
  box-shadow: -1px 7px 25px 0 #023f491a
}

.success_page .back_btn:focus-visible {
  outline: 2px solid #FDD000;
  outline-offset: 3px
}

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

.success_page .back_btn svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform .2s ease-out
}

.success_page .back_btn:hover svg {
  transform: translateX(-3px)
}

@media (max-width: 768px) {
  .success_page {
    padding: 64px 16px
  }

  .success_page .result_wrap {
    padding: 32px;
    gap: 32px
  }

  .success_page .result_title {
    font-size: 36px
  }
}

@media (max-width: 390px) {
  .success_page .result_wrap {
    padding: 32px 16px
  }

  .success_page .result_title {
    font-size: 36px
  }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
