* {
  box-sizing: border-box
}

html {
  scroll-behavior: auto;
  font-family: 'Oxygen', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2b2b2b;
  overflow-x: hidden
}

body {
  margin: 0
}

.util-bar {
  background: linear-gradient(90deg, #647C30 0%, #4a5c22 100%);
  border-bottom: 1px solid #cd54d82e
}

.util-bar__inner {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 1100px;
  padding: 8px 32px
}

.util-contact {
  align-items: center;
  color: #FAFFEC;
  display: flex;
  font-size: 13px;
  gap: 8px;
  letter-spacing: .01em;
  line-height: 1.15;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.util-contact:focus {
  background-color: #faffec26;
  border-radius: 4px;
  outline: none
}

.util-contact:hover {
  color: #fff
}

.util-contact i {
  font-size: 16px;
  opacity: .85
}

.util-divider {
  background: #faffec4d;
  height: 16px;
  width: 1px
}

.hd-body {
  background: #fff;
  border-bottom: 2px solid #cd54d821;
  box-shadow: 2px 7px 25px -2px #647c301c;
  position: relative
}

.hd-body__inner {
  align-items: stretch;
  display: flex;
  margin: 0 auto;
  max-width: 1100px;
  min-height: 96px;
  padding: 0 32px
}

.brand-zone {
  align-items: center;
  border-right: 1px solid #cd54d826;
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  margin-left: 16px;
  padding-right: 32px
}

.brand-img-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 2px 2px 4px -2px #cd54d80d 2px 7px 25px -2px #cd54d81c 0 0 0 2px #cd54d82e;
  display: block;
  flex-shrink: 0;
  height: 64px;
  overflow: hidden;
  padding: 8px;
  width: 64px
}

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

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

.brand-name {
  color: #2b2b2b;
  font-family: 'PT Serif', serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.15;
  text-decoration: none;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.brand-name:hover {
  color: #CD54D8
}

.brand-name:focus {
  background-color: #cd54d812;
  border-radius: 4px;
  outline: none
}

.brand-desc {
  color: #647C30;
  font-size: 13px;
  line-height: 1.15
}

.nav-zone {
  align-items: center;
  display: flex;
  flex: 1;
  padding-left: 32px
}

.pri-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0
}

.pri-nav__item {
  position: relative
}

.pri-nav__lnk {
  border: 1px solid transparent;
  border-radius: 6px;
  color: #2b2b2b;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  padding: 8px 16px;
  text-decoration: none;
  transition: color .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1), background .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pri-nav__lnk:hover {
  background: #cd54d80f;
  border-color: #cd54d84d;
  box-shadow: 2px 2px 4px -2px #cd54d80d;
  color: #CD54D8
}

.pri-nav__lnk:focus {
  background-color: #cd54d814;
  border-color: #cd54d866;
  outline: none
}

.pri-nav__item--has-sub>.pri-nav__lnk {
  align-items: center;
  display: flex;
  gap: 8px
}

.pri-nav__item--has-sub>.pri-nav__lnk i {
  font-size: 13px;
  opacity: .7;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pri-nav__item--has-sub:hover>.pri-nav__lnk i {
  transform: rotate(180deg)
}

.sub-nav {
  background: #fff;
  border: 1px solid #cd54d82e;
  border-radius: 12px;
  box-shadow: 2px 10px 48px -2px #cd54d81f;
  list-style: none;
  margin: 0;
  min-width: 240px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  transition: opacity .22s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(-8px);
  z-index: 200
}

.pri-nav__item--has-sub:hover>.sub-nav,
.pri-nav__item--has-sub:focus-within>.sub-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.sub-nav__lnk {
  border-radius: 6px;
  color: #2b2b2b;
  display: block;
  font-size: 16px;
  line-height: 1.15;
  padding: 8px 16px;
  text-decoration: none;
  transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1), color .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.sub-nav__lnk:hover {
  background: #cd54d814;
  color: #CD54D8
}

.sub-nav__lnk:focus {
  background-color: #cd54d81a;
  outline: none
}

.ft {
  background: linear-gradient(160deg, #2b2b2b 0%, #1e2d0d 100%);
  color: #FAFFEC;
  margin-top: 96px
}

.ft-util {
  border-bottom: 1px solid #faffec1f
}

.ft-util__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
  padding: 8px 32px
}

.ft-util__links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0
}

.ft-util__lnk {
  border: 1px solid #faffec33;
  border-radius: 4px;
  color: #faffecb3;
  font-size: 13px;
  line-height: 1.15;
  padding: 8px 16px;
  text-decoration: none;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), background .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-util__lnk:hover {
  background: #faffec14;
  border-color: #faffec73;
  color: #FAFFEC
}

.ft-util__lnk:focus {
  background-color: #faffec1f;
  outline: none
}

.ft-util__addr {
  color: #faffec8c;
  font-size: 13px;
  line-height: 1.15
}

.ft-body__inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 2fr;
  margin: 0 auto;
  max-width: 1100px;
  padding: 48px 32px 32px
}

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

.ft-rule {
  background: #cd54d859;
  border: none;
  height: 2px;
  margin: 0 0 16px;
  width: 48px
}

.ft-logo-box {
  background: #ffffff1a;
  border-radius: 12px;
  box-shadow: 2px 2px 4px -2px #cd54d80d 0 0 0 2px #faffec26;
  display: block;
  height: 64px;
  padding: 8px;
  width: 64px
}

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

.ft-brand-name {
  color: #FAFFEC;
  font-family: 'PT Serif', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15
}

.ft-brand-about {
  color: #faffec99;
  font-size: 13px;
  line-height: 1.7
}

.ft-cols {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr)
}

.ft-col__label {
  border-bottom: 1px solid #cd54d840;
  color: #CD54D8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.15;
  margin-bottom: 16px;
  padding-bottom: 8px;
  text-transform: uppercase
}

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

.ft-col__lnk {
  align-items: center;
  color: #faffecb3;
  display: flex;
  font-size: 16px;
  gap: 8px;
  line-height: 1.15;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-col__lnk:hover {
  color: #FAFFEC
}

.ft-col__lnk:focus {
  background-color: #faffec14;
  border-radius: 4px;
  color: #FAFFEC;
  outline: none
}

.ft-col__lnk i {
  color: #647C30;
  font-size: 16px
}

.ft-contact-item {
  color: #faffecb3;
  font-size: 16px;
  line-height: 1.7
}

.ft-contact-lnk {
  align-items: center;
  color: #faffecb3;
  display: flex;
  font-size: 16px;
  gap: 8px;
  line-height: 1.15;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-contact-lnk:hover {
  color: #FAFFEC
}

.ft-contact-lnk:focus {
  background-color: #faffec14;
  border-radius: 4px;
  color: #FAFFEC;
  outline: none
}

.ft-contact-lnk i {
  color: #CD54D8;
  font-size: 16px
}

.ft-bottom {
  border-top: 1px solid #faffec1a;
  margin-top: 32px
}

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

.ft-copy {
  color: #faffec73;
  font-size: 13px;
  line-height: 1.15
}

.ft-since {
  color: #faffec59;
  font-size: 13px;
  line-height: 1.15
}

@media (max-width: 1024px) {
  .ft-body__inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ft-cols {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .hd-body__inner {
    flex-direction: column;
    min-height: auto;
    padding: 16px
  }

  .brand-zone {
    border-bottom: 1px solid #cd54d826;
    border-right: none;
    margin-left: 0;
    padding-bottom: 16px;
    padding-right: 0
  }

  .nav-zone {
    padding-left: 0;
    padding-top: 16px;
    padding-bottom: 16px
  }

  .util-bar__inner {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 8px 16px
  }

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

  .ft-body__inner {
    padding: 32px 16px 16px
  }

  .ft-util__inner {
    flex-direction: column;
    gap: 8px;
    padding: 8px 16px
  }

  .ft-bottom__inner {
    flex-direction: column;
    padding: 16px
  }
}

@media (max-width: 480px) {
  .pri-nav {
    gap: 8px
  }

  .pri-nav__lnk {
    font-size: 13px;
    padding: 8px
  }

  .brand-name {
    font-size: 19px
  }
}

.content-legal-xiw {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px
}

.content-legal-xiw p {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2e;
  margin-bottom: 16px
}

.content-legal-xiw strong,
.content-legal-xiw b {
  font-weight: 700;
  color: #1e1e24
}

.content-legal-xiw em,
.content-legal-xiw i {
  font-style: italic;
  color: #3a3a42
}

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

.content-legal-xiw a:hover {
  color: #CD54D8;
  text-decoration-thickness: 2px
}

.content-legal-xiw div {
  margin-bottom: 32px
}

.content-legal-xiw table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  border-radius: 12px;
  overflow: hidden
}

.content-legal-xiw thead {
  background-color: #f5e6f7
}

.content-legal-xiw thead tr {
  border-bottom: 2px solid #cd54d840
}

.content-legal-xiw th {
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #7a1f85
}

.content-legal-xiw tbody tr {
  border-bottom: 1px solid #647c301f;
  transition: background-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.content-legal-xiw tbody tr:last-child {
  border-bottom: none
}

.content-legal-xiw tbody tr:hover {
  background-color: #FAFFEC
}

.content-legal-xiw td {
  padding: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2e;
  vertical-align: top
}

@media (max-width: 768px) {
  .content-legal-xiw {
    padding: 32px 16px
  }

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

  .content-legal-xiw th,
  .content-legal-xiw td {
    padding: 8px;
    font-size: 13px
  }
}

@media (max-width: 480px) {
  .content-legal-xiw p {
    font-size: 16px
  }

  .content-legal-xiw {
    padding: 32px 8px
  }
}

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

.certs-pg ::selection {
  background: linear-gradient(120deg, #CD54D8, #647C30);
  color: #fff
}

.certs-pg .reveal-clip {
  animation: clipReveal .28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes clipReveal {
  from {
    clip-path: inset(0 100% 0 0)
  }

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

.certs-pg .top-band {
  position: relative;
  padding: 96px 32px 48px;
  background: #FAFFEC
}

.certs-pg .top-band__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.certs-pg .top-band__bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .07
}

.certs-pg .top-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px
}

.certs-pg .top-band__text {
  flex: 1 1 0
}

.certs-pg .top-band__label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #647C30;
  border: 1px solid #647C30;
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 32px
}

.certs-pg .top-band__h1 {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 32px
}

.certs-pg .top-band__h1 em {
  font-style: normal;
  color: #CD54D8
}

.certs-pg .top-band__sub {
  font-size: 19px;
  line-height: 1.7;
  color: #3a3a3a;
  max-width: 520px;
  text-align: justify;
  margin: 0
}

.certs-pg .top-band__img-card {
  flex: 0 0 320px;
  width: 320px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  position: relative;
  filter: sepia(0.35) contrast(1.08) brightness(0.97);
  transition: filter .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.certs-pg .top-band__img-card:hover {
  filter: sepia(0) contrast(1) brightness(1)
}

.certs-pg .top-band__img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.certs-pg .top-band__link {
  display: inline-block;
  margin-top: 32px;
  font-size: 16px;
  color: #CD54D8;
  text-decoration: none;
  border-bottom: 1.5px solid #CD54D8;
  padding-bottom: 4px;
  transition: color .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.certs-pg .top-band__link:hover {
  color: #647C30;
  border-color: #647C30
}

.certs-pg .top-band__link:focus {
  outline: 2px solid #CD54D8;
  outline-offset: 4px;
  border-radius: 4px
}

.certs-pg .divider-a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 32px;
  background: #FAFFEC;
  position: relative
}

.certs-pg .divider-a svg {
  display: block
}

.certs-pg .creds {
  background: #fff;
  padding: 96px 32px;
  position: relative
}

.certs-pg .creds__inner {
  max-width: 1100px;
  margin: 0 auto
}

.certs-pg .creds__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px
}

.certs-pg .creds__h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 300;
  color: #1b1b1b;
  margin: 0
}

.certs-pg .creds__h2 strong {
  font-weight: 700;
  display: block
}

.certs-pg .creds__h2 span {
  color: #CD54D8
}

.certs-pg .creds__intro {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  max-width: 420px;
  text-align: justify;
  margin: 0;
  padding-top: 8px
}

.certs-pg .creds__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px
}

.certs-pg .cert-card {
  border: 1px solid #cd54d82e;
  border-radius: 12px;
  padding: 32px;
  background: #FAFFEC;
  box-shadow: 2px 2px 4px -2px #cd54d80d;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.certs-pg .cert-card:hover {
  box-shadow: 2px 10px 48px -2px #cd54d81f;
  transform: translateY(-5px)
}

.certs-pg .cert-card__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(210deg, #cd54d81f, transparent 70%);
  border-radius: 0 12px 0 0;
  pointer-events: none
}

.certs-pg .cert-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #cd54d81a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #CD54D8;
  font-size: 25px
}

.certs-pg .cert-card__num {
  font-size: 13px;
  color: #647C30;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.certs-pg .cert-card__title {
  font-size: 19px;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 16px;
  line-height: 1.15
}

.certs-pg .cert-card__body {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  text-align: justify;
  margin: 0
}

.certs-pg .cert-card__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  border-radius: 4px;
  border: 1px solid #647c3059;
  color: #647C30;
  padding: 4px 8px
}

.certs-pg .process-row {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 48px;
  border: 1px solid #647c3026;
  border-radius: 20px;
  overflow: hidden
}

.certs-pg .proc-step {
  flex: 1 1 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  background: #fff;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.certs-pg .proc-step:not(:last-child) {
  border-right: 1px solid #647c3026
}

.certs-pg .proc-step:hover {
  background: #FAFFEC
}

.certs-pg .proc-step__num {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  color: #cd54d82e
}

.certs-pg .proc-step__icon {
  font-size: 25px;
  color: #647C30
}

.certs-pg .proc-step__label {
  font-size: 16px;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
  line-height: 1.15
}

.certs-pg .proc-step__desc {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin: 0
}

.certs-pg .creds__note {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(170deg, #cd54d80f, #647c300d);
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.certs-pg .creds__note-icon {
  font-size: 25px;
  color: #CD54D8;
  flex-shrink: 0;
  margin-top: 4px
}

.certs-pg .creds__note-text {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0;
  text-align: justify
}

.certs-pg .creds__note-text strong {
  color: #1b1b1b
}

.certs-pg .hover-ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.certs-pg .hover-ul li {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  padding-left: 16px;
  position: relative
}

.certs-pg .hover-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CD54D8
}

.certs-pg .word-hover-wrap {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;
  cursor: default
}

.certs-pg .word-hover-wrap:hover .wrd {
  animation: slideUnder .32s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.certs-pg .wrd {
  display: inline-block;
  position: relative;
  text-decoration: none
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(1) {
  animation-delay: 0s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(2) {
  animation-delay: .04s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(3) {
  animation-delay: .08s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(4) {
  animation-delay: .12s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(5) {
  animation-delay: .16s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(6) {
  animation-delay: .2s
}

.certs-pg .wrd::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #CD54D8
}

.certs-pg .word-hover-wrap:hover .wrd::after {
  animation: underSlide .28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(1)::after {
  animation-delay: 0s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(2)::after {
  animation-delay: .04s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(3)::after {
  animation-delay: .08s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(4)::after {
  animation-delay: .12s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(5)::after {
  animation-delay: .16s
}

.certs-pg .word-hover-wrap:hover .wrd:nth-child(6)::after {
  animation-delay: .2s
}

@keyframes underSlide {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

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

  to {
    transform: translateY(0)
  }
}

@media (max-width: 1024px) {
  .certs-pg .top-band__h1 {
    font-size: 46px
  }

  .certs-pg .top-band__img-card {
    flex: 0 0 260px;
    width: 260px;
    height: 260px
  }

  .certs-pg .creds__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .certs-pg .process-row {
    flex-direction: column;
    border-radius: 12px
  }

  .certs-pg .proc-step:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #647c3026
  }
}

@media (max-width: 768px) {
  .certs-pg .top-band {
    padding: 48px 16px
  }

  .certs-pg .top-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px
  }

  .certs-pg .top-band__h1 {
    font-size: 34px
  }

  .certs-pg .top-band__img-card {
    flex: 0 0 100%;
    width: 100%;
    height: 220px
  }

  .certs-pg .creds {
    padding: 48px 16px
  }

  .certs-pg .creds__head {
    flex-direction: column;
    gap: 16px
  }

  .certs-pg .creds__grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .certs-pg .creds__h2 {
    font-size: 34px
  }
}

@media (max-width: 480px) {
  .certs-pg .top-band__h1 {
    font-size: 25px
  }

  .certs-pg .creds__h2 {
    font-size: 25px
  }

  .certs-pg .proc-step {
    padding: 16px
  }

  .certs-pg .creds__note {
    flex-direction: column;
    gap: 8px
  }
}

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

.ct-us ::selection {
  background: linear-gradient(97deg, #CD54D8, #647C30);
  color: #fff
}

.ct-us .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.ct-us .reach-band {
  padding: 96px 0 48px;
  background: #fff;
  position: relative
}

.ct-us .reach-band::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #CD54D8 0%, #647C30 100%);
  border-radius: 4px 0 0 4px
}

.ct-us .reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start
}

.ct-us .reach-left {
  position: relative
}

.ct-us .reach-eyebrow {
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #647C30;
  margin-bottom: 16px;
  display: block
}

.ct-us .reach-h {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b1b1b;
  margin: 0 0 32px
}

.ct-us .reach-h em {
  font-style: normal;
  background: linear-gradient(97deg, #CD54D8 0%, #647C30 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ct-us .reach-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2e2e;
  text-align: justify;
  max-width: 480px;
  margin-bottom: 48px
}

.ct-us .dot-border {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  pointer-events: none;
  overflow: hidden
}

.ct-us .dot-border svg {
  width: 100%;
  height: 100%
}

.ct-us .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ct-us .c-card {
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #fff;
  box-shadow: 2px 2px 4px -2px #cd54d80d;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.ct-us .c-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #CD54D8;
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .c-card:hover {
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  transform: translateY(-3px)
}

.ct-us .c-card:hover::after {
  opacity: 1
}

.ct-us .c-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #FAFFEC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ct-us .c-icon i {
  font-size: 19px;
  color: #647C30
}

.ct-us .c-meta {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ct-us .c-label {
  font-size: 13px;
  line-height: 1.15;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .08em
}

.ct-us .c-val {
  font-size: 16px;
  line-height: 1.15;
  color: #1b1b1b;
  font-weight: 600;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .c-val:hover {
  color: #CD54D8
}

.ct-us .divider-wave {
  height: 40px;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.ct-us .divider-wave svg {
  display: block;
  width: 100%
}

.ct-us .form-band {
  padding: 48px 0 96px;
  background: linear-gradient(156deg, #FAFFEC 0%, #fff 60%, #cd54d80a 100%);
  position: relative
}

.ct-us .form-band::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 60%;
  background: linear-gradient(180deg, transparent, #647C30 100%);
  border-radius: 0 4px 4px 0
}

.ct-us .circuit-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  overflow: hidden
}

.ct-us .form-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 96px;
  align-items: start
}

.ct-us .form-meta {
  position: sticky;
  top: 32px
}

.ct-us .form-h {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0 0 16px
}

.ct-us .form-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2e2e;
  text-align: justify;
  margin-bottom: 32px
}

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

.ct-us .topic-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2e2e;
  display: flex;
  align-items: center;
  gap: 8px
}

.ct-us .topic-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #CD54D8;
  flex-shrink: 0
}

.ct-us .compare-wrap {
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 2px 7px 25px -2px #cd54d81c
}

.ct-us .cmp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr
}

.ct-us .cmp-head {
  font-size: 13px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 16px;
  text-align: center;
  background: #f4f4f4;
  color: #2e2e2e
}

.ct-us .cmp-head.rec {
  background: linear-gradient(156deg, #CD54D8 0%, #a040b5 100%);
  color: #fff;
  position: relative
}

.ct-us .cmp-head.rec::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  background: #FAFFEC;
  border-radius: 4px
}

.ct-us .cmp-cell {
  font-size: 13px;
  line-height: 1.7;
  color: #2e2e2e;
  padding: 16px;
  text-align: center;
  border-top: 1px solid #efefef
}

.ct-us .cmp-cell.rec {
  background: #cd54d80a;
  font-weight: 600;
  color: #8b1a96
}

.ct-us .form-el {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ct-us .fld-wrap {
  position: relative;
  display: flex;
  flex-direction: column
}

.ct-us .fld-wrap input[type="email"] {
  font-size: 16px;
  line-height: 1.7;
  padding: 16px 16px 8px;
  border: 1.5px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  color: #1b1b1b;
  outline: none;
  transition: border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-sizing: border-box
}

.ct-us .fld-wrap input[type="email"]:focus {
  border-color: #CD54D8;
  box-shadow: 2px 7px 25px -2px #cd54d81c
}

.ct-us .fld-wrap label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
  pointer-events: none;
  transition: top .22s cubic-bezier(0.34, 1.56, 0.64, 1), font-size .22s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #fff;
  padding: 0 4px;
  border-radius: 4px
}

.ct-us .fld-wrap input[type="email"]:focus+label,
.ct-us .fld-wrap input[type="email"]:not(:placeholder-shown)+label {
  top: 0;
  font-size: 13px;
  color: #CD54D8
}

.ct-us .cb-group {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ct-us .cb-group-label {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 8px
}

.ct-us .cb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer
}

.ct-us .cb-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #d0d0d0;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .cb-item input[type="checkbox"]:checked {
  background: #CD54D8;
  border-color: #CD54D8
}

.ct-us .cb-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg)
}

.ct-us .cb-item input[type="checkbox"]:focus {
  outline: 2px solid #CD54D8;
  outline-offset: 2px
}

.ct-us .cb-txt {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2e2e
}

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

.ct-us .privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #d0d0d0;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin-top: 4px;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .privacy-row input[type="checkbox"]:checked {
  background: #647C30;
  border-color: #647C30
}

.ct-us .privacy-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg)
}

.ct-us .privacy-row input[type="checkbox"]:focus {
  outline: 2px solid #647C30;
  outline-offset: 2px
}

.ct-us .privacy-txt {
  font-size: 13px;
  line-height: 1.7;
  color: #555
}

.ct-us .privacy-txt a {
  color: #647C30;
  text-decoration: underline;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ct-us .privacy-txt a:hover {
  color: #CD54D8
}

.ct-us .submit-btn {
  display: inline-block;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
  color: #CD54D8;
  background: transparent;
  border: 2px solid #CD54D8;
  border-radius: 6px;
  padding: 16px 48px;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), color .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  align-self: flex-start
}

.ct-us .submit-btn:hover {
  background: #CD54D8;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 2px 10px 48px -2px #cd54d81f
}

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

.ct-us .submit-btn:active {
  transform: translateY(-1px)
}

.ct-us .anim-load {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  animation: elastic-in .55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

.ct-us .anim-load-2 {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  animation: elastic-in .55s cubic-bezier(0.34, 1.56, 0.64, 1) .15s forwards
}

.ct-us .anim-load-3 {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  animation: elastic-in .55s cubic-bezier(0.34, 1.56, 0.64, 1) .28s forwards
}

@keyframes elastic-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.ct-us .grad-cycle {
  background: linear-gradient(156deg, #cd54d812 0%, #647c3012 50%, #cd54d812 100%);
  background-size: 300% 300%;
  animation: grad-shift 8s linear infinite;
  border-radius: 20px;
  padding: 32px
}

@keyframes grad-shift {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

@media (max-width: 1024px) {
  .ct-us .reach-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .ct-us .form-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .ct-us .form-meta {
    position: static
  }

  .ct-us .reach-h {
    font-size: 34px
  }
}

@media (max-width: 768px) {
  .ct-us .reach-band {
    padding: 48px 0 32px
  }

  .ct-us .form-band {
    padding: 32px 0 48px
  }

  .ct-us .reach-h {
    font-size: 25px
  }

  .ct-us .pg-wrap {
    padding: 0 16px
  }

  .ct-us .cmp-head,
  .ct-us .cmp-cell {
    font-size: 13px;
    padding: 8px
  }
}

@media (max-width: 480px) {
  .ct-us .cmp-row {
    grid-template-columns: 1fr
  }

  .ct-us .reach-h {
    font-size: 25px
  }

  .ct-us .form-h {
    font-size: 25px
  }

  .ct-us .submit-btn {
    width: 100%;
    text-align: center
  }
}

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

.lrn-prog ::selection {
  background: linear-gradient(120deg, #CD54D8, #647C30);
  color: #fff
}

.lrn-prog *,
.lrn-prog ::before,
.lrn-prog ::after {
  box-sizing: border-box
}

.lrn-prog .ttl-blk {
  position: relative;
  padding: 96px 32px 48px;
  background: #FAFFEC;
  container-type: inline-size
}

.lrn-prog .ttl-blk::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 0%, #cd54d82e 0%, #647c3014 55%, transparent 80%);
  pointer-events: none
}

.lrn-prog .ttl-blk__geo {
  position: absolute;
  top: 32px;
  left: 48px;
  width: 80px;
  height: 80px;
  border: 2px solid #cd54d826;
  border-radius: 20px;
  transform: rotate(18deg);
  pointer-events: none
}

.lrn-prog .ttl-blk__geo-sm {
  position: absolute;
  bottom: 48px;
  right: 96px;
  width: 40px;
  height: 40px;
  background: #647c301a;
  border-radius: 12px;
  transform: rotate(-12deg);
  pointer-events: none
}

.lrn-prog .ttl-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 1
}

.lrn-prog .ttl-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #647C30;
  margin-bottom: 16px
}

.lrn-prog .ttl-h1 {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 900;
  color: #1e1b1e;
  margin: 0 0 16px
}

.lrn-prog .ttl-h1 span {
  color: #CD54D8
}

.lrn-prog .ttl-sub {
  font-size: 19px;
  line-height: 1.7;
  color: #3a3340;
  max-width: 480px;
  text-align: justify;
  margin: 0 0 32px
}

.lrn-prog .ttl-meta {
  display: flex;
  flex-direction: row;
  gap: 32px
}

.lrn-prog .ttl-meta__item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.lrn-prog .ttl-meta__val {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  color: #CD54D8
}

.lrn-prog .ttl-meta__desc {
  font-size: 13px;
  color: #3a3340
}

.lrn-prog .ttl-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden
}

.lrn-prog .ttl-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lrn-prog .ttl-img-wrap:hover img {
  filter: saturate(0)
}

.lrn-prog .ttl-img-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: 20px
}

.lrn-prog .cur-sec {
  padding: 96px 32px;
  background: #fff;
  container-type: inline-size
}

.lrn-prog .cur-inner {
  max-width: 1100px;
  margin: 0 auto
}

.lrn-prog .cur-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start
}

.lrn-prog .cur-h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  color: #1e1b1e;
  margin: 0
}

.lrn-prog .cur-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3340;
  text-align: justify;
  margin: 0
}

.lrn-prog .cur-desc-narrow {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3340;
  text-align: justify;
  margin: 16px 0 0;
  max-width: 340px
}

.lrn-prog .cur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.lrn-prog .cur-card {
  background: #FAFFEC;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  border-top: 3px solid transparent;
  box-shadow: 2px 2px 4px -2px #cd54d80d;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lrn-prog .cur-card:hover {
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  transform: translateY(-4px);
  border-color: #CD54D8
}

.lrn-prog .cur-card__num {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  color: #cd54d82e;
  margin-bottom: 8px
}

.lrn-prog .cur-card__h {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
  color: #1e1b1e;
  margin: 0 0 8px
}

.lrn-prog .cur-card__p {
  font-size: 13px;
  line-height: 1.7;
  color: #3a3340;
  margin: 0
}

.lrn-prog .cur-card__icon {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 19px;
  color: #647C30
}

.lrn-prog .ba-sec {
  padding: 96px 32px;
  background: #1e1b1e;
  position: relative;
  container-type: inline-size
}

.lrn-prog .ba-sec__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: #cd54d812;
  border-radius: 36px;
  animation: spotpulse 4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite alternate;
  pointer-events: none
}

@keyframes spotpulse {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: .5
  }

  to {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: .18
  }
}

.lrn-prog .ba-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.lrn-prog .ba-h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 300;
  color: #FAFFEC;
  margin: 0 0 48px
}

.lrn-prog .ba-h2 strong {
  font-weight: 900;
  color: #CD54D8
}

.lrn-prog .ba-steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 48px
}

.lrn-prog .ba-step {
  background: #faffec0f;
  border-radius: 12px;
  padding: 32px;
  position: relative
}

.lrn-prog .ba-step__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 6px
}

.lrn-prog .ba-step__tag-before {
  background: #cd54d826;
  color: #CD54D8
}

.lrn-prog .ba-step__tag-after {
  background: #647c3033;
  color: #a8c46a
}

.lrn-prog .ba-step__h {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
  color: #FAFFEC;
  margin: 0 0 8px
}

.lrn-prog .ba-step__p {
  font-size: 16px;
  line-height: 1.7;
  color: #faffecb3;
  margin: 0
}

.lrn-prog .ba-arr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.lrn-prog .ba-arr__icon {
  font-size: 34px;
  color: #CD54D8
}

.lrn-prog .ba-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px
}

.lrn-prog .ba-det {
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  background: #647c301f;
  box-shadow: inset 0 6px 10px -4px #647c302e;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lrn-prog .ba-det:hover {
  transform: translateY(-6px)
}

.lrn-prog .ba-det__val {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  color: #a8c46a;
  margin-bottom: 8px
}

.lrn-prog .ba-det__lbl {
  font-size: 13px;
  color: #faffeca6
}

.lrn-prog .faq-sec {
  padding: 96px 32px;
  background: linear-gradient(170deg, #FAFFEC 0%, #cd54d80f 60%, #fff 100%);
  container-type: inline-size
}

.lrn-prog .faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 96px;
  align-items: start
}

.lrn-prog .faq-side__h {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  color: #1e1b1e;
  margin: 0 0 16px
}

.lrn-prog .faq-side__p {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3340;
  text-align: justify;
  margin: 0 0 32px
}

.lrn-prog .faq-contact {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lrn-prog .faq-contact__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #3a3340;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lrn-prog .faq-contact__item:hover {
  color: #CD54D8
}

.lrn-prog .faq-contact__ic {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #647C30;
  box-shadow: 2px 2px 4px -2px #cd54d80d;
  flex-shrink: 0
}

.lrn-prog .faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.lrn-prog .faq-item {
  border-radius: 12px;
  background: #fff;
  box-shadow: 2px 2px 4px -2px #cd54d80d;
  overflow: hidden
}

.lrn-prog .faq-item__tog {
  width: 100%;
  background: none;
  border: none;
  padding: 32px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lrn-prog .faq-item__tog:hover {
  background: #cd54d80a
}

.lrn-prog .faq-item__q {
  font-size: 16px;
  font-weight: 700;
  color: #1e1b1e;
  line-height: 1.7
}

.lrn-prog .faq-item__ic {
  font-size: 19px;
  color: #CD54D8;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lrn-prog .faq-item details[open] .faq-item__ic {
  transform: rotate(45deg)
}

.lrn-prog .faq-item details summary {
  list-style: none
}

.lrn-prog .faq-item details summary::-webkit-details-marker {
  display: none
}

.lrn-prog .faq-item details {
  border-radius: 12px
}

.lrn-prog .faq-item details summary {
  padding: 32px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 16px;
  font-weight: 700;
  color: #1e1b1e;
  line-height: 1.7
}

.lrn-prog .faq-item details summary:hover {
  background: #cd54d80a
}

.lrn-prog .faq-item details summary .faq-item__ic {
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.lrn-prog .faq-item details[open] summary .faq-item__ic {
  transform: rotate(45deg)
}

.lrn-prog .faq-item__ans {
  padding: 0 32px 32px;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3340;
  text-align: justify
}

.lrn-prog .motif-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 16px 0;
  overflow: hidden;
  pointer-events: none
}

.lrn-prog .motif-dot {
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background: #cd54d833;
  flex-shrink: 0
}

.lrn-prog .motif-dot-alt {
  background: #647c3033
}

.lrn-prog .step-div {
  height: 32px;
  background: linear-gradient(170deg, #fff 49%, #1e1b1e 50%)
}

.lrn-prog .step-div-rev {
  height: 32px;
  background: linear-gradient(170deg, #1e1b1e 49%, #FAFFEC 50%)
}

@container (max-width: 1024px) {
  .lrn-prog .ttl-inner {
    grid-template-columns: 1fr
  }

  .lrn-prog .ttl-img-wrap {
    max-width: 100%
  }

  .lrn-prog .cur-grid {
    grid-template-columns: 1fr 1fr
  }

  .lrn-prog .ba-details {
    grid-template-columns: repeat(2, 1fr)
  }

  .lrn-prog .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

@container (max-width: 768px) {
  .lrn-prog .ttl-h1 {
    font-size: 46px
  }

  .lrn-prog .cur-head {
    grid-template-columns: 1fr
  }

  .lrn-prog .cur-grid {
    grid-template-columns: 1fr
  }

  .lrn-prog .ba-steps {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .lrn-prog .ba-arr {
    display: none
  }

  .lrn-prog .ba-details {
    grid-template-columns: 1fr 1fr
  }
}

@container (max-width: 480px) {
  .lrn-prog .ttl-h1 {
    font-size: 34px
  }

  .lrn-prog .ttl-meta {
    flex-direction: column;
    gap: 16px
  }

  .lrn-prog .ba-details {
    grid-template-columns: 1fr
  }
}

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

.abt-pg ::selection {
  background: linear-gradient(120deg, #CD54D8, #647C30);
  color: #fff
}

.abt-pg .scn-one {
  position: relative;
  padding: 96px 32px;
  background: linear-gradient(170deg, #fff 0%, #FAFFEC 60%, #f7eef9 100%)
}

.abt-pg .scn-one__dec-a {
  position: absolute;
  top: -48px;
  right: -48px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #cd54d814 0%, transparent 70%);
  pointer-events: none;
  overflow: hidden
}

.abt-pg .scn-one__dec-b {
  position: absolute;
  bottom: 32px;
  left: 16px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, #647c3012 0%, transparent 70%);
  pointer-events: none;
  overflow: hidden
}

.abt-pg .scn-one__outline {
  position: absolute;
  top: 48px;
  right: 80px;
  width: 340px;
  height: 340px;
  border: 2px solid #cd54d81f;
  border-radius: 50%;
  pointer-events: none
}

.abt-pg .scn-one__in {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 96px;
  align-items: start
}

.abt-pg .scn-one__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #647C30;
  border: 1px solid #647c304d;
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 32px
}

.abt-pg .scn-one__h1 {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 800;
  color: #1e1b2e;
  margin: 0 0 32px;
  max-width: 560px
}

.abt-pg .scn-one__h1 span {
  color: #CD54D8
}

.abt-pg .scn-one__desc {
  font-size: 19px;
  line-height: 1.7;
  color: #3a3540;
  max-width: 480px;
  text-align: justify;
  margin: 0 0 32px
}

.abt-pg .scn-one__desc-narrow {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4550;
  max-width: 340px;
  text-align: justify;
  margin: 0 0 48px
}

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

.abt-pg .stat-card {
  border: 1px solid #cd54d82e;
  border-radius: 12px;
  padding: 16px;
  background: #ffffffb3;
  box-shadow: 2px 2px 4px -2px #cd54d80d;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 2px 7px 25px -2px #cd54d81c
}

.abt-pg .stat-card__num {
  font-size: 34px;
  font-weight: 800;
  color: #CD54D8;
  line-height: 1.15;
  display: block
}

.abt-pg .stat-card__lbl {
  font-size: 13px;
  color: #5a5465;
  line-height: 1.7
}

.abt-pg .img-frame {
  position: relative
}

.abt-pg .img-frame__border {
  border: 2px solid #cd54d840;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 10px 48px -2px #cd54d81f
}

.abt-pg .img-frame__border img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: saturate(1);
  transition: filter .28s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.abt-pg .img-frame__border img:hover {
  filter: saturate(0)
}

.abt-pg .img-frame__vignette {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at 0% 0%, #1e1b2e59 0%, transparent 55%), radial-gradient(ellipse at 100% 100%, #1e1b2e47 0%, transparent 50%);
  pointer-events: none
}

.abt-pg .img-frame__accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 3px solid #647c3066;
  border-radius: 20px;
  pointer-events: none
}

.abt-pg .img-stack {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.abt-pg .img-stack__item {
  border: 2px solid #647c3033;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 2px 2px 4px -2px #647c300d
}

.abt-pg .img-stack__item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: saturate(1);
  transition: filter .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .img-stack__item img:hover {
  filter: saturate(0)
}

.abt-pg .scn-two {
  position: relative;
  padding: 96px 32px;
  background: #1e1b2e
}

.abt-pg .scn-two__tex {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, #cd54d808 2px, #cd54d808 4px);
  pointer-events: none
}

.abt-pg .scn-two__spot {
  position: absolute;
  top: 0;
  left: -80px;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at 20% 50%, #cd54d81f 0%, transparent 65%);
  pointer-events: none;
  animation: spotdrift 9s ease-in-out infinite alternate
}

@keyframes spotdrift {
  0% {
    transform: translateX(0) translateY(0)
  }

  100% {
    transform: translateX(60px) translateY(30px)
  }
}

.abt-pg .scn-two__outline {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 200px;
  height: 200px;
  border: 1.5px solid #647c3033;
  border-radius: 50%;
  pointer-events: none
}

.abt-pg .scn-two__in {
  max-width: 1100px;
  margin: 0 auto;
  position: relative
}

.abt-pg .scn-two__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  margin-bottom: 48px;
  align-items: end
}

.abt-pg .scn-two__h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0
}

.abt-pg .scn-two__h2 span {
  color: #CD54D8;
  font-weight: 300
}

.abt-pg .scn-two__sub {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff9e;
  text-align: justify;
  margin: 0
}

.abt-pg .scn-two__divider {
  height: 1px;
  background: linear-gradient(95deg, #cd54d866 0%, #647c304d 60%, transparent 100%);
  margin-bottom: 48px
}

.abt-pg .feat-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  gap: 16px;
  align-items: start
}

.abt-pg .feat-item {
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  padding: 32px 16px;
  transition: background .2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .2s cubic-bezier(0.34, 1.56, 0.64, 1), transform .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .feat-item:hover {
  background: #cd54d814;
  border-color: #cd54d847;
  transform: translateY(-6px)
}

.abt-pg .feat-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #cd54d826;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #CD54D8;
  font-size: 19px
}

.abt-pg .feat-item__h {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.15
}

.abt-pg .feat-item__p {
  font-size: 13px;
  line-height: 1.7;
  color: #ffffff8c;
  margin: 0;
  text-align: justify
}

.abt-pg .feat-item--wide {
  padding: 32px
}

.abt-pg .feat-item--wide .feat-item__h {
  font-size: 19px;
  margin-bottom: 16px
}

.abt-pg .feat-item--wide .feat-item__p {
  font-size: 16px
}

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

.abt-pg .team-card {
  border: 1px solid #ffffff14;
  border-radius: 12px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff08;
  transition: box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .team-card:hover {
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  transform: translateY(-4px)
}

.abt-pg .team-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(140deg, #cd54d859 0%, #647c304d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px
}

.abt-pg .team-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15
}

.abt-pg .team-card__role {
  font-size: 13px;
  color: #CD54D8;
  margin: 0;
  line-height: 1.15
}

.abt-pg .team-card__bio {
  font-size: 13px;
  line-height: 1.7;
  color: #ffffff80;
  margin: 0;
  text-align: justify
}

.abt-pg .scn-two__contact {
  margin-top: 48px;
  border-top: 1px solid #ffffff12;
  padding-top: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px
}

.abt-pg .contact-items {
  display: flex;
  flex-direction: row;
  gap: 32px
}

.abt-pg .citem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #ffffffa6;
  font-size: 16px;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.abt-pg .citem:hover {
  color: #CD54D8
}

.abt-pg .citem__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #cd54d81f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #CD54D8;
  flex-shrink: 0
}

.abt-pg .citem__loc {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  color: #ffffff80;
  font-size: 13px
}

.abt-pg .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #CD54D8;
  border: 1.5px solid #cd54d880;
  border-radius: 6px;
  padding: 16px 32px;
  text-decoration: none;
  background: transparent;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), color .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap
}

.abt-pg .cta-btn:hover {
  background: #cd54d81f;
  color: #fff;
  box-shadow: 2px 7px 25px -2px #cd54d81c
}

@media (max-width: 1024px) {
  .abt-pg .scn-one__in {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .abt-pg .scn-one__h1 {
    font-size: 46px;
    max-width: 100%
  }

  .abt-pg .scn-one__outline {
    display: none
  }

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

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

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

@media (max-width: 768px) {
  .abt-pg .scn-one {
    padding: 48px 16px
  }

  .abt-pg .scn-one__stats {
    grid-template-columns: 1fr 1fr
  }

  .abt-pg .scn-two {
    padding: 48px 16px
  }

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

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

  .abt-pg .scn-two__contact {
    flex-direction: column;
    align-items: flex-start
  }

  .abt-pg .contact-items {
    flex-direction: column;
    gap: 16px
  }

  .abt-pg .scn-one__h1 {
    font-size: 34px
  }

  .abt-pg .scn-two__h2 {
    font-size: 34px
  }
}

@media (max-width: 480px) {
  .abt-pg .scn-one__stats {
    grid-template-columns: 1fr
  }

  .abt-pg .img-stack {
    grid-template-columns: 1fr
  }
}

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

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

.strt ::selection {
  background: linear-gradient(120deg, #CD54D8, #647C30);
  color: #fff
}

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

.strt .ttl-band {
  background: #1a1200;
  background: #0d0a04;
  background-color: #111008 !important;
  position: relative;
  padding: 48px 0;
  overflow: hidden
}

.strt .ttl-band__dots {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.strt .ttl-band__dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cd54d82e 1px, transparent 1px);
  background-size: 28px 28px
}

.strt .ttl-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1
}

.strt .ttl-text {
  flex: 1 1 0;
  min-width: 0
}

.strt .ttl-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #CD54D8;
  border: 1px solid #cd54d866;
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 16px
}

.strt .ttl-h1 {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 900;
  color: #FAFFEC;
  margin: 0 0 16px
}

.strt .ttl-sub {
  font-size: 19px;
  line-height: 1.7;
  color: #faffecb3;
  max-width: 480px;
  text-align: justify;
  margin: 0
}

.strt .ttl-img-wrap {
  flex: 0 0 340px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 10px 48px -2px #cd54d81f
}

.strt .ttl-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #cd54d840 0%, #0d0a0473 100%);
  pointer-events: none
}

.strt .ttl-img-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px
}

.strt .ttl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .ttl-img-wrap:hover img {
  filter: saturate(0)
}

.strt .ttl-divider {
  height: 2px;
  background: linear-gradient(90deg, #CD54D8 0%, transparent 60%);
  margin: 0
}

.strt .mirror-sec {
  padding: 96px 0 48px;
  background: #FAFFEC
}

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

.strt .mirror-img-col {
  position: relative
}

.strt .mirror-img-frame {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 7px 25px -2px #647c301c
}

.strt .mirror-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .mirror-img-frame:hover img {
  filter: saturate(0)
}

.strt .mirror-tag {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: #CD54D8;
  color: #fff;
  font-size: 13px;
  border-radius: 6px;
  padding: 8px 16px;
  box-shadow: 2px 7px 25px -2px #cd54d81c
}

.strt .mirror-text {
  padding-top: 16px
}

.strt .mirror-h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  color: #1a1008;
  margin: 0 0 32px
}

.strt .mirror-p {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  margin: 0 0 16px
}

.strt .mirror-p-narrow {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  max-width: 320px;
  margin: 0 0 16px
}

.strt .mirror-divider {
  height: 2px;
  background: linear-gradient(90deg, #647C30 0%, transparent 70%);
  margin: 48px 0 0
}

.strt .env-sec {
  padding: 96px 0;
  background: linear-gradient(170deg, #fff 0%, #cd54d80a 60%, #647c300f 100%)
}

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

.strt .env-h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 300;
  color: #1a1008;
  flex: 1 1 0;
  margin: 0
}

.strt .env-h2 strong {
  font-weight: 800;
  color: #CD54D8
}

.strt .env-lead {
  flex: 0 0 380px;
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  margin: 0
}

.strt .env-cols {
  display: grid;
  grid-template-columns: 80px 1fr 80px 1fr;
  gap: 16px;
  align-items: start
}

.strt .env-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px
}

.strt .env-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid #cd54d859;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CD54D8;
  font-size: 22px
}

.strt .env-txt-col {
  padding: 8px 0 32px
}

.strt .env-item-h {
  font-size: 19px;
  line-height: 1.15;
  font-weight: 700;
  color: #1a1008;
  margin: 0 0 8px
}

.strt .env-item-p {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  margin: 0
}

.strt .env-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #CD54D8 50%, transparent 100%);
  margin: 0 0 48px;
  opacity: .3
}

.strt .voices-sec {
  padding: 96px 0;
  background: #FAFFEC;
  position: relative
}

.strt .voices-bg-shape {
  position: absolute;
  top: 48px;
  right: -32px;
  width: 320px;
  height: 320px;
  border-radius: 20px;
  border: 2px solid #cd54d81a;
  transform: rotate(12deg);
  pointer-events: none
}

.strt .voices-h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
  color: #1a1008;
  margin: 0 0 48px;
  max-width: 600px
}

.strt .voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.strt .voice-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative
}

.strt .voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 2px 10px 48px -2px #cd54d81f
}

.strt .voice-card__quote {
  font-size: 34px;
  line-height: 1;
  color: #CD54D8;
  font-weight: 900;
  margin-bottom: 8px;
  display: block
}

.strt .voice-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  margin: 0 0 16px
}

.strt .voice-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #647C30;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0
}

.strt .voice-card__role {
  font-size: 13px;
  color: #888;
  margin: 0
}

.strt .voice-card-wide {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  background: linear-gradient(120deg, #cd54d80f 0%, #647c300f 100%);
  border: 1px solid #cd54d826
}

.strt .voice-card-wide__img {
  flex: 0 0 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden
}

.strt .voice-card-wide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .voice-card-wide__img:hover img {
  filter: saturate(0)
}

.strt .voice-card-wide__body {
  flex: 1 1 0;
  min-width: 0
}

.strt .trust-badges {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #cd54d826
}

.strt .trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2e2a1a
}

.strt .trust-item i {
  color: #647C30;
  font-size: 16px
}

.strt .voices-divider {
  height: 2px;
  background: linear-gradient(90deg, #647C30 0%, transparent 55%);
  margin-top: 48px
}

.strt .method-sec {
  padding: 96px 0;
  background: #fff;
  position: relative
}

.strt .method-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

.strt .method-bg__circle {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 36px;
  border: 2px solid #647c301f;
  transform: rotate(-20deg)
}

.strt .method-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1
}

.strt .method-h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1008;
  margin: 0 0 32px
}

.strt .method-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.strt .method-list li {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #647c301f
}

.strt .method-list li:last-child {
  border-bottom: none
}

.strt .method-bullet {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #CD54D8;
  flex-shrink: 0;
  margin-top: 8px
}

.strt .method-item-text {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  margin: 0
}

.strt .method-item-text strong {
  color: #1a1008
}

.strt .method-img-stack {
  position: relative
}

.strt .method-img-main {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 10px 48px -2px #cd54d81f
}

.strt .method-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .method-img-main:hover img {
  filter: saturate(0)
}

.strt .method-stat-box {
  background: #CD54D8;
  color: #fff;
  border-radius: 12px;
  padding: 16px 32px;
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.strt .method-stat-num {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900
}

.strt .method-stat-label {
  font-size: 16px;
  line-height: 1.7;
  opacity: .9
}

.strt .method-cert-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 16px;
  color: #647C30;
  border: 1.5px solid #647C30;
  border-radius: 6px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), color .22s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.strt .method-cert-link:hover {
  background: #647C30;
  color: #FAFFEC
}

.strt .long-sec {
  padding: 96px 0 48px;
  background: linear-gradient(195deg, #647c3012 0%, #FAFFEC 50%, #cd54d80d 100%)
}

.strt .long-h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
  color: #1a1008;
  margin: 0 0 8px
}

.strt .long-h2-sub {
  font-size: 19px;
  line-height: 1.7;
  font-weight: 300;
  color: #647C30;
  margin: 0 0 48px
}

.strt .long-frosted {
  background: #fff9;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid #cd54d81f;
  padding: 48px;
  box-shadow: 2px 7px 25px -2px #647c301c
}

.strt .long-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px
}

.strt .long-item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.strt .long-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #cd54d81a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CD54D8;
  font-size: 20px
}

.strt .long-item__h {
  font-size: 19px;
  line-height: 1.15;
  font-weight: 700;
  color: #1a1008;
  margin: 0
}

.strt .long-item__p {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  margin: 0
}

.strt .long-pulse-wrap {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px
}

.strt .long-pulse {
  width: 64px;
  height: 64px;
  border-radius: 36px;
  background: linear-gradient(120deg, #CD54D8, #647C30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  animation: soft-pulse 2.4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  flex-shrink: 0
}

@keyframes soft-pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.02)
  }
}

.strt .long-pulse-text {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  max-width: 560px;
  margin: 0
}

.strt .long-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #cd54d866, transparent);
  margin: 48px 0 0
}

.strt .current-sec {
  padding: 96px 0;
  background: #fff
}

.strt .current-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start
}

.strt .current-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  position: relative
}

.strt .current-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #0d0a0480 100%);
  pointer-events: none
}

.strt .current-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .current-img-wrap:hover img {
  filter: saturate(0)
}

.strt .current-text {
  padding-top: 8px
}

.strt .current-h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1008;
  margin: 0 0 16px
}

.strt .current-p {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  margin: 0 0 16px
}

.strt .current-p-narrow {
  font-size: 16px;
  line-height: 1.7;
  color: #2e2a1a;
  text-align: justify;
  max-width: 340px;
  margin: 0 0 32px
}

.strt .current-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px
}

.strt .current-tag {
  font-size: 13px;
  color: #647C30;
  border: 1px solid #647c3066;
  border-radius: 4px;
  padding: 8px 16px;
  background: #647c300f
}

.strt .current-meta {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.strt .current-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2e2a1a
}

.strt .current-meta-row i {
  color: #CD54D8;
  font-size: 16px
}

.strt .clip-reveal {
  clip-path: inset(50% 50% 50% 50%);
  animation: clip-open .35s cubic-bezier(0.34, 1.56, 0.64, 1) .1s forwards
}

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

@media (max-width: 1024px) {
  .strt .ttl-h1 {
    font-size: 46px
  }

  .strt .ttl-img-wrap {
    flex: 0 0 260px;
    height: 220px
  }

  .strt .env-cols {
    grid-template-columns: 60px 1fr 60px 1fr
  }

  .strt .method-layout {
    grid-template-columns: 1fr
  }

  .strt .method-img-stack {
    display: none
  }

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

  .strt .current-img-wrap {
    height: 260px
  }
}

@media (max-width: 768px) {
  .strt .ttl-row {
    flex-direction: column;
    gap: 32px
  }

  .strt .ttl-img-wrap {
    flex: none;
    width: 100%;
    height: 220px
  }

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

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

  .strt .mirror-img-frame {
    height: 240px
  }

  .strt .env-top {
    flex-direction: column;
    gap: 16px
  }

  .strt .env-lead {
    flex: none
  }

  .strt .env-cols {
    grid-template-columns: 48px 1fr
  }

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

  .strt .voice-card-wide {
    grid-column: span 1;
    flex-direction: column
  }

  .strt .long-inner {
    grid-template-columns: 1fr
  }

  .strt .long-frosted {
    padding: 32px
  }

  .strt .long-pulse-wrap {
    flex-direction: column;
    gap: 16px
  }

  .strt .method-h2 {
    font-size: 25px
  }

  .strt .voices-h2 {
    font-size: 34px
  }

  .strt .current-h2 {
    font-size: 25px
  }

  .strt .long-h2 {
    font-size: 34px
  }
}

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

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

  .strt .ttl-band {
    padding: 32px 0
  }

  .strt .mirror-sec {
    padding: 48px 0 32px
  }

  .strt .env-sec {
    padding: 48px 0
  }

  .strt .voices-sec {
    padding: 48px 0
  }

  .strt .method-sec {
    padding: 48px 0
  }

  .strt .long-sec {
    padding: 48px 0 32px
  }

  .strt .current-sec {
    padding: 48px 0
  }

  .strt .trust-badges {
    flex-direction: column
  }
}

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

.succ-pg .succ-card {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  padding: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px
}

.succ-pg .succ-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(160deg, #cd54d81f 0%, #647c301a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

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

.succ-pg .succ-label {
  font-size: 13px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #647C30;
  font-weight: 600
}

.succ-pg .succ-head {
  font-size: 46px;
  line-height: 1.15;
  color: #1b1b1b;
  font-weight: 700;
  margin: 0
}

.succ-pg .succ-divider {
  width: 64px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(100deg, #CD54D8 0%, #647C30 100%)
}

.succ-pg .succ-body {
  font-size: 19px;
  line-height: 1.7;
  color: #2e2e2e;
  max-width: 560px;
  text-align: justified;
  margin: 0
}

.succ-pg .succ-meta {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 420px;
  margin: 0
}

.succ-pg .succ-meta strong {
  color: #CD54D8;
  font-weight: 600
}

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

.succ-pg .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid #CD54D8;
  background: transparent;
  color: #CD54D8;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s cubic-bezier(0.34, 1.56, 0.64, 1), color .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.succ-pg .btn-home:hover {
  background: #CD54D8;
  color: #fff;
  box-shadow: 2px 7px 25px -2px #cd54d81c;
  transform: translateY(-4px)
}

.succ-pg .btn-home:focus-visible {
  outline: 3px solid #CD54D8;
  outline-offset: 3px
}

.succ-pg .btn-prog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid #647C30;
  background: transparent;
  color: #647C30;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), color .22s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow .3s cubic-bezier(0.34, 1.56, 0.64, 1), transform .3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.succ-pg .btn-prog:hover {
  background: #647C30;
  color: #FAFFEC;
  box-shadow: 2px 7px 25px -2px #647c301c;
  transform: translateY(-4px)
}

.succ-pg .btn-prog:focus-visible {
  outline: 3px solid #647C30;
  outline-offset: 3px
}

.succ-pg .succ-contact {
  font-size: 13px;
  line-height: 1.7;
  color: #888;
  border-top: 1px solid #cd54d81f;
  padding-top: 32px;
  width: 100%
}

.succ-pg .succ-contact a {
  color: #CD54D8;
  text-decoration: none;
  font-weight: 500;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.succ-pg .succ-contact a:hover {
  color: #647C30
}

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

  .succ-pg .succ-card {
    padding: 48px 32px;
    gap: 32px
  }

  .succ-pg .succ-head {
    font-size: 34px
  }

  .succ-pg .succ-body {
    font-size: 16px
  }
}

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

  .succ-pg .succ-head {
    font-size: 25px
  }

  .succ-pg .succ-actions {
    flex-direction: column
  }

  .succ-pg .btn-home,
  .succ-pg .btn-prog {
    justify-content: center
  }
}