* {
    box-sizing: border-box
}

html {
    font-size: 100%
}

body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    font-family: 'Archivo', sans-serif
}

.top-bar {
    background: #6C7A88;
    padding: 8px 24px
}

.top-bar-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.top-bar-label {
    font-size: 15px;
    color: #FFF8F9;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px
}

.top-bar-label svg {
    flex-shrink: 0
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF8F9;
    color: #6C7A88;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 5px;
    line-height: 1.2
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #4a8a7a;
    display: inline-block
}

.site-header {
    background: #FFF8F9;
    border-bottom: 2px solid #B5D0CE;
    box-shadow: -1px 6px 14px 1px #6c7a8817
}

.brand-row {
    background: linear-gradient(135deg, #FFF8F9 60%, #B5D0CE 100%);
    padding: 24px 24px 16px;
    border-bottom: 1px solid #B5D0CE
}

.brand-row-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.logo-mount {
    width: 68px;
    height: 68px;
    padding: 8px;
    border: 1.5px solid #B5D0CE;
    border-radius: 16px;
    box-shadow: -1px 2px 6px 1px #6c7a8814;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

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

.brand-text-mount {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.brand-name {
    font-size: 37px;
    font-weight: 700;
    color: #2e3a44;
    line-height: 1.2;
    letter-spacing: 0
}

.brand-tagline {
    font-size: 15px;
    color: #6C7A88;
    line-height: 1.55
}

.nav-row {
    padding: 0 24px;
    background: #FFF8F9
}

.nav-shell {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0
}

.nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #6C7A88;
    text-decoration: none;
    padding: 16px 24px;
    border-bottom: 3px solid transparent;
    line-height: 1.2;
    transition: color .1s ease-out, border-color .12s ease-out;
    white-space: nowrap;
    display: inline-flex;
    align-items: center
}

.nav-link:hover {
    color: #2e3a44;
    border-bottom-color: #B5D0CE
}

.nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b5d0ceb3;
    border-radius: 5px
}

.nav-link.active-page {
    color: #2e3a44;
    border-bottom-color: #6C7A88
}

.site-footer {
    background: #6C7A88;
    padding: 48px 24px 24px
}

.footer-shell {
    max-width: 1200px;
    margin: 0 auto
}

.footer-card {
    background: #FFF8F9;
    border-radius: 16px;
    padding: 48px;
    box-shadow: -1px 10px 44px 1px #6c7a881f;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px
}

.footer-logo-mount {
    width: 48px;
    height: 48px;
    padding: 8px;
    border: 1.5px solid #B5D0CE;
    border-radius: 5px;
    background: #fff;
    box-shadow: -1px 2px 6px 1px #6c7a8814;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.footer-logo-mount img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block
}

.footer-brand-name {
    font-size: 21px;
    font-weight: 700;
    color: #2e3a44;
    line-height: 1.2
}

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

.footer-contact-list li {
    font-size: 15px;
    color: #6C7A88;
    line-height: 1.55
}

.footer-contact-list a {
    color: #6C7A88;
    text-decoration: none;
    border-bottom: 1px solid #B5D0CE;
    transition: color .1s ease-out, border-color .1s ease-out
}

.footer-contact-list a:hover {
    color: #2e3a44;
    border-bottom-color: #6C7A88
}

.footer-contact-list a:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b5d0ceb3;
    border-radius: 5px
}

.footer-divider {
    border: none;
    border-top: 1px solid #B5D0CE;
    margin: 0
}

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

.footer-nav-link {
    font-size: 15px;
    color: #6C7A88;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1.5px solid transparent;
    line-height: 1.2;
    transition: color .08s linear, border-color .1s ease-out
}

.footer-nav-link:hover {
    color: #2e3a44;
    border-color: #B5D0CE
}

.footer-nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b5d0ceb3
}

.footer-sep {
    width: 4px;
    height: 4px;
    border-radius: 40px;
    background: #B5D0CE;
    display: inline-block;
    flex-shrink: 0
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.footer-copy {
    font-size: 15px;
    color: #6C7A88;
    line-height: 1.55
}

.footer-pref-link {
    font-size: 15px;
    color: #6C7A88;
    text-decoration: underline;
    text-decoration-color: #B5D0CE;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Archivo', sans-serif;
    transition: color .1s ease-out
}

.footer-pref-link:hover {
    color: #2e3a44
}

.footer-pref-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b5d0ceb3;
    border-radius: 5px
}

@media (max-width: 992px) {
    .brand-name {
        font-size: 21px
    }

    .footer-card {
        padding: 24px
    }

    .footer-top {
        flex-direction: column
    }
}

@media (max-width: 576px) {
    .top-bar-shell {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .brand-row {
        padding: 16px 16px 8px
    }

    .brand-row-shell {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .brand-text-mount {
        align-items: center
    }

    .nav-link {
        padding: 16px;
        font-size: 15px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

.terms-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px
}

.terms-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a4550;
    margin-bottom: 16px
}

.terms-info strong,
.terms-info b {
    font-weight: 700;
    color: #2e3840
}

.terms-info em,
.terms-info i {
    font-style: italic;
    color: #4e5d6b
}

.terms-info a {
    color: #6C7A88;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .1s ease-out, text-underline-offset .08s ease-out
}

.terms-info a:hover {
    color: #3a4550;
    text-underline-offset: 5px
}

.terms-info hr {
    border: none;
    border-top: 1px solid #B5D0CE;
    margin: 48px 0;
    opacity: .6
}

@media (max-width: 576px) {
    .terms-info {
        padding: 24px 16px
    }

    .terms-info p {
        font-size: 15px;
        line-height: 1.8
    }
}

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

.spk-pg * {
    box-sizing: border-box
}

.spk-pg .pg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.spk-pg ::selection {
    background: #B5D0CE;
    color: #2a3540
}

.spk-pg input::placeholder,
.spk-pg textarea::placeholder {
    font-style: italic;
    opacity: .55
}

.spk-pg .btn-ghost {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid #6C7A88;
    color: #6C7A88;
    background: transparent;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: background .1s ease-out, color .12s ease-out, border-width .08s linear;
    position: relative
}

.spk-pg .btn-ghost:hover {
    background: #6C7A88;
    color: #FFF8F9;
    border-width: 4px
}

.spk-pg .btn-ghost:focus {
    outline: 3px solid #B5D0CE;
    outline-offset: 3px
}

.spk-pg .btn-ghost:active {
    background: #4a5660;
    border-color: #4a5660;
    color: #FFF8F9
}

.spk-pg .strip-col {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: stretch;
    padding: 48px 0
}

.spk-pg .img-strip {
    width: 140px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    box-shadow: -1px 6px 14px 1px #6c7a8817
}

.spk-pg .img-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .12s ease-out
}

.spk-pg .img-strip:hover img {
    transform: scale(1.04)
}

.spk-pg .text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.spk-pg .blob-wrap {
    position: relative
}

.spk-pg .blob-a {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(143deg, #B5D0CE 0%, #FFF8F9 100%);
    border-radius: 40px;
    filter: blur(60px);
    opacity: .45;
    top: -80px;
    right: -40px;
    pointer-events: none;
    z-index: 0
}

.spk-pg .blob-b {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(143deg, #6C7A88 0%, #B5D0CE 100%);
    border-radius: 40px;
    filter: blur(80px);
    opacity: .2;
    bottom: 0;
    left: 60px;
    pointer-events: none;
    z-index: 0
}

.spk-pg .text-area>* {
    position: relative;
    z-index: 1
}

.spk-pg .eyebrow {
    font-size: 15px;
    color: #6C7A88;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 300;
    line-height: 1.2
}

.spk-pg .main-h {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 700;
    color: #2a3540;
    margin: 0
}

.spk-pg .main-h .outlined {
    -webkit-text-stroke: 2px #6C7A88;
    color: transparent
}

.spk-pg .lead-p {
    font-size: 21px;
    line-height: 1.55;
    color: #4a5660;
    max-width: 560px;
    margin: 0
}

.spk-pg .curve-deco {
    width: 120px;
    height: 40px;
    display: block;
    margin: 8px 0
}

.spk-pg .sub-p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6672;
    max-width: 480px;
    margin: 0
}

.spk-pg .title-sec {
    background: #FFF8F9;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    padding-bottom: 48px
}

.spk-pg .anim-row {
    opacity: 0;
    transform: translateY(18px);
    animation: row-up .5s ease-out forwards
}

.spk-pg .anim-row:nth-child(1) {
    animation-delay: .05s
}

.spk-pg .anim-row:nth-child(2) {
    animation-delay: .12s
}

.spk-pg .anim-row:nth-child(3) {
    animation-delay: .2s
}

.spk-pg .anim-row:nth-child(4) {
    animation-delay: .28s
}

.spk-pg .anim-row:nth-child(5) {
    animation-delay: .36s
}

@keyframes row-up {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.spk-pg .detail-sec {
    background: #fff;
    padding: 48px 0;
    position: relative
}

.spk-pg .detail-sec::before {
    content: "";
    display: block;
    height: 48px;
    background: #FFF8F9;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    margin-bottom: 0
}

.spk-pg .detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px 0
}

.spk-pg .detail-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.spk-pg .sec-label {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 300;
    color: #6C7A88;
    line-height: 1.2
}

.spk-pg .sec-h {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
    color: #2a3540;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .03em
}

.spk-pg .body-wide {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5660;
    margin: 0;
    max-width: 100%
}

.spk-pg .body-narrow {
    font-size: 17px;
    line-height: 1.55;
    color: #5a6672;
    margin: 0;
    max-width: 380px
}

.spk-pg .detail-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.spk-pg .metric-stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.spk-pg .metric-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 16px;
    background: #FFF8F9;
    box-shadow: -1px 2px 6px 1px #b5d0ce14 -1px 6px 14px 1px #b5d0ce17;
    transition: box-shadow .1s ease-out
}

.spk-pg .metric-item:hover {
    box-shadow: -1px 10px 44px 1px #6c7a881f
}

.spk-pg .metric-num {
    font-size: 37px;
    font-weight: 700;
    color: #6C7A88;
    line-height: 1.2;
    min-width: 80px
}

.spk-pg .metric-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #4a5660
}

.spk-pg .dot-trail {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 24px
}

.spk-pg .dot-trail::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #B5D0CE 0%, #6C7A88 100%);
    border-radius: 5px
}

.spk-pg .trail-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    position: relative
}

.spk-pg .trail-dot {
    width: 16px;
    height: 16px;
    border-radius: 40px;
    background: #B5D0CE;
    border: 2px solid #6C7A88;
    flex-shrink: 0;
    position: absolute;
    left: -24px;
    top: 20px;
    transition: background .1s ease-out;
    box-shadow: inset 0 -2px 4px #6c7a8833 inset 0 1px 2px #fff8f999
}

.spk-pg .trail-item:hover .trail-dot {
    background: #6C7A88
}

.spk-pg .trail-txt {
    font-size: 17px;
    line-height: 1.55;
    color: #4a5660
}

.spk-pg .trail-txt strong {
    color: #2a3540;
    font-weight: 600
}

.spk-pg .right-accent {
    text-align: right
}

.spk-pg .bg-shift-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
    background: linear-gradient(143deg, #B5D0CE 0%, #6C7A88 100%);
    background-size: 200% 200%;
    animation: bg-drift 6s ease-in-out infinite alternate;
    box-shadow: -1px 10px 44px 1px #6c7a881f
}

@keyframes bg-drift {
    0% {
        background-position: 0 50%
    }

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

.spk-pg .bg-shift-wrap .inner-txt {
    font-size: 17px;
    line-height: 1.8;
    color: #FFF8F9
}

.spk-pg .bg-shift-wrap .inner-h {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .04em
}

.spk-pg .wavy-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 32px
}

.spk-pg .wavy-div svg {
    display: block;
    width: 100%;
    height: 32px
}

@media (max-width: 992px) {
    .spk-pg .main-h {
        font-size: 37px
    }

    .spk-pg .strip-col {
        flex-direction: column;
        gap: 24px
    }

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

    .spk-pg .detail-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .spk-pg .body-narrow {
        max-width: 100%
    }
}

@media (max-width: 576px) {
    .spk-pg .main-h {
        font-size: 37px
    }

    .spk-pg .lead-p {
        font-size: 17px
    }

    .spk-pg .metric-num {
        font-size: 21px;
        min-width: 56px
    }

    .spk-pg .sec-h {
        font-size: 21px
    }

    .spk-pg .btn-ghost {
        padding: 16px 24px
    }
}

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

.abt-pg ::selection {
    background: #B5D0CE;
    color: #2a3540
}

@keyframes track-expand {
    from {
        letter-spacing: -.04em;
        opacity: .4
    }

    to {
        letter-spacing: .06em;
        opacity: 1
    }
}

.abt-pg .upper-band {
    background: linear-gradient(143deg, #B5D0CE 0%, #e8f0ef 55%, #fff 100%);
    padding: 48px 0 0;
    position: relative
}

.abt-pg .upper-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C7A88, #B5D0CE)
}

.abt-pg .upper-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.abt-pg .upper-text-col {
    flex: 1 1 0;
    position: relative;
    padding: 24px 0 24px 24px
}

.abt-pg .quote-mark {
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 140px;
    line-height: 1.2;
    color: #B5D0CE;
    opacity: .22;
    pointer-events: none;
    user-select: none;
    font-weight: 700;
    z-index: 0
}

.abt-pg .upper-text-col h1 {
    font-size: 37px;
    line-height: 1.2;
    color: #2a3540;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
    animation: track-expand .6s ease-out both
}

.abt-pg .upper-text-col h1 span {
    font-weight: 700;
    color: #6C7A88
}

.abt-pg .lead-para {
    font-size: 17px;
    line-height: 1.55;
    color: #3a4a55;
    margin: 0 0 16px;
    max-width: 520px;
    position: relative;
    z-index: 1
}

.abt-pg .lead-para.narrow {
    max-width: 380px
}

.abt-pg .bracket-box {
    display: inline-block;
    position: relative;
    padding: 16px 24px;
    margin-top: 24px;
    z-index: 1
}

.abt-pg .bracket-box::before,
.abt-pg .bracket-box::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #6C7A88;
    border-style: solid;
    opacity: .6
}

.abt-pg .bracket-box::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
    border-radius: 5px 0 0 0
}

.abt-pg .bracket-box::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 5px 0
}

.abt-pg .bracket-stat {
    font-size: 37px;
    font-weight: 700;
    color: #6C7A88;
    line-height: 1.2;
    display: block
}

.abt-pg .bracket-label {
    font-size: 15px;
    line-height: 1.55;
    color: #4a5c68;
    display: block;
    margin-top: 8px
}

.abt-pg .upper-img-strip {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-pg .img-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: -1px 6px 14px 1px #6c7a8817
}

.abt-pg .img-frame img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .12s ease-out
}

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

.abt-pg .img-frame.tall img {
    height: 300px
}

.abt-pg .step-divider {
    width: 100%;
    height: 40px;
    position: relative;
    background: #fff;
    overflow: hidden
}

.abt-pg .step-divider svg {
    display: block;
    width: 100%;
    height: 100%
}

.abt-pg .lower-band {
    background: #FFF8F9;
    position: relative;
    padding: 48px 0
}

.abt-pg .hex-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64'%3E%3Cpath d='M28 2 L54 18 L54 46 L28 62 L2 46 L2 18 Z' fill='none' stroke='%23B5D0CE' stroke-width='0.6' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 56px 64px;
    pointer-events: none;
    opacity: .5
}

.abt-pg .lower-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.abt-pg .lower-inner h2 {
    font-size: 37px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #2a3540;
    margin: 0 0 8px;
    line-height: 1.2
}

.abt-pg .lower-inner h2 strong {
    font-weight: 700
}

.abt-pg .sub-note {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    margin: 0 0 48px
}

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

.abt-pg .person-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 2px 6px 1px #b5d0ce14 -1px 6px 14px 1px #6c7a8817;
    transition: box-shadow .1s ease-out
}

.abt-pg .person-card:hover {
    box-shadow: -1px 10px 44px 1px #6c7a881f
}

.abt-pg .person-photo {
    width: 100%;
    overflow: hidden
}

.abt-pg .person-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .1s linear
}

.abt-pg .person-card:hover .person-photo img {
    transform: scale(1.04)
}

.abt-pg .person-info {
    padding: 16px 24px 24px
}

.abt-pg .person-name {
    font-size: 17px;
    font-weight: 700;
    color: #2a3540;
    line-height: 1.2;
    margin: 0 0 8px
}

.abt-pg .person-role {
    font-size: 15px;
    color: #6C7A88;
    line-height: 1.55;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 300
}

.abt-pg .person-bio {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5c68;
    margin: 0
}

.abt-pg .values-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start
}

.abt-pg .values-text {
    flex: 1 1 0
}

.abt-pg .values-text h3 {
    font-size: 21px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #2a3540;
    margin: 0 0 16px;
    line-height: 1.2
}

.abt-pg .val-para {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5c68;
    margin: 0 0 16px
}

.abt-pg .val-para.narrow {
    max-width: 340px
}

.abt-pg .dot-trail {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative
}

.abt-pg .dot-trail::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, #B5D0CE, #6C7A88);
    border-radius: 5px
}

.abt-pg .dot-trail li {
    padding: 0 0 16px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.55;
    color: #3a4a55
}

.abt-pg .dot-trail li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 40px;
    background: #fff;
    border: 2px solid #B5D0CE;
    transition: background .08s ease-out, border-color .08s ease-out
}

.abt-pg .dot-trail li:first-child::before {
    background: #6C7A88;
    border-color: #6C7A88
}

.abt-pg .dot-trail li:hover::before {
    background: #B5D0CE;
    border-color: #6C7A88
}

.abt-pg .values-img-col {
    width: 300px;
    flex-shrink: 0
}

.abt-pg .values-img-col .img-frame img {
    height: 380px
}

.abt-pg .accent-right {
    text-align: right
}

.abt-pg .ghost-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 15px;
    line-height: 1.2;
    color: #6C7A88;
    border: 2px solid #6C7A88;
    border-radius: 40px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: color .09s ease-out, background .09s ease-out, border-width .09s ease-out, padding .09s ease-out;
    margin-top: 24px
}

.abt-pg .ghost-btn:hover {
    background: #6C7A88;
    color: #fff;
    border-width: 3px;
    padding: 15px 31px
}

.abt-pg .ghost-btn:focus {
    outline: 2px solid #6C7A88;
    outline-offset: 4px
}

.abt-pg .text-hover-line span {
    display: inline;
    background: linear-gradient(90deg, #B5D0CE 0%, #B5D0CE 100%);
    background-size: 0 100%;
    background-repeat: no-repeat;
    background-position: left center;
    transition: background-size .12s ease-out;
    border-radius: 5px;
    padding: 0 4px
}

.abt-pg .text-hover-line:hover span {
    background-size: 100% 100%
}

@media (max-width: 992px) {
    .abt-pg .upper-inner {
        flex-direction: column;
        gap: 24px
    }

    .abt-pg .upper-img-strip {
        width: 100%;
        flex-direction: row
    }

    .abt-pg .img-frame img,
    .abt-pg .img-frame.tall img {
        height: 180px
    }

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

    .abt-pg .values-row {
        flex-direction: column
    }

    .abt-pg .values-img-col {
        width: 100%
    }

    .abt-pg .values-img-col .img-frame img {
        height: 260px
    }
}

@media (max-width: 576px) {
    .abt-pg .upper-inner {
        padding: 0 16px 48px
    }

    .abt-pg .upper-text-col h1 {
        font-size: 21px
    }

    .abt-pg .upper-img-strip {
        flex-direction: column
    }

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

    .abt-pg .lower-inner {
        padding: 0 16px
    }

    .abt-pg .lower-inner h2 {
        font-size: 21px
    }

    .abt-pg .bracket-stat {
        font-size: 21px
    }

    .abt-pg .quote-mark {
        font-size: 80px
    }
}

.lrn-prog {
    background-color: #f4f0ed;
    background-image: repeating-linear-gradient(143deg, #6c7a880a 0px, #6c7a880a 1px, transparent 1px, transparent 40px), repeating-linear-gradient(53deg, #b5d0ce0a 0px, #b5d0ce0a 1px, transparent 1px, transparent 40px);
    overflow-x: clip
}

.lrn-prog .pg-cap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.lrn-prog .title-blk {
    padding: 48px 0;
    position: relative
}

.lrn-prog .title-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(143deg, transparent 0px, transparent 18px, #6c7a880f 18px, #6c7a880f 19px);
    pointer-events: none
}

.lrn-prog .title-inner {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: stretch;
    position: relative;
    z-index: 1
}

.lrn-prog .title-left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center
}

.lrn-prog .title-right {
    flex: 0 0 340px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: -1px 10px 44px 1px #6c7a881f
}

.lrn-prog .title-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 360px;
    transition: transform .12s ease-out
}

.lrn-prog .title-right:hover img {
    transform: scale(1.04)
}

.lrn-prog .title-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #6c7a888c 0%, transparent 55%);
    pointer-events: none
}

.lrn-prog .corner-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none
}

.lrn-prog .corner-stripe::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(143deg, transparent 48%, #B5D0CE 48%, #B5D0CE 58%, transparent 58%)
}

.lrn-prog .prog-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #6C7A88;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #b5d0ce40;
    border-radius: 5px;
    padding: 8px 16px;
    align-self: flex-start
}

.lrn-prog .prog-h1 {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #3a444d;
    margin: 0
}

.lrn-prog .prog-h1 strong {
    font-weight: 700;
    color: #6C7A88
}

.lrn-prog .title-sub {
    font-size: 17px;
    line-height: 1.55;
    color: #4e5c68;
    max-width: 520px;
    margin: 0
}

.lrn-prog .title-note {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    max-width: 400px;
    margin: 0
}

.lrn-prog .title-cta {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #6C7A88;
    border: 2px solid #6C7A88;
    border-radius: 40px;
    padding: 16px 24px;
    text-decoration: none;
    align-self: flex-start;
    background: transparent;
    transition: border-color .1s ease-out, color .1s ease-out, padding .1s ease-out
}

.lrn-prog .title-cta:hover {
    color: #3a444d;
    border-color: #3a444d;
    padding: 16px 32px
}

.lrn-prog .title-cta:focus {
    outline: 2px solid #6C7A88;
    outline-offset: 4px
}

.lrn-prog .struct-blk {
    padding: 48px 0;
    background: #FFF8F9
}

.lrn-prog .struct-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: -1px 6px 14px 1px #6c7a8817;
    padding: 48px;
    position: relative;
    overflow: hidden
}

.lrn-prog .struct-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(143deg, #B5D0CE, #6C7A88);
    border-radius: 16px 16px 0 0
}

.lrn-prog .struct-dashed-path {
    position: absolute;
    top: 48px;
    right: 48px;
    width: 120px;
    height: 200px;
    pointer-events: none
}

.lrn-prog .struct-dashed-path svg {
    width: 100%;
    height: 100%
}

.lrn-prog .struct-layout {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 48px;
    align-items: start
}

.lrn-prog .struct-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog .sidebar-stat {
    background: #b5d0ce33;
    border-radius: 5px;
    padding: 16px;
    text-align: center
}

.lrn-prog .sidebar-stat-num {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
    color: #6C7A88;
    display: block
}

.lrn-prog .sidebar-stat-lbl {
    font-size: 15px;
    line-height: 1.55;
    color: #4e5c68;
    display: block;
    margin-top: 8px
}

.lrn-prog .struct-center {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .struct-h2 {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #3a444d;
    margin: 0
}

.lrn-prog .struct-p {
    font-size: 17px;
    line-height: 1.55;
    color: #4e5c68;
    margin: 0
}

.lrn-prog .struct-p-narrow {
    font-size: 15px;
    line-height: 1.8;
    color: #6C7A88;
    margin: 0;
    max-width: 360px
}

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

.lrn-prog .module-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 5px;
    background: #b5d0ce1a;
    transition: background .1s linear
}

.lrn-prog .module-item:hover {
    background: #b5d0ce40
}

.lrn-prog .module-dot {
    width: 10px;
    height: 10px;
    border-radius: 40px;
    background: #B5D0CE;
    border: 2px solid #6C7A88;
    flex-shrink: 0;
    margin-top: 6px;
    position: relative
}

.lrn-prog .module-dot::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 24px;
    background: #6c7a8833;
    border-radius: 5px
}

.lrn-prog .module-item:last-child .module-dot::after {
    display: none
}

.lrn-prog .module-text {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn-prog .module-name {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    color: #3a444d
}

.lrn-prog .module-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88
}

.lrn-prog .sidebar-right {
    text-align: right
}

.lrn-prog .sidebar-right .sidebar-stat {
    text-align: right
}

.lrn-prog .format-blk {
    padding: 48px 0;
    background: linear-gradient(143deg, #b5d0ce1f 0%, #6c7a8814 100%);
    animation: bg-shift 6s ease-out alternate infinite
}

@keyframes bg-shift {
    from {
        background: linear-gradient(143deg, #b5d0ce1f 0%, #6c7a8814 100%)
    }

    to {
        background: linear-gradient(143deg, #6c7a8814 0%, #b5d0ce2e 100%)
    }
}

.lrn-prog .format-h2 {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #3a444d;
    margin: 0 0 48px;
    text-align: right
}

.lrn-prog .format-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.lrn-prog .fmt-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 2px 6px 1px #b5d0ce14;
    position: relative;
    overflow: hidden;
    transition: box-shadow .12s ease-out
}

.lrn-prog .fmt-card:hover {
    box-shadow: -1px 10px 44px 1px #6c7a881f
}

.lrn-prog .fmt-card-spotlight {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(143deg, #6C7A88, #4e5c68);
    color: #fff;
    padding: 48px
}

.lrn-prog .fmt-card-spotlight .fmt-title {
    color: #fff
}

.lrn-prog .fmt-card-spotlight .fmt-desc {
    color: #fffc
}

.lrn-prog .fmt-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px
}

.lrn-prog .fmt-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    color: #3a444d;
    margin: 0 0 8px
}

.lrn-prog .fmt-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    margin: 0
}

.lrn-prog .fmt-label-slide {
    position: absolute;
    top: 16px;
    right: -80px;
    background: #B5D0CE;
    color: #3a444d;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px 0 0 5px;
    transition: right .1s ease-out
}

.lrn-prog .fmt-card:hover .fmt-label-slide {
    right: 0
}

.lrn-prog .register-blk {
    padding: 48px 0;
    background: #fff
}

.lrn-prog .reg-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.lrn-prog .reg-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .reg-h2 {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #3a444d;
    margin: 0
}

.lrn-prog .reg-p {
    font-size: 17px;
    line-height: 1.55;
    color: #4e5c68;
    margin: 0
}

.lrn-prog .reg-p-narrow {
    font-size: 15px;
    line-height: 1.8;
    color: #6C7A88;
    margin: 0;
    max-width: 380px
}

.lrn-prog .reg-details {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog .reg-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #b5d0ce26;
    border-radius: 5px
}

.lrn-prog .reg-row-lbl {
    font-size: 15px;
    font-weight: 600;
    color: #6C7A88;
    text-transform: uppercase;
    flex: 0 0 120px
}

.lrn-prog .reg-row-val {
    font-size: 17px;
    line-height: 1.2;
    color: #3a444d
}

.lrn-prog .reg-right {
    background: #b5d0ce1f;
    border-radius: 16px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -1px 6px 14px 1px #6c7a8817;
    position: relative;
    overflow: hidden
}

.lrn-prog .reg-right .corner-stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px
}

.lrn-prog .reg-right .corner-stripe::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(143deg, transparent 48%, #6c7a8833 48%, #6c7a8833 58%, transparent 58%)
}

.lrn-prog .reg-offer-h {
    font-size: 21px;
    font-weight: 600;
    color: #3a444d;
    margin: 0;
    text-transform: uppercase
}

.lrn-prog .reg-price {
    font-size: 37px;
    font-weight: 700;
    color: #6C7A88;
    line-height: 1.2
}

.lrn-prog .reg-price span {
    font-size: 17px;
    font-weight: 400;
    color: #6C7A88
}

.lrn-prog .reg-incl {
    font-size: 15px;
    line-height: 1.8;
    color: #4e5c68;
    margin: 0
}

.lrn-prog .reg-btn {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: #6C7A88;
    border: 2px solid #6C7A88;
    border-radius: 40px;
    padding: 16px 48px;
    text-decoration: none;
    background: transparent;
    text-align: center;
    transition: border-color .08s linear, color .08s linear, padding .08s linear
}

.lrn-prog .reg-btn:hover {
    color: #3a444d;
    border-color: #3a444d;
    padding: 16px 56px
}

.lrn-prog .reg-btn:focus {
    outline: 2px solid #6C7A88;
    outline-offset: 4px
}

@media (max-width: 992px) {
    .lrn-prog .title-inner {
        flex-direction: column
    }

    .lrn-prog .title-right {
        flex: 0 0 auto;
        height: 280px
    }

    .lrn-prog .title-right img {
        min-height: 280px
    }

    .lrn-prog .prog-h1 {
        font-size: 37px
    }

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

    .lrn-prog .sidebar-right {
        text-align: left
    }

    .lrn-prog .sidebar-right .sidebar-stat {
        text-align: left
    }

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

    .lrn-prog .fmt-card-spotlight {
        grid-column: span 2;
        grid-row: span 1
    }

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

@media (max-width: 576px) {
    .lrn-prog .prog-h1 {
        font-size: 37px
    }

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

    .lrn-prog .fmt-card-spotlight {
        grid-column: span 1;
        padding: 24px
    }

    .lrn-prog .struct-card {
        padding: 24px
    }

    .lrn-prog .reg-right {
        padding: 24px
    }

    .lrn-prog .format-h2 {
        text-align: left
    }
}

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

.cont-us .pg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.cont-us .reach-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    position: relative
}

.cont-us .reach-img-side {
    position: relative;
    overflow: hidden
}

.cont-us .reach-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(60%) brightness(0.85);
    transition: transform .12s ease-out
}

.cont-us .reach-img-side:hover img {
    transform: scale(1.04)
}

.cont-us .reach-img-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(143deg, #6c7a882e 0%, #6c7a888c 100%);
    pointer-events: none
}

.cont-us .reach-img-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.cont-us .reach-img-dots::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, #b5d0ce59 1.5px, transparent 1.5px);
    background-size: 18px 18px
}

.cont-us .reach-img-dots::after {
    content: "";
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #b5d0ce40 1.5px, transparent 1.5px);
    background-size: 14px 14px
}

.cont-us .reach-text-side {
    background: #FFF8F9;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.cont-us .reach-label {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    margin-bottom: 16px
}

.cont-us .reach-heading {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;
    color: #2e3a44;
    margin-bottom: 24px
}

.cont-us .reach-desc {
    font-size: 17px;
    line-height: 1.55;
    color: #3d4d58;
    margin-bottom: 48px;
    max-width: 420px
}

.cont-us .reach-details-row {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cont-us .reach-detail-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.cont-us .reach-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background: #B5D0CE;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.cont-us .reach-detail-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #2e3a44;
    stroke-width: 1.8
}

.cont-us .reach-detail-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3d4d58
}

.cont-us .reach-detail-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2e3a44;
    margin-bottom: 2px
}

.cont-us .reach-detail-text a {
    color: #6C7A88;
    text-decoration: none;
    transition: color .1s ease-out
}

.cont-us .reach-detail-text a:hover {
    color: #2e3a44
}

.cont-us .reach-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    overflow: hidden;
    pointer-events: none
}

.cont-us .reach-corner-accent::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 56px 56px 0;
    border-color: transparent #B5D0CE transparent transparent
}

.cont-us .divider-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    position: relative
}

.cont-us .divider-shape::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #B5D0CE
}

.cont-us .divider-gem {
    width: 12px;
    height: 12px;
    background: #6C7A88;
    border-radius: 5px;
    transform: rotate(45deg);
    position: relative;
    z-index: 1;
    flex-shrink: 0
}

.cont-us .form-panel {
    background: #fff;
    padding: 48px 0;
    position: relative;
    animation: bgwash 9s ease-in-out infinite alternate
}

@keyframes bgwash {
    0% {
        background-color: #fff
    }

    100% {
        background-color: #f4f8f8
    }
}

.cont-us .form-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start
}

.cont-us .form-sidebar {
    padding-top: 8px
}

.cont-us .form-sidebar-label {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 600;
    margin-bottom: 16px
}

.cont-us .form-sidebar-heading {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    color: #2e3a44;
    text-transform: uppercase;
    margin-bottom: 16px
}

.cont-us .form-sidebar-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4d5e6a;
    margin-bottom: 24px
}

.cont-us .indicator-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px
}

.cont-us .ind-circle {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative
}

.cont-us .ind-circle.step-done {
    background: #B5D0CE;
    color: #2e3a44;
    box-shadow: -1px 2px 6px 1px #6c7a8814
}

.cont-us .ind-circle.step-active {
    background: #6C7A88;
    color: #fff;
    box-shadow: -1px 6px 14px 1px #6c7a8817
}

.cont-us .ind-circle.step-idle {
    background: #FFF8F9;
    color: #6C7A88;
    border: 1.5px solid #B5D0CE
}

.cont-us .ind-connector {
    flex: 1;
    height: 2px;
    background: #B5D0CE
}

.cont-us .form-card {
    background: #FFF8F9;
    border-radius: 16px;
    padding: 48px;
    box-shadow: -1px 6px 14px 1px #6c7a8817;
    position: relative;
    overflow: hidden
}

.cont-us .form-card-corner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 64px;
    overflow: hidden;
    pointer-events: none
}

.cont-us .form-card-corner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 64px 0 0 64px;
    border-color: transparent transparent transparent #B5D0CE
}

.cont-us .form-card-dashes {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 90px;
    height: 90px;
    border: 1.5px dashed #6c7a882e;
    border-radius: 16px;
    pointer-events: none
}

.cont-us .form-row {
    margin-bottom: 24px
}

.cont-us .form-lbl {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2e3a44;
    margin-bottom: 8px
}

.cont-us .form-lbl .req-mark {
    color: #6C7A88;
    margin-left: 2px
}

.cont-us .email-field {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    line-height: 1.55;
    border: 1.5px solid #B5D0CE;
    border-radius: 5px;
    background: #fff;
    color: #2e3a44;
    box-shadow: inset 0 2px 4px #b5d0ce1f inset 0 -1px 3px #6c7a8812;
    transition: border-color .1s ease-out, box-shadow .1s ease-out;
    box-sizing: border-box
}

.cont-us .email-field::placeholder {
    font-style: italic;
    opacity: .55;
    color: #6C7A88
}

.cont-us .email-field:focus {
    outline: none;
    border-color: #6C7A88;
    box-shadow: inset 0 2px 4px #b5d0ce1f inset 0 -1px 3px #6c7a8812 -1px 2px 6px 1px #6c7a8814
}

.cont-us .radio-group-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2e3a44;
    margin-bottom: 16px
}

.cont-us .radio-options {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cont-us .radio-opt {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding: 16px;
    border-radius: 5px;
    border: 1.5px solid #B5D0CE;
    background: #fff;
    transition: border-color .08s linear, background .08s linear
}

.cont-us .radio-opt:hover {
    border-color: #6C7A88;
    background: #f0f5f5
}

.cont-us .radio-opt input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #6C7A88;
    cursor: pointer;
    flex-shrink: 0
}

.cont-us .radio-opt-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3d4d58
}

.cont-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 5px;
    background: #fff;
    border: 1.5px solid #B5D0CE
}

.cont-us .privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6C7A88;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px
}

.cont-us .privacy-text {
    font-size: 15px;
    line-height: 1.55;
    color: #4d5e6a
}

.cont-us .privacy-text a {
    color: #6C7A88;
    text-decoration: underline;
    transition: color .08s linear
}

.cont-us .privacy-text a:hover {
    color: #2e3a44
}

.cont-us .submit-btn {
    display: inline-block;
    padding: 16px 48px;
    font-size: 17px;
    font-weight: 600;
    color: #6C7A88;
    background: transparent;
    border: 2px solid #6C7A88;
    border-radius: 40px;
    cursor: pointer;
    transition: color .1s ease-out, background .1s ease-out, box-shadow .1s ease-out, border-width .1s ease-out, padding .1s ease-out;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: .06em
}

.cont-us .submit-btn:hover {
    color: #fff;
    background: #6C7A88;
    border-width: 3px;
    padding: 15px 47px;
    box-shadow: -1px 6px 14px 1px #6c7a8817
}

.cont-us .submit-btn:focus {
    outline: 2px solid #6C7A88;
    outline-offset: 3px
}

.cont-us .submit-btn:active {
    background: #4d5e6a;
    border-color: #4d5e6a;
    color: #fff
}

@media (max-width: 992px) {
    .cont-us .reach-panel {
        grid-template-columns: 1fr
    }

    .cont-us .reach-img-side {
        height: 280px
    }

    .cont-us .reach-text-side {
        padding: 48px 24px
    }

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

    .cont-us .form-card {
        padding: 24px
    }

    .cont-us .form-sidebar {
        padding-top: 0
    }
}

@media (max-width: 576px) {
    .cont-us .reach-heading {
        font-size: 21px
    }

    .cont-us .form-card {
        padding: 16px
    }

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

    .cont-us .indicator-row {
        display: none
    }
}

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

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

.ld-pg ::selection {
    background: #B5D0CE;
    color: #2a3540
}

.ld-pg input::placeholder,
.ld-pg textarea::placeholder {
    font-style: italic;
    opacity: .55
}

.ld-pg .max-w {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px
}

.ld-pg .tb {
    background: #2a3540;
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative
}

.ld-pg .tb-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px
}

.ld-pg .tb-text {
    flex: 1 1 0;
    min-width: 0
}

.ld-pg .tb-label {
    font-size: 15px;
    line-height: 1.55;
    color: #B5D0CE;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 16px
}

.ld-pg .tb-h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px
}

.ld-pg .tb-h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #B5D0CE;
    font-weight: 300;
    margin-bottom: 24px
}

.ld-pg .tb-sub {
    font-size: 17px;
    line-height: 1.55;
    color: #c8d4dc;
    max-width: 520px
}

.ld-pg .tb-img-col {
    flex: 0 0 340px;
    position: relative
}

.ld-pg .tb-img-deco {
    position: absolute;
    inset: -8px -8px -8px -8px;
    border: 1px solid #b5d0ce2e;
    border-radius: 16px;
    pointer-events: none;
    z-index: 0
}

.ld-pg .tb-img-deco-outer {
    position: absolute;
    inset: -16px -16px -16px -16px;
    border: 1px solid #b5d0ce14;
    border-radius: 16px;
    pointer-events: none;
    z-index: 0
}

.ld-pg .tb-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 340px;
    height: 240px
}

.ld-pg .tb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .88;
    transition: opacity .12s ease-out
}

.ld-pg .tb-img-wrap:hover img {
    opacity: 1
}

.ld-pg .team-sec {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #FFF8F9
}

.ld-pg .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.ld-pg .team-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ld-pg .sec-eyebrow {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: .1em
}

.ld-pg .team-heading {
    font-size: 37px;
    line-height: 1.2;
    color: #2a3540;
    font-weight: 600
}

.ld-pg .team-body {
    font-size: 17px;
    line-height: 1.55;
    color: #3d4d5a;
    max-width: 460px
}

.ld-pg .team-body.narrow {
    max-width: 360px
}

.ld-pg .team-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ld-pg .expert-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 6px 14px 1px #6c7a8817;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow .1s ease-out
}

.ld-pg .expert-card:hover {
    box-shadow: -1px 10px 44px 1px #6c7a881f
}

.ld-pg .expert-avatar {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    background: linear-gradient(143deg, #B5D0CE, #6C7A88);
    display: flex;
    align-items: center;
    justify-content: center
}

.ld-pg .expert-avatar svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.ld-pg .expert-info {
    flex: 1 1 0;
    min-width: 0
}

.ld-pg .expert-name {
    font-size: 17px;
    line-height: 1.2;
    color: #2a3540;
    font-weight: 600;
    margin-bottom: 8px
}

.ld-pg .expert-role {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    margin-bottom: 8px
}

.ld-pg .expert-note {
    font-size: 15px;
    line-height: 1.55;
    color: #3d4d5a
}

.ld-pg .prog-sec {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #fff;
    position: relative;
    overflow: hidden
}

.ld-pg .prog-sec-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(143deg, #B5D0CE 0%, #fff 55%);
    opacity: 0;
    animation: desat-cycle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0
}

@keyframes desat-cycle {
    0% {
        opacity: 0;
        filter: saturate(1)
    }

    40% {
        opacity: .18;
        filter: saturate(0.3)
    }

    70% {
        opacity: .22;
        filter: saturate(1)
    }

    100% {
        opacity: 0;
        filter: saturate(1)
    }
}

.ld-pg .prog-inner {
    position: relative;
    z-index: 1
}

.ld-pg .prog-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px
}

.ld-pg .prog-heading {
    font-size: 37px;
    line-height: 1.2;
    color: #2a3540;
    font-weight: 600;
    max-width: 480px
}

.ld-pg .prog-desc {
    font-size: 17px;
    line-height: 1.55;
    color: #3d4d5a;
    max-width: 340px;
    text-align: right
}

.ld-pg .prog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.ld-pg .prog-card {
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #6c7a8824;
    position: relative;
    transition: border-color .1s linear;
    background: #fff
}

.ld-pg .prog-card:hover {
    border-color: #B5D0CE
}

.ld-pg .prog-card-shadow {
    position: absolute;
    inset: 6px -6px -6px 6px;
    border-radius: 16px;
    background: transparent;
    border: 1px solid #b5d0ce59;
    z-index: -1;
    transition: inset .12s ease-out
}

.ld-pg .prog-card:hover .prog-card-shadow {
    inset: 8px -8px -8px 8px
}

.ld-pg .prog-card-tag {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 300;
    margin-bottom: 8px
}

.ld-pg .prog-card-name {
    font-size: 21px;
    line-height: 1.2;
    color: #2a3540;
    font-weight: 600;
    margin-bottom: 16px
}

.ld-pg .prog-card-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3d4d5a;
    margin-bottom: 16px
}

.ld-pg .prog-card-img {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 140px;
    margin-bottom: 16px
}

.ld-pg .prog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .12s ease-out
}

.ld-pg .prog-card:hover .prog-card-img img {
    transform: scale(1.04)
}

.ld-pg .prog-link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    text-decoration: none;
    border-bottom: 1px solid #6c7a884d;
    padding-bottom: 2px;
    transition: color .08s linear, border-color .08s linear
}

.ld-pg .prog-link:hover {
    color: #2a3540;
    border-color: #2a3540
}

.ld-pg .appr-sec {
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative
}

.ld-pg .appr-diag {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden
}

.ld-pg .appr-diag-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 100%;
    background: #2a3540;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%)
}

.ld-pg .appr-diag-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(143deg, #6C7A88, #2a3540);
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    opacity: .7
}

.ld-pg .appr-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.ld-pg .appr-left {
    padding-right: 16px
}

.ld-pg .appr-eyebrow {
    font-size: 15px;
    line-height: 1.55;
    color: #B5D0CE;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 300;
    margin-bottom: 16px
}

.ld-pg .appr-h {
    font-size: 37px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px
}

.ld-pg .appr-p {
    font-size: 17px;
    line-height: 1.55;
    color: #c8d4dc;
    margin-bottom: 16px
}

.ld-pg .appr-p.narrow {
    max-width: 340px
}

.ld-pg .appr-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 260px;
    box-shadow: -1px 10px 44px 1px #6c7a881f
}

.ld-pg .appr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .92;
    transition: transform .12s ease-out, opacity .1s linear
}

.ld-pg .appr-img-wrap:hover img {
    transform: scale(1.04);
    opacity: 1
}

.ld-pg .appr-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ld-pg .compare-block {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 6px 14px 1px #6c7a8817
}

.ld-pg .compare-title {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 300;
    margin-bottom: 16px
}

.ld-pg .compare-row {
    display: grid;
    grid-template-columns: 1fr 40px 40px;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #6c7a881a;
    font-size: 15px;
    line-height: 1.55;
    color: #3d4d5a
}

.ld-pg .compare-row:last-child {
    border-bottom: none
}

.ld-pg .compare-header {
    font-weight: 600;
    color: #2a3540;
    font-size: 15px
}

.ld-pg .compare-col-label {
    font-size: 13px;
    color: #6C7A88;
    text-align: center
}

.ld-pg .check-yes {
    display: flex;
    align-items: center;
    justify-content: center
}

.ld-pg .check-yes svg {
    width: 18px;
    height: 18px
}

.ld-pg .check-no {
    display: flex;
    align-items: center;
    justify-content: center
}

.ld-pg .check-no svg {
    width: 18px;
    height: 18px
}

.ld-pg .trail-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ld-pg .trail-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 24px
}

.ld-pg .trail-item:last-child {
    padding-bottom: 0
}

.ld-pg .trail-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 20px
}

.ld-pg .trail-dot {
    width: 12px;
    height: 12px;
    border-radius: 40px;
    background: #B5D0CE;
    border: 2px solid #6C7A88;
    flex-shrink: 0;
    transition: background .1s ease-out
}

.ld-pg .trail-item:hover .trail-dot {
    background: #6C7A88
}

.ld-pg .trail-line {
    flex: 1 1 0;
    width: 2px;
    background: #6c7a8833;
    margin-top: 4px
}

.ld-pg .trail-item:last-child .trail-line {
    display: none
}

.ld-pg .trail-text {
    flex: 1 1 0;
    min-width: 0
}

.ld-pg .trail-label {
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px
}

.ld-pg .trail-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #c8d4dc
}

.ld-pg .btn-ghost {
    display: inline-block;
    font-size: 17px;
    line-height: 1.55;
    color: #6C7A88;
    background: transparent;
    border: 1px solid #6C7A88;
    border-radius: 5px;
    padding: 8px 24px;
    text-decoration: none;
    cursor: pointer;
    transition: color .1s ease-out, background .1s ease-out, border-width .08s linear
}

.ld-pg .btn-ghost:hover {
    background: #6C7A88;
    color: #fff;
    border-width: 2px
}

.ld-pg .btn-ghost:focus {
    outline: 2px solid #6C7A88;
    outline-offset: 3px
}

@media (max-width: 992px) {
    .ld-pg .tb-strip {
        flex-direction: column;
        gap: 24px
    }

    .ld-pg .tb-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .ld-pg .tb-img-wrap {
        width: 100%;
        height: 200px
    }

    .ld-pg .tb-h1 {
        font-size: 37px
    }

    .ld-pg .tb-h2 {
        font-size: 21px
    }

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

    .ld-pg .prog-cards {
        grid-template-columns: 1fr 1fr
    }

    .ld-pg .prog-top {
        flex-direction: column;
        align-items: flex-start
    }

    .ld-pg .prog-desc {
        text-align: left;
        max-width: 100%
    }

    .ld-pg .appr-inner {
        grid-template-columns: 1fr
    }

    .ld-pg .appr-diag-fill {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 55%, 0 70%)
    }

    .ld-pg .appr-diag-accent {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 55%, 0 70%)
    }

    .ld-pg .appr-left {
        padding-right: 0
    }
}

@media (max-width: 576px) {
    .ld-pg .prog-cards {
        grid-template-columns: 1fr
    }

    .ld-pg .tb-h1 {
        font-size: 37px
    }

    .ld-pg .compare-row {
        grid-template-columns: 1fr 36px 36px
    }
}

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

.edu-biz * {
    box-sizing: border-box
}

.edu-biz ::selection {
    background: #B5D0CE;
    color: #2a3540
}

.edu-biz .pg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(24px)
    }

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

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

.edu-biz .anim-bounce {
    animation: bounceIn .55s cubic-bezier(.36, .07, .19, .97) both
}

.edu-biz .anim-bounce-d1 {
    animation-delay: .08s
}

.edu-biz .anim-bounce-d2 {
    animation-delay: .18s
}

.edu-biz .anim-bounce-d3 {
    animation-delay: .28s
}

.edu-biz .top-band {
    background: linear-gradient(143deg, #B5D0CE 0%, #6C7A88 60%, #FFF8F9 100%);
    position: relative;
    padding: 48px 0;
    border-right: 3px solid #6c7a882e;
    overflow: hidden
}

.edu-biz .top-band .circle-deco {
    position: absolute;
    border-radius: 40px;
    opacity: .09;
    background: #fff;
    pointer-events: none
}

.edu-biz .top-band .circle-deco.c1 {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    top: -80px;
    left: -60px
}

.edu-biz .top-band .circle-deco.c2 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    bottom: -40px;
    right: 120px
}

.edu-biz .top-band .circle-deco.c3 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: 30px;
    right: 60px
}

.edu-biz .top-band-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1
}

.edu-biz .top-txt {
    flex: 1 1 0
}

.edu-biz .top-img-col {
    flex: 0 0 380px
}

.edu-biz .top-img-col img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    filter: grayscale(100%);
    display: block;
    box-shadow: -1px 10px 44px 1px #6c7a881f;
    transition: transform .12s ease-out
}

.edu-biz .top-img-col img:hover {
    transform: scale(1.03)
}

.edu-biz .top-label {
    font-size: 15px;
    color: #FFF8F9;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
    font-weight: 400
}

.edu-biz .top-h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #FFF8F9;
    font-weight: 700;
    margin: 0 0 16px
}

.edu-biz .top-h1 .accent-word {
    color: #B5D0CE;
    font-weight: 300;
    display: inline
}

.edu-biz .top-sub {
    font-size: 17px;
    line-height: 1.55;
    color: #FFF8F9;
    opacity: .88;
    max-width: 480px;
    margin: 0 0 24px
}

.edu-biz .top-btn {
    display: inline-block;
    font-size: 15px;
    color: #FFF8F9;
    border: 2px solid #FFF8F9;
    border-radius: 5px;
    padding: 16px 24px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: border-width .1s ease-out, padding .1s ease-out, background .1s ease-out;
    font-weight: 600
}

.edu-biz .top-btn:hover {
    border-width: 3px;
    padding: 15px 23px;
    background: #fff8f91f
}

.edu-biz .top-btn:focus-visible {
    outline: 3px solid #FFF8F9 !important;
    outline-offset: 4px !important
}

.edu-biz .divider-torn {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.edu-biz .divider-torn svg {
    display: block;
    width: 100%
}

.edu-biz .prog-band {
    background: #fff;
    padding: 48px 0;
    border-right: 3px solid #b5d0ce38
}

.edu-biz .prog-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.edu-biz .prog-big-txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.edu-biz .prog-eyebrow {
    font-size: 15px;
    color: #6C7A88;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 600
}

.edu-biz .prog-h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #2a3540;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .03em
}

.edu-biz .prog-body {
    font-size: 17px;
    line-height: 1.55;
    color: #3d4d5a
}

.edu-biz .prog-body.narrow {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.8;
    color: #5a6a78
}

.edu-biz .prog-data-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.edu-biz .prog-metric-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: stretch
}

.edu-biz .prog-metric {
    flex: 1 1 0;
    background: #FFF8F9;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: -1px 6px 14px 1px #6c7a8817;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.edu-biz .prog-metric .m-val {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
    color: #6C7A88
}

.edu-biz .prog-metric .m-label {
    font-size: 15px;
    line-height: 1.55;
    color: #5a6a78
}

.edu-biz .prog-trail {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.edu-biz .trail-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    position: relative
}

.edu-biz .trail-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 20px
}

.edu-biz .trail-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #B5D0CE;
    background: #fff;
    flex-shrink: 0;
    margin-top: 4px;
    transition: background .1s ease-out, border-color .1s ease-out
}

.edu-biz .trail-item:hover .trail-dot {
    background: #6C7A88;
    border-color: #6C7A88
}

.edu-biz .trail-line {
    width: 2px;
    flex: 1 1 0;
    background: #B5D0CE;
    min-height: 16px;
    margin-top: 2px
}

.edu-biz .trail-last .trail-line {
    display: none
}

.edu-biz .trail-txt {
    flex: 1 1 0;
    font-size: 15px;
    line-height: 1.55;
    color: #3d4d5a;
    padding-bottom: 16px
}

.edu-biz .trail-txt strong {
    display: block;
    font-weight: 600;
    color: #2a3540;
    margin-bottom: 4px
}

.edu-biz .bold-band {
    background: #6C7A88;
    padding: 48px 0;
    position: relative;
    overflow: hidden
}

.edu-biz .bold-band-deco {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #fff8f91a;
    pointer-events: none
}

.edu-biz .bold-band-deco.bd1 {
    width: 260px;
    height: 260px;
    top: -60px;
    right: -40px
}

.edu-biz .bold-band-deco.bd2 {
    width: 140px;
    height: 140px;
    bottom: -30px;
    left: 80px
}

.edu-biz .bold-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1
}

.edu-biz .bold-txt-col {
    flex: 1 1 0
}

.edu-biz .bold-img-col {
    flex: 0 0 340px
}

.edu-biz .bold-img-col img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: -1px 10px 44px 1px #6c7a881f;
    transition: transform .13s ease-out
}

.edu-biz .bold-img-col img:hover {
    transform: scale(1.03)
}

.edu-biz .bold-h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #FFF8F9;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .03em
}

.edu-biz .bold-body {
    font-size: 17px;
    line-height: 1.55;
    color: #dde7e6;
    margin-bottom: 16px
}

.edu-biz .bold-body.narrow {
    font-size: 15px;
    line-height: 1.8;
    color: #c8d8d7;
    max-width: 380px
}

.edu-biz .icon-rect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #fff8f966;
    border-radius: 5px;
    margin-bottom: 16px
}

.edu-biz .icon-rect svg {
    width: 24px;
    height: 24px;
    stroke: #FFF8F9;
    fill: none;
    stroke-width: 1.8
}

.edu-biz .bold-btn {
    display: inline-block;
    font-size: 15px;
    color: #6C7A88;
    background: #FFF8F9;
    border: 2px solid #FFF8F9;
    border-radius: 5px;
    padding: 16px 24px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: border-width .1s ease-out, padding .1s ease-out, background .09s linear
}

.edu-biz .bold-btn:hover {
    border-width: 3px;
    padding: 15px 23px;
    background: transparent;
    color: #FFF8F9
}

.edu-biz .bold-btn:focus-visible {
    outline: 3px solid #FFF8F9 !important;
    outline-offset: 4px !important
}

.edu-biz .close-band {
    background: #FFF8F9;
    padding: 48px 0
}

.edu-biz .close-inner {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.edu-biz .close-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.edu-biz .close-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 6px 14px 1px #b5d0ce17;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .12s ease-out, transform .1s ease-out
}

.edu-biz .close-card:hover {
    box-shadow: -1px 10px 44px 1px #6c7a881f;
    transform: translateY(-3px)
}

.edu-biz .close-card .card-icon-rect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #B5D0CE;
    border-radius: 5px
}

.edu-biz .close-card .card-icon-rect svg {
    width: 22px;
    height: 22px;
    stroke: #6C7A88;
    fill: none;
    stroke-width: 1.8
}

.edu-biz .close-card .card-h {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
    color: #2a3540;
    margin: 0
}

.edu-biz .close-card .card-p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6a78;
    margin: 0
}

.edu-biz .close-bottom-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    background: linear-gradient(143deg, #B5D0CE 0%, #6C7A88 100%);
    border-radius: 16px;
    padding: 48px;
    box-shadow: -1px 10px 44px 1px #6c7a881f
}

.edu-biz .close-bottom-txt {
    flex: 1 1 0
}

.edu-biz .close-bottom-h3 {
    font-size: 37px;
    line-height: 1.2;
    color: #FFF8F9;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .03em
}

.edu-biz .close-bottom-p {
    font-size: 17px;
    line-height: 1.55;
    color: #fff8f9e0;
    margin: 0
}

.edu-biz .close-bottom-action {
    flex: 0 0 auto;
    text-align: right
}

.edu-biz .close-bottom-btn {
    display: inline-block;
    font-size: 17px;
    color: #FFF8F9;
    border: 2px solid #FFF8F9;
    border-radius: 5px;
    padding: 16px 24px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: border-width .1s ease-out, padding .1s ease-out, background .09s linear
}

.edu-biz .close-bottom-btn:hover {
    border-width: 3px;
    padding: 15px 23px;
    background: #fff8f926
}

.edu-biz .close-bottom-btn:focus-visible {
    outline: 3px solid #FFF8F9 !important;
    outline-offset: 4px !important
}

@media (max-width: 992px) {
    .edu-biz .top-band-inner {
        flex-direction: column;
        gap: 24px
    }

    .edu-biz .top-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .edu-biz .top-h1 {
        font-size: 37px
    }

    .edu-biz .prog-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .edu-biz .bold-inner {
        flex-direction: column;
        gap: 24px
    }

    .edu-biz .bold-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .edu-biz .close-top-row {
        grid-template-columns: 1fr 1fr
    }

    .edu-biz .close-bottom-row {
        flex-direction: column;
        gap: 24px;
        padding: 24px
    }

    .edu-biz .close-bottom-action {
        text-align: left
    }
}

@media (max-width: 576px) {
    .edu-biz .top-h1 {
        font-size: 37px
    }

    .edu-biz .close-top-row {
        grid-template-columns: 1fr
    }

    .edu-biz .prog-metric-row {
        flex-direction: column
    }

    .edu-biz .close-bottom-h3 {
        font-size: 21px
    }
}

.success-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background-color: #FFF8F9
}

.success-page .confirm-wrap {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.success-page .confirm-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0
}

.success-page .confirm-icon svg {
    width: 100%;
    height: 100%
}

.success-page .confirm-heading {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.2;
    color: #2e3840;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .04em
}

.success-page .confirm-text {
    font-size: 17px;
    line-height: 1.55;
    color: #4a5560;
    text-align: center;
    max-width: 520px;
    margin: 0
}

.success-page .confirm-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(143deg, #B5D0CE, #6C7A88);
    border-radius: 5px
}

.success-page .confirm-detail {
    font-size: 15px;
    line-height: 1.55;
    color: #6C7A88;
    text-align: center;
    max-width: 420px;
    margin: 0
}

.success-page .confirm-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: -1px 6px 14px 1px #6c7a8817;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 600px
}

.success-page .back-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 16px 48px;
    font-size: 15px;
    font-weight: 600;
    color: #6C7A88;
    background: transparent;
    border: 2px solid #6C7A88;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: border-color .1s ease-out, color .1s ease-out, background-color .12s ease-out, box-shadow .08s linear;
    cursor: pointer
}

.success-page .back-btn:hover {
    color: #fff;
    background-color: #6C7A88;
    border-color: #4a5560;
    box-shadow: -1px 6px 14px 1px #6c7a8817
}

.success-page .back-btn:focus {
    outline: 2px solid #6C7A88;
    outline-offset: 4px
}

.success-page .back-btn:active {
    background-color: #4a5560;
    border-color: #4a5560
}

@media (max-width: 576px) {
    .success-page .confirm-card {
        padding: 24px 16px
    }

    .success-page .confirm-heading {
        font-size: 21px
    }

    .success-page .confirm-text {
        font-size: 15px
    }
}