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

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #002258;
  background: #fff
}

.pg-hdr {
  position: relative;
  z-index: 100;
  background: #002258
}

.pg-hdr__top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #ff334a38
}

.pg-hdr__contact-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 0
}

.pg-hdr__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FAEEE8;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
  transition: color .15s cubic-bezier(0.4, 0, 1, 1)
}

.pg-hdr__contact-link:hover,
.pg-hdr__contact-link:focus {
  color: #FF334A;
  outline: none
}

.pg-hdr__contact-link:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: 2px;
  border-radius: 2px
}

.pg-hdr__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.pg-hdr__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px
}

.logo-pod {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 24px 0;
  position: relative
}

.logo-pod::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: #faeee82e
}

.logo-pod__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 2px 1px 6px 0 #ff334a12 2px 5px 22px 0 #00225814;
  background: #faeee8f7;
  padding: 8px
}

.pg-nav {
  flex: 1;
  display: flex;
  align-items: center
}

.pg-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0
}

.pg-nav__item {
  display: flex;
  align-items: center;
  position: relative
}

.pg-nav__item+.pg-nav__item::before {
  content: "";
  width: 1px;
  height: 20px;
  background: #faeee82e;
  flex-shrink: 0
}

.pg-nav__lnk {
  display: block;
  padding: 24px;
  color: #FAEEE8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1), background .12s cubic-bezier(0.4, 0, 1, 1);
  border-radius: 0;
  position: relative
}

.pg-nav__lnk::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #FF334A;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.pg-nav__lnk:hover,
.pg-nav__lnk:focus {
  color: #FF334A;
  outline: none
}

.pg-nav__lnk:hover::after,
.pg-nav__lnk:focus::after {
  transform: scaleX(1)
}

.pg-nav__lnk:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: -3px
}

.pg-nav__lnk--active {
  color: #FF334A
}

.pg-nav__lnk--active::after {
  transform: scaleX(1)
}

.pg-hdr__badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF334A 0%, #c4001e 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 2px 5px 22px 0 #ff334a14
}

.pg-ftr {
  background: #002258;
  padding: 96px 0 0
}

.pg-ftr__deck {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 96px;
  align-items: start
}

.pg-ftr__brand-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ftr-logo-pod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #faeee8f7;
  border-radius: 16px;
  box-shadow: 2px 1px 6px 0 #00225812 2px 12px 36px 0 #0022581c;
  padding: 8px
}

.ftr-logo-pod__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block
}

.pg-ftr__brand-name {
  font-size: 16px;
  font-weight: 700;
  color: #FAEEE8;
  line-height: 1.4;
  letter-spacing: .03em
}

.pg-ftr__brand-desc {
  font-size: 13px;
  color: #faeee8a6;
  line-height: 1.6
}

.pg-ftr__links-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 8px
}

.ftr-nav-grp__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FF334A;
  margin: 0 0 24px;
  line-height: 1.15
}

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

.ftr-nav-grp__lnk {
  display: inline-block;
  color: #faeee8cc;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  transition: color .13s cubic-bezier(0.4, 0, 1, 1);
  padding: 8px 0
}

.ftr-nav-grp__lnk:hover,
.ftr-nav-grp__lnk:focus {
  color: #FF334A;
  outline: none
}

.ftr-nav-grp__lnk:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: 2px;
  border-radius: 2px
}

.pg-ftr__contact-grp {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #faeee8cc;
  font-size: 13px;
  line-height: 1.6
}

.ftr-contact-item__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px
}

.ftr-contact-item__lnk {
  color: #faeee8cc;
  text-decoration: none;
  transition: color .13s cubic-bezier(0.4, 0, 1, 1)
}

.ftr-contact-item__lnk:hover,
.ftr-contact-item__lnk:focus {
  color: #FF334A;
  outline: none
}

.ftr-contact-item__lnk:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: 2px;
  border-radius: 2px
}

.pg-ftr__bottom {
  max-width: 1280px;
  margin: 96px auto 0;
  padding: 24px 48px;
  border-top: 1px solid #faeee81a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.pg-ftr__copy {
  font-size: 13px;
  color: #faeee873;
  line-height: 1.6
}

.pg-ftr__legal-lnk {
  font-size: 13px;
  color: #faeee873;
  text-decoration: none;
  transition: color .13s cubic-bezier(0.4, 0, 1, 1)
}

.pg-ftr__legal-lnk:hover,
.pg-ftr__legal-lnk:focus {
  color: #FAEEE8;
  outline: none
}

.pg-ftr__legal-lnk:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: 2px;
  border-radius: 2px
}

.ck-toast {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 560px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 2px 12px 36px 0 #0022581c;
  z-index: 8000;
  padding: 24px;
  border: 1px solid #0022581a
}

.ck-toast__desc {
  font-size: 13px;
  color: #002258;
  line-height: 1.6;
  margin: 0 0 8px
}

.ck-toast__policy {
  font-size: 13px;
  color: #00225899;
  line-height: 1.6;
  margin: 0 0 24px
}

.ck-toast__policy a {
  color: #FF334A;
  text-decoration: underline;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.ck-toast__policy a:hover,
.ck-toast__policy a:focus {
  color: #002258;
  outline: none
}

.ck-toast__policy a:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: 2px;
  border-radius: 2px
}

.ck-toast__head {
  font-size: 16px;
  font-weight: 700;
  color: #002258;
  line-height: 1.4;
  margin: 0 0 8px
}

.ck-toast__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.ck-btn {
  flex: 1;
  min-width: 120px;
  padding: 8px 24px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s cubic-bezier(0.4, 0, 1, 1), color .15s cubic-bezier(0.4, 0, 1, 1), border-color .15s cubic-bezier(0.4, 0, 1, 1);
  min-height: 44px;
  position: relative;
  overflow: hidden
}

.ck-btn--accept {
  background: transparent;
  color: #002258;
  border: 2px solid #002258
}

.ck-btn--accept:hover,
.ck-btn--accept:focus {
  background: #002258;
  color: #fff;
  outline: none
}

.ck-btn--accept:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: 2px
}

.ck-btn--decline {
  background: transparent;
  color: #FF334A;
  border: 2px solid #FF334A
}

.ck-btn--decline:hover,
.ck-btn--decline:focus {
  background: #FF334A;
  color: #fff;
  outline: none
}

.ck-btn--decline:focus-visible {
  outline: 3px solid #002258;
  outline-offset: 2px
}

.pref-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7900;
  display: none
}

.pref-tab__btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: #002258;
  color: #FAEEE8;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 24px 8px;
  border-radius: 0 8px 8px 0;
  min-height: 44px;
  transition: background .13s cubic-bezier(0.4, 0, 1, 1), color .13s cubic-bezier(0.4, 0, 1, 1)
}

.pref-tab__btn:hover,
.pref-tab__btn:focus {
  background: #FF334A;
  color: #fff;
  outline: none
}

.pref-tab__btn:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: 2px
}

.pref-panel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7950;
  display: none;
  background: #fff;
  border-radius: 0 16px 16px 0;
  box-shadow: 2px 12px 36px 0 #0022581c;
  padding: 24px;
  width: 320px;
  max-width: 90vw
}

.pref-panel__title {
  font-size: 16px;
  font-weight: 700;
  color: #002258;
  line-height: 1.4;
  margin: 0 0 24px
}

.pref-panel__note {
  font-size: 13px;
  color: #002258b3;
  line-height: 1.6;
  margin: 0 0 24px
}

.pref-panel__btns {
  display: flex;
  gap: 8px
}

.pref-panel__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .12s cubic-bezier(0.4, 0, 1, 1);
  color: #002258
}

.pref-panel__close:hover,
.pref-panel__close:focus {
  background: #00225814;
  outline: none
}

.pref-panel__close:focus-visible {
  outline: 3px solid #FF334A;
  outline-offset: 2px
}

@media (max-width: 1024px) {
  .pg-hdr__top {
    padding: 0 24px
  }

  .pg-hdr__bottom {
    padding: 0 24px;
    gap: 24px
  }

  .pg-nav__lnk {
    padding: 24px 16px
  }

  .pg-nav__lnk::after {
    left: 16px;
    right: 16px
  }

  .pg-ftr__deck {
    padding: 0 24px;
    gap: 48px;
    grid-template-columns: 220px 1fr
  }

  .pg-ftr__bottom {
    padding: 24px
  }
}

@media (max-width: 768px) {
  .pg-hdr__badge {
    display: none
  }

  .pg-hdr__bottom {
    flex-wrap: wrap;
    padding: 0 24px
  }

  .logo-pod {
    padding: 16px 0
  }

  .logo-pod::after {
    display: none
  }

  .pg-nav {
    width: 100%;
    border-top: 1px solid #faeee81a
  }

  .pg-nav__list {
    width: 100%
  }

  .pg-nav__lnk {
    padding: 16px;
    font-size: 13px
  }

  .pg-ftr__deck {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .pg-ftr__links-col {
    gap: 24px
  }

  .pg-ftr__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 48px
  }
}

@media (max-width: 480px) {
  .pg-hdr__top {
    padding: 0 24px
  }

  .pg-hdr__contact-bar {
    flex-wrap: wrap;
    gap: 8px
  }

  .pg-hdr__bottom {
    padding: 0 24px
  }

  .pg-nav__list {
    flex-direction: column;
    align-items: flex-start
  }

  .pg-nav__item+.pg-nav__item::before {
    display: none
  }

  .pg-nav__item {
    width: 100%;
    border-top: 1px solid #faeee814
  }

  .pg-nav__lnk {
    width: 100%;
    padding: 16px 24px
  }

  .pg-ftr__deck {
    padding: 0 24px
  }

  .pg-ftr__links-col {
    grid-template-columns: 1fr
  }

  .pg-ftr__bottom {
    padding: 24px
  }

  .pg-ftr {
    padding: 48px 0 0
  }
}

.policy-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px
}

.policy-main h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #002258;
  margin-bottom: 48px;
  letter-spacing: -.5px
}

.policy-main h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #002258;
  margin-top: 48px;
  margin-bottom: 24px;
  letter-spacing: .01em
}

.policy-main h3 {
  font-size: 16px;
  line-height: 1.4;
  color: #002258;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.policy-main h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #002258;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px
}

.policy-main h5 {
  font-size: 13px;
  line-height: 1.4;
  color: #002258;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px
}

.policy-main h6 {
  font-size: 13px;
  line-height: 1.4;
  color: #FF334A;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px
}

.policy-main p {
  font-size: 16px;
  line-height: 1.6;
  color: #002258;
  margin-bottom: 24px;
  opacity: .88
}

.policy-main ul {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: none
}

.policy-main ol {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: none;
  counter-reset: policy-counter
}

.policy-main ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #002258;
  opacity: .88;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative
}

.policy-main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #FF334A;
  border-radius: 2px
}

.policy-main ol li {
  font-size: 16px;
  line-height: 1.6;
  color: #002258;
  opacity: .88;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  counter-increment: policy-counter
}

.policy-main ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -8px;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: #FF334A;
  line-height: 1.6
}

.policy-main ul li ul,
.policy-main ol li ol,
.policy-main ul li ol,
.policy-main ol li ul {
  margin-top: 8px;
  margin-bottom: 0
}

.policy-main strong,
.policy-main b {
  font-weight: 700;
  color: #002258
}

.policy-main em,
.policy-main i {
  font-style: italic;
  color: #002258;
  opacity: .8
}

.policy-main table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 2px 5px 22px 0 #00225814;
  border-radius: 8px;
  overflow: hidden
}

.policy-main thead {
  background-color: #002258
}

.policy-main thead th {
  color: #FAEEE8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 24px;
  text-align: left
}

.policy-main tbody tr {
  border-bottom: 1px solid #00225814;
  transition: background-color .15s cubic-bezier(0.4, 0, 1, 1)
}

.policy-main tbody tr:last-child {
  border-bottom: none
}

.policy-main tbody tr:nth-child(even) {
  background-color: #faeee866
}

.policy-main tbody tr:hover {
  background-color: #faeee8cc
}

.policy-main td {
  padding: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: #002258;
  opacity: .88;
  vertical-align: top
}

.policy-main th {
  padding: 24px;
  vertical-align: top
}

.policy-main div {
  font-size: 16px;
  line-height: 1.6;
  color: #002258
}

@media (max-width: 1024px) {
  .policy-main {
    padding: 96px 48px
  }

  .policy-main h1 {
    font-size: 52px
  }
}

@media (max-width: 768px) {
  .policy-main {
    padding: 48px 24px
  }

  .policy-main h1 {
    font-size: 27px;
    margin-bottom: 24px
  }

  .policy-main h2 {
    font-size: 27px;
    margin-top: 48px
  }

  .policy-main table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .policy-main thead th,
  .policy-main td {
    padding: 24px 16px;
    min-width: 120px
  }
}

@media (max-width: 480px) {
  .policy-main {
    padding: 48px 8px
  }

  .policy-main h1 {
    font-size: 27px
  }

  .policy-main h2 {
    font-size: 16px
  }

  .policy-main p,
  .policy-main ul li,
  .policy-main ol li {
    font-size: 16px
  }

  .policy-main thead th,
  .policy-main td {
    padding: 16px 8px;
    font-size: 13px
  }
}

.dbt {
  display: block;
  width: 100%;
  overflow-x: hidden
}

.dbt__hero {
  position: relative;
  width: 100%;
  padding: 96px 0;
  background: linear-gradient(118deg, #002258 0%, #002258 48%, #FAEEE8 48%, #FAEEE8 100%)
}

.dbt__hero-dec {
  position: absolute;
  top: 24px;
  right: 48px;
  pointer-events: none;
  overflow: hidden
}

.dbt__hero-dec__dot--a {
  width: 14px;
  height: 14px;
  border-radius: 30px;
  background: #FF334A;
  opacity: .18;
  position: absolute;
  top: 0;
  right: 0
}

.dbt__hero-dec__dot--b {
  width: 8px;
  height: 8px;
  border-radius: 30px;
  background: #FF334A;
  opacity: .13;
  position: absolute;
  top: 24px;
  right: 20px
}

.dbt__hero-dec__dot--c {
  width: 22px;
  height: 22px;
  border-radius: 30px;
  background: #002258;
  opacity: .09;
  position: absolute;
  top: 40px;
  right: 4px
}

.dbt__hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px
}

.dbt__hero-text {
  flex: 1 1 0;
  position: relative;
  z-index: 2
}

.dbt__hero-overline {
  display: block;
  font-size: 13px;
  letter-spacing: .14em;
  color: #FF334A;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.15
}

.dbt__hero-overline::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #FF334A;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px
}

.dbt__hero-h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.dbt__hero-h1 span {
  display: block;
  color: #FAEEE8;
  opacity: .72
}

.dbt__hero-quote {
  position: absolute;
  top: -24px;
  left: -24px;
  font-size: 160px;
  line-height: 1;
  color: #fff;
  opacity: .05;
  pointer-events: none;
  z-index: 0;
  user-select: none
}

.dbt__hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #FAEEE8;
  opacity: .85;
  margin: 0 0 24px;
  max-width: 420px
}

.dbt__hero-btn {
  display: inline-block;
  padding: 24px 48px;
  background: #FF334A;
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .15s cubic-bezier(0.4, 0, 1, 1);
  z-index: 1
}

.dbt__hero-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #002258;
  transition: height .18s cubic-bezier(0.4, 0, 1, 1);
  z-index: -1;
  border-radius: 8px
}

.dbt__hero-btn:hover::after,
.dbt__hero-btn:focus::after {
  height: 100%
}

.dbt__hero-btn:focus {
  outline: 2px solid #FAEEE8;
  outline-offset: 2px
}

.dbt__hero-img-wrap {
  flex: 0 0 420px;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 12px 36px 0 #0022581c
}

.dbt__hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, transparent 40%, #00225861 100%);
  pointer-events: none;
  border-radius: 16px
}

.dbt__hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter .17s cubic-bezier(0.4, 0, 1, 1)
}

.dbt__hero-img-wrap:hover .dbt__hero-img {
  filter: brightness(1.04)
}

.dbt__curve {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.dbt__curve svg {
  display: block;
  width: 100%
}

.dbt__approach {
  background: #fff;
  padding: 96px 0 48px
}

.dbt__approach-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.dbt__approach-sidebar {
  flex: 0 0 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px
}

.dbt__approach-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #FAEEE8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.dbt__approach-icon svg {
  width: 24px;
  height: 24px
}

.dbt__approach-body {
  flex: 1 1 0
}

.dbt__approach-overline {
  display: block;
  font-size: 13px;
  letter-spacing: .13em;
  color: #FF334A;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.15
}

.dbt__approach-overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #FF334A;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px
}

.dbt__approach-h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #002258;
  margin: 0 0 24px
}

.dbt__approach-kw {
  position: relative;
  display: inline-block
}

.dbt__approach-kw::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #FF334A;
  border-radius: 2px;
  animation: dbt-underline .7s .4s cubic-bezier(0.4, 0, 1, 1) forwards
}

@keyframes dbt-underline {
  to {
    width: 100%
  }
}

.dbt__approach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.dbt__approach-card {
  border-radius: 16px;
  border: 1.5px solid #FAEEE8;
  padding: 24px;
  background: #fff;
  box-shadow: 2px 5px 22px 0 #ff334a14;
  transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), border-color .15s cubic-bezier(0.4, 0, 1, 1)
}

.dbt__approach-card:hover {
  box-shadow: 2px 12px 36px 0 #ff334a1c;
  border-color: #FF334A
}

.dbt__approach-card__label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FF334A;
  margin: 0 0 8px;
  line-height: 1.15
}

.dbt__approach-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: #002258;
  margin: 0
}

.dbt__approach-img-wrap {
  flex: 0 0 340px;
  max-width: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 2px 12px 36px 0 #0022581c;
  align-self: stretch
}

.dbt__approach-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter .16s cubic-bezier(0.4, 0, 1, 1)
}

.dbt__approach-img-wrap:hover .dbt__approach-img {
  filter: brightness(1.06)
}

.dbt__curve--inv {
  background: #fff
}

.dbt__curve--inv svg {
  display: block;
  width: 100%
}

.dbt__journey {
  background: #FAEEE8;
  padding: 48px 0 96px
}

.dbt__journey-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px
}

.dbt__journey-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px
}

.dbt__journey-heading {
  flex: 1 1 0
}

.dbt__journey-overline {
  display: block;
  font-size: 13px;
  letter-spacing: .13em;
  color: #FF334A;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.15
}

.dbt__journey-overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #FF334A;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px
}

.dbt__journey-h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #002258;
  margin: 0
}

.dbt__journey-desc {
  flex: 0 0 360px;
  font-size: 16px;
  line-height: 1.6;
  color: #002258;
  margin: 0;
  opacity: .82
}

.dbt__journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.dbt__step {
  border-radius: 16px;
  background: #fff;
  box-shadow: 2px 1px 6px 0 #00225812;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: dbt-drop .45s both cubic-bezier(0.4, 0, 1, 1);
  transition: box-shadow .13s cubic-bezier(0.4, 0, 1, 1)
}

.dbt__step:nth-child(1) {
  animation-delay: .05s
}

.dbt__step:nth-child(2) {
  animation-delay: .13s
}

.dbt__step:nth-child(3) {
  animation-delay: .21s
}

.dbt__step:nth-child(4) {
  animation-delay: .29s
}

@keyframes dbt-drop {
  from {
    opacity: 0;
    transform: translateY(-28px)
  }

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

.dbt__step:hover {
  box-shadow: 2px 5px 22px 0 #00225814
}

.dbt__step--a {
  border-top: 4px solid #FF334A
}

.dbt__step--b {
  border-top: 4px solid #002258
}

.dbt__step--c {
  border-top: 4px solid #FF334A;
  border-radius: 30px 16px 16px 16px
}

.dbt__step--d {
  border-top: 4px solid #002258;
  border-radius: 16px 16px 46px 16px
}

.dbt__step__num {
  font-size: 52px;
  line-height: 1.15;
  color: #FAEEE8;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.03em
}

.dbt__step--b .dbt__step__num,
.dbt__step--d .dbt__step__num {
  color: #e8eef7
}

.dbt__step__label {
  font-size: 16px;
  line-height: 1.4;
  color: #002258;
  font-weight: 600;
  margin: 0
}

.dbt__step__text {
  font-size: 13px;
  line-height: 1.6;
  color: #002258;
  opacity: .75;
  margin: 0
}

.dbt__journey-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px
}

.dbt__journey-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 2px 5px 22px 0 #00225814
}

.dbt__journey-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter .17s cubic-bezier(0.4, 0, 1, 1)
}

.dbt__journey-img-wrap:hover .dbt__journey-img {
  filter: brightness(1.05)
}

.dbt__curve--warm {
  background: #FAEEE8;
  line-height: 0
}

.dbt__value {
  background: #002258;
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.dbt__value-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 48px, #ffffff06 48px, #ffffff06 49px);
  animation: dbt-bgpan 18s linear infinite;
  pointer-events: none
}

@keyframes dbt-bgpan {
  from {
    background-position: 0 0
  }

  to {
    background-position: 0 -96px
  }
}

.dbt__value-dots {
  position: absolute;
  bottom: 24px;
  left: 48px;
  pointer-events: none
}

.dbt__value-dots__d--x {
  width: 10px;
  height: 10px;
  border-radius: 30px;
  background: #FF334A;
  opacity: .22;
  position: absolute;
  bottom: 0;
  left: 0
}

.dbt__value-dots__d--y {
  width: 18px;
  height: 18px;
  border-radius: 30px;
  background: #FAEEE8;
  opacity: .09;
  position: absolute;
  bottom: 16px;
  left: 14px
}

.dbt__value-dots__d--z {
  width: 6px;
  height: 6px;
  border-radius: 30px;
  background: #FF334A;
  opacity: .18;
  position: absolute;
  bottom: 28px;
  left: 2px
}

.dbt__value-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2
}

.dbt__value-top {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px
}

.dbt__value-left {
  flex: 1 1 0
}

.dbt__value-overline {
  display: block;
  font-size: 13px;
  letter-spacing: .14em;
  color: #FF334A;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.15
}

.dbt__value-overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #FF334A;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px
}

.dbt__value-h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 24px
}

.dbt__value-p {
  font-size: 16px;
  line-height: 1.6;
  color: #FAEEE8;
  opacity: .82;
  margin: 0;
  max-width: 480px
}

.dbt__value-img-wrap {
  flex: 0 0 300px;
  max-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 2px 12px 36px 0 #ff334a1c
}

.dbt__value-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter .16s cubic-bezier(0.4, 0, 1, 1)
}

.dbt__value-img-wrap:hover .dbt__value-img {
  filter: brightness(1.04)
}

.dbt__pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px
}

.dbt__pyr-layer {
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  transition: opacity .13s cubic-bezier(0.4, 0, 1, 1)
}

.dbt__pyr-layer:hover {
  opacity: .88
}

.dbt__pyr-layer--1 {
  width: 160px;
  background: #FF334A
}

.dbt__pyr-layer--2 {
  width: 240px;
  background: #ff334ab3
}

.dbt__pyr-layer--3 {
  width: 340px;
  background: #ff334a73
}

.dbt__pyr-layer--4 {
  width: 460px;
  background: #ff334a38
}

.dbt__pyr-label {
  font-size: 13px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: center
}

.dbt__pyr-label--dim {
  color: #FAEEE8;
  opacity: .8
}

.dbt__value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.dbt__val-item {
  border-radius: 16px;
  border: 1.5px solid #faeee821;
  padding: 24px;
  background: #ffffff0a;
  box-shadow: 2px 1px 6px 0 #ff334a12;
  transition: background .14s cubic-bezier(0.4, 0, 1, 1), border-color .14s cubic-bezier(0.4, 0, 1, 1)
}

.dbt__val-item:hover {
  background: #ffffff17;
  border-color: #ff334a59
}

.dbt__val-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ff334a2e;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px
}

.dbt__val-item__icon svg {
  width: 20px;
  height: 20px
}

.dbt__val-item__h {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 8px
}

.dbt__val-item__p {
  font-size: 13px;
  line-height: 1.6;
  color: #FAEEE8;
  opacity: .72;
  margin: 0
}

@media (max-width: 1024px) {
  .dbt__hero-inner {
    padding: 0 24px;
    gap: 24px
  }

  .dbt__hero-img-wrap {
    flex: 0 0 300px;
    max-width: 300px
  }

  .dbt__hero-h1 {
    font-size: 27px
  }

  .dbt__approach-inner {
    padding: 0 24px;
    flex-direction: column
  }

  .dbt__approach-img-wrap {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%
  }

  .dbt__approach-sidebar {
    flex-direction: row;
    flex: 0 0 auto
  }

  .dbt__journey-inner {
    padding: 0 24px
  }

  .dbt__journey-steps {
    grid-template-columns: 1fr 1fr
  }

  .dbt__journey-top {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start
  }

  .dbt__journey-desc {
    flex: 0 0 auto
  }

  .dbt__value-inner {
    padding: 0 24px
  }

  .dbt__value-top {
    flex-direction: column
  }

  .dbt__value-img-wrap {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%
  }

  .dbt__value-list {
    grid-template-columns: 1fr 1fr
  }

  .dbt__pyr-layer--4 {
    width: 100%
  }

  .dbt__pyr-layer--3 {
    width: 80%
  }

  .dbt__pyr-layer--2 {
    width: 60%
  }

  .dbt__pyr-layer--1 {
    width: 40%
  }
}

@media (max-width: 768px) {
  .dbt__hero {
    padding: 48px 0;
    background: linear-gradient(160deg, #002258 0%, #002258 55%, #FAEEE8 55%, #FAEEE8 100%)
  }

  .dbt__hero-inner {
    flex-direction: column;
    padding: 0 24px
  }

  .dbt__hero-img-wrap {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%
  }

  .dbt__hero-h1 {
    font-size: 27px
  }

  .dbt__approach-cols {
    grid-template-columns: 1fr
  }

  .dbt__journey-steps {
    grid-template-columns: 1fr
  }

  .dbt__journey-imgs {
    grid-template-columns: 1fr
  }

  .dbt__value-list {
    grid-template-columns: 1fr
  }

  .dbt__pyramid {
    width: 100%
  }
}

@media (max-width: 480px) {
  .dbt__hero {
    padding: 48px 0
  }

  .dbt__hero-inner {
    padding: 0 24px;
    gap: 24px
  }

  .dbt__hero-btn {
    padding: 24px
  }

  .dbt__approach-inner,
  .dbt__journey-inner,
  .dbt__value-inner {
    padding: 0 24px
  }

  .dbt__approach {
    padding: 48px 0 24px
  }

  .dbt__journey {
    padding: 24px 0 48px
  }

  .dbt__value {
    padding: 48px 0
  }
}

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

.abt__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px
}

.abt__overline {
  display: block;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FF334A;
  margin-bottom: 8px;
  line-height: 1.15
}

.abt__overline--dark {
  color: #002258
}

.abt__overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #FF334A;
  vertical-align: middle;
  margin-right: 8px
}

.abt__overline--dark::before {
  background: #002258
}

.abt-hero {
  background: #002258;
  position: relative
}

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

.abt-hero__geo-line {
  position: absolute;
  background: #faeee814
}

.abt-hero__geo-line--h1 {
  top: 48px;
  left: 48px;
  width: 80px;
  height: 1px
}

.abt-hero__geo-line--v1 {
  top: 48px;
  left: 48px;
  width: 1px;
  height: 80px
}

.abt-hero__geo-line--h2 {
  bottom: 48px;
  right: 48px;
  width: 80px;
  height: 1px
}

.abt-hero__geo-line--v2 {
  bottom: 48px;
  right: 48px;
  width: 1px;
  height: 80px
}

.abt-hero__body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  padding: 96px 0 0
}

.abt-hero__text {
  flex: 1 1 55%;
  padding-bottom: 96px
}

.abt-hero__label {
  display: block;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FAEEE8;
  opacity: .7;
  margin-bottom: 24px;
  line-height: 1.15
}

.abt-hero__h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #FAEEE8;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.abt-hero__h1 em {
  font-style: normal;
  position: relative;
  display: inline-block
}

.abt-hero__h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FF334A;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw .16s cubic-bezier(0.4, 0, 1, 1) .4s forwards
}

@keyframes underline-draw {
  to {
    transform: scaleX(1)
  }
}

.abt-hero__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #FAEEE8;
  opacity: .8;
  max-width: 480px;
  margin: 0
}

.abt-hero__img-col {
  flex: 1 1 45%;
  align-self: flex-end;
  position: relative
}

.abt-hero__img-wrap {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden
}

.abt-hero__img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.7);
  transition: filter .18s cubic-bezier(0.4, 0, 1, 1)
}

.abt-hero__img-wrap:hover .abt-hero__img {
  filter: saturate(1)
}

.abt-hero__img-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to bottom, transparent, #002258);
  pointer-events: none
}

.abt-hero__badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  background: #FF334A;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 2px 5px 22px 0 #ff334a14
}

.abt-hero__badge-num {
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15
}

.abt-hero__badge-sub {
  font-size: 13px;
  color: #fff;
  opacity: .85;
  line-height: 1.15;
  letter-spacing: .05em
}

.abt-torn {
  display: block;
  width: 100%;
  line-height: 0;
  background: #002258
}

.abt-torn svg {
  display: block;
  width: 100%
}

.abt-detail {
  background: #fff;
  padding: 96px 0
}

.abt-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.abt-detail__left {
  position: relative
}

.abt-detail__punct {
  position: absolute;
  top: -24px;
  left: -24px;
  font-size: 160px;
  line-height: 1;
  color: #FAEEE8;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-weight: 700
}

.abt-detail__text-body {
  position: relative;
  z-index: 1
}

.abt-detail__h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #002258;
  margin: 8px 0 24px
}

.abt-detail__p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3a5e;
  margin: 0 0 24px;
  max-width: 520px
}

.abt-detail__p:last-child {
  margin-bottom: 0
}

.abt-detail__right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-detail__img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden
}

.abt-detail__img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter .14s ease-in
}

.abt-detail__img-wrap:hover .abt-detail__img {
  filter: saturate(1)
}

.abt-detail__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.abt-detail__stat {
  background: #FAEEE8;
  border-radius: 8px;
  padding: 24px;
  position: relative
}

.abt-detail__stat-num {
  font-size: 27px;
  line-height: 1.15;
  color: #002258;
  font-weight: 700;
  display: block
}

.abt-detail__stat-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #5a6a8a;
  letter-spacing: .06em;
  margin-top: 8px;
  display: block
}

.abt-detail__stat-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #FF334A;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center
}

.abt-detail__stat-badge span {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 1
}

.abt-res {
  background: #FAEEE8;
  padding: 96px 0;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 140px
}

.abt-res__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px
}

.abt-res__h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #002258;
  margin: 8px 0 0
}

.abt-res__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #5a4a42;
  max-width: 360px;
  margin: 0
}

.abt-res__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.abt-res__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 2px 1px 6px 0 #00225812;
  transition: box-shadow .16s cubic-bezier(0.4, 0, 1, 1);
  position: relative;
  overflow: hidden
}

.abt-res__card:hover {
  box-shadow: 2px 5px 22px 0 #00225814
}

.abt-res__card-num {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 52px;
  line-height: 1.15;
  color: #FAEEE8;
  font-weight: 700;
  pointer-events: none;
  user-select: none
}

.abt-res__card-type {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FF334A;
  line-height: 1.15
}

.abt-res__card-name {
  font-size: 16px;
  line-height: 1.4;
  color: #002258;
  font-weight: 600;
  margin: 0
}

.abt-res__card-size {
  font-size: 13px;
  color: #8a7a72;
  line-height: 1.4
}

.abt-res__card-icon {
  margin-top: 8px;
  width: 36px;
  height: 36px;
  background: #FAEEE8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.abt-res__card-icon svg {
  width: 18px;
  height: 18px
}

.abt-team {
  background: #fff;
  padding: 96px 0;
  margin-top: -48px
}

.abt-team__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start
}

.abt-team__sticky {
  position: sticky;
  top: 48px
}

.abt-team__h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #002258;
  margin: 8px 0 24px
}

.abt-team__intro {
  font-size: 16px;
  line-height: 1.6;
  color: #3a4a6a;
  margin: 0
}

.abt-team__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px
}

.abt-team__img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter .12s ease-in
}

.abt-team__img-wrap:hover .abt-team__img {
  filter: saturate(1)
}

.abt-team__steps {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-team__step {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e8eaf0;
  border-left: 4px solid #FAEEE8;
  transition: border-color .16s cubic-bezier(0.4, 0, 1, 1), box-shadow .16s cubic-bezier(0.4, 0, 1, 1);
  position: relative
}

.abt-team__step:hover {
  border-left-color: #FF334A;
  box-shadow: 2px 1px 6px 0 #ff334a12
}

.abt-team__step-num {
  min-width: 40px;
  height: 40px;
  background: #002258;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FAEEE8;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0
}

.abt-team__step-body {
  flex: 1
}

.abt-team__step-h {
  font-size: 16px;
  line-height: 1.4;
  color: #002258;
  font-weight: 600;
  margin: 0 0 8px
}

.abt-team__step-p {
  font-size: 13px;
  line-height: 1.6;
  color: #5a6a8a;
  margin: 0
}

.abt-team__reveal-wrap {
  margin-top: 24px;
  position: relative
}

.abt-team__reveal-trigger {
  display: block;
  width: 100%;
  background: #002258;
  border: none;
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  text-align: left;
  color: #FAEEE8;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .14s ease-in;
  position: relative;
  overflow: hidden
}

.abt-team__reveal-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FF334A;
  transition: height .16s cubic-bezier(0.4, 0, 1, 1);
  z-index: 0
}

.abt-team__reveal-trigger:hover::after {
  height: 100%
}

.abt-team__reveal-trigger span {
  position: relative;
  z-index: 1
}

.abt-team__reveal-trigger:focus {
  outline: 2px solid #FF334A;
  outline-offset: 2px
}

.abt-team__hidden {
  background: #FAEEE8;
  border-radius: 0 0 8px 8px;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .18s cubic-bezier(0.4, 0, 1, 1), padding .14s ease-in
}

.abt-team__reveal-wrap:focus-within .abt-team__hidden {
  max-height: 200px;
  padding: 24px
}

.abt-team__hidden-p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a2a22;
  margin: 0
}

.abt-contact {
  background: #FF334A;
  padding: 48px 0
}

.abt-contact__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px
}

.abt-contact__h3 {
  font-size: 27px;
  line-height: 1.4;
  color: #fff;
  margin: 0
}

.abt-contact__links {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap
}

.abt-contact__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  border-bottom: 1px solid #ffffff4d;
  padding-bottom: 2px;
  transition: border-color .12s ease-in, opacity .12s ease-in
}

.abt-contact__link:hover {
  border-color: #fff;
  opacity: .85
}

.abt-contact__link svg {
  flex-shrink: 0
}

.abt-wipe {
  clip-path: inset(0 100% 0 0);
  animation: wipe-in .17s cubic-bezier(0.4, 0, 1, 1) .1s forwards
}

@keyframes wipe-in {
  to {
    clip-path: inset(0 0% 0 0)
  }
}

@media (max-width: 1024px) {
  .abt__container {
    padding: 0 24px
  }

  .abt-hero__body {
    flex-direction: column;
    gap: 24px;
    padding: 48px 0 0
  }

  .abt-hero__text {
    flex: none;
    width: 100%;
    padding-bottom: 0
  }

  .abt-hero__img-col {
    flex: none;
    width: 100%
  }

  .abt-hero__img {
    height: 320px
  }

  .abt-detail__grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .abt-res__grid {
    grid-template-columns: 1fr 1fr
  }

  .abt-team__layout {
    grid-template-columns: 1fr
  }

  .abt-team__sticky {
    position: static
  }

  .abt-contact__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }
}

@media (max-width: 768px) {
  .abt-hero__h1 {
    font-size: 27px
  }

  .abt-detail {
    padding: 48px 0
  }

  .abt-res {
    padding: 48px 0 96px
  }

  .abt-res__top {
    flex-direction: column;
    align-items: flex-start
  }

  .abt-res__grid {
    grid-template-columns: 1fr
  }

  .abt-team {
    padding: 48px 0
  }

  .abt-detail__stats {
    grid-template-columns: 1fr 1fr
  }

  .abt-detail__punct {
    font-size: 96px
  }
}

@media (max-width: 480px) {
  .abt__container {
    padding: 0 24px
  }

  .abt-hero__h1 {
    font-size: 27px
  }

  .abt-detail__stats {
    grid-template-columns: 1fr
  }

  .abt-contact__links {
    flex-direction: column;
    gap: 8px
  }
}

.cu-pg {
  display: block;
  width: 100%;
  overflow-x: hidden
}

.cu-pg .schema-data {
  display: none
}

.cu-pg .reach__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start
}

.cu-pg .reach {
  background: linear-gradient(170deg, #FAEEE8 0%, #fff 55%);
  position: relative
}

.cu-pg .reach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #FF334A
}

.cu-pg .reach::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ff334a33
}

.cu-pg .reach__eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  color: #FF334A;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.cu-pg .reach__eyebrow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #FF334A
}

.cu-pg .reach__hdg {
  font-size: 52px;
  line-height: 1.15;
  color: #002258;
  margin-bottom: 48px;
  position: relative
}

.cu-pg .reach__hdg span {
  position: relative;
  display: inline-block
}

.cu-pg .reach__hdg span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF334A;
  animation: underline-draw .18s cubic-bezier(0.4, 0, 1, 1) .4s forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.cu-pg .reach__img-box {
  position: relative;
  margin-bottom: 48px
}

.cu-pg .reach__img-box::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 2px solid #FF334A;
  border-left: 2px solid #FF334A;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none
}

.cu-pg .reach__img-box::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 52px;
  height: 52px;
  border-top: 1px solid #ff334a4d;
  border-left: 1px solid #ff334a4d;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none
}

.cu-pg .reach__img {
  width: 100%;
  max-width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  filter: grayscale(100%)
}

.cu-pg .reach__details {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.cu-pg .reach__det-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 2px 5px 22px 0 #00225814;
  position: relative;
  overflow: hidden;
  transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.cu-pg .reach__det-item:hover {
  box-shadow: 2px 12px 36px 0 #0022581c
}

.cu-pg .reach__det-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #FF334A;
  border-radius: 2px 0 0 2px
}

.cu-pg .reach__det-item::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ff334a33
}

.cu-pg .reach__det-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #FAEEE8;
  border-radius: 8px
}

.cu-pg .reach__det-icon svg {
  width: 20px;
  height: 20px
}

.cu-pg .reach__det-label {
  font-size: 13px;
  letter-spacing: .08em;
  color: #FF334A;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.15
}

.cu-pg .reach__det-val {
  font-size: 16px;
  line-height: 1.4;
  color: #002258
}

.cu-pg .reach__det-val a {
  color: #002258;
  text-decoration: none;
  border-bottom: 1px solid #00225840;
  transition: border-color .12s ease-in, color .12s ease-in
}

.cu-pg .reach__det-val a:hover {
  color: #FF334A;
  border-bottom-color: #FF334A
}

.cu-pg .reach__float-card {
  background: #002258;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 2px 12px 36px 0 #0022581c
}

.cu-pg .reach__fc-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff1a
}

.cu-pg .reach__fc-row:last-child {
  border-bottom: none
}

.cu-pg .reach__fc-key {
  font-size: 13px;
  color: #faeee8b3;
  line-height: 1.4
}

.cu-pg .reach__fc-val {
  font-size: 13px;
  color: #FAEEE8;
  font-weight: 600;
  line-height: 1.4
}

.cu-pg .reach__fc-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.cu-pg .reach__fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 30px;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #4ade8040
}

.cu-pg .form-side {
  position: relative
}

.cu-pg .form-side::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid #002258;
  border-right: 2px solid #002258;
  border-radius: 2px;
  pointer-events: none
}

.cu-pg .form-side::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 52px;
  height: 52px;
  border-bottom: 1px solid #00225840;
  border-right: 1px solid #00225840;
  border-radius: 2px;
  pointer-events: none
}

.cu-pg .form-side__eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  color: #002258;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.cu-pg .form-side__eyebrow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #002258
}

.cu-pg .form-side__hdg {
  font-size: 27px;
  line-height: 1.15;
  color: #002258;
  margin-bottom: 8px
}

.cu-pg .form-side__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #555e70;
  margin-bottom: 48px;
  max-width: 400px
}

.cu-pg .frm {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.cu-pg .frm__grp {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cu-pg .frm__lbl {
  font-size: 13px;
  letter-spacing: .06em;
  color: #002258;
  text-transform: uppercase;
  line-height: 1.15
}

.cu-pg .frm__inp {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.4;
  color: #002258;
  background: #fff;
  border: 1px solid #00225833;
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.cu-pg .frm__inp::placeholder {
  font-style: italic;
  opacity: .55;
  color: #002258
}

.cu-pg .frm__inp:focus {
  border-color: #FF334A;
  box-shadow: inset 0 4px 10px 0 #ff334a12
}

.cu-pg .frm__sel {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.4;
  color: #002258;
  background: #fff;
  border: 1px solid #00225833;
  border-radius: 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23002258' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.cu-pg .frm__sel:focus {
  border-color: #FF334A;
  box-shadow: inset 0 4px 10px 0 #ff334a12
}

.cu-pg .frm__consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.cu-pg .frm__chk {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #FF334A;
  cursor: pointer;
  border-radius: 2px
}

.cu-pg .frm__consent-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #555e70
}

.cu-pg .frm__consent-txt a {
  color: #FF334A;
  text-decoration: none;
  border-bottom: 1px solid #ff334a4d;
  transition: border-color .12s ease-in
}

.cu-pg .frm__consent-txt a:hover {
  border-bottom-color: #FF334A
}

.cu-pg .frm__btn {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: #FF334A;
  border: none;
  border-radius: 46px;
  cursor: pointer;
  overflow: hidden;
  align-self: flex-start;
  box-shadow: 2px 5px 22px 0 #ff334a14;
  transition: color .17s cubic-bezier(0.4, 0, 1, 1), box-shadow .17s cubic-bezier(0.4, 0, 1, 1)
}

.cu-pg .frm__btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #002258;
  transition: height .17s cubic-bezier(0.4, 0, 1, 1);
  z-index: 0
}

.cu-pg .frm__btn:hover::before {
  height: 100%
}

.cu-pg .frm__btn:hover {
  box-shadow: 2px 12px 36px 0 #ff334a1c
}

.cu-pg .frm__btn-txt {
  position: relative;
  z-index: 1
}

.cu-pg .frm__btn:focus-visible {
  outline: 2px solid #002258;
  outline-offset: 3px
}

.cu-pg .frm__btn:active {
  box-shadow: inset 0 4px 8px 0 #00225826
}

.cu-pg .scallop-div {
  width: 100%;
  height: 32px;
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0
}

.cu-pg .scallop-div svg {
  display: block;
  width: 100%;
  height: 32px
}

.cu-pg .clip-reveal {
  animation: clip-expand .18s cubic-bezier(0.4, 0, 1, 1) both
}

@keyframes clip-expand {
  from {
    clip-path: inset(50% 50% 50% 50%)
  }

  to {
    clip-path: inset(0% 0% 0% 0%)
  }
}

@media (max-width: 1024px) {
  .cu-pg .reach__wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 96px 48px
  }

  .cu-pg .form-side::before,
  .cu-pg .form-side::after {
    display: none
  }
}

@media (max-width: 768px) {
  .cu-pg .reach__wrap {
    padding: 48px 24px;
    gap: 48px
  }

  .cu-pg .reach__hdg {
    font-size: 27px
  }

  .cu-pg .reach__img {
    height: 220px
  }
}

@media (max-width: 480px) {
  .cu-pg .reach__wrap {
    padding: 48px 24px
  }

  .cu-pg .frm__btn {
    width: 100%;
    text-align: center;
    align-self: stretch
  }

  .cu-pg .reach__det-item {
    flex-direction: column;
    gap: 8px
  }
}

.suc-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: #fff
}

.suc-pg .suc-wrap {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px
}

.suc-pg .suc-icon {
  width: 72px;
  height: 72px;
  border-radius: 46px;
  background: #FAEEE8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 5px 22px 0 #ff334a14
}

.suc-pg .suc-icon svg {
  display: block
}

.suc-pg .suc-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center
}

.suc-pg .suc-overline {
  display: block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FF334A;
  line-height: 1.15
}

.suc-pg .suc-head {
  font-size: 52px;
  line-height: 1.15;
  color: #002258;
  margin: 0;
  padding: 0
}

.suc-pg .suc-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #002258;
  max-width: 480px;
  margin: 0;
  padding: 0;
  opacity: .75
}

.suc-pg .suc-divider {
  width: 48px;
  height: 2px;
  background: #FF334A;
  border-radius: 2px
}

.suc-pg .suc-actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center
}

.suc-pg .suc-btn--primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-radius: 8px;
  border: 2px solid #FF334A;
  background: #FF334A;
  color: #fff;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.15;
  cursor: pointer;
  transition: color .15s cubic-bezier(0.4, 0, 1, 1), border-color .15s cubic-bezier(0.4, 0, 1, 1);
  box-shadow: 2px 1px 6px 0 #ff334a12
}

.suc-pg .suc-btn--primary::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #002258;
  border-radius: 8px;
  transition: height .13s cubic-bezier(0.4, 0, 1, 1);
  z-index: 0
}

.suc-pg .suc-btn--primary:hover::before {
  height: 100%
}

.suc-pg .suc-btn--primary:hover {
  border-color: #002258;
  color: #fff
}

.suc-pg .suc-btn--primary span {
  position: relative;
  z-index: 1
}

.suc-pg .suc-btn--primary:focus-visible {
  outline: 2px solid #002258;
  outline-offset: 3px
}

.suc-pg .suc-btn--sec {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-radius: 8px;
  border: 2px solid #002258;
  background: transparent;
  color: #002258;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.15;
  cursor: pointer;
  transition: color .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1)
}

.suc-pg .suc-btn--sec::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #FAEEE8;
  transition: height .11s cubic-bezier(0.4, 0, 1, 1);
  z-index: 0
}

.suc-pg .suc-btn--sec:hover::before {
  height: 100%
}

.suc-pg .suc-btn--sec span {
  position: relative;
  z-index: 1
}

.suc-pg .suc-btn--sec:focus-visible {
  outline: 2px solid #FF334A;
  outline-offset: 3px
}

.suc-pg .suc-note {
  font-size: 13px;
  line-height: 1.4;
  color: #002258;
  opacity: .5;
  margin: 0;
  padding: 0;
  letter-spacing: .04em
}

@media (max-width: 480px) {
  .suc-pg {
    padding: 48px 24px
  }

  .suc-pg .suc-head {
    font-size: 27px
  }

  .suc-pg .suc-actions {
    flex-direction: column;
    width: 100%
  }

  .suc-pg .suc-btn--primary,
  .suc-pg .suc-btn--sec {
    width: 100%;
    padding: 24px
  }
}