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

html {
  font-size: 100%;
  scroll-behavior: auto
}

body {
  margin: 0
}

:focus-visible {
  outline: 2px dashed #F3984C;
  outline-offset: 3px;
  animation: dash-spin 3s linear infinite
}

@keyframes dash-spin {
  from {
    outline-offset: 3px
  }

  to {
    outline-offset: 3px
  }
}

@keyframes focus-rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.pg-hdr {
  position: relative;
  font-family: 'Rubik', sans-serif;
  background-color: #fff;
  overflow: visible
}

.pg-hdr__accent {
  height: 4px;
  background: linear-gradient(90deg, #002840 0%, #F3984C 60%, #002840 100%);
  width: 100%
}

.pg-hdr__body {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px
}

.pg-hdr__mid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 16px;
  border-bottom: 1px solid #0028401a;
  gap: 24px
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.brand-card__img-wrap {
  background-color: #002840;
  border-radius: 14px;
  padding: 8px 16px;
  box-shadow: -1px 6px 14px 0 #00284017;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 64px
}

.brand-card__img-wrap img {
  width: 88px;
  height: 48px;
  object-fit: contain;
  display: block
}

.brand-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #002840;
  line-height: 1.15;
  letter-spacing: 0
}

.brand-card__rule {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F3984C, transparent);
  border: none;
  margin: 0
}

.pg-hdr__prop {
  font-size: 13px;
  color: #002840;
  line-height: 1.4;
  text-align: center;
  max-width: 240px;
  opacity: .72
}

.pg-hdr__nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 0
}

.pg-hdr__nav-row a {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #002840;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 40px;
  line-height: 1.4;
  transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1), color .45s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center
}

.pg-hdr__nav-row a:hover {
  background-color: #002840;
  color: #fff
}

.pg-hdr__nav-row a.active {
  background-color: #F3984C;
  color: #fff;
  font-weight: 700
}

.pg-ftr {
  font-family: 'Rubik', sans-serif;
  background-color: #002840;
  color: #fff
}

.pg-ftr__top {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}

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

.ftr-brand__img-wrap {
  background-color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 44px;
  box-shadow: -1px 3px 2px 0 #0028400f
}

.ftr-brand__img-wrap img {
  width: 56px;
  height: 28px;
  object-fit: contain;
  display: block
}

.ftr-brand__name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15
}

.ftr-brand__desc {
  font-size: 13px;
  color: #ffffffa6;
  line-height: 1.6;
  max-width: 260px
}

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

.ftr-links__label {
  font-size: 13px;
  font-weight: 700;
  color: #F3984C;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 8px
}

.ftr-links a {
  font-size: 14px;
  color: #ffffffbf;
  text-decoration: none;
  line-height: 1.4;
  transition: color .5s ease-in-out;
  display: block;
  padding: 4px 0
}

.ftr-links a:hover {
  color: #F3984C
}

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

.ftr-contact__label {
  font-size: 13px;
  font-weight: 700;
  color: #F3984C;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 8px
}

.ftr-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #ffffffbf;
  line-height: 1.4
}

.ftr-contact__item a {
  color: #ffffffbf;
  text-decoration: none;
  transition: color .5s ease-in-out
}

.ftr-contact__item a:hover {
  color: #F3984C
}

.ftr-contact__item .pe-7s {
  color: #F3984C;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px
}

.ftr-contact__socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.ftr-contact__soc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ffffffbf;
  text-decoration: none;
  background-color: #ffffff14;
  border-radius: 40px;
  padding: 8px 16px;
  transition: background-color .55s cubic-bezier(0.22, 1, 0.36, 1), color .55s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 44px
}

.ftr-contact__soc-link:hover {
  background-color: #F3984C;
  color: #fff
}

.pg-ftr__divider {
  max-width: 1500px;
  margin: 0 auto;
  height: 1px;
  background: #ffffff1f
}

.pg-ftr__bottom {
  background-color: #001a2e;
  padding: 24px 40px
}

.pg-ftr__bottom-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

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

.ftr-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.ftr-legal a {
  font-size: 13px;
  color: #ffffff73;
  text-decoration: none;
  line-height: 1.4;
  transition: color .6s ease-in-out
}

.ftr-legal a:hover {
  color: #F3984C
}

@media (max-width: 900px) {
  .pg-ftr__top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px 24px
  }

  .ftr-brand {
    grid-column: 1 / -1
  }

  .pg-hdr__body {
    padding: 0 16px
  }

  .pg-hdr__prop {
    display: none
  }
}

@media (max-width: 600px) {
  .pg-ftr__top {
    grid-template-columns: 1fr
  }

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

  .pg-hdr__mid {
    flex-direction: column;
    padding: 16px 0 12px
  }
}

.policy-content-zmeb {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #002840
}

.policy-content-zmeb h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F3984C
}

.policy-content-zmeb h2 {
  font-size: 27px;
  line-height: 1.15;
  font-weight: 700;
  margin-top: 80px;
  margin-bottom: 24px;
  color: #002840
}

.policy-content-zmeb h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #002840
}

.policy-content-zmeb h4 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #002840
}

.policy-content-zmeb h5 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #002840
}

.policy-content-zmeb h6 {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #002840
}

.policy-content-zmeb p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #002840
}

.policy-content-zmeb ul,
.policy-content-zmeb ol {
  margin: 16px 0 24px;
  padding-left: 24px
}

.policy-content-zmeb ul {
  list-style: none;
  padding-left: 0
}

.policy-content-zmeb ul li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #002840
}

.policy-content-zmeb ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 40px;
  background-color: #F3984C
}

.policy-content-zmeb ol {
  list-style: decimal
}

.policy-content-zmeb ol li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #002840;
  padding-left: 8px
}

.policy-content-zmeb ol li::marker {
  color: #F3984C;
  font-weight: 700
}

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

.policy-content-zmeb strong,
.policy-content-zmeb b {
  font-weight: 700;
  color: #002840
}

.policy-content-zmeb table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: -1px 6px 14px 0 #00284017
}

.policy-content-zmeb thead {
  background-color: #002840;
  color: #FFF
}

.policy-content-zmeb thead th {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  color: #FFF;
  border: none
}

.policy-content-zmeb tbody tr {
  border-bottom: 1px solid #00284017;
  transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.policy-content-zmeb tbody tr:nth-child(even) {
  background-color: #00284008
}

.policy-content-zmeb tbody tr:hover {
  background-color: #f3984c12
}

.policy-content-zmeb td {
  padding: 16px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #002840;
  vertical-align: top
}

.policy-content-zmeb th {
  padding: 16px 24px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  vertical-align: top
}

.policy-content-zmeb hr {
  border: none;
  height: 1px;
  background-color: #0028401f;
  margin: 40px 0
}

@media (max-width: 768px) {
  .policy-content-zmeb {
    padding: 40px 16px
  }

  .policy-content-zmeb h1 {
    font-size: 27px
  }

  .policy-content-zmeb h2 {
    font-size: 20px;
    margin-top: 40px
  }

  .policy-content-zmeb h3 {
    font-size: 16px
  }

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

  .policy-content-zmeb thead th,
  .policy-content-zmeb td {
    padding: 8px 16px
  }
}

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

.jrnl-det .reveal-left {
  animation: slideFromLeft .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.jrnl-det .reveal-right {
  animation: slideFromRight .55s cubic-bezier(0.22, 1, 0.36, 1) .08s both
}

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

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

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

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

.jrnl-det .pg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  max-width: 1500px;
  margin: 0 auto
}

.jrnl-det .pg-split__left {
  background: #002840;
  padding: 80px 40px 80px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  overflow: hidden
}

.jrnl-det .pg-split__left .qt-mark {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 220px;
  line-height: 1.15;
  color: #f3984c14;
  font-style: italic;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px
}

.jrnl-det .pg-split__label {
  font-size: 13px;
  line-height: 1.4;
  color: #F3984C;
  letter-spacing: 0;
  font-style: normal
}

.jrnl-det .pg-split__h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  font-style: italic;
  margin: 0
}

.jrnl-det .pg-split__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffb8;
  margin: 0
}

.jrnl-det .pg-split__right {
  position: relative;
  overflow: hidden;
  min-height: 420px
}

.jrnl-det .pg-split__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.jrnl-det .pg-split__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #002840 0%, #00284066 40%, transparent 100%);
  pointer-events: none
}

.jrnl-det .meta-bar {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  border-bottom: 1.5px solid #0028401a
}

.jrnl-det .meta-bar__tag {
  font-size: 13px;
  line-height: 1.4;
  background: #f3984c1f;
  color: #002840;
  padding: 4px 16px;
  border-radius: 40px;
  font-style: normal
}

.jrnl-det .meta-bar__cat {
  font-size: 13px;
  line-height: 1.4;
  color: #F3984C;
  border: 1px solid #f3984c66;
  padding: 4px 16px;
  border-radius: 40px
}

.jrnl-det .meta-bar__sep {
  width: 4px;
  height: 4px;
  border-radius: 40px;
  background: #00284033;
  flex-shrink: 0
}

.jrnl-det .meta-bar__date {
  font-size: 13px;
  line-height: 1.4;
  color: #0028408c
}

.jrnl-det .meta-bar__author {
  font-size: 13px;
  line-height: 1.4;
  color: #002840;
  font-style: italic
}

.jrnl-det .meta-bar__stats {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.jrnl-det .meta-bar__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #0028408c
}

.jrnl-det .meta-bar__stat svg {
  flex-shrink: 0
}

.jrnl-det .art-body {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start
}

.jrnl-det .art-body__text {
  min-width: 0
}

.jrnl-det .art-body__text p {
  font-size: 16px;
  line-height: 1.6;
  color: #002840;
  margin: 0 0 24px
}

.jrnl-det .art-body__text h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #002840;
  font-style: italic;
  margin: 40px 0 16px
}

.jrnl-det .art-body__text h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 24px 0 8px
}

.jrnl-det .art-body__text abbr {
  text-decoration: underline dotted #00284066;
  cursor: help
}

.jrnl-det .art-body__text blockquote {
  margin: 40px 0;
  padding: 24px 40px;
  background: linear-gradient(160deg, #0028400a 0%, #f3984c0f 60%, #fff 100%);
  border-radius: 8px;
  box-shadow: -1px 6px 14px 0 #00284017;
  position: relative
}

.jrnl-det .art-body__text blockquote p {
  font-size: 20px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 0 0 8px
}

.jrnl-det .art-body__text blockquote cite {
  font-size: 13px;
  line-height: 1.4;
  color: #F3984C;
  font-style: normal
}

.jrnl-det .art-body__text table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6
}

.jrnl-det .art-body__text td {
  padding: 16px;
  border-bottom: 1px solid #0028401a;
  color: #002840;
  vertical-align: top
}

.jrnl-det .art-body__text tr:first-child td {
  background: #0028400a;
  font-size: 13px;
  color: #002840b3
}

.jrnl-det .art-body__text tfoot td {
  background: #f3984c12;
  font-style: italic;
  font-size: 13px;
  color: #002840b3;
  border-bottom: none
}

.jrnl-det .art-side {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.jrnl-det .side-card {
  border-radius: 8px;
  padding: 24px;
  box-shadow: -1px 6px 14px 0 #00284017
}

.jrnl-det .side-card--nav {
  background: #002840
}

.jrnl-det .side-card--nav .sc-label {
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff80;
  margin: 0 0 16px
}

.jrnl-det .side-card--nav .sc-link {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff14;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), padding-left .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.jrnl-det .side-card--nav .sc-link:last-child {
  border-bottom: none
}

.jrnl-det .side-card--nav .sc-link:hover {
  color: #F3984C;
  padding-left: 8px
}

.jrnl-det .side-card--cta {
  background: linear-gradient(155deg, #F3984C 0%, #f3984cb3 60%, #00284014 100%)
}

.jrnl-det .side-card--cta .sc-head {
  font-size: 20px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 0 0 8px
}

.jrnl-det .side-card--cta .sc-body {
  font-size: 14px;
  line-height: 1.6;
  color: #002840cc;
  margin: 0 0 16px
}

.jrnl-det .side-card--cta .sc-btn {
  display: inline-block;
  background: #002840;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 24px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s ease-in-out;
  box-shadow: -1px 3px 2px 0 #0028400f
}

.jrnl-det .side-card--cta .sc-btn:hover {
  background: #001e32;
  box-shadow: -1px 8px 40px 0 #00284024
}

.jrnl-det .side-card--cta .sc-btn:focus {
  outline: 2px solid #F3984C;
  outline-offset: 2px
}

.jrnl-det .dots-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 8px
}

.jrnl-det .dots-bg span {
  position: absolute;
  border-radius: 40px;
  background: #f3984c2e
}

.jrnl-det .divider-asym {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.jrnl-det .divider-asym__long {
  flex: 5;
  height: 1.5px;
  background: linear-gradient(to right, #002840 0%, #f3984c66 60%, transparent 100%);
  border-radius: 4px
}

.jrnl-det .divider-asym__short {
  flex: 1;
  height: 1.5px;
  background: #f3984c4d;
  border-radius: 4px
}

.jrnl-det .concentric-wrap {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  pointer-events: none
}

.jrnl-det .concentric-wrap span {
  position: absolute;
  border: 1px solid #f3984c2e;
  border-radius: 4px
}

.jrnl-det .concentric-wrap span:nth-child(1) {
  inset: 0
}

.jrnl-det .concentric-wrap span:nth-child(2) {
  inset: 10px
}

.jrnl-det .concentric-wrap span:nth-child(3) {
  inset: 20px
}

.jrnl-det .concentric-wrap span:nth-child(4) {
  inset: 30px
}

.jrnl-det .back-row {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 80px 40px
}

.jrnl-det .back-row__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #002840;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.jrnl-det .back-row__link:hover {
  color: #F3984C
}

.jrnl-det .back-row__link:focus {
  outline: 2px solid #F3984C;
  outline-offset: 2px;
  border-radius: 4px
}

.jrnl-det .art-footer-strip {
  background: linear-gradient(180deg, #0028400a 0%, #fff 100%);
  padding: 40px 0 80px
}

.jrnl-det .art-footer-strip__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.jrnl-det .art-footer-strip__label {
  font-size: 13px;
  line-height: 1.4;
  color: #00284080
}

.jrnl-det .art-footer-strip__tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.jrnl-det .art-footer-strip__tag {
  font-size: 13px;
  line-height: 1.4;
  color: #002840;
  background: #0028400f;
  padding: 4px 16px;
  border-radius: 40px
}

.jrnl-det .art-footer-strip__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.jrnl-det .art-footer-strip__contact a {
  font-size: 14px;
  line-height: 1.4;
  color: #002840;
  text-decoration: none;
  transition: color .45s ease-in-out;
  border-bottom: 1px solid #00284033;
  padding-bottom: 4px
}

.jrnl-det .art-footer-strip__contact a:hover {
  color: #F3984C;
  border-bottom-color: #F3984C
}

@media (max-width: 1100px) {
  .jrnl-det .art-body {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px
  }

  .jrnl-det .art-side {
    position: static
  }

  .jrnl-det .pg-split {
    grid-template-columns: 1fr
  }

  .jrnl-det .pg-split__right {
    min-height: 280px
  }

  .jrnl-det .pg-split__left {
    padding: 40px
  }

  .jrnl-det .pg-split__h1 {
    font-size: 27px
  }

  .jrnl-det .meta-bar {
    padding: 16px 40px;
    flex-wrap: wrap
  }

  .jrnl-det .meta-bar__stats {
    margin-left: 0
  }

  .jrnl-det .divider-asym {
    padding: 0 40px
  }

  .jrnl-det .back-row {
    padding: 16px 40px 24px
  }

  .jrnl-det .art-footer-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px;
    gap: 16px
  }
}

@media (max-width: 640px) {
  .jrnl-det .pg-split__left {
    padding: 40px 16px
  }

  .jrnl-det .pg-split__h1 {
    font-size: 27px
  }

  .jrnl-det .art-body {
    padding: 24px 16px
  }

  .jrnl-det .meta-bar {
    padding: 16px;
    gap: 8px
  }

  .jrnl-det .divider-asym {
    padding: 0 16px
  }

  .jrnl-det .back-row {
    padding: 16px
  }

  .jrnl-det .art-footer-strip__inner {
    padding: 0 16px
  }
}

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

.faq-pg .bento-top {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px
}

.faq-pg .bento-top .cell-img {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px
}

.faq-pg .bento-top .cell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.faq-pg .bento-top .cell-img .scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, #00284012 3px, #00284012 4px);
  pointer-events: none
}

.faq-pg .bento-top .cell-img .bg-num {
  position: absolute;
  bottom: -16px;
  right: 8px;
  font-size: 160px;
  font-weight: 900;
  color: #00284012;
  line-height: 1.15;
  pointer-events: none;
  user-select: none
}

.faq-pg .bento-top .cell-txt {
  background: #002840;
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.faq-pg .bento-top .cell-txt .pg-label {
  font-size: 13px;
  color: #F3984C;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.4
}

.faq-pg .bento-top .cell-txt h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  font-style: italic;
  margin: 0 0 16px
}

.faq-pg .bento-top .cell-txt .accent-div {
  width: 48px;
  height: 2px;
  background: #F3984C;
  margin-bottom: 16px
}

.faq-pg .bento-top .cell-txt .sub-stmt {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffbf;
  margin: 0
}

.faq-pg .bento-top .cell-stat {
  background: #F3984C;
  border-radius: 14px;
  padding: 24px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px
}

.faq-pg .bento-top .cell-stat .stat-num {
  font-size: 52px;
  font-weight: 900;
  color: #002840;
  line-height: 1.15;
  white-space: nowrap
}

.faq-pg .bento-top .cell-stat .stat-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #002840;
  margin: 0
}

.faq-pg .bento-top .corner-dec {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  pointer-events: none
}

.faq-pg .bento-top .corner-dec span {
  position: absolute;
  border: 1px solid #f3984c59;
  border-radius: 4px
}

.faq-pg .bento-top .corner-dec span:nth-child(1) {
  inset: 0
}

.faq-pg .bento-top .corner-dec span:nth-child(2) {
  inset: 8px
}

.faq-pg .bento-top .corner-dec span:nth-child(3) {
  inset: 16px
}

.faq-pg .div-diamond {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 0
}

.faq-pg .div-diamond .d-line {
  height: 1px;
  width: 80px;
  background: #0028402e
}

.faq-pg .div-diamond .d-sq {
  width: 8px;
  height: 8px;
  background: #F3984C;
  transform: rotate(45deg);
  border-radius: 1px;
  margin: 0 8px
}

.faq-pg .cats-strip {
  background: #f5f0eb;
  padding: 40px 0
}

.faq-pg .cats-strip .cats-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.faq-pg .cats-strip .cats-hd {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 16px
}

.faq-pg .cats-strip .cats-hd h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 0
}

.faq-pg .cats-strip .cats-hd .hd-line {
  flex: 1;
  height: 1px;
  background: #0028401f
}

.faq-pg .cats-strip .cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.faq-pg .cats-strip .cat-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: -1px 3px 2px 0 #0028400f -1px 6px 14px 0 #00284017;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.faq-pg .cats-strip .cat-card:hover {
  box-shadow: -1px 8px 40px 0 #00284024;
  transform: translateY(-2px)
}

.faq-pg .cats-strip .cat-card .cat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #f3984c1f;
  border-radius: 8px
}

.faq-pg .cats-strip .cat-card .cat-icon svg {
  width: 20px;
  height: 20px;
  stroke: #F3984C;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.faq-pg .cats-strip .cat-card h4 {
  font-size: 14px;
  line-height: 1.4;
  color: #002840;
  margin: 0;
  font-weight: 700
}

.faq-pg .cats-strip .cat-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0
}

.faq-pg .faq-body {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start
}

.faq-pg .faq-body .sidebar {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-pg .faq-body .sidebar .sb-lbl {
  font-size: 13px;
  color: #F3984C;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  line-height: 1.4
}

.faq-pg .faq-body .sidebar a {
  font-size: 14px;
  line-height: 1.6;
  color: #002840;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  transition: background .45s cubic-bezier(0.22, 1, 0.36, 1), color .45s cubic-bezier(0.22, 1, 0.36, 1);
  display: block
}

.faq-pg .faq-body .sidebar a:hover {
  background: #00284012;
  color: #F3984C
}

.faq-pg .faq-body .sidebar .sb-img-wrap {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: -1px 6px 14px 0 #00284017
}

.faq-pg .faq-body .sidebar .sb-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block
}

.faq-pg .faq-body .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.faq-pg .faq-body .faq-grp {
  margin-bottom: 40px
}

.faq-pg .faq-body .faq-grp .grp-hd {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F3984C
}

.faq-pg .faq-body .faq-grp .grp-hd h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 0
}

.faq-pg .faq-body .faq-grp .grp-hd .grp-num {
  font-size: 52px;
  font-weight: 900;
  color: #0028400f;
  line-height: 1
}

.faq-pg .faq-body .faq-item {
  border-radius: 8px;
  margin-bottom: 8px;
  background: #fff;
  box-shadow: -1px 3px 2px 0 #0028400f;
  overflow: hidden
}

.faq-pg .faq-body .faq-item details {
  width: 100%
}

.faq-pg .faq-body .faq-item details summary {
  list-style: none;
  padding: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  line-height: 1.4;
  color: #002840;
  font-weight: 600;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none
}

.faq-pg .faq-body .faq-item details summary::-webkit-details-marker {
  display: none
}

.faq-pg .faq-body .faq-item details summary:hover {
  background: #f3984c0f
}

.faq-pg .faq-body .faq-item details summary .sum-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.faq-pg .faq-body .faq-item details summary .sum-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #F3984C;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.faq-pg .faq-body .faq-item details[open] summary .sum-arrow {
  transform: rotate(180deg)
}

.faq-pg .faq-body .faq-item details[open] summary {
  background: #f3984c0f
}

.faq-pg .faq-body .faq-item .ans-body {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-pg .faq-body .faq-item .ans-acc {
  width: 32px;
  height: 2px;
  background: #F3984C;
  margin-bottom: 8px
}

.faq-pg .faq-body .faq-item .ans-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0
}

.faq-pg .faq-body .faq-item .ans-body .p-num {
  font-size: 13px;
  color: #F3984C;
  font-weight: 700;
  margin-right: 8px
}

.faq-pg .highlight-band {
  background: #002840;
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.faq-pg .highlight-band .hb-dec {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 80px;
  height: 80px;
  pointer-events: none
}

.faq-pg .highlight-band .hb-dec span {
  position: absolute;
  border: 1px solid #f3984c33;
  border-radius: 4px
}

.faq-pg .highlight-band .hb-dec span:nth-child(1) {
  inset: 0
}

.faq-pg .highlight-band .hb-dec span:nth-child(2) {
  inset: 10px
}

.faq-pg .highlight-band .hb-dec span:nth-child(3) {
  inset: 20px
}

.faq-pg .highlight-band .hb-dec span:nth-child(4) {
  inset: 30px
}

.faq-pg .highlight-band .hb-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center
}

.faq-pg .highlight-band .hb-txt {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.faq-pg .highlight-band .hb-txt h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  margin: 0
}

.faq-pg .highlight-band .hb-txt p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffffb3;
  margin: 0
}

.faq-pg .highlight-band .hb-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.faq-pg .highlight-band .hb-metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #ffffff0d;
  border-radius: 8px;
  transition: background .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.faq-pg .highlight-band .hb-metric:hover {
  background: #f3984c1f
}

.faq-pg .highlight-band .hb-metric .met-val {
  font-size: 27px;
  font-weight: 900;
  color: #F3984C;
  line-height: 1.15;
  white-space: nowrap
}

.faq-pg .highlight-band .hb-metric .met-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #ffffffa6
}

.faq-pg .highlight-band .hb-glass {
  background: #ffffff0a;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.faq-pg .highlight-band .hb-glass h4 {
  font-size: 14px;
  line-height: 1.4;
  color: #F3984C;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.faq-pg .highlight-band .hb-glass .tip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0
}

.faq-pg .highlight-band .hb-glass .tip-list li {
  font-size: 13px;
  line-height: 1.6;
  color: #ffffffbf;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.faq-pg .highlight-band .hb-glass .tip-list li .tip-dot {
  width: 6px;
  height: 6px;
  background: #F3984C;
  border-radius: 40px;
  flex-shrink: 0;
  margin-top: 6px
}

.faq-pg .shake-el {
  animation: pg-shake .6s cubic-bezier(0.22, 1, 0.36, 1) 2.5s both
}

@keyframes pg-shake {
  0% {
    transform: translateX(0)
  }

  15% {
    transform: translateX(-4px) rotate(-1deg)
  }

  30% {
    transform: translateX(5px) rotate(1deg)
  }

  45% {
    transform: translateX(-4px) rotate(-0.5deg)
  }

  60% {
    transform: translateX(3px)
  }

  75% {
    transform: translateX(-2px)
  }

  100% {
    transform: translateX(0)
  }
}

@media (max-width: 1100px) {
  .faq-pg .cats-strip .cats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .faq-pg .faq-body {
    grid-template-columns: 1fr
  }

  .faq-pg .faq-body .sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap
  }

  .faq-pg .faq-body .sidebar .sb-img-wrap {
    display: none
  }

  .faq-pg .highlight-band .hb-inner {
    grid-template-columns: 1fr 1fr
  }

  .faq-pg .highlight-band .hb-glass {
    grid-column: 1 / 3
  }
}

@media (max-width: 768px) {
  .faq-pg .bento-top {
    grid-template-columns: 1fr;
    padding: 40px 16px 24px
  }

  .faq-pg .bento-top .cell-img {
    min-height: 240px;
    grid-row: auto
  }

  .faq-pg .bento-top .cell-txt h1 {
    font-size: 27px
  }

  .faq-pg .cats-strip .cats-inner {
    padding: 0 16px
  }

  .faq-pg .cats-strip .cats-grid {
    grid-template-columns: 1fr
  }

  .faq-pg .faq-body {
    padding: 40px 16px
  }

  .faq-pg .highlight-band .hb-inner {
    grid-template-columns: 1fr;
    padding: 0 16px
  }

  .faq-pg .highlight-band .hb-glass {
    grid-column: auto
  }
}

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

.ct-us .split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  position: relative
}

.ct-us .split-band .band-left {
  background: #002840;
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.ct-us .split-band .band-left .blob-a {
  position: absolute;
  width: 260px;
  height: 260px;
  background: #F3984C;
  border-radius: 40px;
  opacity: .08;
  top: -60px;
  right: -60px;
  filter: blur(48px);
  pointer-events: none
}

.ct-us .split-band .band-left .blob-b {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #F3984C;
  border-radius: 40px;
  opacity: .06;
  bottom: -40px;
  left: 40px;
  filter: blur(36px);
  pointer-events: none
}

.ct-us .split-band .band-left .pg-label {
  font-size: 13px;
  color: #F3984C;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.4
}

.ct-us .split-band .band-left .pg-h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  font-style: italic;
  margin: 0 0 24px
}

.ct-us .split-band .band-left .pg-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffb8;
  margin: 0;
  max-width: 380px
}

.ct-us .split-band .band-right {
  background: #F3984C;
  position: relative;
  overflow: hidden
}

.ct-us .split-band .band-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
  opacity: .6
}

.ct-us .split-band .band-right .diag-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #002840b8 0%, #f3984c2e 60%, #ffffff0a 100%);
  pointer-events: none
}

.ct-us .split-band .band-right .contact-quick {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ct-us .split-band .band-right .contact-quick .q-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  line-height: 1.4
}

.ct-us .split-band .band-right .contact-quick .q-item a {
  color: #fff;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .split-band .band-right .contact-quick .q-item a:hover {
  color: #002840
}

.ct-us .split-band .band-right .contact-quick .q-icon {
  width: 32px;
  height: 32px;
  background: #0028408c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ct-us .split-band .band-right .contact-quick .q-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #F3984C;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ct-us .divider-band {
  height: 4px;
  background: linear-gradient(90deg, #F3984C 0%, #f3984c4d 60%, transparent 100%)
}

.ct-us .form-section {
  padding: 80px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto
}

.ct-us .form-section .aside-col {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.ct-us .form-section .aside-col .aside-heading {
  font-size: 27px;
  line-height: 1.15;
  color: #002840;
  font-style: italic;
  margin: 0 0 8px
}

.ct-us .form-section .aside-col .aside-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #002840;
  margin: 0
}

.ct-us .form-section .aside-col .addr-block {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ct-us .form-section .aside-col .addr-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.ct-us .form-section .aside-col .addr-item .a-icon {
  width: 40px;
  height: 40px;
  background: #002840;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: -1px 6px 14px 0 #00284017
}

.ct-us .form-section .aside-col .addr-item .a-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #F3984C;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ct-us .form-section .aside-col .addr-item .a-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ct-us .form-section .aside-col .addr-item .a-label {
  font-size: 13px;
  color: #F3984C;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.4
}

.ct-us .form-section .aside-col .addr-item .a-val {
  font-size: 14px;
  color: #002840;
  line-height: 1.4
}

.ct-us .form-section .aside-col .addr-item .a-val a {
  color: #002840;
  text-decoration: none;
  transition: color .55s ease-in-out
}

.ct-us .form-section .aside-col .addr-item .a-val a:hover {
  color: #F3984C
}

.ct-us .form-section .aside-col .msg-apps {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.ct-us .form-section .aside-col .msg-apps .app-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: #002840;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.4;
  box-shadow: -1px 3px 2px 0 #0028400f;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .form-section .aside-col .msg-apps .app-btn:hover {
  background: #F3984C;
  box-shadow: -1px 8px 40px 0 #f3984c24
}

.ct-us .form-section .aside-col .msg-apps .app-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #F3984C;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .form-section .aside-col .msg-apps .app-btn:hover svg {
  stroke: #fff
}

.ct-us .form-section .form-col {
  background: #fff;
  border-radius: 14px;
  box-shadow: -1px 8px 40px 0 #00284024;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(8px)
}

.ct-us .form-section .form-col .form-head {
  font-size: 20px;
  line-height: 1.15;
  color: #002840;
  font-style: italic;
  margin: 0
}

.ct-us .form-section .form-col .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.ct-us .form-section .form-col .field-grp {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ct-us .form-section .form-col .field-grp label {
  font-size: 13px;
  color: #002840;
  line-height: 1.4;
  font-weight: 600
}

.ct-us .form-section .form-col .field-grp input,
.ct-us .form-section .form-col .field-grp select,
.ct-us .form-section .form-col .field-grp textarea {
  border: 1.5px solid #0028402e;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #002840;
  background: #fff;
  outline: none;
  line-height: 1.4;
  box-shadow: inset -1px 3px 2px 0 #0028400a;
  transition: border-color .55s ease-in-out, box-shadow .55s ease-in-out;
  width: 100%;
  box-sizing: border-box;
  text-overflow: ellipsis
}

.ct-us .form-section .form-col .field-grp input::placeholder,
.ct-us .form-section .form-col .field-grp textarea::placeholder {
  color: #00284061;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.ct-us .form-section .form-col .field-grp input:focus,
.ct-us .form-section .form-col .field-grp select:focus,
.ct-us .form-section .form-col .field-grp textarea:focus {
  border-color: #F3984C;
  box-shadow: inset -1px 3px 2px 0 #f3984c12
}

.ct-us .form-section .form-col .field-grp textarea {
  resize: vertical;
  min-height: 100px
}

.ct-us .form-section .form-col .field-grp select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23002840' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer
}

.ct-us .form-section .form-col .priority-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ct-us .form-section .form-col .priority-row .p-label {
  font-size: 13px;
  color: #002840;
  line-height: 1.4;
  font-weight: 600
}

.ct-us .form-section .form-col .priority-row .p-opts {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.ct-us .form-section .form-col .priority-row .p-opts input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none
}

.ct-us .form-section .form-col .priority-row .p-opts label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid #0028402e;
  border-radius: 40px;
  font-size: 13px;
  color: #002840;
  cursor: pointer;
  line-height: 1.4;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none
}

.ct-us .form-section .form-col .priority-row .p-opts input[type="radio"]:checked+label {
  background: #002840;
  border-color: #002840;
  color: #fff
}

.ct-us .form-section .form-col .priority-row .p-opts label:hover {
  border-color: #F3984C;
  color: #F3984C
}

.ct-us .form-section .form-col .priority-row .p-opts input[type="radio"]:checked+label:hover {
  background: #002840;
  border-color: #002840;
  color: #fff
}

.ct-us .form-section .form-col .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.ct-us .form-section .form-col .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #002840;
  margin-top: 2px;
  cursor: pointer
}

.ct-us .form-section .form-col .privacy-row .prv-text {
  font-size: 13px;
  color: #002840b3;
  line-height: 1.6
}

.ct-us .form-section .form-col .privacy-row .prv-text a {
  color: #F3984C;
  text-decoration: underline;
  transition: color .5s ease-in-out
}

.ct-us .form-section .form-col .privacy-row .prv-text a:hover {
  color: #002840
}

.ct-us .form-section .form-col .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: #002840;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: -1px 6px 14px 0 #00284017;
  transition: background .6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start
}

.ct-us .form-section .form-col .submit-btn:hover {
  background: #F3984C;
  box-shadow: -1px 8px 40px 0 #f3984c24
}

.ct-us .form-section .form-col .submit-btn:focus {
  outline: 2px solid #F3984C;
  outline-offset: 3px
}

.ct-us .form-section .form-col .submit-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(-32px)
  }

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

@keyframes slide-right {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

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

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.ct-us .split-band .band-left {
  animation: slide-left .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

.ct-us .split-band .band-right {
  animation: slide-right .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

.ct-us .form-section .form-col {
  animation: slide-up .7s cubic-bezier(0.22, 1, 0.36, 1) .15s both
}

.ct-us .form-section .aside-col {
  animation: slide-left .65s cubic-bezier(0.22, 1, 0.36, 1) .1s both
}

@media (max-width: 1024px) {
  .ct-us .split-band {
    grid-template-columns: 1fr
  }

  .ct-us .split-band .band-right {
    min-height: 280px
  }

  .ct-us .form-section {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px
  }

  .ct-us .split-band .band-left {
    padding: 40px 24px
  }
}

@media (max-width: 640px) {
  .ct-us .split-band .band-left .pg-h1 {
    font-size: 27px
  }

  .ct-us .form-section .form-col .form-row {
    grid-template-columns: 1fr
  }

  .ct-us .form-section .form-col {
    padding: 24px 16px
  }
}

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

.strt * {
  box-sizing: border-box
}

.strt ::selection {
  background: #F3984C;
  color: #002840
}

.strt .pg-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px
}

.strt .ttl-blk {
  background: #002840;
  padding: 80px 0;
  position: relative
}

.strt .ttl-blk .dot-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.strt .ttl-blk .dot-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #f3984c2e 1px, transparent 1px);
  background-size: 28px 28px
}

.strt .ttl-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px
}

.strt .ttl-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .ttl-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #F3984C;
  letter-spacing: .06em;
  text-transform: uppercase
}

.strt .ttl-label .lbl-line {
  width: 32px;
  height: 1px;
  background: #F3984C;
  flex-shrink: 0
}

.strt .ttl-h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  font-style: italic;
  margin: 0
}

.strt .ttl-h1 .pause {
  display: block;
  color: #F3984C
}

.strt .ttl-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffc7;
  max-width: 520px;
  margin: 0
}

.strt .ttl-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.strt .btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F3984C;
  color: #002840;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.strt .btn-prim:hover {
  background: #fff;
  color: #002840
}

.strt .btn-sec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1.5px solid #ffffff47;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color .55s ease-in-out, background .55s ease-in-out;
  text-decoration: none
}

.strt .btn-sec:hover {
  border-color: #F3984C;
  background: #f3984c1a
}

.strt .ttl-img-col {
  flex: 0 0 420px;
  position: relative
}

.strt .ttl-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: -1px 8px 40px 0 #00284024
}

.strt .ttl-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.strt .ttl-img-wrap:hover img {
  transform: scale(1.04)
}

.strt .ttl-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(ellipse at 20% 20%, #0028408c 0%, transparent 55%), radial-gradient(ellipse at 80% 80%, #00284073 0%, transparent 50%);
  pointer-events: none
}

.strt .arrow-dec {
  position: absolute;
  bottom: -24px;
  right: 24px;
  opacity: .22;
  pointer-events: none
}

.strt .div-zz {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.strt .div-zz svg {
  width: 100%;
  height: 32px;
  display: block
}

.strt .evd-blk {
  background: #f4f0eb;
  padding: 80px 0 40px
}

.strt .evd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start
}

.strt .evd-lead {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .evd-h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #002840;
  font-style: italic;
  margin: 0
}

.strt .evd-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3d4f;
  margin: 0
}

.strt .stat-shapes {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .stat-hex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.strt .hex-shape {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.strt .hex-shape svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.strt .hex-val {
  position: relative;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: #002840;
  z-index: 1
}

.strt .stat-desc {
  font-size: 14px;
  line-height: 1.4;
  color: #2a3d4f
}

.strt .evd-img-col {
  grid-column: 2 / 4;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .evd-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: -1px 6px 14px 0 #00284017
}

.strt .evd-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.strt .evd-img-wrap:hover img {
  transform: scale(1.05)
}

.strt .evd-paras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.strt .evd-p {
  font-size: 14px;
  line-height: 1.6;
  color: #2a3d4f;
  margin: 0
}

.strt .evd-p strong {
  color: #002840
}

.strt .num-pfx {
  font-size: 13px;
  font-weight: 700;
  color: #F3984C;
  margin-right: 8px
}

.strt .out-blk {
  background: #002840;
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.strt .out-blk .bg-par {
  position: absolute;
  inset: -40px;
  background: url(./promo_images/people-1-150825.jpg) center/cover no-repeat;
  opacity: .07;
  pointer-events: none;
  will-change: transform;
  transform: translateY(0)
}

.strt .out-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.strt .out-left {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .out-h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #fff;
  font-style: italic;
  margin: 0
}

.strt .out-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffbf;
  margin: 0
}

.strt .out-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.strt .out-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  transition: background .5s ease-in-out, border-color .5s ease-in-out
}

.strt .out-row:hover {
  background: #f3984c1a;
  border-color: #f3984c4d
}

.strt .out-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f3984c26;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F3984C;
  font-size: 20px
}

.strt .out-row-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.strt .out-row-h {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  margin: 0
}

.strt .out-row-p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffffb3;
  margin: 0
}

.strt .cmt-blk {
  background: #fff;
  padding: 80px 0
}

.strt .cmt-top {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 40px
}

.strt .cmt-head {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.strt .cmt-h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #002840;
  font-style: italic;
  margin: 0
}

.strt .cmt-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3d4f;
  margin: 0
}

.strt .cmt-img-right {
  flex: 1 1 0
}

.strt .cmt-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: -1px 6px 14px 0 #00284017
}

.strt .cmt-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.strt .cmt-img-wrap:hover img {
  transform: scale(1.04)
}

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

.strt .step-card {
  border-radius: 8px;
  padding: 24px;
  background: #f4f0eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -1px 3px 2px 0 #0028400f;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative
}

.strt .step-card:hover {
  box-shadow: -1px 8px 40px 0 #00284024;
  transform: translateY(-3px)
}

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

.strt .step-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #002840;
  color: #F3984C;
  font-size: 13px;
  line-height: 1.4;
  padding: 4px 8px;
  border-radius: 40px;
  width: fit-content
}

.strt .step-h {
  font-size: 16px;
  line-height: 1.4;
  color: #002840;
  font-weight: 700;
  margin: 0
}

.strt .step-p {
  font-size: 14px;
  line-height: 1.6;
  color: #2a3d4f;
  margin: 0
}

.strt .step-time {
  font-size: 13px;
  line-height: 1.4;
  color: #F3984C;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px
}

.strt .pat-blk {
  background: #f4f0eb;
  padding: 80px 0
}

.strt .pat-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.strt .pat-img-col {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .pat-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: -1px 6px 14px 0 #00284017
}

.strt .pat-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.strt .pat-img-wrap:hover img {
  transform: scale(1.04)
}

.strt .pat-quote-box {
  border-radius: 8px;
  padding: 24px;
  background: #002840;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -1px 8px 40px 0 #00284024
}

.strt .pat-quote-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffd9;
  font-style: italic;
  margin: 0
}

.strt .pat-quote-attr {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.strt .pat-quote-name {
  font-size: 14px;
  line-height: 1.4;
  color: #F3984C;
  font-weight: 700
}

.strt .pat-quote-role {
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff80
}

.strt .pat-text-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .pat-h2 {
  font-size: 27px;
  line-height: 1.15;
  color: #002840;
  font-style: italic;
  margin: 0
}

.strt .pat-para {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3d4f;
  margin: 0
}

.strt .pat-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px
}

.strt .pat-tag {
  font-size: 13px;
  line-height: 1.4;
  color: #002840;
  background: #fff;
  border: 1px solid #00284026;
  border-radius: 40px;
  padding: 4px 16px;
  transition: background .45s ease-in-out, color .45s ease-in-out
}

.strt .pat-tag:hover {
  background: #002840;
  color: #fff
}

.strt .pat-items {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.strt .pat-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.strt .pat-item-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #F3984C;
  margin-top: 6px
}

.strt .pat-item-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2a3d4f;
  margin: 0
}

.strt .pat-item-text strong {
  color: #002840
}

.strt .mask-reveal {
  position: relative;
  overflow: hidden
}

.strt .mask-reveal .mask-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #002840 0%, #003d5c 40%, #00284000 100%);
  display: flex;
  align-items: center;
  padding: 24px;
  transition: opacity .6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none
}

.strt .mask-reveal .mask-over span {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .55s ease-in-out, transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.strt .mask-reveal:hover .mask-over span {
  opacity: 1;
  transform: translateX(0)
}

@keyframes scl-in {
  from {
    transform: scale(0.88);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.strt .step-card {
  animation: scl-in .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.strt .step-card:nth-child(1) {
  animation-delay: .05s
}

.strt .step-card:nth-child(2) {
  animation-delay: .15s
}

.strt .step-card:nth-child(3) {
  animation-delay: .25s
}

.strt .step-card:nth-child(4) {
  animation-delay: .38s
}

@media (max-width: 1100px) {
  .strt .ttl-inner {
    flex-direction: column;
    gap: 40px
  }

  .strt .ttl-img-col {
    flex: none;
    width: 100%
  }

  .strt .evd-grid {
    grid-template-columns: 1fr
  }

  .strt .evd-img-col {
    grid-column: 1
  }

  .strt .out-inner {
    flex-direction: column;
    gap: 40px
  }

  .strt .out-left {
    flex: none;
    width: 100%
  }

  .strt .cmt-top {
    flex-direction: column;
    gap: 40px
  }

  .strt .cmt-head {
    flex: none;
    width: 100%
  }

  .strt .steps-list {
    grid-template-columns: 1fr 1fr
  }

  .strt .pat-inner {
    flex-direction: column;
    gap: 40px
  }

  .strt .pat-img-col {
    flex: none;
    width: 100%
  }
}

@media (max-width: 680px) {
  .strt .pg-wrap {
    padding: 0 16px
  }

  .strt .ttl-h1 {
    font-size: 27px
  }

  .strt .steps-list {
    grid-template-columns: 1fr
  }

  .strt .evd-paras {
    grid-template-columns: 1fr
  }

  .strt .ttl-blk {
    padding: 40px 0
  }

  .strt .evd-blk,
  .strt .out-blk,
  .strt .cmt-blk,
  .strt .pat-blk {
    padding: 40px 0
  }
}

.jrnl {
  background: #fff;
  padding: 0;
  overflow-x: hidden
}

.jrnl .pg-reveal {
  animation: clip-reveal .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes clip-reveal {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0
  }

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

.jrnl .stripe-band {
  height: 4px;
  background: linear-gradient(90deg, #002840 0%, #F3984C 55%, #fff 100%);
  width: 100%
}

.jrnl .pg-head {
  padding: 80px 24px 40px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px
}

.jrnl .pg-head__left {
  flex: 1 1 0
}

.jrnl .pg-head__label {
  font-size: 13px;
  color: #F3984C;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.jrnl .pg-head__h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #002840;
  font-style: italic;
  margin: 0 0 16px
}

.jrnl .pg-head__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3a5068;
  max-width: 540px;
  margin: 0
}

.jrnl .pg-head__right {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px
}

.jrnl .pg-head__stat-num {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  color: #002840
}

.jrnl .pg-head__stat-num span {
  color: #F3984C
}

.jrnl .pg-head__stat-label {
  font-size: 13px;
  color: #3a5068;
  text-align: right
}

.jrnl .dot-div {
  border: none;
  border-top: 2px dotted #F3984C;
  margin: 0 auto;
  max-width: 1500px;
  width: calc(100% - 48px)
}

.jrnl .posts-grid-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 24px
}

.jrnl .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.jrnl .post-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: -1px 6px 14px 0 #00284017;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  container-type: inline-size
}

.jrnl .post-card:hover {
  box-shadow: -1px 8px 40px 0 #00284024;
  transform: translateY(-4px)
}

.jrnl .post-card.featured {
  grid-column: span 2;
  flex-direction: row
}

.jrnl .post-card__img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.jrnl .post-card:not(.featured) .post-card__img-wrap {
  height: 200px
}

.jrnl .post-card.featured .post-card__img-wrap {
  width: 48%;
  min-height: 320px
}

.jrnl .post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(3px) brightness(0.95);
  transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.jrnl .post-card:hover .post-card__img {
  filter: blur(0px) brightness(1)
}

.jrnl .post-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #00284073 100%);
  pointer-events: none
}

.jrnl .post-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0
}

.jrnl .post-card__tags {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.jrnl .post-card__tag {
  font-size: 13px;
  background: #f3984c1f;
  color: #c97020;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 600
}

.jrnl .post-card__cat {
  font-size: 13px;
  background: #00284012;
  color: #002840;
  border-radius: 4px;
  padding: 4px 8px
}

.jrnl .post-card__ttl {
  font-size: 20px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 8px 0 0
}

.jrnl .post-card__ttl a {
  color: inherit;
  text-decoration: none;
  transition: color .45s ease-in-out
}

.jrnl .post-card__ttl a:hover {
  color: #F3984C
}

.jrnl .post-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #3a5068;
  margin: 4px 0 0
}

.jrnl .post-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #00284014
}

.jrnl .post-card__author {
  font-size: 13px;
  color: #002840;
  font-weight: 600;
  flex: 1 1 0
}

.jrnl .post-card__date {
  font-size: 13px;
  color: #7a95a8
}

.jrnl .post-card__stats {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center
}

.jrnl .post-card__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #7a95a8
}

.jrnl .post-card__stat svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.jrnl .post-card__read-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: #002840;
  color: #fff;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.jrnl .post-card__read-btn:hover {
  background: #F3984C
}

.jrnl .dot-div-2 {
  border: none;
  border-top: 2px dotted #00284026;
  margin: 0 auto;
  max-width: 1500px;
  width: calc(100% - 48px)
}

.jrnl .about-strip {
  padding: 80px 24px;
  background: linear-gradient(160deg, #f5f8fb 0%, #fff 50%, #fef6ee 100%);
  position: relative
}

.jrnl .about-strip__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.jrnl .about-strip__img-col {
  position: relative
}

.jrnl .about-strip__img-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: -1px 8px 40px 0 #00284024;
  position: relative
}

.jrnl .about-strip__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: blur(2px);
  transition: filter .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.jrnl .about-strip__img-frame:hover .about-strip__img {
  filter: blur(0)
}

.jrnl .about-strip__img-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, transparent 40%, #00284047 100%);
  pointer-events: none;
  border-radius: 14px
}

.jrnl .about-strip__diamond {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: #F3984C;
  transform: rotate(45deg);
  border-radius: 4px;
  box-shadow: -1px 6px 14px 0 #f3984c24;
  pointer-events: none
}

.jrnl .about-strip__txt-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.jrnl .about-strip__eyebrow {
  font-size: 13px;
  color: #F3984C;
  text-transform: uppercase;
  letter-spacing: .08em
}

.jrnl .about-strip__h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 0
}

.jrnl .about-strip__p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a5068;
  margin: 0
}

.jrnl .about-strip__p::before {
  content: attr(data-num) ". ";
  color: #F3984C;
  font-weight: 700
}

.jrnl .feat-strip {
  padding: 40px 24px;
  background: #002840
}

.jrnl .feat-strip__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between
}

.jrnl .feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  padding: 24px 16px;
  border-radius: 8px;
  background: #ffffff0a;
  transition: background .5s ease-in-out
}

.jrnl .feat-item:hover {
  background: #f3984c1f
}

.jrnl .feat-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.jrnl .feat-item__icon svg {
  width: 28px;
  height: 28px
}

.jrnl .feat-item__lbl {
  font-size: 13px;
  color: #ffffffa6;
  text-align: center;
  line-height: 1.4
}

.jrnl .feat-item__val {
  font-size: 20px;
  font-weight: 700;
  color: #F3984C;
  text-align: center
}

.jrnl .topics-wrap {
  padding: 80px 24px;
  max-width: 1500px;
  margin: 0 auto
}

.jrnl .topics-wrap__h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 0 0 40px
}

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

.jrnl .topic-tile {
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(135deg, #002840 0%, #003f66 60%, #F3984C 200%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -1px 3px 2px 0 #0028400f;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.jrnl .topic-tile:hover {
  box-shadow: -1px 8px 40px 0 #00284024;
  transform: translateY(-3px)
}

.jrnl .topic-tile__icon {
  width: 36px;
  height: 36px;
  background: #f3984c2e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.jrnl .topic-tile__icon svg {
  width: 20px;
  height: 20px
}

.jrnl .topic-tile__name {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin: 8px 0 0
}

.jrnl .topic-tile__count {
  font-size: 13px;
  color: #ffffff80
}

.jrnl .cta-band {
  background: radial-gradient(ellipse at 50% 50%, #f5f8fb 0%, #d8e8f2 100%);
  padding: 80px 24px
}

.jrnl .cta-band__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px
}

.jrnl .cta-band__txt {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.jrnl .cta-band__h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #002840;
  font-style: italic;
  margin: 0
}

.jrnl .cta-band__p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a5068;
  margin: 0
}

.jrnl .cta-band__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start
}

.jrnl .cta-band__btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #F3984C;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: -1px 6px 14px 0 #f3984c24;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.jrnl .cta-band__btn-primary:hover {
  background: #d97d30;
  box-shadow: -1px 8px 40px 0 #f3984c38
}

.jrnl .cta-band__btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #002840;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #002840;
  transition: background .5s ease-in-out, color .5s ease-in-out
}

.jrnl .cta-band__btn-secondary:hover {
  background: #002840;
  color: #fff
}

@media (max-width: 1100px) {
  .jrnl .posts-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .jrnl .post-card.featured {
    grid-column: span 2
  }

  .jrnl .topics-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .jrnl .about-strip__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media (max-width: 768px) {
  .jrnl .pg-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 40px 16px 24px
  }

  .jrnl .pg-head__h1 {
    font-size: 27px
  }

  .jrnl .pg-head__right {
    align-items: flex-start
  }

  .jrnl .posts-grid {
    grid-template-columns: 1fr
  }

  .jrnl .post-card.featured {
    grid-column: span 1;
    flex-direction: column
  }

  .jrnl .post-card.featured .post-card__img-wrap {
    width: 100%;
    min-height: 200px
  }

  .jrnl .feat-strip__inner {
    flex-direction: column;
    gap: 16px
  }

  .jrnl .topics-grid {
    grid-template-columns: 1fr 1fr
  }

  .jrnl .cta-band__inner {
    flex-direction: column;
    gap: 40px
  }

  .jrnl .posts-grid-wrap {
    padding: 40px 16px
  }

  .jrnl .about-strip {
    padding: 40px 16px
  }

  .jrnl .cta-band {
    padding: 40px 16px
  }

  .jrnl .topics-wrap {
    padding: 40px 16px
  }
}

.au-pg {
  overflow-x: hidden
}

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

.au-pg .strip-left {
  position: relative
}

.au-pg .strip-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #F3984C;
  border-radius: 0 4px 4px 0
}

.au-pg .pg-top {
  padding: 80px 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
  position: relative
}

.au-pg .pg-top .img-strip {
  width: 180px;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative
}

.au-pg .pg-top .img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.15) brightness(0.97) sepia(0.08);
  display: block
}

.au-pg .pg-top .atm-spot {
  position: absolute;
  border-radius: 40px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0
}

.au-pg .pg-top .atm-spot.s1 {
  width: 300px;
  height: 200px;
  background: #f3984c17;
  top: 40px;
  right: 80px
}

.au-pg .pg-top .atm-spot.s2 {
  width: 200px;
  height: 160px;
  background: #00284012;
  bottom: 0;
  right: 200px
}

.au-pg .pg-top .txt-area {
  position: relative;
  z-index: 1;
  padding-top: 16px
}

.au-pg .pg-top .pre-label {
  font-size: 13px;
  color: #F3984C;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.au-pg .pg-top .main-h {
  font-size: 52px;
  line-height: 1.15;
  color: #002840;
  font-style: italic;
  margin-bottom: 24px;
  max-width: 700px
}

.au-pg .pg-top .main-h .accent-phrase {
  color: #F3984C;
  font-style: italic
}

.au-pg .pg-top .lead-p {
  font-size: 20px;
  line-height: 1.6;
  color: #002840;
  max-width: 580px;
  margin-bottom: 40px
}

.au-pg .pg-top .meta-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.au-pg .pg-top .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.au-pg .pg-top .meta-val {
  font-size: 27px;
  font-weight: 700;
  color: #002840;
  line-height: 1.15
}

.au-pg .pg-top .meta-desc {
  font-size: 13px;
  color: #4a6070;
  line-height: 1.4
}

.au-pg .top-div {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px
}

.au-pg .top-div hr {
  border: none;
  border-top: 2px solid #F3984C;
  margin: 0
}

.au-pg .geo-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0
}

.au-pg .geo-rotate {
  width: 320px;
  height: 320px;
  animation: geo-spin 28s linear infinite
}

@keyframes geo-spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.au-pg .story-sec {
  background: #002840;
  position: relative;
  overflow: hidden;
  padding: 80px 0
}

.au-pg .story-sec .geo-bg {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .06
}

.au-pg .story-sec .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1
}

.au-pg .story-sec .img-col {
  position: relative
}

.au-pg .story-sec .img-col .main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  filter: brightness(0.95) saturate(1.1);
  box-shadow: -1px 8px 40px 0 #00284024
}

.au-pg .story-sec .img-col .img-badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: #F3984C;
  color: #002840;
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: -1px 6px 14px 0 #f3984c17
}

.au-pg .story-sec .img-col .img-badge .bdg-num {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.15;
  display: block
}

.au-pg .story-sec .img-col .img-badge .bdg-lbl {
  font-size: 13px;
  line-height: 1.4
}

.au-pg .story-sec .txt-col {
  color: #fff
}

.au-pg .story-sec .txt-col .sec-label {
  font-size: 13px;
  color: #F3984C;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
  display: block
}

.au-pg .story-sec .txt-col h2 {
  font-size: 27px;
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 24px
}

.au-pg .story-sec .txt-col .num-p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffd1;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.au-pg .story-sec .txt-col .num-p .p-num {
  font-size: 13px;
  color: #F3984C;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 4px;
  min-width: 20px
}

.au-pg .story-sec .txt-col .divider-line {
  width: 48px;
  height: 2px;
  background: #F3984C;
  margin: 24px 0;
  border-radius: 4px
}

.au-pg .team-sec {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.au-pg .team-sec .wavy-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.au-pg .team-sec .wavy-bg svg {
  width: 100%;
  height: 100%;
  opacity: .045
}

.au-pg .team-sec .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 1
}

.au-pg .team-sec .top-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 40px
}

.au-pg .team-sec .top-row h2 {
  font-size: 27px;
  font-style: italic;
  line-height: 1.4;
  color: #002840;
  margin-bottom: 16px
}

.au-pg .team-sec .top-row .sub-p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a4050
}

.au-pg .team-sec .side-img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: -1px 6px 14px 0 #00284017
}

.au-pg .team-sec .side-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.96) saturate(1.08);
  display: block
}

.au-pg .team-sec .profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px
}

.au-pg .team-sec .prof-card {
  border-radius: 14px;
  border-top: 2px solid #F3984C;
  background: #fff;
  box-shadow: -1px 3px 2px 0 #0028400f -1px 6px 14px 0 #00284017;
  padding: 24px;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  border-right: 4px solid transparent
}

.au-pg .team-sec .profiles:hover .prof-card {
  filter: blur(1.5px);
  opacity: .7;
  transition: filter .5s ease-in-out, opacity .5s ease-in-out
}

.au-pg .team-sec .profiles:hover .prof-card:hover {
  filter: none;
  opacity: 1;
  box-shadow: -1px 8px 40px 0 #00284024;
  transform: translateY(-4px);
  border-right-color: #F3984C
}

.au-pg .team-sec .prof-card .prof-ico {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: #f3984c1f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.au-pg .team-sec .prof-card .prof-ico svg {
  width: 24px;
  height: 24px
}

.au-pg .team-sec .prof-card .prof-name {
  font-size: 16px;
  font-weight: 700;
  color: #002840;
  margin-bottom: 4px;
  line-height: 1.4
}

.au-pg .team-sec .prof-card .prof-role {
  font-size: 13px;
  color: #F3984C;
  margin-bottom: 16px;
  line-height: 1.4
}

.au-pg .team-sec .prof-card .prof-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #2a4050
}

.au-pg .team-sec .val-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: #002840;
  border-radius: 14px
}

.au-pg .team-sec .val-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 8px
}

.au-pg .team-sec .val-item .vi-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3984c2e;
  display: flex;
  align-items: center;
  justify-content: center
}

.au-pg .team-sec .val-item .vi-icon svg {
  width: 18px;
  height: 18px
}

.au-pg .team-sec .val-item .vi-txt .vi-head {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 4px
}

.au-pg .team-sec .val-item .vi-txt .vi-desc {
  font-size: 13px;
  color: #ffffffb8;
  line-height: 1.4
}

@media (max-width: 1100px) {
  .au-pg .pg-top {
    grid-template-columns: 140px 1fr;
    padding: 80px 40px 40px;
    gap: 24px
  }

  .au-pg .pg-top .img-strip {
    width: 140px;
    height: 340px
  }

  .au-pg .pg-top .main-h {
    font-size: 40px
  }

  .au-pg .top-div {
    padding: 0 40px
  }

  .au-pg .story-sec .inner {
    padding: 0 40px;
    gap: 40px
  }

  .au-pg .team-sec .inner {
    padding: 0 40px
  }

  .au-pg .team-sec .top-row {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .au-pg .team-sec .profiles {
    grid-template-columns: 1fr 1fr
  }

  .au-pg .team-sec .val-strip {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .au-pg .pg-top {
    grid-template-columns: 1fr;
    padding: 40px 24px 24px
  }

  .au-pg .pg-top .img-strip {
    width: 100%;
    height: 220px
  }

  .au-pg .pg-top .main-h {
    font-size: 27px
  }

  .au-pg .pg-top .lead-p {
    font-size: 16px
  }

  .au-pg .pg-top .meta-row {
    flex-direction: column;
    gap: 16px
  }

  .au-pg .top-div {
    padding: 0 24px
  }

  .au-pg .story-sec {
    padding: 40px 0
  }

  .au-pg .story-sec .inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px
  }

  .au-pg .story-sec .img-col .img-badge {
    left: 8px
  }

  .au-pg .team-sec {
    padding: 40px 0
  }

  .au-pg .team-sec .inner {
    padding: 0 24px
  }

  .au-pg .team-sec .profiles {
    grid-template-columns: 1fr
  }

  .au-pg .team-sec .val-strip {
    grid-template-columns: 1fr
  }
}

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

.pg-ok .ok-wrap {
  max-width: 560px;
  width: 100%;
  text-align: left
}

.pg-ok .ok-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 24px
}

.pg-ok .ok-mark circle {
  fill: none;
  stroke: #F3984C;
  stroke-width: 2
}

.pg-ok .ok-mark polyline {
  fill: none;
  stroke: #002840;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pg-ok .ok-title {
  font-size: 27px;
  line-height: 1.15;
  font-style: italic;
  color: #002840;
  margin: 0 0 16px
}

.pg-ok .ok-line {
  width: 40px;
  height: 2px;
  background: #F3984C;
  margin-bottom: 24px
}

.pg-ok .ok-body {
  font-size: 16px;
  line-height: 1.6;
  color: #002840;
  margin: 0 0 8px
}

.pg-ok .ok-note {
  font-size: 13px;
  line-height: 1.4;
  color: #4a6070;
  margin: 0 0 40px
}

.pg-ok .ok-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #002840;
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: -1px 6px 14px 0 #00284017;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s ease-in-out
}

.pg-ok .ok-btn:hover {
  background: #F3984C;
  box-shadow: -1px 8px 40px 0 #f3984c24
}

.pg-ok .ok-btn:focus-visible {
  outline: 2px solid #F3984C;
  outline-offset: 3px
}