@import "https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&display=swap";

body {
  margin: 0
}

* {
  box-sizing: border-box
}

.top-bar {
  background: linear-gradient(135deg, #13496F 0%, #1a5c8a 100%);
  padding: 8px 0;
  border-bottom: 1px solid #fb823f33
}

.top-bar__hold {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  text-decoration: none;
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  letter-spacing: .3px;
  transition: letter-spacing .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.top-bar__phone:hover {
  letter-spacing: 1.2px
}

.top-bar__phone i {
  color: #FB823F;
  font-size: 13px
}

.top-bar__mail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  text-decoration: none;
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  letter-spacing: .3px;
  transition: letter-spacing .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.top-bar__mail:hover {
  letter-spacing: 1.2px
}

.top-bar__mail i {
  color: #FB823F;
  font-size: 13px
}

.hd {
  background: #FFF;
  border-bottom: 2px solid #13496F;
  box-shadow: 1px 6px 18px 1px #13496f1c;
  position: relative
}

.hd__hold {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px
}

.hd__brand {
  flex-shrink: 0;
  margin-right: 32px
}

.hd__brand-link {
  display: block;
  padding: 8px;
  background: linear-gradient(135deg, #13496f08 0%, #fb823f08 100%);
  border-radius: 8px;
  border: 1px solid #13496f26;
  box-shadow: 1px 1px 6px 1px #13496f0d;
  transition: box-shadow .7s ease, border-color .7s ease
}

.hd__brand-link:hover {
  box-shadow: 1px 6px 18px 1px #fb823f1c;
  border-color: #fb823f66
}

.hd__brand-link:focus {
  outline: 2px dashed #FB823F;
  outline-offset: 4px;
  animation: dash-rotate 3s linear infinite
}

@keyframes dash-rotate {
  0% {
    outline-offset: 4px
  }

  50% {
    outline-offset: 8px
  }

  100% {
    outline-offset: 4px
  }
}

.hd__logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain
}

.hd__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.hd__link {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: #13496F;
  text-decoration: none;
  letter-spacing: .4px;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
  transition: letter-spacing .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden
}

.hd__link::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fb823f14 0%, #fb823f26 100%);
  transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1
}

.hd__link:hover::before {
  left: 0
}

.hd__link:hover {
  letter-spacing: 1.4px;
  color: #FB823F
}

.hd__link:focus {
  outline: 2px dashed #13496F;
  outline-offset: 4px;
  animation: dash-rotate 3s linear infinite
}

@media (max-width: 1366px) {
  .hd__hold {
    padding: 32px
  }

  .hd__links {
    gap: 24px
  }
}

@media (max-width: 768px) {
  .top-bar__hold {
    flex-direction: column;
    gap: 8px;
    padding: 0 16px
  }

  .hd__hold {
    flex-direction: column;
    padding: 24px 16px;
    gap: 32px;
    align-items: flex-start
  }

  .hd__brand {
    margin-right: 0
  }

  .hd__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%
  }

  .hd__link {
    width: 100%
  }
}

@media (max-width: 375px) {
  .hd__hold {
    padding: 16px
  }

  .hd__link {
    font-size: 20px;
    padding: 8px
  }
}

.ftr {
  background: linear-gradient(165deg, #13496F 0%, #0d2f4d 100%);
  color: #FFF;
  position: relative;
  overflow: hidden;
  padding: 96px 0 32px
}

.ftr::before {
  content: '2015';
  position: absolute;
  top: 48px;
  right: 48px;
  font-family: 'EB Garamond', serif;
  font-size: 200px;
  font-weight: 700;
  color: #fb823f0f;
  line-height: 1;
  pointer-events: none;
  user-select: none
}

.ftr__hold {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1
}

.ftr__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 96px
}

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

.ftr__cluster-hd {
  font-family: 'EB Garamond', serif;
  font-size: 27px;
  font-weight: 700;
  color: #FB823F;
  letter-spacing: .5px;
  margin-bottom: 8px;
  line-height: 1.4
}

.ftr__cluster-txt {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffffd9;
  letter-spacing: .3px
}

.ftr__cluster-link {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  color: #ffffffd9;
  text-decoration: none;
  letter-spacing: .3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  transition: letter-spacing .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.6
}

.ftr__cluster-link:hover {
  letter-spacing: 1px;
  color: #FB823F
}

.ftr__cluster-link:focus {
  outline: 2px dashed #FB823F;
  outline-offset: 4px;
  animation: dash-rotate 3s linear infinite
}

.ftr__cluster-link i {
  font-size: 13px;
  color: #FB823F;
  flex-shrink: 0
}

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

.ftr__nav-item {
  margin: 0;
  padding: 0
}

.ftr__nav-link {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  color: #ffffffd9;
  text-decoration: none;
  letter-spacing: .3px;
  display: inline-block;
  padding: 4px 0;
  border-left: 3px solid transparent;
  padding-left: 8px;
  transition: letter-spacing .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.6
}

.ftr__nav-link:hover {
  letter-spacing: 1px;
  color: #FB823F;
  border-left-color: #FB823F
}

.ftr__nav-link:focus {
  outline: 2px dashed #FB823F;
  outline-offset: 4px;
  animation: dash-rotate 3s linear infinite
}

.ftr__bottom {
  border-top: 1px solid #fb823f33;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.ftr__copy {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  color: #ffffffb3;
  letter-spacing: .3px;
  line-height: 1.6
}

.ftr__brand-btm {
  flex-shrink: 0
}

.ftr__brand-link-btm {
  display: block;
  padding: 8px;
  background: #fb823f14;
  border-radius: 8px;
  border: 1px solid #fb823f33;
  transition: background .7s ease, border-color .7s ease
}

.ftr__brand-link-btm:hover {
  background: #fb823f26;
  border-color: #fb823f66
}

.ftr__brand-link-btm:focus {
  outline: 2px dashed #FB823F;
  outline-offset: 4px;
  animation: dash-rotate 3s linear infinite
}

.ftr__logo-btm {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain
}

@media (max-width: 1366px) {
  .ftr__hold {
    padding: 0 32px
  }

  .ftr::before {
    font-size: 160px;
    right: 32px
  }

  .ftr__grid {
    gap: 32px
  }
}

@media (max-width: 768px) {
  .ftr {
    padding: 48px 0 32px
  }

  .ftr__hold {
    padding: 0 16px
  }

  .ftr::before {
    font-size: 120px;
    top: 32px;
    right: 16px
  }

  .ftr__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px
  }

  .ftr__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }
}

@media (max-width: 375px) {
  .ftr {
    padding: 32px 0 16px
  }

  .ftr::before {
    font-size: 80px;
    top: 16px;
    right: 8px
  }

  .ftr__grid {
    margin-bottom: 32px
  }
}

.consent-card {
  position: fixed;
  bottom: 32px;
  right: 32px;
  max-width: 420px;
  background: #FFF;
  border: 2px solid #13496F;
  border-radius: 14px;
  box-shadow: 1px 12px 36px 1px #13496f1f;
  padding: 32px;
  z-index: 1200;
  display: none
}

.consent-card.visible {
  display: block
}

.consent-card__txt {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  line-height: 1.6;
  color: #13496F;
  margin-bottom: 16px;
  letter-spacing: .3px
}

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

.consent-card__list-item {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  line-height: 1.6;
  color: #13496F;
  padding-left: 20px;
  position: relative;
  letter-spacing: .3px
}

.consent-card__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #FB823F;
  border-radius: 40px
}

.consent-card__prefs {
  margin-bottom: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #13496f08 0%, #fb823f08 100%);
  border-radius: 8px;
  border: 1px solid #13496f1a;
  display: none
}

.consent-card__prefs.active {
  display: block
}

.consent-card__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0
}

.consent-card__toggle-lbl {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  color: #13496F;
  letter-spacing: .3px
}

.consent-card__toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: #13496f33;
  border-radius: 40px;
  cursor: pointer;
  transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent-card__toggle.on {
  background: #FB823F
}

.consent-card__toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #FFF;
  border-radius: 40px;
  transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent-card__toggle.on::after {
  left: 28px
}

.consent-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.consent-card__btn {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: .4px;
  position: relative;
  overflow: hidden;
  transition: letter-spacing .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent-card__btn::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1
}

.consent-card__btn:hover::before {
  left: 0
}

.consent-card__btn:hover {
  letter-spacing: 1.2px
}

.consent-card__btn:focus {
  outline: 2px dashed #FB823F;
  outline-offset: 4px;
  animation: dash-rotate 3s linear infinite
}

.consent-card__btn--primary {
  background: #13496F;
  color: #FFF
}

.consent-card__btn--primary::before {
  background: #1a5c8a
}

.consent-card__btn--secondary {
  background: #13496f1a;
  color: #13496F
}

.consent-card__btn--secondary::before {
  background: #13496f33
}

.consent-card__btn--tertiary {
  background: transparent;
  color: #13496F;
  border: 1px solid #13496F
}

.consent-card__btn--tertiary::before {
  background: #13496f14
}

@media (max-width: 768px) {
  .consent-card {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    padding: 24px
  }
}

@media (max-width: 375px) {
  .consent-card {
    padding: 16px
  }

  .consent-card__actions {
    flex-direction: column
  }

  .consent-card__btn {
    width: 100%
  }
}

::selection {
  background: #13496f26;
  color: #13496F
}

.terms-dmfl-area {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 16px
}

@media (min-width: 768px) {
  .terms-dmfl-area {
    padding: 96px 32px
  }
}

.terms-dmfl-area h1 {
  font-size: clamp(37px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #13496F;
  margin: 0 0 48px
}

.terms-dmfl-area h2 {
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #13496F;
  margin: 96px 0 32px
}

.terms-dmfl-area h3 {
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #13496F;
  margin: 48px 0 16px
}

.terms-dmfl-area h4 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -.005em;
  color: #13496F;
  margin: 32px 0 16px
}

.terms-dmfl-area h5 {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #13496F;
  margin: 32px 0 16px
}

.terms-dmfl-area h6 {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #13496F;
  margin: 32px 0 16px
}

.terms-dmfl-area p {
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 1.6;
  color: #13496fe6;
  margin: 0 0 16px
}

.terms-dmfl-area p+p {
  margin-top: 16px
}

.terms-dmfl-area ul,
.terms-dmfl-area ol {
  font-size: clamp(14px, 1.5vw, 20px);
  line-height: 1.6;
  color: #13496fe6;
  margin: 0 0 32px;
  padding-left: 32px
}

.terms-dmfl-area ul {
  list-style-type: disc
}

.terms-dmfl-area ol {
  list-style-type: decimal
}

.terms-dmfl-area li {
  margin: 0 0 8px;
  padding-left: 8px
}

.terms-dmfl-area li:last-child {
  margin-bottom: 0
}

.terms-dmfl-area ul ul,
.terms-dmfl-area ol ol,
.terms-dmfl-area ul ol,
.terms-dmfl-area ol ul {
  margin-top: 8px;
  margin-bottom: 8px
}

.terms-dmfl-area em,
.terms-dmfl-area i {
  font-style: italic;
  color: #13496F
}

.terms-dmfl-area hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #13496f1a, #fb823f33, #13496f1a);
  margin: 96px 0
}

@media (min-width: 768px) {
  .terms-dmfl-area h2 {
    margin-top: 96px
  }

  .terms-dmfl-area h3 {
    margin-top: 48px
  }
}

.terms-dmfl-area h1:first-child,
.terms-dmfl-area h2:first-child,
.terms-dmfl-area h3:first-child,
.terms-dmfl-area h4:first-child,
.terms-dmfl-area h5:first-child,
.terms-dmfl-area h6:first-child {
  margin-top: 0
}

.abt-pg {
  background: #FFF;
  overflow-x: clip
}

.abt-pg .ttl-zone {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 16px;
  align-items: center
}

.abt-pg .ttl-zone__img-col {
  position: relative
}

.abt-pg .ttl-zone__visual {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(0.6) brightness(0.95);
  display: block
}

.abt-pg .ttl-zone__txt-col {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.abt-pg .ttl-zone__primary {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #13496F;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700
}

.abt-pg .ttl-zone__secondary {
  font-size: 37px;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #13496F;
  margin: 0;
  font-weight: 600
}

.abt-pg .ttl-zone__tertiary {
  font-size: 27px;
  line-height: 1.4;
  color: #FB823F;
  margin: 0;
  font-weight: 500
}

.abt-pg .ttl-zone__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden
}

.abt-pg .ttl-zone__wave svg {
  display: block;
  width: 100%;
  height: 100%
}

.abt-pg .ttl-zone__bracket-left {
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 240px;
  border: 3px solid #FB823F;
  border-right: none;
  border-radius: 24px 0 0 24px;
  opacity: 0;
  animation: ttl-bracket-reveal .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s forwards
}

.abt-pg .ttl-zone__bracket-right {
  position: absolute;
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 240px;
  border: 3px solid #FB823F;
  border-left: none;
  border-radius: 0 24px 24px 0;
  opacity: 0;
  animation: ttl-bracket-reveal .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s forwards
}

@keyframes ttl-bracket-reveal {
  to {
    opacity: 1
  }
}

.abt-pg .ttl-zone__txt-col>* {
  opacity: 0;
  transform: translateX(32px)
}

.abt-pg .ttl-zone__primary {
  animation: ttl-diagonal-reveal .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .1s forwards
}

.abt-pg .ttl-zone__secondary {
  animation: ttl-diagonal-reveal .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s forwards
}

.abt-pg .ttl-zone__tertiary {
  animation: ttl-diagonal-reveal .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

@keyframes ttl-diagonal-reveal {
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.abt-pg .story-blk {
  position: relative;
  background: linear-gradient(157deg, #f5f8fa 0%, #fef5f0 100%);
  padding: 96px 16px;
  overflow: hidden
}

.abt-pg .story-blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, #13496f04 1px, transparent 1px), linear-gradient(0deg, #13496f04 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none
}

.abt-pg .story-blk__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.abt-pg .story-blk__divider {
  width: 120px;
  height: 4px;
  background: #FB823F;
  margin: 0 0 48px
}

.abt-pg .story-blk__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 96px;
  align-items: start
}

.abt-pg .story-blk__sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 96px
}

.abt-pg .story-blk__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 1px 1px 6px 1px #13496f0d;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .story-blk__icon-item:hover {
  transform: translateY(-4px);
  box-shadow: 1px 6px 18px 1px #13496f1c
}

.abt-pg .story-blk__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f0f7fb 0%, #fff5ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.abt-pg .story-blk__icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 40px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #13496F 0%, #FB823F 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .3
}

.abt-pg .story-blk__icon-wrap i {
  font-size: 27px;
  color: #13496F
}

.abt-pg .story-blk__icon-label {
  font-size: 13px;
  line-height: 1.4;
  color: #13496F;
  text-align: center;
  font-weight: 600;
  letter-spacing: .02em
}

.abt-pg .story-blk__content {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.abt-pg .story-blk__heading {
  font-size: 37px;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #13496F;
  margin: 0;
  font-weight: 700
}

.abt-pg .story-blk__text-group {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.abt-pg .story-blk__para {
  font-size: 14px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0
}

.abt-pg .story-blk__quote {
  padding: 32px;
  background: #FFF;
  border-left: 4px solid #FB823F;
  border-radius: 8px;
  box-shadow: 1px 6px 18px 1px #13496f1c;
  font-size: 20px;
  line-height: 1.6;
  color: #13496F;
  font-weight: 600;
  font-style: italic;
  margin: 0
}

.abt-pg .story-blk__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px
}

.abt-pg .story-blk__metric-card {
  background: #FFF;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 1px 1px 6px 1px #13496f0d;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .story-blk__metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #fb823f0d 50%, transparent 100%);
  transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .story-blk__metric-card:hover::before {
  left: 100%
}

.abt-pg .story-blk__metric-card:hover {
  transform: scale(1.05)
}

.abt-pg .story-blk__metric-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px
}

.abt-pg .story-blk__metric-ring {
  width: 72px;
  height: 72px;
  border-radius: 40px;
  border: 3px solid #e8f0f5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.abt-pg .story-blk__metric-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 40px;
  border: 3px solid #FB823F;
  clip-path: polygon(0 0, 75% 0, 75% 100%, 0 100%)
}

.abt-pg .story-blk__metric-val {
  font-size: 27px;
  line-height: 1;
  color: #13496F;
  font-weight: 700
}

.abt-pg .story-blk__metric-label {
  font-size: 13px;
  line-height: 1.4;
  color: #13496F;
  font-weight: 600
}

.abt-pg .story-blk__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px
}

.abt-pg .story-blk__gallery-item {
  position: relative;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 1px 6px 1px #13496f0d;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .story-blk__gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 1px 12px 36px 1px #13496f1f
}

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

.abt-pg .team-sec {
  background: #FFF;
  padding: 96px 16px;
  position: relative
}

.abt-pg .team-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: #13496F
}

.abt-pg .team-sec__inner {
  max-width: 1140px;
  margin: 0 auto
}

.abt-pg .team-sec__heading {
  font-size: 37px;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #13496F;
  margin: 0 0 16px;
  font-weight: 700;
  text-align: center
}

.abt-pg .team-sec__subheading {
  font-size: 20px;
  line-height: 1.4;
  color: #FB823F;
  margin: 0 0 48px;
  text-align: center;
  font-weight: 500
}

.abt-pg .team-sec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px
}

.abt-pg .team-card {
  background: linear-gradient(135deg, #fafcfd 0%, #fffaf7 100%);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 1px 1px 6px 1px #fb823f0d;
  transition: box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden
}

.abt-pg .team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #13496F 0%, #FB823F 100%);
  transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .team-card:hover::before {
  left: 0
}

.abt-pg .team-card:hover {
  box-shadow: 1px 6px 18px 1px #fb823f1c;
  transform: translateY(-8px)
}

.abt-pg .team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 40px;
  background: linear-gradient(135deg, #13496F 0%, #FB823F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 1px 6px 18px 1px #13496f1c;
  position: relative
}

.abt-pg .team-card__avatar::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 40px;
  background: #FFF
}

.abt-pg .team-card__initials {
  font-size: 27px;
  color: #13496F;
  font-weight: 700;
  position: relative;
  z-index: 1
}

.abt-pg .team-card__name {
  font-size: 20px;
  line-height: 1.4;
  color: #13496F;
  margin: 0 0 8px;
  text-align: center;
  font-weight: 700
}

.abt-pg .team-card__role {
  font-size: 14px;
  line-height: 1.4;
  color: #FB823F;
  margin: 0 0 16px;
  text-align: center;
  font-weight: 600
}

.abt-pg .team-card__bio {
  font-size: 13px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0;
  text-align: center
}

@media (max-width: 1366px) {
  .abt-pg .ttl-zone {
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 48px 16px
  }

  .abt-pg .ttl-zone__visual {
    height: 400px
  }

  .abt-pg .ttl-zone__primary {
    font-size: 37px
  }

  .abt-pg .ttl-zone__secondary {
    font-size: 27px
  }

  .abt-pg .ttl-zone__tertiary {
    font-size: 20px
  }

  .abt-pg .story-blk {
    padding: 48px 16px
  }

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

  .abt-pg .story-blk__heading {
    font-size: 27px
  }

  .abt-pg .story-blk__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
  }

  .abt-pg .team-sec {
    padding: 48px 16px
  }

  .abt-pg .team-sec__heading {
    font-size: 27px
  }

  .abt-pg .team-sec__grid {
    gap: 32px
  }
}

@media (max-width: 768px) {
  .abt-pg .ttl-zone {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px
  }

  .abt-pg .ttl-zone__visual {
    height: 320px
  }

  .abt-pg .ttl-zone__primary {
    font-size: 27px
  }

  .abt-pg .ttl-zone__secondary {
    font-size: 20px
  }

  .abt-pg .ttl-zone__tertiary {
    font-size: 14px
  }

  .abt-pg .ttl-zone__bracket-left,
  .abt-pg .ttl-zone__bracket-right {
    display: none
  }

  .abt-pg .story-blk {
    padding: 32px 16px
  }

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

  .abt-pg .story-blk__sidebar {
    position: static;
    flex-direction: row;
    overflow-x: auto
  }

  .abt-pg .story-blk__icon-item {
    min-width: 140px
  }

  .abt-pg .story-blk__heading {
    font-size: 20px
  }

  .abt-pg .story-blk__quote {
    font-size: 14px;
    padding: 16px
  }

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

  .abt-pg .story-blk__gallery {
    grid-template-columns: repeat(2, 1fr)
  }

  .abt-pg .team-sec {
    padding: 32px 16px
  }

  .abt-pg .team-sec__heading {
    font-size: 20px
  }

  .abt-pg .team-sec__subheading {
    font-size: 14px
  }

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

@media (max-width: 375px) {
  .abt-pg .ttl-zone {
    padding: 32px 8px
  }

  .abt-pg .ttl-zone__visual {
    height: 280px
  }

  .abt-pg .ttl-zone__primary {
    font-size: 20px
  }

  .abt-pg .ttl-zone__secondary {
    font-size: 14px
  }

  .abt-pg .story-blk {
    padding: 32px 8px
  }

  .abt-pg .story-blk__heading {
    font-size: 14px
  }

  .abt-pg .story-blk__para {
    font-size: 13px
  }

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

  .abt-pg .team-sec {
    padding: 32px 8px
  }

  .abt-pg .team-sec__heading {
    font-size: 14px
  }
}

.cnt-pg {
  background: #FFF;
  color: #13496F;
  overflow-x: clip
}

.cnt-pg .top-blk {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 16px 96px 48px;
  display: flex;
  gap: 48px;
  align-items: center
}

@media (max-width: 768px) {
  .cnt-pg .top-blk {
    flex-direction: column;
    padding: 48px 16px;
    gap: 32px
  }
}

.cnt-pg .top-blk::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #fb823f14, #fb823f05);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none
}

.cnt-pg .top-blk::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #13496f0f, #13496f03);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none
}

.cnt-pg .lft-zone {
  flex: 2;
  position: relative;
  z-index: 1
}

.cnt-pg .depth-num {
  position: absolute;
  top: -48px;
  left: -32px;
  font-size: 200px;
  font-weight: 700;
  color: #13496f0a;
  line-height: 1;
  z-index: 0;
  user-select: none;
  pointer-events: none
}

@media (max-width: 768px) {
  .cnt-pg .depth-num {
    font-size: 120px;
    top: -24px;
    left: -16px
  }
}

.cnt-pg .primary-hdg {
  font-size: clamp(37px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
  color: #13496F
}

.cnt-pg .secondary-hdg {
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.4;
  margin: 0 0 32px;
  color: #FB823F;
  font-weight: 400;
  position: relative;
  z-index: 1
}

.cnt-pg .intro-txt {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.6;
  margin: 0 0 16px;
  color: #13496F;
  position: relative;
  z-index: 1
}

.cnt-pg .intro-txt:last-of-type {
  margin-bottom: 0
}

.cnt-pg .rgt-zone {
  flex: 1;
  position: relative;
  z-index: 1
}

.cnt-pg .img-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 1px 6px 18px 1px #13496f1c
}

@media (max-width: 768px) {
  .cnt-pg .img-wrap {
    height: 280px
  }
}

.cnt-pg .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0);
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cnt-pg .img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, #ffffff4d 100%);
  z-index: 1;
  pointer-events: none
}

.cnt-pg .img-wrap:hover img {
  transform: scale(1.05)
}

.cnt-pg .form-blk {
  position: relative;
  max-width: 1140px;
  margin: 0 auto 0 96px;
  padding: 96px 16px 96px 48px;
  background: linear-gradient(127deg, #f8f9fa 0%, #fff 100%);
  border-radius: 40px;
  box-shadow: 1px 12px 36px 1px #13496f1f
}

@media (max-width: 1366px) {
  .cnt-pg .form-blk {
    margin: 0 auto
  }
}

@media (max-width: 768px) {
  .cnt-pg .form-blk {
    padding: 48px 16px;
    margin: 0 16px;
    border-radius: 24px
  }
}

.cnt-pg .form-blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, #13496f05 12%, transparent 12.5%, transparent 87%, #13496f05 87.5%, #13496f05), linear-gradient(150deg, #13496f05 12%, transparent 12.5%, transparent 87%, #13496f05 87.5%, #13496f05), linear-gradient(30deg, #13496f05 12%, transparent 12.5%, transparent 87%, #13496f05 87.5%, #13496f05), linear-gradient(150deg, #13496f05 12%, transparent 12.5%, transparent 87%, #13496f05 87.5%, #13496f05), linear-gradient(60deg, #fb823f04 25%, transparent 25.5%, transparent 75%, #fb823f04 75%, #fb823f04), linear-gradient(60deg, #fb823f04 25%, transparent 25.5%, transparent 75%, #fb823f04 75%, #fb823f04);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  border-radius: 40px;
  pointer-events: none;
  z-index: 0
}

@media (max-width: 768px) {
  .cnt-pg .form-blk::before {
    border-radius: 24px
  }
}

.cnt-pg .form-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto
}

.cnt-pg .form-hdg {
  font-size: clamp(27px, 4vw, 37px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 48px;
  color: #13496F;
  text-align: center
}

.cnt-pg .contact-form {
  display: grid;
  gap: 32px
}

.cnt-pg .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

@media (max-width: 768px) {
  .cnt-pg .name-row {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

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

.cnt-pg .field-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #13496F;
  font-weight: 600
}

.cnt-pg .field-input {
  padding: 16px;
  border: 2px solid #13496f26;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #13496F;
  background: #FFF;
  transition: border-color .6s ease, box-shadow .6s ease;
  box-shadow: inset 1px 1px 6px 1px #13496f08
}

.cnt-pg .field-input::placeholder {
  color: #13496f66;
  font-weight: 300
}

.cnt-pg .field-input:focus {
  outline: none;
  border-color: #FB823F;
  box-shadow: inset 1px 1px 6px 1px #fb823f14 1px 1px 6px 1px #fb823f0d
}

.cnt-pg .field-input:hover {
  border-color: #13496f4d
}

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

.cnt-pg .channel-lbl {
  font-size: 14px;
  line-height: 1.4;
  color: #13496F;
  font-weight: 600;
  margin-bottom: 4px
}

.cnt-pg .channel-opts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

@media (max-width: 768px) {
  .cnt-pg .channel-opts {
    flex-direction: column;
    gap: 8px
  }
}

.cnt-pg .channel-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cnt-pg .channel-opt:hover {
  opacity: .7
}

.cnt-pg .channel-opt input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #FB823F
}

.cnt-pg .channel-opt span {
  font-size: 14px;
  line-height: 1.4;
  color: #13496F;
  cursor: pointer
}

.cnt-pg .privacy-chk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px
}

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

.cnt-pg .privacy-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #13496F
}

.cnt-pg .privacy-txt a {
  color: #FB823F;
  text-decoration: none;
  position: relative;
  transition: letter-spacing .65s ease
}

.cnt-pg .privacy-txt a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FB823F;
  transition: height .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cnt-pg .privacy-txt a:hover {
  letter-spacing: .03em
}

.cnt-pg .privacy-txt a:hover::after {
  height: 3px;
  background: #13496F
}

.cnt-pg .submit-btn {
  padding: 16px 48px;
  background: #13496F;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: letter-spacing .7s ease, box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 1px 6px 18px 1px #13496f1c;
  margin-top: 16px
}

.cnt-pg .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0d3350;
  transition: left .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

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

.cnt-pg .submit-btn:hover {
  letter-spacing: .05em;
  box-shadow: 1px 12px 36px 1px #13496f1f
}

.cnt-pg .submit-btn:hover::before {
  left: 0
}

.cnt-pg .submit-btn:active {
  transform: translateY(1px)
}

.cnt-pg .contact-details {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 2px solid #13496f1a;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px
}

@media (max-width: 768px) {
  .cnt-pg .contact-details {
    margin-top: 48px;
    padding-top: 32px;
    gap: 32px
  }
}

.cnt-pg .detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cnt-pg .detail-hdg {
  font-size: 14px;
  line-height: 1.4;
  color: #FB823F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.cnt-pg .detail-val {
  font-size: 14px;
  line-height: 1.6;
  color: #13496F
}

.cnt-pg .detail-val a {
  color: #13496F;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: letter-spacing .6s ease, color .6s ease
}

.cnt-pg .detail-val a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #13496F;
  transition: height .75s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .75s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cnt-pg .detail-val a:hover {
  letter-spacing: .02em;
  color: #FB823F
}

.cnt-pg .detail-val a:hover::after {
  height: 2px;
  background: #FB823F !important
}

.cnt-pg .quote-accent {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(154deg, #fb823f14 0%, #13496f0f 100%);
  border-left: 4px solid #FB823F;
  border-radius: 4px;
  position: relative;
  overflow: hidden
}

@media (max-width: 768px) {
  .cnt-pg .quote-accent {
    padding: 24px 16px;
    margin-top: 32px
  }
}

.cnt-pg .quote-accent::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #fb823f1a, transparent);
  border-radius: 50%;
  pointer-events: none
}

.cnt-pg .quote-txt {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.6;
  color: #13496F;
  font-style: italic;
  position: relative;
  z-index: 1
}

.cnt-pg .divider-svg {
  width: 100%;
  height: 60px;
  margin: 96px 0;
  overflow: visible
}

@media (max-width: 768px) {
  .cnt-pg .divider-svg {
    height: 40px;
    margin: 48px 0
  }
}

.cnt-pg .divider-svg path {
  fill: none;
  stroke: #13496f26;
  stroke-width: 2;
  transition: stroke .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cnt-pg .divider-svg:hover path {
  stroke: #fb823f4d
}

@media (max-width: 768px) {

  .cnt-pg .top-blk,
  .cnt-pg .form-blk {
    margin-left: 0;
    margin-right: 0
  }
}

@media (min-width: 769px) {
  .cnt-pg .top-blk {
    margin-left: 0
  }

  .cnt-pg .form-blk {
    margin-left: 96px
  }
}

@media (min-width: 1367px) {
  .cnt-pg .top-blk {
    margin-left: 48px
  }

  .cnt-pg .form-blk {
    margin-left: 144px
  }
}

.opn {
  margin: 0;
  padding: 0;
  background: #FFF;
  min-height: 100vh
}

.opn img {
  max-width: 100%;
  height: auto;
  display: block
}

.opn__title-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 16px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center
}

.opn__title-deco {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 0
}

.opn__title-deco::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #13496f0a
}

.opn__title-deco::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #fb823f0d
}

.opn__title-txt {
  position: relative;
  z-index: 1;
  padding: 32px 48px 32px 16px
}

.opn__title-txt h1 {
  font-size: clamp(37px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #13496F;
  margin: 0 0 32px
}

.opn__title-quote {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid #FB823F
}

.opn__title-visual {
  position: relative;
  z-index: 1;
  padding: 16px 32px 16px 96px
}

.opn__title-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  opacity: 0;
  animation: opnImgFade .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s forwards;
  box-shadow: 1px 12px 36px 1px #13496f1f
}

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

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

.opn__barrier {
  background: linear-gradient(127deg, #f8f9fa 0%, #f1f3f5 100%);
  padding: 96px 16px;
  position: relative
}

.opn__barrier-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 96px;
  align-items: start
}

.opn__barrier-content h2 {
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #13496F;
  margin: 0 0 32px
}

.opn__barrier-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px
}

.opn__barrier-quote {
  position: relative;
  background: #FFF;
  padding: 32px;
  margin: 48px 0 0;
  border-radius: 24px;
  box-shadow: 1px 6px 18px 1px #13496f1c
}

.opn__barrier-quote::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #FFF
}

.opn__barrier-quote p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-style: italic
}

.opn__barrier-visual {
  position: relative;
  height: 100%;
  min-height: 400px
}

.opn__barrier-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  opacity: .08
}

.opn__barrier-metric {
  position: relative;
  background: #FFF;
  padding: 24px;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 1px 1px 6px 1px #fb823f0d;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opn__barrier-metric:hover {
  transform: translateX(8px)
}

.opn__barrier-metric-num {
  font-size: 37px;
  line-height: 1.15;
  color: #FB823F;
  font-weight: 700;
  margin: 0 0 8px
}

.opn__barrier-metric-label {
  font-size: 13px;
  line-height: 1.4;
  color: #555;
  margin: 0
}

.opn__community {
  background: #13496F;
  padding: 96px 16px;
  position: relative;
  overflow: hidden
}

.opn__community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./media_directory/cases2.jpg) center center / cover no-repeat;
  opacity: .03;
  animation: opnBgPan 60s linear infinite
}

@keyframes opnBgPan {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-48px)
  }
}

.opn__community-container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.opn__community h2 {
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #FFF;
  margin: 0 0 48px;
  text-align: center
}

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

.opn__community-card {
  background: #fffffff2;
  padding: 32px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opn__community-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FB823F;
  transition: height .7s ease;
  z-index: 0
}

.opn__community-card:hover::before {
  height: 100%
}

.opn__community-card:hover {
  transform: translateY(-8px)
}

.opn__community-card-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .7s ease
}

.opn__community-card:hover .opn__community-card-icon {
  color: #FFF
}

.opn__community-card-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor
}

.opn__community-card h3 {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1.4;
  color: #13496F;
  margin: 0 0 16px;
  transition: color .7s ease
}

.opn__community-card:hover h3 {
  color: #FFF
}

.opn__community-card p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  transition: color .7s ease
}

.opn__community-card:hover p {
  color: #FFF
}

.opn__community-divider {
  width: 100%;
  height: 2px;
  margin: 96px 0 0;
  position: relative;
  overflow: visible
}

.opn__community-divider svg {
  width: 100%;
  height: 8px;
  display: block
}

.opn__conditions {
  background: #FFF;
  padding: 96px 16px;
  position: relative
}

.opn__conditions-container {
  max-width: 1140px;
  margin: 0 auto
}

.opn__conditions h2 {
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #13496F;
  margin: 0 0 48px
}

.opn__conditions-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px
}

.opn__conditions-main {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.opn__conditions-item {
  background: linear-gradient(94deg, #fafbfc 0%, #f4f6f8 100%);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #FB823F !important;
  transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opn__conditions-item:hover {
  box-shadow: 1px 6px 18px 1px #fb823f1c
}

.opn__conditions-item h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #13496F;
  margin: 0 0 16px;
  transition: letter-spacing .55s ease
}

.opn__conditions-item:hover h3 {
  letter-spacing: .02em
}

.opn__conditions-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0
}

.opn__conditions-side {
  position: relative
}

.opn__conditions-img-wrap {
  position: sticky;
  top: 96px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 1px 12px 36px 1px #13496f1f
}

.opn__conditions-img {
  width: 100%;
  height: auto;
  display: block
}

.opn__conditions-center {
  width: 120px;
  height: 3px;
  background: #13496F;
  margin: 96px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.opn__conditions-center::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FB823F;
  border-radius: 50%;
  border: 3px solid #FFF;
  box-shadow: 0 0 0 2px #FB823F
}

@media (max-width: 1366px) {
  .opn__title-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 16px
  }

  .opn__title-deco {
    width: 200px;
    height: 200px;
    top: 16px;
    right: 16px
  }

  .opn__title-deco::before {
    width: 120px;
    height: 120px
  }

  .opn__title-deco::after {
    width: 90px;
    height: 90px
  }

  .opn__title-txt {
    padding: 16px
  }

  .opn__title-visual {
    padding: 16px
  }

  .opn__barrier-container {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .opn__barrier-visual {
    min-height: 300px
  }

  .opn__community-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .opn__conditions-layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .opn__conditions-img-wrap {
    position: relative;
    top: 0
  }
}

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

  .opn__title-txt h1 {
    margin-bottom: 16px
  }

  .opn__barrier {
    padding: 48px 16px
  }

  .opn__barrier-quote {
    margin-top: 32px;
    padding: 24px
  }

  .opn__barrier-metric {
    padding: 16px
  }

  .opn__community {
    padding: 48px 16px
  }

  .opn__community h2 {
    margin-bottom: 32px
  }

  .opn__community-card {
    padding: 24px
  }

  .opn__conditions {
    padding: 48px 16px
  }

  .opn__conditions h2 {
    margin-bottom: 32px
  }

  .opn__conditions-item {
    padding: 24px
  }

  .opn__conditions-center {
    margin-top: 48px
  }
}

@media (max-width: 375px) {
  .opn__title-wrapper {
    padding: 16px 8px
  }

  .opn__title-txt {
    padding: 8px
  }

  .opn__title-visual {
    padding: 8px
  }

  .opn__title-quote {
    font-size: 14px
  }

  .opn__barrier {
    padding: 32px 8px
  }

  .opn__barrier-quote {
    padding: 16px
  }

  .opn__community {
    padding: 32px 8px
  }

  .opn__community-card {
    padding: 16px
  }

  .opn__conditions {
    padding: 32px 8px
  }

  .opn__conditions-item {
    padding: 16px
  }
}

.success-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 96px 16px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center
}

.success-page .confirm-visual {
  width: 88px;
  height: 88px;
  border-radius: 40px;
  background: linear-gradient(127deg, #13496f14, #fb823f14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 1px 6px 18px 1px #13496f1c
}

.success-page .confirm-visual .checkmark {
  width: 44px;
  height: 44px;
  border: 3px solid #13496F;
  border-radius: 24px;
  position: relative
}

.success-page .confirm-visual .checkmark::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 5px;
  width: 10px;
  height: 18px;
  border: solid #13496F;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg)
}

.success-page .msg-heading {
  font-size: 37px;
  line-height: 1.15;
  color: #13496F;
  margin-bottom: 16px;
  letter-spacing: -.02em
}

.success-page .msg-text {
  font-size: 20px;
  line-height: 1.6;
  color: #2d2d2d;
  margin-bottom: 48px;
  max-width: 580px
}

.success-page .action-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap
}

.success-page .btn-primary {
  padding: 16px 32px;
  background: #13496F;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
  transition: letter-spacing .6s ease;
  box-shadow: 1px 1px 6px 1px #13496f0d
}

.success-page .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fb823f26;
  transition: left .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-page .btn-primary:hover {
  letter-spacing: .08em
}

.success-page .btn-primary:hover::before {
  left: 0
}

.success-page .btn-primary span {
  position: relative;
  z-index: 1
}

.success-page .btn-secondary {
  padding: 16px 32px;
  background: transparent;
  color: #13496F;
  border: 2px solid #13496F;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: .01em;
  transition: letter-spacing .5s ease, background .6s ease, color .6s ease
}

.success-page .btn-secondary:hover {
  letter-spacing: .08em;
  background: #13496F;
  color: #FFF
}

.success-page .info-block {
  margin-top: 96px;
  padding: 32px;
  background: linear-gradient(168deg, #fb823f0a, #13496f0a);
  border-radius: 14px;
  max-width: 680px
}

.success-page .info-block .info-title {
  font-size: 20px;
  line-height: 1.4;
  color: #13496F;
  margin-bottom: 16px;
  letter-spacing: -.01em
}

.success-page .info-block .info-detail {
  font-size: 14px;
  line-height: 1.6;
  color: #3d3d3d;
  margin-bottom: 8px
}

.success-page .info-block .info-detail:last-child {
  margin-bottom: 0
}

.success-page .info-block .info-detail strong {
  color: #13496F
}

@media (max-width: 768px) {
  .success-page {
    padding: 48px 16px
  }

  .success-page .confirm-visual {
    width: 72px;
    height: 72px;
    margin-bottom: 24px
  }

  .success-page .confirm-visual .checkmark {
    width: 36px;
    height: 36px
  }

  .success-page .confirm-visual .checkmark::after {
    left: 10px;
    top: 4px;
    width: 8px;
    height: 14px
  }

  .success-page .msg-heading {
    font-size: 27px
  }

  .success-page .msg-text {
    font-size: 14px;
    margin-bottom: 32px
  }

  .success-page .action-row {
    flex-direction: column;
    width: 100%
  }

  .success-page .btn-primary,
  .success-page .btn-secondary {
    width: 100%;
    max-width: 320px
  }

  .success-page .info-block {
    margin-top: 48px;
    padding: 24px 16px
  }

  .success-page .info-block .info-title {
    font-size: 14px
  }

  .success-page .info-block .info-detail {
    font-size: 13px
  }
}

@media (max-width: 375px) {
  .success-page {
    padding: 32px 16px
  }

  .success-page .msg-heading {
    font-size: 20px
  }
}