html {
  scroll-behavior: auto
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: anywhere
}

:focus-visible {
  outline: 3px solid #2E494E;
  outline-offset: 2px
}

.site-header {
  background: linear-gradient(160deg, #2E494E 0%, #3d5f65 60%, #657D8A 100%);
  position: relative;
  z-index: 100;
  overflow: hidden
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #afdee40f 0%, transparent 50%, #afdee40a 100%);
  pointer-events: none
}

.hd-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px 16px;
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto
}

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

.logo-card {
  background: #fff;
  border-radius: 10px 0 10px 0;
  padding: 8px;
  box-shadow: 0 3px 4px 0 #2e494e0f 0 5px 28px 0 #2e494e1a;
  border: 2px solid #afdee466;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px
}

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

.brand-name {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-align: center
}

.brand-descriptor {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: #AFDEE4;
  line-height: 1.4;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase
}

.hd-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #afdee44d 20%, #afdee480 50%, #afdee44d 80%, transparent 100%);
  max-width: 1500px;
  margin: 0 auto
}

.hd-nav-row {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 40px;
  list-style: none;
  margin: 0
}

.primary-nav li {
  display: block
}

.primary-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffffe0;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #afdee42e;
  transition: color .25s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.0, 0, 0.2, 1), border-color .25s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #afdee42e 0%, #afdee414 100%);
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.primary-nav a:hover {
  color: #fff;
  border-color: #afdee480;
  background: #afdee414
}

.primary-nav a:hover::after {
  opacity: 1
}

.primary-nav a .ti {
  font-size: 18px;
  color: #AFDEE4;
  flex-shrink: 0
}

.site-footer {
  background: #1a2e31;
  color: #ffffffbf;
  font-family: 'Merriweather', Georgia, serif
}

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

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

.ft-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -.01em
}

.ft-tagline {
  font-size: 16px;
  color: #afdee4cc;
  line-height: 1.6
}

.ft-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px
}

.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #ffffffb3;
  line-height: 1.4;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft-contact-item:hover {
  color: #AFDEE4
}

.ft-contact-item .ti {
  color: #AFDEE4;
  font-size: 18px;
  flex-shrink: 0
}

.ft-contact-item span {
  word-break: break-all
}

.ft-right {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.ft-nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft-nav-label {
  font-size: 16px;
  font-weight: 700;
  color: #AFDEE4;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
  padding-bottom: 8px;
  border-bottom: 1px solid #afdee426
}

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

.ft-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #ffffffb3;
  text-decoration: none;
  line-height: 1.4;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px
}

.ft-links a:hover {
  color: #AFDEE4
}

.ft-links a .ti {
  font-size: 16px;
  color: #afdee499;
  flex-shrink: 0;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft-links a:hover .ti {
  color: #AFDEE4
}

.ft-bottom {
  border-top: 1px solid #afdee41f;
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.ft-logo-wrap {
  background: #ffffff0f;
  border: 1px solid #afdee433;
  border-radius: 4px 10px 4px 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  box-shadow: 0 3px 4px 0 #2e494e0f
}

.ft-logo-wrap img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block
}

.ft-copy {
  font-size: 16px;
  color: #ffffff73;
  line-height: 1.6;
  text-align: center
}

@media (max-width: 768px) {
  .hd-top {
    padding: 40px 16px 16px
  }

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

  .primary-nav {
    gap: 8px;
    padding: 16px 0 40px
  }

  .ft-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 16px 16px
  }

  .ft-bottom {
    padding: 16px 16px 40px
  }
}

.policy-n-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2E494E
}

.policy-n-section h1 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 40px;
  color: #2E494E
}

.policy-n-section h2 {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2E494E
}

.policy-n-section h3 {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -.01em;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2E494E
}

.policy-n-section h4,
.policy-n-section h5,
.policy-n-section h6 {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #2E494E
}

.policy-n-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #2E494E
}

.policy-n-section ul,
.policy-n-section ol {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 40px;
  color: #2E494E
}

.policy-n-section ul {
  list-style-type: disc
}

.policy-n-section ol {
  list-style-type: decimal
}

.policy-n-section li {
  margin-bottom: 8px;
  line-height: 1.6
}

.policy-n-section li:last-child {
  margin-bottom: 0
}

.policy-n-section em,
.policy-n-section i {
  font-style: italic;
  color: #657D8A
}

.policy-n-section table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: 0 3px 4px 0 #2e494e0f;
  border-radius: 4px;
  overflow: hidden
}

.policy-n-section thead {
  background-color: #2E494E;
  color: #fff
}

.policy-n-section thead th {
  padding: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  border: none
}

.policy-n-section tbody tr {
  border-bottom: 1px solid #AFDEE4;
  transition: background-color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

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

.policy-n-section tbody tr:nth-child(even) {
  background-color: #afdee41f
}

.policy-n-section tbody tr:hover {
  background-color: #afdee447
}

.policy-n-section td {
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #2E494E;
  vertical-align: top
}

.policy-n-section th {
  padding: 16px
}

.policy-n-section hr {
  border: none;
  border-top: 1px solid #AFDEE4;
  margin: 40px 0
}

.policy-n-section div {
  font-size: 16px;
  line-height: 1.6
}

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

  .policy-n-section h1 {
    font-size: 28px
  }

  .policy-n-section h2 {
    font-size: 18px;
    margin-top: 40px
  }

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

.frnt {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden
}

.frnt .split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px
}

.frnt .split-left {
  background: #2E494E;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.frnt .atm-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none
}

.frnt .atm-spot.a1 {
  width: 280px;
  height: 280px;
  background: #afdee421;
  top: -40px;
  left: -60px
}

.frnt .atm-spot.a2 {
  width: 200px;
  height: 200px;
  background: #657d8a2e;
  bottom: 40px;
  right: 16px
}

.frnt .split-left .pre-label {
  font-size: 16px;
  line-height: 1.4;
  color: #AFDEE4;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.frnt .split-left .h-main {
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 16px
}

.frnt .split-left .h-main .accent-word {
  color: #AFDEE4
}

.frnt .split-left .sub-copy {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffc7;
  max-width: 420px;
  margin-bottom: 40px
}

.frnt .split-left .hero-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap
}

.frnt .btn-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #AFDEE4;
  color: #2E494E;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.frnt .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, #2E494E, #657D8A);
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.frnt .btn-primary:hover::before {
  opacity: 1
}

.frnt .btn-primary:hover {
  color: #fff
}

.frnt .btn-primary span,
.frnt .btn-primary i {
  position: relative;
  z-index: 1
}

.frnt .btn-ghost {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: #AFDEE4;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #afdee473;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.frnt .btn-ghost:hover {
  border-color: #AFDEE4;
  color: #fff
}

.frnt .split-right {
  position: relative;
  overflow: hidden
}

.frnt .split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.frnt .split-right .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, transparent 40%, #2E494E 100%)
}

.frnt .split-right .img-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.frnt .split-right:hover .img-caption {
  opacity: 1;
  transform: translateY(0)
}

.frnt .approach-strip {
  padding: 80px 40px;
  background: #fff
}

.frnt .approach-strip .strip-head {
  max-width: 600px;
  margin-bottom: 40px
}

.frnt .approach-strip .strip-head h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2E494E;
  margin-bottom: 16px
}

.frnt .approach-strip .strip-head h2 .aw {
  color: #657D8A
}

.frnt .approach-strip .strip-head p {
  font-size: 18px;
  line-height: 1.6;
  color: #2E494E
}

.frnt .approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px
}

.frnt .ap-card {
  padding: 40px 16px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 28px 0 #2e494e1a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1), transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.frnt .ap-card:hover {
  box-shadow: 0 12px 40px 0 #2e494e21;
  transform: translateY(-3px)
}

.frnt .ap-card .card-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #afdee473;
  letter-spacing: -.03em
}

.frnt .ap-card h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #2E494E;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0
}

.frnt .ap-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #657D8A;
  margin: 0
}

.frnt .ap-card .card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(247deg, #AFDEE4, #fff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E494E;
  font-size: 20px
}

.frnt .ap-card .para-num {
  font-size: 16px;
  font-weight: 700;
  color: #AFDEE4;
  display: inline-block;
  margin-right: 8px
}

.frnt .community-band {
  padding: 80px 40px;
  background: linear-gradient(247deg, #2E494E 0%, #3d5f65 60%, #657D8A 100%);
  position: relative;
  overflow: hidden
}

.frnt .aurora-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.frnt .aurora-zone {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: aurora-drift 9s ease-in-out infinite alternate
}

.frnt .aurora-zone.z1 {
  width: 500px;
  height: 300px;
  background: #afdee41f;
  top: -60px;
  left: 10%;
  animation-delay: 0s
}

.frnt .aurora-zone.z2 {
  width: 400px;
  height: 250px;
  background: #657d8a2e;
  bottom: -40px;
  right: 5%;
  animation-delay: 3s
}

@keyframes aurora-drift {
  0% {
    transform: translateX(0) scale(1)
  }

  100% {
    transform: translateX(40px) scale(1.08)
  }
}

.frnt .comm-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.frnt .comm-text h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 16px
}

.frnt .comm-text h2 .aw {
  color: #AFDEE4
}

.frnt .comm-text .comm-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffd1;
  margin-bottom: 40px
}

.frnt .comm-text .comm-desc .para-num {
  font-size: 16px;
  font-weight: 700;
  color: #AFDEE4;
  margin-right: 8px
}

.frnt .comm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.frnt .stat-box {
  background: #ffffff14;
  border-radius: 4px;
  padding: 16px;
  border: 1px solid #afdee433;
  box-shadow: inset 0 1px 0 #afdee41a
}

.frnt .stat-box .stat-val {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #AFDEE4;
  letter-spacing: -.03em
}

.frnt .stat-box .stat-label {
  font-size: 16px;
  line-height: 1.4;
  color: #ffffffb8;
  margin-top: 8px
}

.frnt .comm-img-col {
  position: relative;
  border-radius: 4px;
  overflow: hidden
}

.frnt .comm-img-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid #afdee433;
  border-radius: 4px
}

.frnt .comm-img-col .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2e494ee0;
  color: #AFDEE4;
  font-size: 16px;
  line-height: 1.4;
  padding: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1), transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.frnt .comm-img-col:hover .img-caption {
  opacity: 1;
  transform: translateY(0)
}

.frnt .fit-band {
  padding: 80px 40px;
  background: #f4f7f8
}

.frnt .fit-band .fit-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px
}

.frnt .fit-band h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2E494E;
  margin-bottom: 16px
}

.frnt .fit-band h2 .aw {
  color: #657D8A
}

.frnt .fit-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #2E494E
}

.frnt .fit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.frnt .fit-col {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 3px 4px 0 #2e494e0f
}

.frnt .fit-col h5 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #2E494E;
  margin-bottom: 16px;
  letter-spacing: -.01em
}

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

.frnt .fit-col .fit-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #2E494E;
  position: relative;
  padding-left: 8px
}

.frnt .fit-col .fit-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #AFDEE4;
  margin-top: 7px;
  display: block
}

.frnt .fit-col.not-fit .fit-list li::before {
  background: #657D8A;
  opacity: .5
}

.frnt .fit-portrait {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start
}

.frnt .portrait-frame {
  width: 160px;
  aspect-ratio: 5/7;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #2e494e1f;
  box-shadow: 0 5px 28px 0 #2e494e1a
}

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

.frnt .portrait-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #657D8A;
  font-style: italic;
  max-width: 320px
}

.frnt .portrait-name {
  font-size: 16px;
  font-weight: 700;
  color: #2E494E
}

.frnt .current-band {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.frnt .current-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, #2e494e0a 39px, #2e494e0a 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, #2e494e0a 39px, #2e494e0a 40px);
  pointer-events: none
}

.frnt .current-inner {
  position: relative;
  z-index: 1
}

.frnt .current-head {
  max-width: 640px;
  margin-bottom: 40px
}

.frnt .current-head h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2E494E;
  margin-bottom: 16px
}

.frnt .current-head h2 .aw {
  color: #657D8A
}

.frnt .current-head p {
  font-size: 18px;
  line-height: 1.6;
  color: #2E494E
}

.frnt .current-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.frnt .current-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px 0 #2e494e21
}

.frnt .current-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid #2e494e1a;
  border-radius: 4px
}

.frnt .current-img-wrap .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2e494ee6;
  color: #AFDEE4;
  font-size: 16px;
  line-height: 1.4;
  padding: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s cubic-bezier(0.4, 0, 0.2, 1), transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.frnt .current-img-wrap:hover .img-caption {
  opacity: 1;
  transform: translateY(0)
}

.frnt .signal-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.frnt .signal-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 4px 0 #2e494e0f;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.frnt .signal-item:hover {
  box-shadow: 0 5px 28px 0 #2e494e1a
}

.frnt .signal-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(247deg, #AFDEE4, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E494E;
  font-size: 18px
}

.frnt .signal-item h6 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #2E494E;
  margin: 0 0 8px
}

.frnt .signal-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #657D8A;
  margin: 0
}

.frnt .dashed-accent {
  border: 2px dashed #afdee499;
  border-radius: 4px;
  padding: 16px;
  margin-top: 16px;
  background: #afdee40f
}

.frnt .dashed-accent p {
  font-size: 16px;
  line-height: 1.6;
  color: #2E494E;
  margin: 0
}

@media (max-width: 900px) {
  .frnt .split-hero {
    grid-template-columns: 1fr
  }

  .frnt .split-right {
    height: 300px
  }

  .frnt .split-left .h-main {
    font-size: 40px
  }

  .frnt .approach-grid {
    grid-template-columns: 1fr
  }

  .frnt .comm-inner {
    grid-template-columns: 1fr
  }

  .frnt .fit-top {
    grid-template-columns: 1fr
  }

  .frnt .fit-cols {
    grid-template-columns: 1fr
  }

  .frnt .current-layout {
    grid-template-columns: 1fr
  }

  .frnt .comm-stats {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 600px) {
  .frnt .split-left {
    padding: 40px 16px 80px
  }

  .frnt .approach-strip,
  .frnt .community-band,
  .frnt .fit-band,
  .frnt .current-band {
    padding: 40px 16px
  }

  .frnt .comm-stats {
    grid-template-columns: 1fr
  }
}

.acred {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden
}

.acred .split-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.acred .split-left {
  background: #2E494E;
  padding: 80px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.acred .split-left::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: #AFDEE4;
  border-radius: 50%;
  opacity: .08;
  filter: blur(40px);
  pointer-events: none
}

.acred .split-left::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 40px;
  width: 160px;
  height: 160px;
  background: #657D8A;
  border-radius: 50%;
  opacity: .12;
  filter: blur(32px);
  pointer-events: none
}

.acred .split-right {
  background: #f4f7f7;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden
}

.acred .split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  border: 1px solid #2e494e1f
}

.acred .page-eyebrow {
  font-size: 16px;
  line-height: 1.4;
  color: #AFDEE4;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

.acred .page-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #AFDEE4;
  border-radius: 2px
}

.acred .page-h1 {
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 800
}

.acred .page-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #afdee4d9;
  max-width: 420px;
  margin-bottom: 40px
}

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

.acred .dot-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #AFDEE4;
  opacity: .5
}

.acred .dot-row .dot.active {
  opacity: 1;
  background: #AFDEE4;
  box-shadow: 0 0 0 3px #afdee433
}

.acred .reg-strip {
  background: linear-gradient(247deg, #2E494E 0%, #fff 100%);
  padding: 40px 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap
}

.acred .reg-strip .reg-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex: 1 1 200px
}

.acred .reg-strip .reg-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #2e494e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.acred .reg-strip .reg-icon svg {
  width: 22px;
  height: 22px;
  stroke: #2E494E;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.acred .reg-strip .reg-label {
  font-size: 16px;
  line-height: 1.4;
  color: #2E494E;
  font-weight: 600
}

.acred .reg-strip .reg-val {
  font-size: 16px;
  line-height: 1.4;
  color: #657D8A
}

.acred .lic-section {
  padding: 80px;
  background: #fff;
  position: relative
}

.acred .lic-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2E494E 0%, #AFDEE4 60%, transparent 100%)
}

.acred .lic-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: start
}

.acred .lic-aside {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.acred .lic-aside-label {
  font-size: 16px;
  line-height: 1.4;
  color: #657D8A;
  letter-spacing: .06em;
  text-transform: uppercase
}

.acred .lic-aside-num {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 800;
  color: #2E494E;
  letter-spacing: -.04em
}

.acred .lic-aside-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #657D8A
}

.acred .lic-center {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.acred .lic-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #2E494E;
  margin-bottom: 8px
}

.acred .lic-para {
  font-size: 18px;
  line-height: 1.6;
  color: #3a4f53
}

.acred .lic-para .para-num {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #AFDEE4;
  margin-right: 8px;
  background: #2E494E;
  border-radius: 2px;
  padding: 0 6px;
  line-height: 1.6
}

.acred .lic-cards {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.acred .lic-card {
  background: #f4f7f7;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 3px 4px 0 #2e494e0f;
  transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.acred .lic-card:hover {
  box-shadow: 0 5px 28px 0 #2e494e1a;
  background: #eaf3f4
}

.acred .lic-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #2E494E;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.acred .lic-card-title svg {
  width: 18px;
  height: 18px;
  stroke: #657D8A;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.acred .lic-card-body {
  font-size: 16px;
  line-height: 1.6;
  color: #657D8A
}

.acred .quote-section {
  background: #2E494E;
  padding: 80px;
  position: relative;
  overflow: hidden
}

.acred .quote-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.acred .qzone-a {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: #AFDEE4;
  opacity: .06;
  filter: blur(60px);
  top: -80px;
  right: 10%;
  animation: qshift-a 14s ease-in-out infinite alternate
}

.acred .qzone-b {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #657D8A;
  opacity: .1;
  filter: blur(44px);
  bottom: -40px;
  left: 8%;
  animation: qshift-b 18s ease-in-out infinite alternate
}

@keyframes qshift-a {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(-60px, 40px) scale(1.15)
  }
}

@keyframes qshift-b {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(50px, -30px) scale(1.1)
  }
}

.acred .quote-mark {
  font-size: 160px;
  line-height: 1.1;
  font-weight: 800;
  color: #afdee426;
  position: absolute;
  top: 16px;
  left: 64px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em
}

.acred .quote-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.acred .quote-text {
  font-size: 28px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  letter-spacing: -.01em
}

.acred .quote-attr {
  font-size: 16px;
  line-height: 1.4;
  color: #AFDEE4
}

.acred .quote-accent {
  display: inline-block;
  background: #afdee426;
  border-radius: 4px;
  padding: 2px 10px;
  color: #AFDEE4;
  font-size: 16px;
  margin-top: 8px
}

.acred .standards-section {
  padding: 80px;
  background: linear-gradient(247deg, #f4f7f7 0%, #fff 100%);
  position: relative
}

.acred .standards-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #AFDEE4 50%, transparent 100%)
}

.acred .std-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px
}

.acred .std-h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #2E494E
}

.acred .std-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #657D8A;
  max-width: 380px;
  text-align: right
}

.acred .std-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.acred .std-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 4px 0 #2e494e0f;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.acred .std-row:hover {
  box-shadow: 0 5px 28px 0 #2e494e1a
}

.acred .std-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
  flex-shrink: 0
}

.acred .std-dot-col .sdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #AFDEE4;
  box-shadow: inset 0 1px 2px #2e494e26;
  flex-shrink: 0
}

.acred .std-dot-col .sline {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, #AFDEE4, transparent);
  border-radius: 2px
}

.acred .std-text {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.acred .std-title {
  font-size: 16px;
  font-weight: 700;
  color: #2E494E;
  line-height: 1.4
}

.acred .std-body {
  font-size: 16px;
  line-height: 1.6;
  color: #657D8A
}

.acred .std-tag {
  display: inline-block;
  background: #afdee440;
  color: #2E494E;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 10px
}

.acred .std-cta-row {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.acred .btn-prim {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #2E494E;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: 16px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 5px 28px 0 #2e494e1a;
  transition: color .26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.acred .btn-prim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, #657D8A 0%, #2E494E 100%);
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.acred .btn-prim:hover::before {
  opacity: 1
}

.acred .btn-prim:hover {
  box-shadow: 0 12px 40px 0 #2e494e21
}

.acred .btn-prim span,
.acred .btn-prim svg {
  position: relative;
  z-index: 1
}

.acred .btn-prim svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.acred .btn-sec {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #2E494E;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #2E494E;
  border-radius: 4px;
  padding: 14px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s cubic-bezier(0.4, 0, 0.2, 1), color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.acred .btn-sec:hover {
  background: #2E494E;
  color: #fff
}

.acred .btn-sec svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

@media (max-width: 1024px) {
  .acred .split-top {
    grid-template-columns: 1fr
  }

  .acred .split-right {
    min-height: 320px
  }

  .acred .split-left {
    padding: 80px 40px 40px
  }

  .acred .page-h1 {
    font-size: 40px
  }

  .acred .lic-grid {
    grid-template-columns: 1fr
  }

  .acred .lic-section,
  .acred .quote-section,
  .acred .standards-section,
  .acred .reg-strip {
    padding: 80px 40px
  }

  .acred .std-list {
    grid-template-columns: 1fr
  }

  .acred .std-head {
    flex-direction: column;
    align-items: flex-start
  }

  .acred .std-sub {
    text-align: left
  }
}

@media (max-width: 640px) {
  .acred .split-left {
    padding: 80px 16px 40px
  }

  .acred .page-h1 {
    font-size: 40px
  }

  .acred .lic-section,
  .acred .quote-section,
  .acred .standards-section,
  .acred .reg-strip {
    padding: 80px 16px
  }

  .acred .quote-mark {
    font-size: 80px;
    left: 16px
  }

  .acred .quote-text {
    font-size: 18px
  }

  .acred .lic-h2,
  .acred .std-h2 {
    font-size: 28px
  }

  .acred .lic-aside-num {
    font-size: 40px
  }

  .acred .btn-prim,
  .acred .btn-sec {
    padding: 16px
  }
}

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

.abt-us .page-cap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px
}

.abt-us .col-appear {
  opacity: 0;
  transform: translateY(24px);
  animation: colUp .55s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

.abt-us .col-appear:nth-child(1) {
  animation-delay: .08s
}

.abt-us .col-appear:nth-child(2) {
  animation-delay: .22s
}

.abt-us .col-appear:nth-child(3) {
  animation-delay: .38s
}

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

.abt-us .title-blk {
  padding: 80px 0 40px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.abt-us .title-blk .atmos-spot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0
}

.abt-us .title-blk .atmos-spot.sp1 {
  width: 420px;
  height: 420px;
  background: #afdee42e;
  filter: blur(72px);
  top: -80px;
  left: -80px
}

.abt-us .title-blk .atmos-spot.sp2 {
  width: 320px;
  height: 320px;
  background: #657d8a1a;
  filter: blur(60px);
  bottom: -40px;
  right: 80px
}

.abt-us .title-blk .t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
  z-index: 1
}

.abt-us .title-blk .t-text {
  padding-top: 80px
}

.abt-us .title-blk .t-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  color: #657D8A;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: #afdee438;
  border-radius: 2px
}

.abt-us .title-blk h1 {
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #2E494E;
  margin: 0 0 40px
}

.abt-us .title-blk h1 span {
  display: block
}

.abt-us .title-blk .t-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #3a5055;
  max-width: 480px
}

.abt-us .title-blk .t-img-col {
  position: relative
}

.abt-us .title-blk .img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden
}

.abt-us .title-blk .img-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid #2e494e1f;
  border-radius: 4px
}

.abt-us .title-blk .img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, #2e494e2e 0%, transparent 55%);
  border-radius: 4px;
  pointer-events: none
}

.abt-us .title-blk .diamond-accent {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #AFDEE4;
  transform: rotate(45deg);
  bottom: -16px;
  right: -16px;
  z-index: 2;
  border-radius: 2px
}

.abt-us .title-blk .metric-strip {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #2e494e1a
}

.abt-us .title-blk .met-item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-us .title-blk .met-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #2E494E;
  letter-spacing: -.02em
}

.abt-us .title-blk .met-label {
  font-size: 16px;
  line-height: 1.4;
  color: #657D8A
}

.abt-us .div-band {
  height: 56px;
  background: linear-gradient(180deg, #fff 0%, #afdee424 50%, #2e494e0a 100%);
  filter: blur(2px);
  margin: 0
}

.abt-us .detail-blk {
  background: linear-gradient(247deg, #2e494e0d 0%, #fff 60%);
  padding: 80px 0;
  position: relative
}

.abt-us .detail-blk .d-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 80px;
  align-items: start
}

.abt-us .detail-blk .d-main {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.abt-us .detail-blk .two-col-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative
}

.abt-us .detail-blk .two-col-split::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, #2e494e2e 30%, #2e494e2e 70%, transparent);
  transform: translateX(-50%);
  pointer-events: none
}

.abt-us .detail-blk .col-a,
.abt-us .detail-blk .col-b {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-us .detail-blk h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2E494E;
  margin: 0
}

.abt-us .detail-blk .para-block {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-us .detail-blk .para-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.abt-us .detail-blk .para-num {
  font-size: 16px;
  line-height: 1.6;
  color: #AFDEE4;
  font-weight: 700;
  min-width: 24px;
  padding-top: 2px
}

.abt-us .detail-blk .para-text {
  font-size: 16px;
  line-height: 1.6;
  color: #3a5055
}

.abt-us .detail-blk h4 {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #2E494E;
  font-weight: 700;
  margin: 0
}

.abt-us .detail-blk .img-duo {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-us .detail-blk .img-duo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  border: 1px solid #2e494e1a;
  display: block;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .detail-blk .img-duo img:hover {
  box-shadow: 0 12px 40px 0 #2e494e21
}

.abt-us .detail-blk .side-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 40px
}

.abt-us .detail-blk .big-metric {
  background: linear-gradient(247deg, #2E494E 0%, #3f6068 100%);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 5px 28px 0 #2e494e1a
}

.abt-us .detail-blk .big-metric .bm-num {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
  color: #AFDEE4;
  letter-spacing: -.03em
}

.abt-us .detail-blk .big-metric .bm-label {
  font-size: 18px;
  line-height: 1.4;
  color: #ffffffe6;
  font-weight: 600
}

.abt-us .detail-blk .big-metric .bm-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #afdee4cc
}

.abt-us .detail-blk .instructor-card {
  border-radius: 4px;
  border: 1px solid #2e494e1a;
  padding: 16px;
  background: #fff;
  box-shadow: 0 3px 4px 0 #2e494e0f;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .detail-blk .instructor-card:hover {
  box-shadow: 0 5px 28px 0 #2e494e1a;
  backdrop-filter: blur(2px)
}

.abt-us .detail-blk .instr-top {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center
}

.abt-us .detail-blk .instr-portrait {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
  border: 1px solid #2e494e1f;
  flex-shrink: 0
}

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

.abt-us .detail-blk .instr-name {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #2E494E
}

.abt-us .detail-blk .instr-role {
  font-size: 16px;
  line-height: 1.4;
  color: #657D8A
}

.abt-us .detail-blk .instr-bio {
  font-size: 16px;
  line-height: 1.6;
  color: #3a5055
}

.abt-us .detail-blk .prog-trail {
  display: flex;
  flex-direction: column;
  gap: 0
}

.abt-us .detail-blk .trail-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  position: relative
}

.abt-us .detail-blk .trail-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  padding-top: 4px
}

.abt-us .detail-blk .t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #AFDEE4;
  border: 2px solid #657D8A;
  flex-shrink: 0;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .detail-blk .trail-item:first-child .t-dot {
  background: #2E494E;
  border-color: #2E494E
}

.abt-us .detail-blk .t-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(180deg, #657D8A 0%, #afdee466 100%)
}

.abt-us .detail-blk .trail-item:last-child .t-line {
  display: none
}

.abt-us .detail-blk .trail-text {
  padding-bottom: 16px
}

.abt-us .detail-blk .trail-text h6 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #2E494E;
  margin: 0 0 8px
}

.abt-us .detail-blk .trail-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #657D8A;
  margin: 0
}

.abt-us .detail-blk .accent-bg-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden
}

.abt-us .detail-blk .accent-bg-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(3px) brightness(0.7);
  border-radius: 4px;
  transition: filter .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .detail-blk .accent-bg-img:hover img {
  filter: blur(1px) brightness(0.75)
}

.abt-us .detail-blk .accent-bg-img .over-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  pointer-events: none
}

.abt-us .detail-blk .accent-bg-img .over-text span {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em
}

.abt-us .detail-blk .accent-bg-img .over-text small {
  font-size: 16px;
  line-height: 1.4;
  color: #afdee4e6;
  margin-top: 8px
}

.abt-us .detail-blk .cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap
}

.abt-us .detail-blk .btn-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #2E494E;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 4px 0 #2e494e0f
}

.abt-us .detail-blk .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, #AFDEE4 0%, #657D8A 100%);
  opacity: 0;
  transition: opacity .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .detail-blk .btn-primary:hover::before {
  opacity: 1
}

.abt-us .detail-blk .btn-primary:hover {
  color: #2E494E;
  box-shadow: 0 5px 28px 0 #2e494e1a
}

.abt-us .detail-blk .btn-primary span,
.abt-us .detail-blk .btn-primary i {
  position: relative;
  z-index: 1
}

.abt-us .detail-blk .btn-secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: #2E494E;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  border: 2px solid #2E494E;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .25s cubic-bezier(0.4, 0, 0.2, 1), border-color .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .detail-blk .btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, #2e494e14 0%, #afdee42e 100%);
  opacity: 0;
  transition: opacity .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .detail-blk .btn-secondary:hover::before {
  opacity: 1
}

.abt-us .detail-blk .btn-secondary:hover {
  border-color: #657D8A;
  box-shadow: 0 3px 4px 0 #2e494e0f
}

.abt-us .detail-blk .btn-secondary span,
.abt-us .detail-blk .btn-secondary i {
  position: relative;
  z-index: 1
}

.abt-us .detail-blk .btn-primary:focus-visible,
.abt-us .detail-blk .btn-secondary:focus-visible {
  outline: 3px solid #2E494E !important;
  outline-offset: 3px !important
}

@media (max-width: 1100px) {
  .abt-us .title-blk .t-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .abt-us .title-blk .t-text {
    padding-top: 40px
  }

  .abt-us .title-blk h1 {
    font-size: 40px
  }

  .abt-us .detail-blk .d-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .abt-us .detail-blk .side-col {
    position: static
  }
}

@media (max-width: 768px) {
  .abt-us .page-cap {
    padding: 0 16px
  }

  .abt-us .title-blk {
    padding: 40px 0
  }

  .abt-us .title-blk h1 {
    font-size: 40px
  }

  .abt-us .title-blk .img-frame img {
    height: 320px
  }

  .abt-us .title-blk .metric-strip {
    flex-direction: column;
    gap: 16px
  }

  .abt-us .detail-blk .two-col-split {
    grid-template-columns: 1fr
  }

  .abt-us .detail-blk .two-col-split::before {
    display: none
  }

  .abt-us .detail-blk h2 {
    font-size: 28px
  }

  .abt-us .detail-blk .cta-row {
    flex-direction: column
  }
}

.ctus {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden
}

.ctus .pg-open {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
  background: linear-gradient(247deg, #fff 0%, #e8f5f7 55%, #AFDEE4 100%);
  position: relative
}

.ctus .pg-open::after {
  content: '';
  display: block;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #2E494E 0%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 40px
}

.ctus .open-left {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.ctus .open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2e494e14;
  border: 1px solid #2e494e2e;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  color: #2E494E;
  letter-spacing: .04em;
  width: fit-content
}

.ctus .open-heading {
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #2E494E;
  font-weight: 800;
  margin: 0
}

.ctus .open-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #3d5c62;
  margin: 0
}

.ctus .open-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px
}

.ctus .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 4px 0 #2e494e0f;
  transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .contact-item:hover {
  box-shadow: 0 5px 28px 0 #2e494e1a
}

.ctus .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(247deg, #2E494E 0%, #657D8A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px
}

.ctus .ci-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .ci-label {
  font-size: 16px;
  color: #657D8A;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600
}

.ctus .ci-val {
  font-size: 18px;
  color: #2E494E;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .ci-val:hover {
  color: #657D8A
}

.ctus .open-right {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px 0 #2e494e21;
  padding: 40px;
  position: relative
}

.ctus .open-right::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2E494E 0%, #AFDEE4 100%);
  border-radius: 10px 10px 0 0
}

.ctus .form-head {
  margin-bottom: 40px
}

.ctus .form-title {
  font-size: 28px;
  line-height: 1.1;
  color: #2E494E;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 8px
}

.ctus .form-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #657D8A;
  margin: 0
}

.ctus .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.ctus .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px
}

.ctus .form-field.full {
  grid-column: 1 / -1
}

.ctus .f-label {
  font-size: 16px;
  color: #2E494E;
  font-weight: 600;
  letter-spacing: .01em
}

.ctus .f-label .req {
  color: #2E494E;
  margin-left: 2px
}

.ctus .f-input {
  padding: 16px;
  border: 1.5px solid #2e494e33;
  border-radius: 4px;
  font-size: 16px;
  color: #2E494E;
  background: #f7fbfc;
  outline: none;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box
}

.ctus .f-input::placeholder {
  color: #8faab0
}

.ctus .f-input:focus {
  border-color: #2E494E;
  box-shadow: 0 0 0 3px #afdee459;
  background: #fff
}

.ctus .budget-label {
  font-size: 16px;
  color: #2E494E;
  font-weight: 600;
  margin-bottom: 8px;
  display: block
}

.ctus .budget-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px
}

.ctus .budget-opt {
  position: relative
}

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

.ctus .budget-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 1.5px solid #2e494e2e;
  border-radius: 4px;
  cursor: pointer;
  background: #f7fbfc;
  transition: border-color .28s cubic-bezier(0.4, 0, 0.2, 1), background .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  color: #2E494E;
  font-weight: 600;
  text-align: center;
  line-height: 1.4
}

.ctus .budget-opt label .b-range {
  font-size: 16px;
  font-weight: 700;
  color: #2E494E
}

.ctus .budget-opt label .b-desc {
  font-size: 16px;
  color: #657D8A;
  font-weight: 400
}

.ctus .budget-opt input[type="radio"]:checked+label {
  border-color: #2E494E !important;
  background: #2e494e12;
  box-shadow: 0 3px 4px 0 #2e494e0f
}

.ctus .budget-opt input[type="radio"]:focus+label {
  box-shadow: 0 0 0 3px #afdee473
}

.ctus .budget-opt label:hover {
  border-color: #657D8A;
  background: #edf6f8
}

.ctus .privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background: #afdee426;
  border-radius: 4px
}

.ctus .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: #2E494E;
  margin-top: 2px;
  cursor: pointer
}

.ctus .privacy-text {
  font-size: 16px;
  line-height: 1.6;
  color: #3d5c62
}

.ctus .privacy-text a {
  color: #2E494E;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .privacy-text a:hover {
  color: #657D8A
}

.ctus .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(247deg, #2E494E 0%, #657D8A 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  justify-content: center
}

.ctus .btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(247deg, #657D8A 0%, #2E494E 100%);
  transition: left .35s cubic-bezier(0.0, 0, 0.2, 1);
  z-index: 0
}

.ctus .btn-submit:hover::before {
  left: 0
}

.ctus .btn-submit:hover {
  box-shadow: 0 5px 28px 0 #2e494e1a
}

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

.ctus .btn-submit i {
  position: relative;
  z-index: 1
}

.ctus .btn-submit:focus {
  outline: 3px solid #AFDEE4;
  outline-offset: 2px
}

.ctus .divider-partial {
  display: flex;
  align-items: center;
  padding: 0 40px;
  margin: 0
}

.ctus .divider-partial .dp-line {
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #AFDEE4 100%)
}

.ctus .info-strip {
  padding: 40px;
  background: #2E494E;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  overflow: hidden
}

.ctus .info-strip::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #afdee40f;
  pointer-events: none;
  animation: flicker-bg 6s ease-in-out infinite
}

@keyframes flicker-bg {

  0%,
  100% {
    opacity: 1
  }

  20% {
    opacity: .7
  }

  45% {
    opacity: .95
  }

  60% {
    opacity: .6
  }

  80% {
    opacity: .9
  }
}

.ctus .strip-intro {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus .strip-heading {
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0
}

.ctus .strip-body {
  font-size: 16px;
  line-height: 1.6;
  color: #afdee4d9;
  margin: 0
}

.ctus .strip-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 4px;
  background: #afdee412;
  box-shadow: inset 0 1px 0 #afdee426
}

.ctus .sc-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #AFDEE4;
  letter-spacing: -.03em
}

.ctus .sc-label {
  font-size: 16px;
  color: #ffffffbf;
  line-height: 1.4
}

.ctus .sc-bar {
  height: 4px;
  border-radius: 2px;
  background: #afdee433;
  overflow: hidden
}

.ctus .sc-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #AFDEE4 0%, #657D8A 100%);
  animation: bar-grow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes bar-grow {
  from {
    width: 0
  }

  to {
    width: var(--bar-w)
  }
}

.ctus .response-block {
  padding: 80px 40px;
  background: linear-gradient(247deg, #f0f9fa 0%, #fff 100%);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative
}

.ctus .response-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, #AFDEE4 0%, transparent 60%)
}

.ctus .rb-left {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.ctus .rb-heading {
  font-size: 40px;
  line-height: 1.1;
  color: #2E494E;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0
}

.ctus .rb-para {
  font-size: 16px;
  line-height: 1.6;
  color: #3d5c62;
  margin: 0
}

.ctus .rb-para .p-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #afdee466;
  color: #2E494E;
  font-size: 16px;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle
}

.ctus .rb-accent {
  display: inline;
  background: #afdee459;
  padding: 0 4px;
  border-radius: 2px
}

.ctus .rb-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus .process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 3px 4px 0 #2e494e0f;
  position: relative;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .process-step:hover {
  box-shadow: 0 5px 28px 0 #2e494e1a;
  transform: translateX(4px)
}

.ctus .ps-num {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(247deg, #2E494E 0%, #657D8A 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus .ps-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .ps-title {
  font-size: 18px;
  font-weight: 700;
  color: #2E494E;
  line-height: 1.4;
  margin: 0
}

.ctus .ps-desc {
  font-size: 16px;
  color: #657D8A;
  line-height: 1.6;
  margin: 0
}

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

.ctus .dashed-path svg {
  width: 100%;
  height: 100%;
  opacity: .12
}

@media (max-width: 1024px) {
  .ctus .pg-open {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 16px
  }

  .ctus .open-heading {
    font-size: 40px
  }

  .ctus .info-strip {
    grid-template-columns: 1fr 1fr;
    padding: 40px 16px;
    gap: 16px
  }

  .ctus .strip-intro {
    grid-column: 1 / -1
  }

  .ctus .response-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 16px
  }

  .ctus .budget-options {
    grid-template-columns: 1fr 1fr
  }

  .ctus .divider-partial {
    padding: 0 16px
  }
}

@media (max-width: 640px) {
  .ctus .form-row {
    grid-template-columns: 1fr
  }

  .ctus .budget-options {
    grid-template-columns: 1fr
  }

  .ctus .open-heading {
    font-size: 40px
  }

  .ctus .info-strip {
    grid-template-columns: 1fr
  }

  .ctus .open-right {
    padding: 16px
  }

  .ctus .pg-open {
    padding: 40px 16px
  }
}

.success-pg {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
  background: linear-gradient(247deg, #2E494E 0%, #fff 100%)
}

.success-pg .success-card {
  background: #fff;
  border-radius: 10px;
  padding: 80px 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 12px 40px 0 #2e494e21;
  text-align: center
}

.success-pg .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.success-pg .success-icon svg {
  width: 64px;
  height: 64px
}

.success-pg .success-heading {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2E494E;
  margin: 0 0 16px
}

.success-pg .success-msg {
  font-size: 18px;
  line-height: 1.6;
  color: #657D8A;
  margin: 0 0 40px
}

.success-pg .success-accent {
  display: inline-block;
  background: #AFDEE4;
  color: #2E494E;
  font-size: 16px;
  line-height: 1.4;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 40px
}

.success-pg .success-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2E494E;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-pg .success-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(247deg, #657D8A, #2E494E);
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.0, 0, 0.2, 1);
  border-radius: 4px
}

.success-pg .success-back:hover::before {
  opacity: 1
}

.success-pg .success-back svg,
.success-pg .success-back span {
  position: relative;
  z-index: 1
}

.success-pg .success-back:focus-visible {
  outline: 2px solid #2E494E;
  outline-offset: 3px
}