html {
  box-sizing: border-box;
  scroll-behavior: smooth
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  font-family: "Work Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%
}

.pg-hdr {
  position: relative;
  background: #fff;
  border-bottom: 2px solid #D8EFEF;
  box-shadow: 0 6px 22px -1px #fc3c8a1a;
  overflow: hidden
}

.pg-hdr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FC3C8A 0%, #D8EFEF 50%, #223D4E 100%);
  pointer-events: none
}

.hdr-top {
  max-width: 1366px;
  margin: 0 auto;
  padding: 28px 56px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.hdr-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0
}

.hdr-logo-box {
  width: 56px;
  height: 56px;
  padding: 8px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #D8EFEF;
  box-shadow: 0 1px 4px -1px #223d4e0d 0 6px 22px -1px #223d4e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hdr-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%
}

.hdr-brand-name {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  color: #223D4E;
  letter-spacing: .01em
}

.hdr-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #223D4E;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1.5px solid #D8EFEF;
  background: #fff;
  transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), background .25s cubic-bezier(0.34, 1.56, 0.64, 1), color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.hdr-contact-link:hover,
.hdr-contact-link:focus {
  border-color: #FC3C8A;
  background: #FC3C8A;
  color: #fff;
  outline: none
}

.hdr-contact-link:focus-visible {
  outline: 2px solid #FC3C8A;
  outline-offset: 3px
}

.hdr-contact-link svg {
  flex-shrink: 0
}

.hdr-nav-row {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 56px 28px
}

.hdr-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center
}

.hdr-nav a {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  color: #223D4E;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1.5px solid transparent;
  background: #D8EFEF;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), color .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.hdr-nav a:hover,
.hdr-nav a:focus {
  background: #223D4E;
  color: #fff;
  border-color: #223D4E;
  outline: none
}

.hdr-nav a:focus-visible {
  outline: 2px solid #FC3C8A;
  outline-offset: 3px
}

.hdr-nav a.active {
  background: #FC3C8A;
  color: #fff;
  border-color: #FC3C8A
}

:focus-visible {
  position: relative
}

:focus-visible::after {
  content: attr(aria-label);
  position: absolute;
  top: -24px;
  left: 0;
  font-size: 13px;
  font-family: "Work Sans", sans-serif;
  color: #223D4E;
  background: #D8EFEF;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 100;
  display: none
}

.pg-ftr {
  background: linear-gradient(160deg, #223D4E 0%, #1a3040 60%, #0f2030 100%);
  color: #D8EFEF;
  position: relative;
  overflow: hidden
}

.pg-ftr::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FC3C8A 0%, #D8EFEF 100%);
  pointer-events: none
}

.ftr-body {
  max-width: 1366px;
  margin: 0 auto;
  padding: 56px 56px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: flex-start;
  justify-content: space-between
}

.ftr-col-about {
  flex: 1 1 260px;
  min-width: 220px
}

.ftr-col-links {
  flex: 0 1 200px;
  min-width: 160px
}

.ftr-col-contact {
  flex: 0 1 260px;
  min-width: 200px
}

.ftr-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #FC3C8A;
  margin-bottom: 16px
}

.ftr-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #D8EFEF;
  margin-bottom: 0
}

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

.ftr-links-list li a {
  font-size: 15px;
  line-height: 1.4;
  color: #D8EFEF;
  text-decoration: none;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 1px solid #d8efef26;
  width: 100%;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ftr-links-list li a:hover,
.ftr-links-list li a:focus {
  color: #FC3C8A;
  border-color: #FC3C8A;
  outline: none
}

.ftr-links-list li a:focus-visible {
  outline: 2px solid #FC3C8A;
  outline-offset: 2px
}

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

.ftr-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.ftr-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px
}

.ftr-contact-list li a,
.ftr-contact-list li span {
  font-size: 15px;
  line-height: 1.6;
  color: #D8EFEF;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ftr-contact-list li a:hover,
.ftr-contact-list li a:focus {
  color: #FC3C8A;
  outline: none
}

.ftr-contact-list li a:focus-visible {
  outline: 2px solid #FC3C8A;
  outline-offset: 2px
}

.ftr-bottom {
  max-width: 1366px;
  margin: 0 auto;
  padding: 28px 56px;
  border-top: 1px solid #d8efef1f;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between
}

.ftr-copy {
  font-size: 13px;
  line-height: 1.4;
  color: #d8efef99
}

.ftr-logo-area {
  display: flex;
  align-items: center;
  justify-content: center
}

.ftr-logo-box {
  width: 50px;
  height: 50px;
  padding: 8px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #d8efef4d;
  box-shadow: 0 1px 4px -1px #fc3c8a0d 0 8px 44px -1px #fc3c8a1c;
  display: flex;
  align-items: center;
  justify-content: center
}

.ftr-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%
}

.cookie-bar {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 4000;
  max-width: 420px;
  width: calc(100vw - 32px);
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #D8EFEF;
  box-shadow: 0 8px 44px -1px #fc3c8a1c;
  padding: 28px;
  transform: translateY(-120%);
  transition: transform .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cookie-bar.cb-visible {
  transform: translateY(0)
}

.cookie-bar-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #223D4E;
  margin-bottom: 8px
}

.cookie-bar-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #223D4E;
  margin-bottom: 16px
}

.cookie-bar-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.cb-btn {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid #223D4E;
  background: transparent;
  color: #223D4E;
  cursor: pointer;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), color .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.cb-btn:hover,
.cb-btn:focus {
  background: #223D4E;
  color: #fff;
  outline: none
}

.cb-btn:focus-visible {
  outline: 2px solid #FC3C8A;
  outline-offset: 3px
}

.cb-btn-accept {
  border-color: #FC3C8A;
  color: #FC3C8A
}

.cb-btn-accept:hover,
.cb-btn-accept:focus {
  background: #FC3C8A;
  color: #fff;
  border-color: #FC3C8A
}

@media (max-width: 1024px) {
  .hdr-top {
    padding: 28px 28px 16px
  }

  .hdr-nav-row {
    padding: 0 28px 28px
  }

  .ftr-body {
    padding: 56px 28px 28px;
    gap: 28px
  }

  .ftr-bottom {
    padding: 28px
  }
}

@media (max-width: 768px) {
  .hdr-top {
    padding: 16px 16px 8px;
    gap: 16px
  }

  .hdr-nav-row {
    padding: 0 16px 16px
  }

  .hdr-brand-name {
    font-size: 18px
  }

  .ftr-body {
    padding: 28px 16px 16px;
    gap: 28px
  }

  .ftr-bottom {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }
}

@media (max-width: 320px) {
  .hdr-brand-name {
    font-size: 15px
  }

  .hdr-contact-link {
    font-size: 13px;
    padding: 8px
  }

  .ftr-body {
    padding: 16px 8px 8px
  }

  .ftr-bottom {
    padding: 16px 8px
  }
}

.doc-content {
  max-width: 1366px;
  margin: 0 auto;
  padding: 56px 28px
}

.doc-content h1 {
  font-size: 45px;
  line-height: 1.2;
  color: #223D4E;
  margin-bottom: 28px;
  margin-top: 0;
  letter-spacing: .01em
}

.doc-content h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  margin-top: 56px;
  margin-bottom: 16px
}

.doc-content h3 {
  font-size: 23px;
  line-height: 1.4;
  color: #223D4E;
  margin-top: 28px;
  margin-bottom: 16px
}

.doc-content h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #223D4E;
  margin-top: 28px;
  margin-bottom: 8px
}

.doc-content h5 {
  font-size: 15px;
  line-height: 1.4;
  color: #223D4E;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.doc-content h6 {
  font-size: 13px;
  line-height: 1.4;
  color: #FC3C8A;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.doc-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #223D4E;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch
}

.doc-content ul,
.doc-content ol {
  font-size: 15px;
  line-height: 1.9;
  color: #223D4E;
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 28px;
  max-width: 72ch
}

.doc-content ul {
  list-style: none;
  padding-left: 16px
}

.doc-content ul li {
  position: relative;
  padding-left: 16px
}

.doc-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FC3C8A
}

.doc-content ol {
  list-style: decimal
}

.doc-content ol li {
  padding-left: 8px
}

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

.doc-content li:last-child {
  margin-bottom: 0
}

.doc-content ul ul,
.doc-content ol ol,
.doc-content ul ol,
.doc-content ol ul {
  margin-top: 8px;
  margin-bottom: 8px
}

.doc-content strong,
.doc-content b {
  font-weight: 700;
  color: #223D4E
}

.doc-content em,
.doc-content i {
  font-style: italic;
  color: #223D4E
}

.doc-content a {
  color: #FC3C8A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), text-decoration-color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.doc-content a:hover {
  color: #223D4E;
  text-decoration-color: #FC3C8A
}

.doc-content a:visited {
  color: #223D4E
}

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

  .doc-content h1 {
    font-size: 32px
  }

  .doc-content h2 {
    font-size: 23px;
    margin-top: 28px
  }

  .doc-content h3 {
    font-size: 18px
  }

  .doc-content h4 {
    font-size: 15px
  }

  .doc-content p,
  .doc-content ul,
  .doc-content ol {
    max-width: 100%
  }
}

@media (max-width: 320px) {
  .doc-content {
    padding: 16px 8px
  }

  .doc-content h1 {
    font-size: 23px
  }

  .doc-content h2 {
    font-size: 18px
  }

  .doc-content h3 {
    font-size: 15px
  }
}

@media (min-width: 1440px) {
  .doc-content {
    padding: 96px 56px
  }
}

.infg {
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden
}

.infg .seg {
  position: relative
}

.infg .tbl {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 520px;
  background: #fff;
  border-bottom: 2px solid #D8EFEF
}

.infg .tbl__txt {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.infg .tbl__corner-tl {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  pointer-events: none
}

.infg .tbl__corner-tl svg {
  width: 48px;
  height: 48px
}

.infg .tbl__tag {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FC3C8A;
  margin-bottom: 16px;
  font-weight: 600
}

.infg .tbl__h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #223D4E;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.infg .tbl__h1 span {
  color: #FC3C8A
}

.infg .tbl__desc {
  font-size: 18px;
  line-height: 1.6;
  color: #223D4E;
  max-width: 560px;
  margin-bottom: 28px
}

.infg .tbl__meta {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center
}

.infg .tbl__badge {
  background: #D8EFEF;
  color: #223D4E;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.infg .tbl__img-col {
  position: relative;
  overflow: hidden
}

.infg .tbl__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  transition: filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.infg .tbl__img-col:hover img {
  filter: blur(0px)
}

.infg .tbl__img-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #223d4eb8 0%, #223d4e00 100%);
  pointer-events: none
}

.infg .div-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 28px 0;
  background: #fff
}

.infg .div-dots span {
  width: 6px;
  height: 6px;
  border-radius: 40px;
  background: #D8EFEF;
  display: block
}

.infg .div-dots span.mid {
  background: #FC3C8A;
  width: 8px;
  height: 8px
}

.infg .mtr {
  background: #223D4E;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.infg .mtr__card {
  background: #d8efef14;
  border: 1.5px solid #d8efef2e;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 22px -1px #fc3c8a1a;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.infg .mtr__card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 44px -1px #fc3c8a1c
}

.infg .mtr__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fc3c8a2e;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.infg .mtr__icon svg {
  width: 22px;
  height: 22px
}

.infg .mtr__num {
  font-size: 45px;
  line-height: 1.2;
  color: #FC3C8A;
  font-weight: 800;
  letter-spacing: .02em
}

.infg .mtr__lbl {
  font-size: 15px;
  line-height: 1.4;
  color: #D8EFEF;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em
}

.infg .mtr__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #d8efefb8
}

.infg .mtr__head {
  grid-column: 1 / -1;
  margin-bottom: 8px
}

.infg .mtr__head h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em
}

.infg .mtr__head h2 span {
  color: #FC3C8A
}

.infg .mtr__head p {
  font-size: 18px;
  line-height: 1.6;
  color: #d8efefbf;
  margin-top: 16px;
  max-width: 640px
}

.infg .div-line {
  height: 2px;
  background: linear-gradient(67deg, #D8EFEF 0%, #FC3C8A 100%);
  margin: 0
}

.infg .steps {
  padding: 56px;
  background: #fff;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start
}

.infg .steps__side {
  position: relative
}

.infg .steps__side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.infg .steps__tip {
  background: #D8EFEF;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 4px -1px #223d4e0d;
  transition: transform .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.infg .steps__tip:hover {
  transform: scale(1.05)
}

.infg .steps__tip-ico {
  width: 32px;
  height: 32px
}

.infg .steps__tip-ico svg {
  width: 32px;
  height: 32px
}

.infg .steps__tip-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .08em
}

.infg .steps__tip-val {
  font-size: 23px;
  font-weight: 800;
  color: #FC3C8A;
  line-height: 1.2
}

.infg .steps__tip.wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.infg .steps__main h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 28px
}

.infg .steps__main h2 span {
  color: #FC3C8A
}

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

.infg .steps__item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  border: 1.5px solid #D8EFEF;
  box-shadow: 0 1px 4px -1px #fc3c8a0d;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.infg .steps__item:hover {
  border-color: #FC3C8A;
  box-shadow: 0 6px 22px -1px #fc3c8a1a
}

.infg .steps__num {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FC3C8A;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.infg .steps__item-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #223D4E;
  margin-bottom: 8px;
  line-height: 1.4
}

.infg .steps__item-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a6070
}

.infg .steps__sep {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 28px 0 16px
}

.infg .steps__sep-line {
  flex: 1;
  height: 1px;
  background: #D8EFEF
}

.infg .steps__sep-dot {
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #FC3C8A
}

.infg .bgimg {
  position: relative;
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden
}

.infg .bgimg__img {
  position: absolute;
  inset: 0;
  z-index: 0
}

.infg .bgimg__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(2px);
  transition: filter .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.infg .bgimg:hover .bgimg__img img {
  filter: blur(0px)
}

.infg .bgimg__overlay {
  position: absolute;
  inset: 0;
  background: #ffffffd6;
  z-index: 1;
  pointer-events: none
}

.infg .bgimg__body {
  position: relative;
  z-index: 2;
  max-width: 720px
}

.infg .bgimg__body h3 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px
}

.infg .bgimg__body h3 span {
  color: #FC3C8A
}

.infg .bgimg__body p {
  font-size: 18px;
  line-height: 1.6;
  color: #223D4E;
  margin-bottom: 28px
}

.infg .bgimg__inline {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.infg .bgimg__pill {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #223D4E;
  background: #D8EFEF;
  border-radius: 8px;
  padding: 8px 16px;
  border: 1.5px solid #D8EFEF;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.infg .bgimg__pill:hover {
  background: #FC3C8A;
  color: #fff;
  transform: scale(1.07)
}

.infg .bgimg__outlined {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border: 2px solid #fc3c8a1f;
  border-radius: 40px;
  z-index: 1;
  pointer-events: none
}

@keyframes diagReveal {
  0% {
    opacity: 0;
    transform: translate(-18px, 18px)
  }

  100% {
    opacity: 1;
    transform: translate(0, 0)
  }
}

.infg .anim-d1 {
  animation: diagReveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: .05s
}

.infg .anim-d2 {
  animation: diagReveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: .13s
}

.infg .anim-d3 {
  animation: diagReveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: .21s
}

.infg .anim-d4 {
  animation: diagReveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: .29s
}

.infg .anim-d5 {
  animation: diagReveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: .37s
}

@media (max-width: 1024px) {
  .infg .tbl {
    grid-template-columns: 1fr 260px
  }

  .infg .tbl__h1 {
    font-size: 45px
  }

  .infg .steps {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .infg .steps__side-grid {
    grid-template-columns: 1fr 1fr 1fr
  }

  .infg .steps__tip.wide {
    grid-column: auto
  }

  .infg .mtr {
    padding: 56px 28px
  }
}

@media (max-width: 768px) {
  .infg .tbl {
    grid-template-columns: 1fr
  }

  .infg .tbl__img-col {
    height: 260px
  }

  .infg .tbl__txt {
    padding: 56px 28px 28px
  }

  .infg .tbl__h1 {
    font-size: 32px
  }

  .infg .mtr {
    grid-template-columns: 1fr;
    padding: 56px 16px;
    gap: 16px
  }

  .infg .mtr__head {
    grid-column: 1
  }

  .infg .steps {
    padding: 56px 16px
  }

  .infg .steps__side-grid {
    grid-template-columns: 1fr 1fr
  }

  .infg .bgimg {
    padding: 56px 16px
  }
}

@media (max-width: 320px) {
  .infg .tbl__h1 {
    font-size: 23px
  }

  .infg .steps__side-grid {
    grid-template-columns: 1fr
  }

  .infg .bgimg__inline {
    flex-direction: column;
    align-items: center
  }
}

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

.abt-pg .inner-cap {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px
}

.abt-pg .t-blk {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative
}

.abt-pg .t-blk .dec-bar {
  position: absolute;
  left: 56px;
  top: 56px;
  width: 3px;
  height: 80px;
  background: #FC3C8A;
  opacity: .18;
  border-radius: 4px
}

.abt-pg .t-blk .dec-arrow {
  position: absolute;
  right: 80px;
  bottom: 56px;
  width: 28px;
  height: 28px;
  opacity: .15
}

.abt-pg .t-blk .dec-arrow svg {
  width: 100%;
  height: 100%
}

.abt-pg .t-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px
}

.abt-pg .t-txt {
  flex: 2;
  padding-right: 28px
}

.abt-pg .t-img-col {
  flex: 1;
  padding-top: 16px
}

.abt-pg .t-eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FC3C8A;
  margin-bottom: 16px;
  display: block
}

.abt-pg .t-h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 28px
}

.abt-pg .t-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #223D4E;
  margin-bottom: 28px;
  max-width: 520px
}

.abt-pg .t-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #FC3C8A;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 22px -1px #fc3c8a1a;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .t-link:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 44px -1px #fc3c8a1c
}

.abt-pg .t-img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 44px -1px #223d4e1c
}

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

.abt-pg .t-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #fc3c8a14, #d8efef1f);
  border-radius: 24px;
  pointer-events: none
}

.abt-pg .t-img-frame .tex-blend {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(67deg, transparent, transparent 3px, #d8efef0f 3px, #d8efef0f 4px);
  border-radius: 24px;
  pointer-events: none
}

.abt-pg .div-pencil {
  display: block;
  width: 100%;
  height: 28px;
  overflow: hidden
}

.abt-pg .div-pencil svg {
  width: 100%;
  height: 100%
}

.abt-pg .story-sec {
  background: #D8EFEF;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative
}

.abt-pg .story-sec .bg-pulse {
  position: absolute;
  inset: 0;
  background: #D8EFEF;
  animation: brt-pulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

@keyframes brt-pulse {

  0%,
  100% {
    filter: brightness(1)
  }

  50% {
    filter: brightness(1.04)
  }
}

.abt-pg .story-sec .inner-cap {
  position: relative;
  z-index: 1
}

.abt-pg .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.abt-pg .story-img-wrap {
  position: relative
}

.abt-pg .story-img-mask {
  width: 100%;
  aspect-ratio: 3/4;
  clip-path: polygon(0 8%, 8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 22px -1px #223d4e1a
}

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

.abt-pg .story-yr-badge {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: #FC3C8A;
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 6px 22px -1px #fc3c8a1a
}

.abt-pg .story-txt {
  padding-left: 16px
}

.abt-pg .story-label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FC3C8A;
  margin-bottom: 16px;
  display: block
}

.abt-pg .story-h2 {
  font-size: 45px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 28px
}

.abt-pg .story-body {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  margin-bottom: 16px
}

.abt-pg .story-accent-bar {
  display: block;
  width: 3px;
  height: 56px;
  background: #223D4E;
  border-radius: 4px;
  margin-bottom: 16px;
  opacity: .25
}

.abt-pg .metrics-sec {
  background: #223D4E;
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative
}

.abt-pg .metrics-sec .bg-pulse {
  position: absolute;
  inset: 0;
  background: #223D4E;
  animation: brt-pulse-dk 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

@keyframes brt-pulse-dk {

  0%,
  100% {
    filter: brightness(1)
  }

  50% {
    filter: brightness(1.06)
  }
}

.abt-pg .metrics-sec .inner-cap {
  position: relative;
  z-index: 1
}

.abt-pg .metrics-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 28px
}

.abt-pg .met-item {
  flex: 1;
  border: 1px solid #d8efef2e;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .met-item:hover {
  transform: scale(1.04);
  border-color: #fc3c8a66
}

.abt-pg .met-num {
  font-size: 45px;
  line-height: 1.2;
  color: #FC3C8A;
  display: block;
  margin-bottom: 8px
}

.abt-pg .met-desc {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #D8EFEF;
  line-height: 1.4
}

.abt-pg .alt-sec {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 96px
}

.abt-pg .alt-sec-head {
  text-align: center;
  margin-bottom: 56px
}

.abt-pg .alt-h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px
}

.abt-pg .alt-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  opacity: .7
}

.abt-pg .alt-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  margin-bottom: 56px
}

.abt-pg .alt-row.rev {
  flex-direction: row-reverse
}

.abt-pg .alt-row:last-child {
  margin-bottom: 0
}

.abt-pg .alt-img-col {
  flex: 1
}

.abt-pg .alt-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px -1px #223d4e1a;
  position: relative
}

.abt-pg .alt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .alt-img-wrap:hover img {
  transform: scale(1.04)
}

.abt-pg .alt-txt-col {
  flex: 1;
  position: relative;
  padding-left: 16px
}

.abt-pg .alt-txt-col .v-bar {
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 56px;
  background: #FC3C8A;
  border-radius: 4px
}

.abt-pg .alt-row.rev .alt-txt-col {
  padding-left: 0;
  padding-right: 16px
}

.abt-pg .alt-row.rev .alt-txt-col .v-bar {
  left: auto;
  right: 0
}

.abt-pg .alt-tag {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FC3C8A;
  margin-bottom: 8px;
  display: block
}

.abt-pg .alt-h3 {
  font-size: 23px;
  line-height: 1.4;
  color: #223D4E;
  margin-bottom: 16px
}

.abt-pg .alt-body {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E
}

.abt-pg .team-sec {
  background: linear-gradient(67deg, #223D4E 0%, #FC3C8A 100%);
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative
}

.abt-pg .team-sec .bg-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #223D4E 0%, #FC3C8A 100%);
  animation: brt-pulse-tm 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

@keyframes brt-pulse-tm {

  0%,
  100% {
    filter: brightness(1)
  }

  50% {
    filter: brightness(1.05)
  }
}

.abt-pg .team-sec .inner-cap {
  position: relative;
  z-index: 1
}

.abt-pg .team-head {
  text-align: center;
  margin-bottom: 56px
}

.abt-pg .team-h2 {
  font-size: 45px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px
}

.abt-pg .team-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #d8efefd9;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

.abt-pg .team-cards {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px
}

.abt-pg .tm-card {
  background: #ffffff14;
  border: 1px solid #ffffff24;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  backdrop-filter: blur(4px);
  transition: background .25s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .tm-card:hover {
  background: #ffffff24;
  transform: scale(1.02)
}

.abt-pg .tm-card.solo {
  flex-direction: column;
  align-items: center;
  text-align: center
}

.abt-pg .tm-portrait {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 22px -1px #fc3c8a1a;
  border: 2px solid #ffffff38
}

.abt-pg .tm-card.solo .tm-portrait {
  width: 96px;
  height: 96px;
  margin-bottom: 8px
}

.abt-pg .tm-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.abt-pg .tm-info {
  flex: 1
}

.abt-pg .tm-name {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 4px
}

.abt-pg .tm-role {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FC3C8A;
  margin-bottom: 8px;
  display: block
}

.abt-pg .tm-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #d8efefd9
}

.abt-pg .tm-no-portrait {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.abt-pg .tm-plain {
  background: #ffffff14;
  border: 1px solid #ffffff1f;
  border-radius: 14px;
  padding: 28px;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .tm-plain:hover {
  background: #ffffff21
}

.abt-pg .tm-plain .tm-name {
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px
}

.abt-pg .tm-plain .tm-role {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FC3C8A;
  margin-bottom: 8px;
  display: block
}

.abt-pg .tm-plain .tm-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #d8efefd9
}

@media (max-width: 1024px) {
  .abt-pg .inner-cap {
    padding-left: 28px;
    padding-right: 28px
  }

  .abt-pg .t-h1 {
    font-size: 45px
  }

  .abt-pg .story-h2 {
    font-size: 32px
  }

  .abt-pg .team-h2 {
    font-size: 32px
  }

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

  .abt-pg .tm-card.solo {
    flex-direction: row;
    text-align: left;
    align-items: flex-start
  }

  .abt-pg .tm-card.solo .tm-portrait {
    margin-bottom: 0
  }
}

@media (max-width: 768px) {
  .abt-pg .inner-cap {
    padding-left: 16px;
    padding-right: 16px
  }

  .abt-pg .t-layout {
    flex-direction: column;
    gap: 28px
  }

  .abt-pg .t-txt {
    padding-right: 0
  }

  .abt-pg .t-h1 {
    font-size: 32px
  }

  .abt-pg .t-blk {
    padding-top: 56px;
    padding-bottom: 56px
  }

  .abt-pg .story-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .abt-pg .story-yr-badge {
    right: 8px
  }

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

  .abt-pg .alt-row,
  .abt-pg .alt-row.rev {
    flex-direction: column;
    gap: 28px
  }

  .abt-pg .alt-row.rev .alt-txt-col {
    padding-right: 0;
    padding-left: 16px
  }

  .abt-pg .alt-row.rev .alt-txt-col .v-bar {
    left: 0;
    right: auto
  }

  .abt-pg .tm-card {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .abt-pg .team-sec {
    padding-top: 56px;
    padding-bottom: 56px
  }

  .abt-pg .story-sec {
    padding-top: 56px;
    padding-bottom: 56px
  }

  .abt-pg .alt-sec {
    padding-top: 56px;
    padding-bottom: 56px
  }
}

@media (max-width: 320px) {
  .abt-pg .t-h1 {
    font-size: 23px
  }

  .abt-pg .met-num {
    font-size: 32px
  }
}

.lnch {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: clip
}

.lnch .pg-wrap {
  width: 100%
}

.lnch .ttl-blk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative
}

.lnch .ttl-img-side {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 24px 0
}

.lnch .ttl-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.lnch .ttl-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, transparent 30%, #fff 90%)
}

.lnch .ttl-deco-a {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid #fc3c8a2e;
  border-radius: 50%;
  top: 28px;
  right: 28px;
  pointer-events: none
}

.lnch .ttl-deco-b {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid #223d4e1f;
  border-radius: 14px;
  bottom: 56px;
  right: 56px;
  pointer-events: none;
  transform: rotate(18deg)
}

.lnch .ttl-txt-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 56px;
  background: #fff;
  position: relative
}

.lnch .ttl-pre {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FC3C8A;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

.lnch .ttl-pre-shape {
  display: inline-block;
  width: 18px;
  height: 3px;
  background: #FC3C8A;
  border-radius: 4px
}

.lnch .ttl-h1 {
  font-size: 45px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px
}

.lnch .ttl-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #223D4E;
  margin-bottom: 28px;
  max-width: 420px
}

.lnch .ttl-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap
}

.lnch .btn-pri {
  display: inline-block;
  background: #FC3C8A;
  color: #fff;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 22px -1px #fc3c8a1a;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer
}

.lnch .btn-pri:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 44px -1px #fc3c8a1c
}

.lnch .btn-sec {
  display: inline-block;
  background: transparent;
  color: #223D4E;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #223D4E;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), background .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.lnch .btn-sec:hover {
  transform: scale(1.06);
  background: #D8EFEF
}

.lnch .div-geo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  overflow: hidden
}

.lnch .div-geo-unit {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #D8EFEF;
  flex-shrink: 0
}

.lnch .div-geo-unit.pk {
  background: #fc3c8a40;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  transform: rotate(45deg)
}

.lnch .div-geo-unit.sm {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #223d4e26
}

.lnch .gap-sec {
  padding: 96px 56px;
  background: #fff;
  position: relative
}

.lnch .gap-sec-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #D8EFEF 0%, #fff 55%);
  pointer-events: none
}

.lnch .gap-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative
}

.lnch .gap-txt {
  position: relative
}

.lnch .gap-h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px
}

.lnch .gap-h2-pre {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.lnch .gap-diamond {
  width: 12px;
  height: 12px;
  background: #FC3C8A;
  border-radius: 4px;
  transform: rotate(45deg);
  flex-shrink: 0
}

.lnch .gap-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #FC3C8A
}

.lnch .gap-body {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  margin-bottom: 16px
}

.lnch .gap-dash-line {
  width: 100%;
  border: none;
  border-top: 2px dashed #fc3c8a4d;
  margin: 28px 0
}

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

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

.lnch .gap-step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #223D4E;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.lnch .gap-step-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E
}

.lnch .gap-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px
}

.lnch .gap-img-a {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px -1px #223d4e1a
}

.lnch .gap-img-b {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px -1px #223d4e0d
}

.lnch .gap-img-c {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px -1px #223d4e0d
}

.lnch .gap-img-a img,
.lnch .gap-img-b img,
.lnch .gap-img-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.lnch .div-stripe {
  height: 4px;
  background: linear-gradient(67deg, #FC3C8A 0%, #D8EFEF 50%, #223D4E 100%)
}

.lnch .team-sec {
  padding: 96px 56px;
  background: #223D4E;
  position: relative
}

.lnch .team-sec-diag {
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #223D4E 60%, #fc3c8a14 100%);
  pointer-events: none
}

.lnch .team-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative
}

.lnch .team-hd {
  text-align: center;
  margin-bottom: 56px
}

.lnch .team-h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px
}

.lnch .team-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #D8EFEF;
  max-width: 560px;
  margin: 0 auto;
  text-align: left
}

.lnch .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start
}

.lnch .team-card {
  background: #ffffff0d;
  border: 1px solid #d8efef26;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lnch .team-card:hover {
  background: #ffffff17
}

.lnch .team-card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.lnch .team-portrait {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fc3c8a80
}

.lnch .team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.lnch .team-name {
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 4px
}

.lnch .team-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #FC3C8A
}

.lnch .team-body {
  font-size: 15px;
  line-height: 1.6;
  color: #D8EFEF
}

.lnch .team-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px
}

.lnch .team-tag {
  font-size: 13px;
  color: #D8EFEF;
  border: 1px solid #d8efef4d;
  border-radius: 40px;
  padding: 4px 16px
}

.lnch .team-feat {
  background: #fc3c8a14;
  border: 1px solid #fc3c8a33;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px
}

.lnch .team-feat-h3 {
  font-size: 23px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 8px
}

.lnch .team-feat-body {
  font-size: 15px;
  line-height: 1.6;
  color: #D8EFEF
}

.lnch .team-feat-img {
  border-radius: 14px;
  overflow: hidden;
  height: 220px
}

.lnch .team-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.lnch .team-metrics {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap
}

.lnch .team-metric {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.lnch .team-metric-val {
  font-size: 32px;
  line-height: 1.2;
  color: #FC3C8A
}

.lnch .team-metric-lbl {
  font-size: 13px;
  color: #D8EFEF;
  text-transform: uppercase;
  letter-spacing: .08em
}

.lnch .div-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  background: #223D4E
}

.lnch .div-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8efef4d
}

.lnch .div-dot.act {
  background: #FC3C8A;
  width: 10px;
  height: 10px
}

.lnch .comm-sec {
  padding: 96px 56px;
  background: #fff;
  position: relative
}

.lnch .comm-bg-pat {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.lnch .comm-bg-pat::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 27px, #d8efef59 27px, #d8efef59 28px), repeating-linear-gradient(90deg, transparent, transparent 27px, #d8efef59 27px, #d8efef59 28px)
}

.lnch .comm-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative
}

.lnch .comm-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start
}

.lnch .comm-h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px
}

.lnch .comm-body {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  margin-bottom: 28px
}

.lnch .comm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px
}

.lnch .comm-card {
  border: 1px solid #D8EFEF;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 1px 4px -1px #223d4e0d;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lnch .comm-card:hover {
  box-shadow: 0 6px 22px -1px #223d4e1a
}

.lnch .comm-card-reveal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(67deg, #FC3C8A, #223D4E);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  padding: 16px;
  height: 0;
  overflow: hidden;
  transition: height .32s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 0 0 14px 14px
}

.lnch .comm-card:hover .comm-card-reveal {
  height: 64px
}

.lnch .comm-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #D8EFEF;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.lnch .comm-card-icon svg {
  width: 18px;
  height: 18px
}

.lnch .comm-card-h4 {
  font-size: 15px;
  line-height: 1.4;
  color: #223D4E;
  margin-bottom: 8px
}

.lnch .comm-card-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #223D4E
}

.lnch .comm-side {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lnch .comm-side-img {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 6px 22px -1px #223d4e1a
}

.lnch .comm-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.lnch .comm-info-box {
  background: #D8EFEF;
  border-radius: 14px;
  padding: 28px
}

.lnch .comm-info-h4 {
  font-size: 15px;
  color: #223D4E;
  margin-bottom: 8px
}

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

.lnch .comm-info-item {
  font-size: 13px;
  color: #223D4E;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.lnch .comm-dot {
  width: 6px;
  height: 6px;
  background: #FC3C8A;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px
}

.lnch .div-line {
  height: 1px;
  background: linear-gradient(67deg, transparent, #D8EFEF 20%, #FC3C8A 50%, #D8EFEF 80%, transparent)
}

.lnch .exp-sec {
  padding: 96px 56px;
  background: #D8EFEF;
  position: relative
}

.lnch .exp-diag {
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #D8EFEF 40%, #fc3c8a0f 100%);
  pointer-events: none
}

.lnch .exp-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative
}

.lnch .exp-hd {
  margin-bottom: 56px
}

.lnch .exp-h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px
}

.lnch .exp-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  max-width: 560px
}

.lnch .exp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px
}

.lnch .exp-story {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 4px -1px #223d4e0d;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lnch .exp-story.wide {
  grid-column: 1 / 3;
  flex-direction: row;
  align-items: flex-start
}

.lnch .exp-story-img {
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  width: 180px;
  height: 180px
}

.lnch .exp-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.lnch .exp-story-txt {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.lnch .exp-story-name {
  font-size: 15px;
  color: #223D4E;
  line-height: 1.4
}

.lnch .exp-story-role {
  font-size: 13px;
  color: #FC3C8A;
  text-transform: uppercase;
  letter-spacing: .08em
}

.lnch .exp-story-q {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E
}

.lnch .exp-story-q::before {
  display: block;
  width: 24px;
  height: 3px;
  background: #FC3C8A;
  border-radius: 4px;
  margin-bottom: 8px;
  content: ''
}

.lnch .exp-aside {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.lnch .exp-aside-img {
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 6px 22px -1px #223d4e1a
}

.lnch .exp-aside-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.lnch .exp-aside-box {
  background: #223D4E;
  border-radius: 14px;
  padding: 28px;
  color: #fff
}

.lnch .exp-aside-h4 {
  font-size: 15px;
  color: #D8EFEF;
  margin-bottom: 8px
}

.lnch .exp-aside-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #d8efefcc
}

.lnch .exp-aside-link {
  display: inline-block;
  margin-top: 16px;
  color: #FC3C8A;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  border-bottom: 1px solid #fc3c8a66;
  transition: border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lnch .exp-aside-link:hover {
  border-color: #FC3C8A
}

.lnch .div-geo2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  background: #D8EFEF
}

.lnch .div-geo2-sq {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #223d4e26;
  transform: rotate(45deg)
}

.lnch .div-geo2-sq.lg {
  width: 12px;
  height: 12px;
  background: #fc3c8a4d
}

.lnch .sup-sec {
  padding: 96px 56px;
  background: #fff;
  position: relative
}

.lnch .sup-inner {
  max-width: 1366px;
  margin: 0 auto
}

.lnch .sup-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start
}

.lnch .sup-left {
  position: relative
}

.lnch .sup-h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px
}

.lnch .sup-h2-pre {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.lnch .sup-pre-shape {
  width: 12px;
  height: 12px;
  border: 2px solid #FC3C8A;
  border-radius: 4px;
  transform: rotate(45deg)
}

.lnch .sup-pre-lbl {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #FC3C8A
}

.lnch .sup-body {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  margin-bottom: 28px
}

.lnch .sup-img {
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 8px 44px -1px #223d4e1c
}

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

.lnch .sup-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lnch .sup-item {
  border: 1px solid #D8EFEF;
  border-radius: 14px;
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 1px 4px -1px #223d4e0d;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lnch .sup-item:hover {
  box-shadow: 0 6px 22px -1px #223d4e1a;
  transform: translateY(-2px)
}

.lnch .sup-item-ico {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #D8EFEF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.lnch .sup-item-ico svg {
  width: 22px;
  height: 22px
}

.lnch .sup-item-h4 {
  font-size: 15px;
  color: #223D4E;
  margin-bottom: 8px;
  line-height: 1.4
}

.lnch .sup-item-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #223D4E
}

.lnch .sup-contact {
  background: linear-gradient(67deg, #223D4E 0%, #FC3C8A 100%);
  border-radius: 14px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.lnch .sup-contact-h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px
}

.lnch .sup-contact-txt {
  font-size: 13px;
  color: #fffc
}

.lnch .sup-contact-link {
  display: inline-block;
  background: #fff;
  color: #223D4E;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lnch .sup-contact-link:hover {
  transform: scale(1.06)
}

@keyframes lnch-bounce {
  0% {
    transform: translateY(16px);
    opacity: 0
  }

  60% {
    transform: translateY(-6px);
    opacity: 1
  }

  80% {
    transform: translateY(3px)
  }

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

.lnch .ttl-pre {
  animation: lnch-bounce .32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: .1s
}

@media (max-width: 1024px) {
  .lnch .ttl-blk {
    grid-template-columns: 1fr
  }

  .lnch .ttl-img-side {
    height: 320px;
    border-radius: 0
  }

  .lnch .ttl-txt-side {
    padding: 56px 28px
  }

  .lnch .gap-inner {
    grid-template-columns: 1fr
  }

  .lnch .gap-imgs {
    grid-template-rows: 180px 180px
  }

  .lnch .team-grid {
    grid-template-columns: 1fr
  }

  .lnch .comm-layout {
    grid-template-columns: 1fr
  }

  .lnch .exp-layout {
    grid-template-columns: 1fr 1fr
  }

  .lnch .exp-story.wide {
    grid-column: 1 / 3
  }

  .lnch .sup-layout {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {

  .lnch .gap-sec,
  .lnch .team-sec,
  .lnch .comm-sec,
  .lnch .exp-sec,
  .lnch .sup-sec {
    padding: 56px 16px
  }

  .lnch .ttl-txt-side {
    padding: 56px 16px
  }

  .lnch .ttl-h1 {
    font-size: 32px
  }

  .lnch .gap-imgs {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .lnch .gap-img-a {
    grid-column: 1;
    grid-row: 1;
    height: 220px
  }

  .lnch .gap-img-b {
    grid-column: 1;
    grid-row: 2;
    height: 180px
  }

  .lnch .gap-img-c {
    grid-column: 1;
    grid-row: 3;
    height: 180px
  }

  .lnch .exp-layout {
    grid-template-columns: 1fr
  }

  .lnch .exp-story.wide {
    grid-column: 1;
    flex-direction: column
  }

  .lnch .exp-story-img {
    width: 100%;
    height: 180px
  }

  .lnch .comm-cards {
    grid-template-columns: 1fr
  }

  .lnch .ttl-actions {
    flex-direction: column
  }

  .lnch .team-metrics {
    flex-direction: column;
    gap: 16px
  }
}

@media (max-width: 320px) {
  .lnch .ttl-h1 {
    font-size: 23px
  }

  .lnch .gap-h2,
  .lnch .team-h2,
  .lnch .comm-h2,
  .lnch .exp-h2,
  .lnch .sup-h2 {
    font-size: 23px
  }
}

.prt-pg {
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden
}

.prt-pg *,
.prt-pg ::before,
.prt-pg ::after {
  box-sizing: border-box
}

img {
  max-width: 100%
}

.prt-pg .reveal-diag {
  animation: diagReveal .28s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.prt-pg .reveal-diag-delay {
  animation: diagReveal .32s cubic-bezier(0.34, 1.56, 0.64, 1) .1s both
}

.prt-pg .reveal-diag-slow {
  animation: diagReveal .35s cubic-bezier(0.34, 1.56, 0.64, 1) .18s both
}

@keyframes diagReveal {
  from {
    opacity: 0;
    transform: translate(-28px, -28px)
  }

  to {
    opacity: 1;
    transform: translate(0, 0)
  }
}

.prt-pg .lbl-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FC3C8A;
  background: #D8EFEF;
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 16px
}

.prt-pg .thick-rule {
  width: 56px;
  height: 4px;
  background: linear-gradient(67deg, #223D4E, #FC3C8A);
  border-radius: 4px;
  margin-bottom: 28px
}

.prt-pg .thick-rule.centered {
  margin-left: auto;
  margin-right: auto
}

.prt-pg .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 40px;
  background: #FC3C8A;
  outline: 3px solid #D8EFEF;
  outline-offset: 3px;
  flex-shrink: 0
}

.prt-pg .icon-circle svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.prt-pg .icon-circle.alt {
  background: #223D4E
}

.prt-pg .icon-circle.soft {
  background: #D8EFEF;
  outline-color: #FC3C8A
}

.prt-pg .icon-circle.soft svg {
  fill: #223D4E
}

.prt-pg .btn-main {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(67deg, #223D4E, #FC3C8A);
  border: none;
  border-radius: 8px;
  padding: 16px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 22px -1px #fc3c8a1a
}

.prt-pg .btn-main:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 44px -1px #fc3c8a1c
}

.prt-pg .btn-main:focus {
  outline: 3px solid #FC3C8A;
  outline-offset: 3px
}

.prt-pg .btn-main:active {
  transform: scale(0.97)
}

.prt-pg .btn-outline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #223D4E;
  background: transparent;
  border: 2px solid #223D4E;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s cubic-bezier(0.68, -0.55, 0.27, 1.55), background 0.2s, color .2s
}

.prt-pg .btn-outline:hover {
  transform: scale(1.06);
  background: #223D4E;
  color: #fff
}

.prt-pg .btn-outline:focus {
  outline: 3px solid #FC3C8A;
  outline-offset: 3px
}

.prt-pg .s1-hero {
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
  background: #fff;
  position: relative
}

.prt-pg .s1-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 56px;
  right: 56px;
  height: 4px;
  background: linear-gradient(67deg, #D8EFEF, #FC3C8A, #223D4E);
  border-radius: 4px
}

.prt-pg .s1-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.prt-pg .s1-h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #223D4E;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 16px
}

.prt-pg .s1-h1 span {
  color: #FC3C8A
}

.prt-pg .s1-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #223D4E;
  margin: 0 0 28px;
  max-width: 520px
}

.prt-pg .s1-arrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px
}

.prt-pg .s1-arrow-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(67deg, #FC3C8A, #223D4E);
  border-radius: 4px
}

.prt-pg .s1-arrow-tip {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #223D4E
}

.prt-pg .s1-arrow-txt {
  font-size: 13px;
  color: #FC3C8A;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.prt-pg .s1-img-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center
}

.prt-pg .s1-img-wrap {
  width: 280px;
  height: 380px;
  overflow: hidden;
  position: relative
}

.prt-pg .s1-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: saturate(0.85) brightness(0.95)
}

.prt-pg .s1-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #fc3c8a14, transparent 60%);
  pointer-events: none
}

.prt-pg .s1-img-blur {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px 12px #ffffff8c;
  pointer-events: none
}

.prt-pg .s1-diamond {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: #FC3C8A;
  transform: rotate(45deg);
  border-radius: 4px;
  pointer-events: none
}

.prt-pg .s1-diamond-sm {
  position: absolute;
  bottom: 28px;
  left: -20px;
  width: 24px;
  height: 24px;
  background: #D8EFEF;
  border: 3px solid #FC3C8A;
  transform: rotate(45deg);
  border-radius: 4px;
  pointer-events: none
}

.prt-pg .s2-partners {
  padding: 96px 56px;
  background: #223D4E;
  position: relative;
  overflow: hidden
}

.prt-pg .s2-bg-tri {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.prt-pg .s2-bg-tri svg {
  width: 100%;
  height: 100%;
  opacity: .06
}

.prt-pg .s2-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative
}

.prt-pg .s2-h2 {
  font-size: 45px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 16px
}

.prt-pg .s2-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #D8EFEF;
  max-width: 540px;
  margin: 0 auto;
  text-align: left
}

.prt-pg .s2-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 28px;
  align-items: start;
  position: relative
}

.prt-pg .s2-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.prt-pg .s2-card {
  background: #d8efef12;
  border: 1px solid #d8efef2e;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 1px 4px -1px #fc3c8a0d
}

.prt-pg .s2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 44px -1px #fc3c8a1c
}

.prt-pg .s2-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0
}

.prt-pg .s2-card-role {
  font-size: 13px;
  color: #FC3C8A;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0
}

.prt-pg .s2-card-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #D8EFEF;
  margin: 0
}

.prt-pg .s2-portrait {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden
}

.prt-pg .s2-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: saturate(0.8) brightness(0.9)
}

.prt-pg .s2-center {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.prt-pg .s2-feat {
  background: #fc3c8a1a;
  border: 2px solid #FC3C8A;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.prt-pg .s2-feat-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0
}

.prt-pg .s2-feat-role {
  font-size: 13px;
  color: #FC3C8A;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0
}

.prt-pg .s2-feat-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #D8EFEF;
  margin: 0
}

.prt-pg .s2-feat-portrait {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 8px
}

.prt-pg .s2-feat-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: saturate(0.85) brightness(0.92)
}

.prt-pg .s3-pricing {
  padding: 96px 56px;
  background: #fff
}

.prt-pg .s3-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 56px
}

.prt-pg .s3-h2 {
  font-size: 45px;
  line-height: 1.2;
  color: #223D4E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 16px
}

.prt-pg .s3-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  max-width: 520px;
  margin: 0
}

.prt-pg .s3-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 6px 22px -1px #223d4e1a
}

.prt-pg .s3-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px
}

.prt-pg .s3-table thead tr {
  background: linear-gradient(67deg, #223D4E, #FC3C8A)
}

.prt-pg .s3-table thead th {
  padding: 28px 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  text-align: center
}

.prt-pg .s3-table thead th:first-child {
  text-align: left;
  padding-left: 28px;
  border-radius: 14px 0 0 0
}

.prt-pg .s3-table thead th:last-child {
  border-radius: 0 14px 0 0
}

.prt-pg .s3-table tbody tr {
  border-bottom: 1px solid #D8EFEF;
  transition: background .22s
}

.prt-pg .s3-table tbody tr:last-child {
  border-bottom: none
}

.prt-pg .s3-table tbody tr:hover {
  background: #d8efef59
}

.prt-pg .s3-table tbody td {
  padding: 16px;
  font-size: 15px;
  line-height: 1.4;
  color: #223D4E;
  text-align: center;
  vertical-align: middle
}

.prt-pg .s3-table tbody td:first-child {
  text-align: left;
  padding-left: 28px;
  font-weight: 600
}

.prt-pg .s3-table .tier-feat {
  background: #fc3c8a0a
}

.prt-pg .s3-table .tier-feat td {
  font-weight: 700;
  color: #FC3C8A
}

.prt-pg .s3-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 40px;
  background: #FC3C8A;
  position: relative
}

.prt-pg .s3-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg)
}

.prt-pg .s3-dash {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: #D8EFEF;
  border-radius: 4px;
  vertical-align: middle
}

.prt-pg .s3-price-row td {
  font-size: 23px;
  font-weight: 800;
  color: #223D4E
}

.prt-pg .s3-price-row td:first-child {
  font-size: 15px;
  font-weight: 600;
  color: #223D4E
}

.prt-pg .s4-contact {
  padding: 96px 56px;
  background: #D8EFEF;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center
}

.prt-pg .s4-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px
}

.prt-pg .s4-h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #223D4E;
  font-weight: 700;
  margin: 0
}

.prt-pg .s4-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  margin: 0;
  max-width: 480px
}

.prt-pg .s4-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0
}

.prt-pg .s4-info-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: #223D4E;
  font-weight: 500
}

.prt-pg .s4-info-list a {
  color: #FC3C8A;
  text-decoration: none;
  font-weight: 600;
  transition: color .22s
}

.prt-pg .s4-info-list a:hover {
  color: #223D4E
}

.prt-pg .s4-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px
}

.prt-pg .s4-img-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 8px 44px -1px #223d4e1c
}

.prt-pg .s4-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.85) brightness(0.93)
}

.prt-pg .s4-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(67deg, #fc3c8a1f, transparent 55%);
  pointer-events: none;
  border-radius: 14px
}

.prt-pg .s4-since {
  font-size: 13px;
  color: #223D4E;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .6
}

@media (max-width: 1024px) {
  .prt-pg .s1-hero {
    grid-template-columns: 1fr 260px;
    gap: 28px;
    padding: 56px 28px
  }

  .prt-pg .s1-h1 {
    font-size: 45px
  }

  .prt-pg .s1-img-wrap {
    width: 220px;
    height: 300px
  }

  .prt-pg .s2-partners {
    padding: 56px 28px
  }

  .prt-pg .s2-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto
  }

  .prt-pg .s2-sidebar:last-child {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap
  }

  .prt-pg .s2-sidebar:last-child .s2-card {
    flex: 1 1 260px
  }

  .prt-pg .s3-pricing {
    padding: 56px 28px
  }

  .prt-pg .s4-contact {
    grid-template-columns: 1fr;
    padding: 56px 28px
  }

  .prt-pg .s4-right {
    width: 100%
  }

  .prt-pg .s4-img-wrap {
    height: 260px
  }
}

@media (max-width: 768px) {
  .prt-pg .s1-hero {
    grid-template-columns: 1fr;
    padding: 28px 16px;
    gap: 28px
  }

  .prt-pg .s1-h1 {
    font-size: 32px
  }

  .prt-pg .s1-img-col {
    align-items: flex-start
  }

  .prt-pg .s1-img-wrap {
    width: 100%;
    height: 240px
  }

  .prt-pg .s2-partners {
    padding: 56px 16px
  }

  .prt-pg .s2-h2 {
    font-size: 32px
  }

  .prt-pg .s2-grid {
    grid-template-columns: 1fr
  }

  .prt-pg .s2-sidebar:last-child {
    flex-direction: column
  }

  .prt-pg .s3-pricing {
    padding: 56px 16px
  }

  .prt-pg .s3-h2 {
    font-size: 32px
  }

  .prt-pg .s4-contact {
    padding: 56px 16px
  }

  .prt-pg .s4-h2 {
    font-size: 23px
  }
}

@media (max-width: 320px) {
  .prt-pg .s1-h1 {
    font-size: 23px
  }

  .prt-pg .s2-h2,
  .prt-pg .s3-h2 {
    font-size: 23px
  }

  .prt-pg .btn-main,
  .prt-pg .btn-outline {
    padding: 16px;
    font-size: 13px
  }
}

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

.ct-us .pg-wrap {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px
}

.ct-us .draw-line {
  display: block;
  width: 0;
  height: 2px;
  background: #FC3C8A;
  animation: drawln .28s cubic-bezier(0.34, 1.56, 0.64, 1) .4s forwards
}

@keyframes drawln {
  to {
    width: 80px
  }
}

.ct-us .top-band {
  padding-top: 96px;
  padding-bottom: 56px;
  background: #fff;
  position: relative
}

.ct-us .top-band__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px
}

.ct-us .top-band__card {
  flex: 0 0 260px;
  background: #D8EFEF;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  box-shadow: 0 6px 22px -1px #fc3c8a1a
}

.ct-us .top-band__card-shape {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 72px;
  height: 72px;
  border-radius: 40px;
  border: 2px solid #fc3c8a2e;
  background: transparent;
  pointer-events: none
}

.ct-us .top-band__card-shape2 {
  position: absolute;
  bottom: 24px;
  left: -12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 2px solid #223d4e1f;
  background: transparent;
  pointer-events: none
}

.ct-us .card-label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #223D4E;
  opacity: .6;
  line-height: 1.4
}

.ct-us .card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FC3C8A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 40px;
  padding: 8px 16px;
  letter-spacing: .06em;
  box-shadow: 0 1px 4px -1px #fc3c8a0d;
  align-self: flex-start
}

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

.ct-us .card-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ct-us .cc-type {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #223D4E;
  opacity: .5;
  line-height: 1.4
}

.ct-us .cc-val {
  font-size: 15px;
  color: #223D4E;
  line-height: 1.6;
  word-break: break-word
}

.ct-us .cc-val a {
  color: #223D4E;
  text-decoration: none;
  border-bottom: 1px solid #fc3c8a59;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .cc-val a:hover {
  color: #FC3C8A;
  border-color: #FC3C8A
}

.ct-us .top-band__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ct-us .pg-eyebrow {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FC3C8A;
  line-height: 1.4
}

.ct-us .pg-h1 {
  font-size: 45px;
  line-height: 1.2;
  color: #223D4E;
  margin: 0
}

.ct-us .pg-h1 .grad-word {
  background: linear-gradient(67deg, #D8EFEF, #FC3C8A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ct-us .pg-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #223D4E;
  max-width: 520px;
  margin: 0;
  opacity: .82
}

.ct-us .icon-legend {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px
}

.ct-us .legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.ct-us .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 4px;
  flex-shrink: 0
}

.ct-us .legend-dot.pink {
  background: #FC3C8A
}

.ct-us .legend-dot.teal {
  background: #D8EFEF;
  border: 1px solid #223D4E
}

.ct-us .legend-dot.navy {
  background: #223D4E
}

.ct-us .legend-txt {
  font-size: 13px;
  color: #223D4E;
  line-height: 1.4;
  opacity: .7
}

.ct-us .asym-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin-top: 56px
}

.ct-us .asym-divider__long {
  flex: 0 0 72%;
  height: 1px;
  background: #223d4e21
}

.ct-us .asym-divider__short {
  flex: 0 0 10%;
  height: 1px;
  background: #FC3C8A;
  margin-left: 8px
}

.ct-us .form-sect {
  padding-top: 56px;
  padding-bottom: 96px;
  background: linear-gradient(67deg, #D8EFEF 0%, #fff 60%);
  position: relative;
  overflow: hidden
}

.ct-us .form-sect__bg-sym {
  position: absolute;
  top: -56px;
  right: -28px;
  font-size: 320px;
  line-height: 1;
  color: #223d4e0a;
  pointer-events: none;
  user-select: none;
  font-style: normal;
  z-index: 0
}

.ct-us .form-sect__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start
}

.ct-us .form-sect__meta {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 16px
}

.ct-us .form-h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.ct-us .form-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  margin: 0;
  opacity: .78
}

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

.ct-us .step-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.ct-us .step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #223D4E;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1
}

.ct-us .step-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  opacity: .8
}

.ct-us .form-wrap {
  flex: 1 1 0;
  background: #fff;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 8px 44px -1px #fc3c8a1c;
  display: flex;
  flex-direction: column;
  gap: 28px
}

.ct-us .form-row {
  display: flex;
  flex-direction: row;
  gap: 28px
}

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

.ct-us .field-grp.full {
  flex: 0 0 100%
}

.ct-us .f-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #223D4E;
  line-height: 1.4
}

.ct-us .f-req {
  color: #FC3C8A;
  margin-left: 4px
}

.ct-us .f-input {
  border: 1.5px solid #223d4e2e;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  color: #223D4E;
  background: #fff;
  line-height: 1.4;
  box-shadow: inset 0 1px 4px -1px #fc3c8a0d;
  transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none
}

.ct-us .f-input::placeholder {
  color: #223d4e59;
  font-size: 13px
}

.ct-us .f-input:focus {
  outline: none;
  border-color: #FC3C8A
}

.ct-us .f-select {
  border: 1.5px solid #223d4e2e;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  color: #223D4E;
  background: #fff;
  line-height: 1.4;
  box-shadow: inset 0 1px 4px -1px #fc3c8a0d;
  transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23223D4E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer
}

.ct-us .f-select:focus {
  outline: none;
  border-color: #FC3C8A
}

.ct-us .f-select option {
  color: #223D4E;
  background: #fff
}

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

.ct-us .prv-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #FC3C8A;
  cursor: pointer
}

.ct-us .prv-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #223D4E;
  opacity: .75
}

.ct-us .prv-txt a {
  color: #FC3C8A;
  text-decoration: none;
  border-bottom: 1px solid #fc3c8a66;
  transition: opacity .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .prv-txt a:hover {
  opacity: .7
}

.ct-us .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FC3C8A;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: 14px;
  padding: 16px 56px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 6px 22px -1px #fc3c8a1a;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .submit-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 44px -1px #fc3c8a1c
}

.ct-us .submit-btn:focus {
  outline: 2px solid #FC3C8A;
  outline-offset: 3px
}

.ct-us .submit-btn:active {
  transform: scale(0.98)
}

@media (max-width: 1024px) {
  .ct-us .top-band__inner {
    gap: 28px
  }

  .ct-us .top-band__card {
    flex: 0 0 220px
  }

  .ct-us .pg-h1 {
    font-size: 32px
  }

  .ct-us .form-sect__inner {
    flex-direction: column;
    gap: 28px
  }

  .ct-us .form-sect__meta {
    flex: none;
    width: 100%
  }

  .ct-us .form-wrap {
    padding: 28px
  }
}

@media (max-width: 768px) {
  .ct-us .top-band {
    padding-top: 56px;
    padding-bottom: 28px
  }

  .ct-us .top-band__inner {
    flex-direction: column;
    gap: 28px
  }

  .ct-us .top-band__card {
    flex: none;
    width: 100%;
    box-sizing: border-box
  }

  .ct-us .pg-h1 {
    font-size: 32px
  }

  .ct-us .pg-desc {
    font-size: 15px
  }

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

  .ct-us .form-wrap {
    padding: 28px 16px
  }

  .ct-us .form-sect {
    padding-top: 28px;
    padding-bottom: 56px
  }

  .ct-us .submit-btn {
    width: 100%;
    padding: 16px 28px
  }
}

@media (max-width: 320px) {
  .ct-us .pg-h1 {
    font-size: 23px
  }

  .ct-us .pg-wrap {
    padding-left: 16px;
    padding-right: 16px
  }

  .ct-us .form-wrap {
    padding: 16px 8px
  }
}

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

.succ-pg .succ-card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border: 1.5px solid #D8EFEF;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 6px 22px -1px #fc3c8a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px
}

.succ-pg .succ-icon {
  width: 72px;
  height: 72px;
  border-radius: 40px;
  background: #D8EFEF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

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

.succ-pg .succ-label {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FC3C8A;
  text-align: center;
  margin: 0
}

.succ-pg .succ-title {
  font-size: 32px;
  line-height: 1.2;
  color: #223D4E;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.succ-pg .succ-body {
  font-size: 15px;
  line-height: 1.6;
  color: #223D4E;
  text-align: center;
  margin: 0;
  max-width: 420px
}

.succ-pg .succ-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(67deg, #D8EFEF, #FC3C8A);
  border-radius: 4px;
  flex-shrink: 0
}

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

.succ-pg .btn-prim {
  display: inline-block;
  padding: 16px 28px;
  background: #FC3C8A;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 4px -1px #fc3c8a0d 0 6px 22px -1px #fc3c8a1a;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.succ-pg .btn-prim:hover,
.succ-pg .btn-prim:focus {
  transform: scale(1.06);
  box-shadow: 0 8px 44px -1px #fc3c8a1c;
  outline: none
}

.succ-pg .btn-prim:active {
  transform: scale(0.98)
}

.succ-pg .btn-sec {
  display: inline-block;
  padding: 16px 28px;
  background: transparent;
  color: #223D4E;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: 1.5px solid #223D4E;
  cursor: pointer;
  transition: transform .28s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.succ-pg .btn-sec:hover,
.succ-pg .btn-sec:focus {
  transform: scale(1.05);
  border-color: #FC3C8A;
  color: #FC3C8A;
  outline: none
}

.succ-pg .btn-sec:active {
  transform: scale(0.97)
}

.succ-pg .succ-note {
  font-size: 13px;
  line-height: 1.6;
  color: #223D4E;
  text-align: center;
  margin: 0;
  opacity: .7
}

.succ-pg .succ-note a {
  color: #FC3C8A;
  text-decoration: underline;
  text-underline-offset: 3px
}

@media (max-width: 768px) {
  .succ-pg {
    padding: 56px 16px
  }

  .succ-pg .succ-card {
    padding: 28px;
    gap: 16px
  }

  .succ-pg .succ-title {
    font-size: 23px
  }

  .succ-pg .succ-actions {
    flex-direction: column;
    align-items: stretch
  }

  .succ-pg .btn-prim,
  .succ-pg .btn-sec {
    text-align: center
  }
}

@media (max-width: 320px) {
  .succ-pg .succ-card {
    padding: 28px 16px
  }
}